Default to mediagoblin_local.ini if available in ./bin/gmg commands
[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
13677ef9 17from mediagoblin import mg_globals
152a3bfa
AW
18from mediagoblin.tools.pagination import Pagination
19from mediagoblin.tools.response import render_to_response
86f9b473 20from mediagoblin.db.util import DESCENDING
2542aa30 21from mediagoblin.decorators import uses_pagination
ef7cdac5 22
2542aa30
CAW
23@uses_pagination
24def root_view(request, page):
25 cursor = request.db.MediaEntry.find(
1ab84673 26 {u'state': u'processed'}).sort('created', DESCENDING)
2542aa30
CAW
27
28 pagination = Pagination(page, cursor)
29 media_entries = pagination()
30
9038c9f9 31 return render_to_response(
2262b2a9 32 request, 'mediagoblin/root.html',
13677ef9 33 {'media_entries': media_entries,
2542aa30
CAW
34 'allow_registration': mg_globals.app_config["allow_registration"],
35 'pagination': pagination})
2262b2a9
CAW
36
37
38def simple_template_render(request):
39 """
40 A view for absolutely simple template rendering.
41 Just make sure 'template' is in the matchdict!
42 """
43 template_name = request.matchdict['template']
44 return render_to_response(
45 request, template_name, {})