X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=mediagoblin%2Fviews.py;h=9d34750b1265d5340e965eb926fb797a28d78858;hb=241503101d93be50a10ee438f01f3beac3f2a4ce;hp=dc2d45ba7ce51dc6dd130a2bb0e4efd2b8319521;hpb=1c63ad5d352f5eb38a4d634b9aea84cbeee269a4;p=mediagoblin.git diff --git a/mediagoblin/views.py b/mediagoblin/views.py index dc2d45ba..9d34750b 100644 --- a/mediagoblin/views.py +++ b/mediagoblin/views.py @@ -1,5 +1,5 @@ # GNU MediaGoblin -- federated, autonomous media hosting -# Copyright (C) 2011 Free Software Foundation, Inc +# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -14,13 +14,33 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -from mediagoblin.util import render_to_response +from mediagoblin import mg_globals +from mediagoblin.tools.pagination import Pagination +from mediagoblin.tools.response import render_to_response from mediagoblin.db.util import DESCENDING +from mediagoblin.decorators import uses_pagination -def root_view(request): - media_entries = request.db.MediaEntry.find( + + +@uses_pagination +def root_view(request, page): + cursor = request.db.MediaEntry.find( {u'state': u'processed'}).sort('created', DESCENDING) - + + pagination = Pagination(page, cursor) + media_entries = pagination() + return render_to_response( + request, 'mediagoblin/root.html', + {'media_entries': media_entries, + 'allow_registration': mg_globals.app_config["allow_registration"], + 'pagination': pagination}) + + +def simple_template_render(request): + """ + A view for absolutely simple template rendering. + Just make sure 'template' is in the matchdict! + """ + template_name = request.matchdict['template'] return render_to_response( - request, 'mediagoblin/root.html', - {'media_entries': media_entries}) + request, template_name, {})