Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/views/generic
Commit message (Collapse)AuthorAgeFilesLines
* Fixed "URLconf" spelling in code comments.Tim Graham2015-10-221-1/+1
|
* Refs #23656 -- Required FormMixin.get_form() form_class ↵Tim Graham2015-09-241-27/+1
| | | | | | parameter to be optional. Per deprecation timeline.
* Refs #24133 -- Removed legacy formatting syntax in ↵Tim Graham2015-09-241-25/+2
| | | | | | success_url placeholders. Per deprecation timeline.
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
|
* Sorted imports in __init__.py files.Tim Graham2015-06-271-6/+8
|
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-5/+5
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-131-2/+2
|
* Fixed #24689 -- Fixed DetailView methods with deferred ↵Artis Avotins2015-04-261-2/+7
| | | | QuerySet.
* Fixed #24643 -- Added get_context_data() method to FormMixinAndrei Kulakov2015-04-251-3/+9
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-065-12/+18
|
* Fixed #24263 -- Prevented extra queries on ↵Tim Graham2015-02-031-1/+1
| | | | | | BaseDateDetailView with a custom queryset. Thanks jekka-ua for the report and patch.
* Fixed #24168 -- Allowed selecting a template engine in a ↵Aymeric Augustin2015-02-031-0/+2
| | | | | | | | | | | | few APIs. Specifically in rendering shortcuts, template responses, and class-based views that return template responses. Also added a test for render_to_response(status=...) which was missing from fdbfc980. Thanks Tim and Carl for the review.
* Fixed #24220 - Allowed lazy objects for success_urlTomáš Ehrlich2015-01-261-0/+4
|
* Fixed #24221 - Used precompiled regexp for ↵Tomáš Ehrlich2015-01-261-2/+4
| | | | percent-placeholder matching.
* Changed RedirectView.permanent to False per deprecation ↵Tim Graham2015-01-181-29/+1
| | | | timeline; refs #21587.
* Fixed #24055 -- Keep reference to view class for resolve()Collin Anderson2015-01-171-0/+2
|
* Fixed #24133 -- Replaced formatting syntax in ↵Claude Paroz2015-01-121-2/+19
| | | | | | | success_url placeholders Thanks Laurent Payot for the report, and Markus Holtermann, Tim Graham for the reviews.
* Corrected deprecation warnings for RedirectView; refs ↵Berker Peksag2014-11-281-1/+14
| | | | #21587.
* Fixed #21587 -- Added a warning for changing default of ↵Berker Peksag2014-11-251-2/+16
| | | | RedirectView.permanent.
* Fix another flake8 warning.Carl Meyer2014-11-221-2/+2
| | | | | | I don't agree with flake8 here about the right indentation, but as long as we're using it, we should stick to it. I don't want to disable its hanging indent checks just because of this case.
* Fixed #21753 -- Raised exception when both `form_class` ↵Berker Peksag2014-11-211-0/+4
| | | | and `fields` are specified.
* Fixed #23656 -- Made FormMixin.get_form's form_class ↵Simon Charette2014-10-311-6/+32
| | | | | | argument optional. Thanks Tim Graham for the review.
* Fixed #23482 -- Added SingleObjectMixin.query_pk_and_slugJon Dufresne2014-10-021-2/+3
| | | | | Enabling the attribute causes get_object() to perform its lookup using both the primary key and the slug.
* Limited lines to 119 characters in django/Tim Graham2014-09-051-4/+7
| | | | refs #23395.
* Fixed #18355 -- Added ordering options to list based ↵Peter Harley2014-08-152-6/+24
| | | | | | | | generic views. Added MultipleObjectMixin.ordering and get_ordering(). Refs #21450.
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-262-2/+2
|
* Made ModelForms raise ImproperlyConfigured if the list ↵Tim Graham2014-03-221-6/+4
| | | | | | | | of fields is not specified. Also applies to modelform(set)_factory and generic model views. refs #19733.
* Fixed #21188 -- Introduced subclasses for ↵Claude Paroz2014-03-081-2/+3
| | | | | | | to-be-removed-in-django-XX warnings Thanks Anssi Kääriäinen for the idea and Simon Charette for the review.
* Fixed #22113 -- changed object_name to model_name in CBV ↵Marcin Sokół2014-02-221-1/+1
| | | | | | docs. Thanks to trac user nikunj.sg for the report.
* Fixed #21967: Added check for object in ↵Ryan Kaskel2014-02-091-1/+2
| | | | | | ModelFormMixin.get_form_kwargs. Thanks lagovas.lagovas at gmail.com for the report.
* Fixed typo in docstrings of MonthArchiveViews.Michael Blatherwick2014-01-101-2/+2
|
* Fixed #21564 -- Use local request object when possible ↵Baptiste Mispelon2013-12-161-3/+3
| | | | | | in generic views. Thanks to trac user adepue for the report and original patch.
* Fixed #21619 -- Made SingleObjectMixin.get_object catch ↵Peter Harley2013-12-151-2/+2
| | | | | | a more precise exception. Thanks to Keryn Knight for the report.
* Fixed E125 pep8 warningsChristopher Medrela2013-11-281-1/+1
|
* Fixed flake8 E251 violationsMilton Mazzarri2013-11-031-3/+3
|
* Correct flake8 E302 violationsRay Ashman Jr2013-11-031-0/+1
|
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-0/+8
|
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-212-3/+3
|
* adds fix for SingleObjectTemplateResponseMixin raising a ↵Ian Wilson2013-09-061-22/+28
| | | | TemplateDoesNotExist when it should have raised an ImproperlyConfigured. fixes 16502. by @ianawilson, @jambonrose
* Improved queryset handling and docs for ↵Loic Bistuer2013-08-092-14/+26
| | | | (Single|Multiple)ObjectMixin.
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-1/+1
|
* Fixed #20644 -- Add ModelFormMixin.fields to the CBV ↵Baptiste Mispelon2013-06-241-3/+3
| | | | | | flattened index Thanks to Tim Graham for the report and review.
* Fixed #18872 -- Added prefix to FormMixinGilberto Gonçalves2013-06-221-1/+12
| | | | | Thanks @ibustama for the initial patch and dragonsnaker for opening the report.
* Fixed #15273 -- Extend RedirectView to allow reversal by ↵Marc Tamlyn2013-06-141-6/+14
| | | | | | name. Thanks to @DrMeers for the report and @ludwigkraatz for the initial patch.
* Fixed #20585: normalize signature of DeletionMixin.post.Baptiste Darthenay2013-06-111-2/+2
|
* Fixed #20478 – Added support for HTTP PATCH method in ↵Krzysztof Jurewicz2013-05-221-1/+4
| | | | generic views.
* Fixed #20234 and #20236 -- SingleObjectMixin fixesKarol Sikora2013-05-182-18/+6
| | | | | Added object on SingleObjectMixin returned context, some code clanup.
* Fixed #20235 -- Use self.object_list if object_list not ↵Matthew Somerville2013-05-181-2/+2
| | | | | | | present in get_context_data kwargs. This is so MultipleObjectMixin can be used in the same way as SingleObjectMixin.
* Fixed #19733 - deprecated ModelForms without 'fields' or ↵Luke Plant2013-05-091-1/+10
| | | | | | | | 'exclude', and added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
* Fixed #17260 -- Added time zone aware aggregation and ↵Aymeric Augustin2013-02-161-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | lookups. Thanks Carl Meyer for the review. Squashed commit of the following: commit 4f290bdb60b7d8534abf4ca901bd0844612dcbda Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Wed Feb 13 21:21:30 2013 +0100 Used '0:00' instead of 'UTC' which doesn't always exist in Oracle. Thanks Ian Kelly for the suggestion. commit 01b6366f3ce67d57a58ca8f25e5be77911748638 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Wed Feb 13 13:38:43 2013 +0100 Made tzname a parameter of datetime_extract/trunc_sql. This is required to work around a bug in Oracle. commit 924a144ef8a80ba4daeeafbe9efaa826566e9d02 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Wed Feb 13 14:47:44 2013 +0100 Added support for parameters in SELECT clauses. commit b4351d2890cd1090d3ff2d203fe148937324c935 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Mon Feb 11 22:30:22 2013 +0100 Documented backwards incompatibilities in the two previous commits. commit 91ef84713c81bd455f559dacf790e586d08cacb9 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Mon Feb 11 09:42:31 2013 +0100 Used QuerySet.datetimes for the admin's date_hierarchy. commit 0d0de288a5210fa106cd4350961eb2006535cc5c Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Mon Feb 11 09:29:38 2013 +0100 Used QuerySet.datetimes in date-based generic views. commit 9c0859ff7c0b00734afe7fc15609d43d83215072 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 21:43:25 2013 +0100 Implemented QuerySet.datetimes on Oracle. commit 68ab511a4ffbd2b811bf5da174d47e4dd90f28fc Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 21:43:14 2013 +0100 Implemented QuerySet.datetimes on MySQL. commit 22d52681d347a8cdf568dc31ed032cbc61d049ef Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 21:42:29 2013 +0100 Implemented QuerySet.datetimes on SQLite. commit f6800fd04c93722b45f9236976389e0b2fe436f5 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 21:43:03 2013 +0100 Implemented QuerySet.datetimes on PostgreSQL. commit 0c829c23f4cf4d6804cadcc93032dd4c26b8c65e Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 21:41:08 2013 +0100 Added datetime-handling infrastructure in the ORM layers. commit 104d82a7778cf3f0f5d03dfa53709c26df45daad Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Mon Feb 11 10:05:55 2013 +0100 Updated null_queries tests to avoid clashing with the __second lookup. commit c01bbb32358201b3ac8cb4291ef87b7612a2b8e6 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 23:07:41 2013 +0100 Updated tests of .dates(). Replaced .dates() by .datetimes() for DateTimeFields. Replaced dates with datetimes in the expected output for DateFields. commit 50fb7a52462fecf0127b38e7f3df322aeb287c43 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 21:40:09 2013 +0100 Updated and added tests for QuerySet.datetimes. commit a8451a5004c437190e264667b1e6fb8acc3c1eeb Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 22:34:46 2013 +0100 Documented the new time lookups and updated the date lookups. commit 29413eab2bd1d5e004598900c0dadc0521bbf4d3 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Feb 10 16:15:49 2013 +0100 Documented QuerySet.datetimes and updated QuerySet.dates.