summaryrefslogtreecommitdiff
path: root/django/views
Commit message (Expand)AuthorAgeFilesLines
* per-object-permissions: Merged to trunk [5486] NOTE: Not fully tested, will b...Christopher Long2007-06-178-45/+84
* per-object-permissions: Merged to trunk [4241]Adrian Holovaty2006-12-272-4/+4
* per-object-permissions: Merged to trunk [4095]Adrian Holovaty2006-11-242-4/+10
* [per-object-permissions] Merged to trunk [3938]Christopher Long2006-10-272-4/+4
* [per-object-permissions] Merged to trunk [3731]Christopher Long2006-09-072-12/+12
* [per-object-permissions] Merged to trunk 3666Christopher Long2006-08-281-6/+9
* [per-object-permissions] Merged to revision 3582Christopher Long2006-08-141-3/+4
* [per-object-permissions] Update to trunkChristopher Long2006-07-275-32/+46
* Optimized JavaScript in django/views/i18n.pyAdrian Holovaty2006-07-011-50/+22
* Added USE_I18N setting, which lets you turn off internationalization overhead...Adrian Holovaty2006-07-011-1/+7
* Changed default 500 view NOT to use RequestContext, to lessen the chance that...Adrian Holovaty2006-06-221-2/+2
* Fixed #688 -- Changed default 404 and 500 views to use RequestContextAdrian Holovaty2006-06-201-3/+3
* Converted request.META['REQUEST_METHOD'] calls to request.method, throughout ...Adrian Holovaty2006-06-202-5/+4
* Fixed #2185 -- Changed django.views.decorators.http.require_http_methods deco...Adrian Holovaty2006-06-201-6/+6
* Fixed #2153 -- display debugging template even if no stack frame is found.Malcolm Tredinnick2006-06-141-0/+6
* Fixed #2147: file uploads within the update_object generic view now works. T...Jacob Kaplan-Moss2006-06-131-0/+2
* Fixed #2075 -- Added 'page' parameter to object_list generic view. Thanks, ka...Adrian Holovaty2006-06-031-3/+4
* Eliminated lots of mutable default arguments (since they are bugsLuke Plant2006-06-033-11/+22
* Fixed #697 -- Added make_object_list parameter to archive_year generic view. ...Adrian Holovaty2006-06-011-1/+10
* Fixed #2000 -- Added 'mimetype' parameter to generic views. Thanks, Ian HolsmanAdrian Holovaty2006-05-312-16/+20
* Negligible code cleanup for the sake of clarity.Luke Plant2006-05-231-1/+1
* Fixed #1931 -- update_object generic view no longer assumes the object's get_...Adrian Holovaty2006-05-221-1/+1
* Fixed #1785 -- debug view no longer assumes _get_lines_from_file returns None...Adrian Holovaty2006-05-061-12/+13
* Made QuerySet slicing return IndexError instead of DoesNotExist (and related ...Luke Plant2006-05-061-1/+1
* Fixed #1059 -- Fixed off-by-one line number in heading of debug error pages.Adrian Holovaty2006-05-021-6/+6
* MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty2006-05-0215-363/+253
* Fixed #1557 in trunkAdrian Holovaty2006-03-301-2/+2
* Fixed #1457 -- Added support for if-modified-since header in django.views.sta...Adrian Holovaty2006-03-031-7/+47
* Fixed #1399 -- Added template_object_name hook to generic views. Thanks, Chao...Adrian Holovaty2006-03-013-15/+16
* Fixed #1420 -- Added copy-and-paste (pastebin-friendly) toggle for debug view...Adrian Holovaty2006-02-281-39/+71
* Fixed #1033 -- pagination in object_list generic views now use 1-indexed page...Jacob Kaplan-Moss2006-02-271-8/+8
* Fixed #1059 -- Fixed line numbers off-by-one error in debug outputAdrian Holovaty2006-02-271-3/+3
* Fixed #1229 -- Added allow_empty argument to archive_year and archive_month d...Adrian Holovaty2006-02-181-4/+5
* Fixed #1302 -- Added next_month and previous_month to template context in arc...Adrian Holovaty2006-02-171-1/+7
* Fixed #1366 -- Static-file view now escapes file names. Thanks, Kieran HollandAdrian Holovaty2006-02-171-3/+3
* Fixed a bunch of errors detected by pychecker -- unneeded imports and shadows...Adrian Holovaty2006-01-192-8/+5
* Changed debug error view to escape the exception value, so that values in ang...Adrian Holovaty2006-01-051-1/+1
* Fixed #1117 -- Added HttpResponsePermanentRedirectAdrian Holovaty2006-01-031-10/+10
* Fixed #925 -- Added TEMPLATE_CONTEXT_PROCESSORS, which lets you specify proce...Adrian Holovaty2005-12-243-56/+55
* Fixed #1041 -- Generic views no longer use deprecated template_loader. Thanks...Adrian Holovaty2005-12-163-13/+14
* Removed django/views/rss, which was emptyAdrian Holovaty2005-12-151-0/+0
* Removed django/views/core, which was emptyAdrian Holovaty2005-12-151-0/+0
* Fixed #998 -- Fixed edge-case bug in debug view for templates with only one l...Adrian Holovaty2005-12-091-0/+1
* Fixed #992 -- Fixed bug in archive_month generic view leaving out the last da...Adrian Holovaty2005-12-091-8/+4
* Added 'It worked' page, in a empty_urlconf() view in views/debug.py. It's cal...Adrian Holovaty2005-12-071-36/+88
* fix for a problem with djangojs missing for some languages. Thx OlivierGeorg Bauer2005-12-061-10/+17
* Debug 400 page now displays special error message if your URLconf is empty.Adrian Holovaty2005-12-061-11/+21
* limit packages in javascript_catalog to settings.INSTALLED_APPS and 'django.c...Georg Bauer2005-12-041-0/+1
* added infrastructure code for later javascript translating (currently not act...Georg Bauer2005-12-041-1/+168
* Fixed #816 -- FileFields now work in the create_update generic view. Thanks, ...Adrian Holovaty2005-12-011-27/+30