summaryrefslogtreecommitdiff
path: root/django/views/generic
AgeCommit message (Expand)Author
2012-04-25Fixed #18033 -- Removed function-based generic views, as per official depreca...Claude Paroz
2012-04-10Fixed #18087 -- Prevented date-based generic views from loading entire tables...Aymeric Augustin
2012-04-06Fixed #16074 -- Added ContextMixin to class-based generic views to handle get...Claude Paroz
2012-03-17Fixed #16138 -- Made FormMixin get_initial return a copy of the 'initial' cla...Claude Paroz
2012-03-02Fixed #16842 -- Modified the RedirectView to correctly handle query strings w...Jannis Leidel
2012-02-18Prevented the generic views from automatically creating a HEAD method when th...Aymeric Augustin
2012-02-09Fixed #17358 -- Updated logging calls to use official syntax for arguments in...Jannis Leidel
2011-12-17Converted some of the built-in views to use content_type instead of mimetype ...Adrian Holovaty
2011-12-17Fixed #17422 -- Changed BaseDetailView to use *args, to be consistent with ot...Adrian Holovaty
2011-11-20Upgraded the date based generic views to avoid warnings when time zone suppor...Aymeric Augustin
2011-10-26Fixed #17111 -- Made the `redirect_to` generic view properly handle query str...Julien Phalip
2011-10-13Fixed #16918 -- Ensured that custom querysets are used when provided to `Base...Julien Phalip
2011-10-06Fixed #16705 - Made the test client adhere to the WSGI spec -- in particular,...Aymeric Augustin
2011-07-29Fixed #16101 -- Added parameters to SingleObjectMixin to override the name of...Jannis Leidel
2011-07-29Fixed #16531 -- Fixed various instances of "undefined name" issues. Thanks, B...Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-10More removal of poorly legible constructs to workaround Python 2.4 shortcomings.Ramiro Morales
2011-04-26Fixed a failing test in special_headers, and performed a bit of cleanup.Alex Gaynor
2011-04-23Fixed #15688 - Generic views should provide a HEAD implementationLuke Plant
2011-04-22Fixed #15698 -- Fixed inconsistant handling of context_object_name in paginat...Jannis Leidel
2011-04-02Fixed #15739 -- Added support to RedirectView for HEAD, OPTIONS, POST, PUT an...Russell Keith-Magee
2011-04-02Advanced deprecations for function-based generic viewsRussell Keith-Magee
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-03-15Fixed #15575 -- Corrected handling of pagination in generic views to match do...Russell Keith-Magee
2011-03-06Fixed #15560 -- Cleaned up some redundant post->put redirections in the class...Russell Keith-Magee
2011-02-26Fixed #15508 -- Corrected a misleading error message in the DetailView generi...Russell Keith-Magee
2011-02-15Fixed #15247 -- Ensured that if a SingleObject view defines get_object but no...Russell Keith-Magee
2011-02-14Fixed #15287 -- Added translation markers to user-facing error messages in cl...Russell Keith-Magee
2011-02-14Fixed #15298 -- Raise a better error when a TemplateResponseMixin doesn't hav...Russell Keith-Magee
2011-02-14Fixed #15272 -- Altered generic views to use the guaranteed untranslated obje...Russell Keith-Magee
2011-02-06Fixed #14711 -- Corrected the calculation for the previous month in generic d...Russell Keith-Magee
2011-01-27Fixed #15061 -- Removed a redundant method implementation in the class-based ...Russell Keith-Magee
2011-01-26Fixed #15052 -- corrected an innacurate docstring in the generic views.Alex Gaynor
2011-01-08Fixed #14995 -- Add FormView import to generic views __init__. Thanks carbonXT.Andrew Godwin
2011-01-08Fixed inconsistency in ListView's pagination (short datasets should also trig...Andrew Godwin
2011-01-03Fixed #14878 -- Clarified the way verbose_name_plural is used in generic list...Russell Keith-Magee
2010-12-10Add FormMixin.get_form_kwargs method to abstract some common logic in a tidierChris Beaven
2010-12-09Fixes #14873 -- A paginated ListView with a List instead of queryset produces...Chris Beaven
2010-12-07Fixed #12815 -- Added TemplateResponse, a lazy-evaluated Response class. Than...Russell Keith-Magee
2010-12-05Fixed #14773 -- Modified MultipleObjectMixin to allow for custom paginators. ...Russell Keith-Magee
2010-12-04Fixed #14797 -- Corrected the handling of get_form_class() when a custom quer...Russell Keith-Magee
2010-12-04Fixed #14803 -- Corrected an inconsistency in redirection handling between ol...Russell Keith-Magee
2010-11-23Fixed #14752 -- Corrected date parsing in WeekArchiveView when using %W as a ...Russell Keith-Magee
2010-11-20Documented migration path for change object_list -> ListView regarding differ...Luke Plant
2010-11-20Fixed #14512 -- Added documentation on how to apply decorators to class-based...Russell Keith-Magee
2010-10-28Fixed #14558 -- Modified the way PUT and DELETE HTTP methods are handled so t...Russell Keith-Magee
2010-10-28Fixed #14554 -- Raise the actual NotImplementedError exception, not the NotIm...Russell Keith-Magee
2010-10-28Fixed #14504 -- Corrected the way object_list is used in ListView to avoid ov...Russell Keith-Magee
2010-10-28Fixed #14568 -- Use keyword rather than positional arguments for form constru...Russell Keith-Magee
2010-10-20Modified the implementation of get_object() to be consistent with the approac...Russell Keith-Magee