Merge remote-tracking branch 'remotes/jwandborg/master'
[mediagoblin.git] / mediagoblin / views.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
12a100e4 2# Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
e5572c60
ML
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
26729e02
JW
17import sys
18
13677ef9 19from mediagoblin import mg_globals
152a3bfa
AW
20from mediagoblin.tools.pagination import Pagination
21from mediagoblin.tools.response import render_to_response
86f9b473 22from mediagoblin.db.util import DESCENDING
2542aa30 23from mediagoblin.decorators import uses_pagination
26729e02
JW
24from mediagoblin import media_types
25
ef7cdac5 26
243c3843 27
2542aa30
CAW
28@uses_pagination
29def root_view(request, page):
30 cursor = request.db.MediaEntry.find(
1ab84673 31 {u'state': u'processed'}).sort('created', DESCENDING)
2542aa30
CAW
32
33 pagination = Pagination(page, cursor)
34 media_entries = pagination()
9038c9f9 35 return render_to_response(
2262b2a9 36 request, 'mediagoblin/root.html',
13677ef9 37 {'media_entries': media_entries,
2542aa30 38 'allow_registration': mg_globals.app_config["allow_registration"],
26729e02
JW
39 'pagination': pagination,
40 'sys': sys})
2262b2a9
CAW
41
42
43def simple_template_render(request):
44 """
45 A view for absolutely simple template rendering.
46 Just make sure 'template' is in the matchdict!
47 """
48 template_name = request.matchdict['template']
49 return render_to_response(
50 request, template_name, {})