summaryrefslogtreecommitdiff
path: root/django/views
AgeCommit message (Expand)Author
2007-09-15Changed set_language() redirect view to check POST data for 'next'. Thanks, m...Adrian Holovaty
2007-09-15Fixed #5468 -- Fixed the handling of the context argument in direct_to_templa...Russell Keith-Magee
2007-09-14Fixed #3651 -- Changed set_language_view() to require POST request is used, i...Malcolm Tredinnick
2007-09-14Fixed #3895 -- Added ability to customize the context variable in the archive...Russell Keith-Magee
2007-09-14Fixed #4919 -- Added 'last' marker on paginators. Thanks to patrick@vonautoma...Russell Keith-Magee
2007-09-14Fixed #1795 -- Added page_range to paginators in generic list views. Thanks t...Russell Keith-Magee
2007-09-07Changed imports to adhere to PEP 8.Gary Wilson Jr
2007-09-07Fixed #3134 -- Made the `archive_year` generic view consistent with the other...Gary Wilson Jr
2007-08-12Fixed #5085 -- In generic views, set the default name for the slug field to '...Malcolm Tredinnick
2007-08-12Fixed #5046 -- Added 'Unicode error hint' section to debug page in the case o...Adrian Holovaty
2007-08-11Fixed #4414 -- Fixed Javascript message translation to also work when there i...Malcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-07-03Fixed #4685 -- 'View on site' now works for https URLs. Thanks, cbrand@redbac...Adrian Holovaty
2007-06-22Backed out the changes in [5482] for a bit whilst some more investigation intoMalcolm Tredinnick
2007-06-17Fixed #4565 -- Changed template rendering to use iterators, rather thanMalcolm Tredinnick
2007-06-10Fixed #4335 -- Added Python executable binary path and version to debug output.Malcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-04-21Fixed #3734 -- Added support for import hooks to the debugging tracebackMalcolm Tredinnick
2007-04-09Fixed #3034 -- Added mimetype parameter to the direct_to_template() genericMalcolm Tredinnick
2007-04-09Fixed #3942 -- Fixed potential confusion on debug 404 page by stripping initi...Adrian Holovaty
2007-03-12Fixed #3640 -- Improved error handling in views.i18n.set_language(). ThanksMalcolm Tredinnick
2007-02-26Added a comment to the 404/500 views so that people with DEBUG=False and no 4...Jacob Kaplan-Moss
2007-02-26Fixed #3170: added first_on_page and last_on_page arguments to paginated gene...Jacob Kaplan-Moss
2006-12-15Copied django.forms to django.oldforms and changed all code to reference djan...Adrian Holovaty
2006-11-27Fixed #3072 -- Fixed docstring in object_detail() generic view. Thanks, Matt ...Adrian Holovaty
2006-10-30Fixed #2968 -- Changed arguments to __import__ to use empty dictionary instea...Adrian Holovaty
2006-10-30Fixes #2966 -- Added extra_context parameter to direct_to_template generic vi...Russell Keith-Magee
2006-10-30Fixes #2964 -- Fixed typo in regex in docstring for redirect_to. Thanks, wam-...Russell Keith-Magee
2006-09-26Fixed #2362 -- Corrected the way we retrieve an object so that it works forMalcolm Tredinnick
2006-09-24Avoid displaying the profanities list in the debug output. Makes it a bit moreMalcolm Tredinnick
2006-09-05Added some escaping of request.path to django/views/debug.py. Thanks, Simon G...Adrian Holovaty
2006-09-04Changed template names from [3707] to remove initial caps, to fit our style.Adrian Holovaty
2006-09-02Refs #2333 - Re-added the template rendering signal for testing purposes; how...Russell Keith-Magee
2006-08-27Reverted [3659], the 'name' field on Template objects and the signal emitted ...Adrian Holovaty
2006-08-27Refs #2333 - Added a signal that is emitted whenever a template is rendered, ...Russell Keith-Magee
2006-08-21Fixed #2471 -- Got date-based generic views working with SQLite DateFields. T...Adrian Holovaty
2006-08-11Fixed #2524 -- Added i18n hooks in create_update generic views. Thanks, mir@n...Adrian Holovaty
2006-07-27Fixed #2433 -- Added allow_future option to date-based generic viewsAdrian Holovaty
2006-07-22Fixed #2399 -- restored HttpResponse (overly enthusiastic pruning in r3414).Malcolm Tredinnick
2006-07-21Second half of little cleanup tweaks suggested by pyflakes.Jacob Kaplan-Moss
2006-07-21Fixed #2092: added a "is_secure()" method to HttpRequest which correctly hand...Jacob Kaplan-Moss
2006-07-19Fixed #2332 -- Introduced is_authenticated() method on User and AnonymousUser...Malcolm Tredinnick
2006-07-01Optimized JavaScript in django/views/i18n.pyAdrian Holovaty
2006-07-01Added USE_I18N setting, which lets you turn off internationalization overhead...Adrian Holovaty
2006-06-22Changed default 500 view NOT to use RequestContext, to lessen the chance that...Adrian Holovaty
2006-06-20Fixed #688 -- Changed default 404 and 500 views to use RequestContextAdrian Holovaty
2006-06-20Converted request.META['REQUEST_METHOD'] calls to request.method, throughout ...Adrian Holovaty
2006-06-20Fixed #2185 -- Changed django.views.decorators.http.require_http_methods deco...Adrian Holovaty
2006-06-14Fixed #2153 -- display debugging template even if no stack frame is found.Malcolm Tredinnick
2006-06-13Fixed #2147: file uploads within the update_object generic view now works. T...Jacob Kaplan-Moss