summaryrefslogtreecommitdiff
path: root/django/views
AgeCommit message (Expand)Author
2005-11-23Fixed #603 -- Added template debugging errors to pretty error-page output, if...Adrian Holovaty
2005-11-22Fixed #874 -- Changed debug views to use text/html mime-type instead of DEFAU...Adrian Holovaty
2005-11-22Changed views.defaults page_not_found and server_error to pass in optional te...Adrian Holovaty
2005-11-21Fixed #866: static.serve view no longer opens files in text mode -- thanks, E...Jacob Kaplan-Moss
2005-11-20Fixed #842 -- 500 error view no longer breaks for local variable named 'items...Adrian Holovaty
2005-11-17Fixed #825; thanks for the suggestions, aaronswJacob Kaplan-Moss
2005-11-17Fixed #823 - cleaned up invalid HTML in debug error template. Thanks, SuneJacob Kaplan-Moss
2005-11-17Fixed #822 -- Changed 500 view to use disclosure triangles instead of up/down...Adrian Holovaty
2005-11-15Added django.views.generic.simple.redirect_to view for issuing simple redirec...Jacob Kaplan-Moss
2005-11-15Added django.views.generic.simple.direct_to_template which renders a given te...Jacob Kaplan-Moss
2005-11-15Fixed #799: any setting with "SECRET" or "PASSWORD" in the name is escaped in...Jacob Kaplan-Moss
2005-11-14Added NOINDEX tag to debug 500 page (for robots)Jacob Kaplan-Moss
2005-11-14Added "pretty" error pages to be used when DEBUG is True.Jacob Kaplan-Moss
2005-11-12Completely refactored legacy RSS framework to the new django.contrib.syndicat...Adrian Holovaty
2005-11-11BACKWARDS-INCOMPATIBLE CHANGE -- Moved flatpages and redirects to standalone ...Adrian Holovaty
2005-11-09Added django.core.rss.Feed -- the new RSS interface. Refs #329.Adrian Holovaty
2005-11-06Small docstring change to django.views.staticAdrian Holovaty
2005-11-04Merged i18n branch into the trunk! Fixes #65, and perhaps some others. NB: th...Jacob Kaplan-Moss
2005-10-29Fixed #612 - added cache control headers (thanks, hugo)Jacob Kaplan-Moss
2005-10-28Fixed #703: added decorators to require that view be called with a given HTTP...Jacob Kaplan-Moss
2005-10-26Fixed shortcut redirect handlerJacob Kaplan-Moss
2005-10-23Fixed #684 -- Fixed login_required and user_passes_test decorators. Thanks, r...Adrian Holovaty
2005-10-22Added django.views.decorators.auth.user_passes_test, which is a more generic ...Adrian Holovaty
2005-10-18Removed django.views.admin. Everything has been moved to django.contrib.admin...Adrian Holovaty
2005-10-18Moved views.admin.main to contrib.admin.views.main. Refs #627. Note that this...Adrian Holovaty
2005-10-18Moved django.views.admin.template and django.views.admin.doc to django.contri...Adrian Holovaty
2005-10-18Changed django.views.admin.doc to use template.loader instead of template_loaderAdrian Holovaty
2005-10-17Fixed #634 -- Changed shortcut view to accept get_absolute_url()s that return...Adrian Holovaty
2005-10-14Fixed #626 -- Moved template modules to django.core.template package. django....Adrian Holovaty
2005-10-10Updated docs to reflect changes in [824]Jacob Kaplan-Moss
2005-10-10Fixed #604 - total number of objects in generic object_list view is now avail...Jacob Kaplan-Moss
2005-10-09Fixed #580 -- Added mega support for generating Vary headers, including some ...Adrian Holovaty
2005-10-09Moved vary decorators from django.utils.cache to django.views.decorators.varyAdrian Holovaty
2005-10-08Fixed #374 -- Filtering by BooleanField now works in admin with SQLite. Thank...Adrian Holovaty
2005-10-06Fixed #333 and #440 -- Split DEFAULT_MIME_TYPE setting into DEFAULT_CONTENT_T...Adrian Holovaty
2005-10-06Fixed #586 -- raw_id_admin now works with non-integer primary keysAdrian Holovaty
2005-09-29Fixed #541 - generic views now may take a {{{template_loader}}} argument so t...Jacob Kaplan-Moss
2005-09-29Fixed #576 - popups no longer show "save & continue" buttons. Thanks, Hein-P...Jacob Kaplan-Moss
2005-09-29Fixed #573 -- Added 'Add another' link to many-to-many fields in admin. Thank...Adrian Holovaty
2005-09-26Fixed type in static view URL pattern example (refs #428)Jacob Kaplan-Moss
2005-09-25Fixed #469 -- Admin changelist no longer assumes ForeignKey has 'ordering' se...Adrian Holovaty
2005-09-25Fixed #428 -- added a "static pages" view. Note that this view should only b...Jacob Kaplan-Moss
2005-09-23Made a small improvement to django.views.core.flatfiles so that it only uses ...Adrian Holovaty
2005-09-23Changed django.views.core.flatfiles to use get_object_or_404Adrian Holovaty
2005-09-23Changed django.views.admin.template to use render_to_response, to cut on codeAdrian Holovaty
2005-09-23Changed django.views.admin.main to use get_object_or_404 and render_to_respon...Adrian Holovaty
2005-09-23Fixed #333 -- Added DEFAULT_MIME_TYPE setting, and set it to 'text/html; char...Adrian Holovaty
2005-09-23Added request.session.delete_test_cookie()Adrian Holovaty
2005-09-22Converted load_and_render() calls to render_to_response() because of [664].Adrian Holovaty
2005-09-22Converted django.views.admin.doc to use load_and_renderAdrian Holovaty