index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
views
/
generic
/
base.py
Age
Commit message (
Expand
)
Author
2018-12-21
Fixed #29750 -- Added View.setup() hook for class-based views.
François Freitag
2017-11-14
Fixed #28795 -- Removed 'not in' checks and used dict.setdefault().
Дилян Палаузов
2017-07-06
Fixed #28331 -- Added ContextMixin.extra_context to allowing passing context ...
Bruno Alla
2017-03-03
Refs #27656 -- Updated django.views docstring verbs according to PEP 257.
Anton Samarchyan
2017-03-01
Fixed #26911 -- Removed NoReverseMatch silencing in RedirectView.
Grzegorz Tężycki
2017-02-27
Imported django.http classes instead of django.http.
Asif Saifuddin Auvi
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2016-04-08
Fixed E128 flake8 warnings in django/.
Tim Graham
2015-12-31
Fixed #26013 -- Moved django.core.urlresolvers to django.urls.
Marten Kenbeek
2015-10-22
Fixed "URLconf" spelling in code comments.
Tim Graham
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-03
Fixed #24168 -- Allowed selecting a template engine in a few APIs.
Aymeric Augustin
2015-01-18
Changed RedirectView.permanent to False per deprecation timeline; refs #21587.
Tim Graham
2015-01-17
Fixed #24055 -- Keep reference to view class for resolve()
Collin Anderson
2014-11-28
Corrected deprecation warnings for RedirectView; refs #21587.
Berker Peksag
2014-11-25
Fixed #21587 -- Added a warning for changing default of RedirectView.permanent.
Berker Peksag
2013-12-16
Fixed #21564 -- Use local request object when possible in generic views.
Baptiste Mispelon
2013-11-03
Fixed flake8 E251 violations
Milton Mazzarri
2013-06-14
Fixed #15273 -- Extend RedirectView to allow reversal by name.
Marc Tamlyn
2013-05-22
Fixed #20478 – Added support for HTTP PATCH method in generic views.
Krzysztof Jurewicz
2013-01-30
Fixed #19076 -- Added content_type attribute to TemplateView.
Aymeric Augustin
2012-11-22
Fixed #19316 -- Set View args/kwargs/request before dispatch
George Hickman
2012-11-22
Clarified usage of as_view kwargs for setting arguments on class based views
Tim Graham
2012-10-20
Fixed #7581 -- Added streaming responses.
Aymeric Augustin
2012-09-20
Imported getLogger directly from logging module
Claude Paroz
2012-08-18
Fixed #17228 -- params context variable is inconsistent
Marc Tamlyn
2012-08-18
Fixed #16744 -- Class based view should have the view object in the context
Marc Tamlyn
2012-08-07
[py3] Fixed access to dict keys/values/items.
Aymeric Augustin
2012-06-11
Fixed #18451 -- Vastly improved class based view documentation.
Jannis Leidel
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-05-17
Fixed #17449 -- Added OPTIONS to generic views.
Aymeric Augustin
2012-04-06
Fixed #16074 -- Added ContextMixin to class-based generic views to handle get...
Claude Paroz
2012-03-02
Fixed #16842 -- Modified the RedirectView to correctly handle query strings w...
Jannis Leidel
2012-02-18
Prevented the generic views from automatically creating a HEAD method when th...
Aymeric Augustin
2012-02-09
Fixed #17358 -- Updated logging calls to use official syntax for arguments in...
Jannis Leidel
2011-10-06
Fixed #16705 - Made the test client adhere to the WSGI spec -- in particular,...
Aymeric Augustin
2011-07-13
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...
Jannis Leidel
2011-04-26
Fixed a failing test in special_headers, and performed a bit of cleanup.
Alex Gaynor
2011-04-23
Fixed #15688 - Generic views should provide a HEAD implementation
Luke Plant
2011-04-02
Fixed #15739 -- Added support to RedirectView for HEAD, OPTIONS, POST, PUT an...
Russell Keith-Magee
2011-03-28
Removed a bunch more Python 2.4 workarounds now that we don't support that ve...
Adrian Holovaty
2011-02-14
Fixed #15298 -- Raise a better error when a TemplateResponseMixin doesn't hav...
Russell Keith-Magee
2011-01-27
Fixed #15061 -- Removed a redundant method implementation in the class-based ...
Russell Keith-Magee
2010-12-07
Fixed #12815 -- Added TemplateResponse, a lazy-evaluated Response class. Than...
Russell Keith-Magee
2010-11-20
Fixed #14512 -- Added documentation on how to apply decorators to class-based...
Russell Keith-Magee
2010-10-19
Added a logging call on HTTP 405 for class-based views. This is for consisten...
Russell Keith-Magee
2010-10-18
Fixed #6735 -- Added class-based views.
Russell Keith-Magee