| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-20 | Fixed #16905 -- Added extensible checks (nee validation) framework | Russell Keith-Magee | |
| This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844. | |||
| 2014-01-11 | Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeField | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2014-01-11 | Fixed #21752 -- Prevented custom widget step attribute to be overwritten | Claude Paroz | |
| Thanks orcein at gmail.com for the report. | |||
| 2014-01-10 | Fixed docstring typo in django/forms/forms.py. | Marc Sibson | |
| 2013-12-18 | Refs #17413 -- Added isinstance backward compatibility on ErrorList. | Loic Bistuer | |
| 2013-12-16 | Removed duplicated `TimeField` in __all__. | Artur Barseghyan | |
| 2013-12-16 | Fixed #17413 -- Serialization of form errors along with all metadata. | Loic Bistuer | |
| 2013-12-14 | Fixed E127 pep8 warnings. | Loic Bistuer | |
| 2013-12-10 | Fixed E124 pep8 warnings. | Loic Bistuer | |
| 2013-12-07 | Fixed #21568 -- Added missing ModelMultipleChoiceField to_python method | Claude Paroz | |
| Thanks dibrovsd at gmail.com for the report and Simon Charette for the review. | |||
| 2013-11-30 | Fixed #20867 -- Added the Form.add_error() method. | Loic Bistuer | |
| Refs #20199 #16986. Thanks @akaariai, @bmispelon, @mjtamlyn, @timgraham for the reviews. | |||
| 2013-11-28 | Fixed E125 pep8 warnings | Christopher Medrela | |
| 2013-11-25 | Fixed #21489 -- Make formsets directly importable from django.forms. | Loic Bistuer | |
| 2013-11-20 | Fixed #21472 -- Fixed inline formsets display when parent pk is 0 | Claude Paroz | |
| Thanks agale031176@gmail.com for the report. | |||
| 2013-11-18 | Fixed #21397 -- Re-added flexibility to TypedChoiceField coercion | Claude Paroz | |
| Thanks Elec for the report and Simon Charette for the review. | |||
| 2013-11-16 | Fixed a regression caused by fix for #21428 | Anssi Kääriäinen | |
| On Python 3 sorting Fields mixed with GenericForeignKeys doesn't work as GenericForeignKey isn't a subclass of django.db.models.fields.Field. Refs #21428. | |||
| 2013-11-16 | Fixed #21428 -- editable GenericRelation regression | Anssi Kääriäinen | |
| The GenericRelation refactoring removed GenericRelations from model._meta.many_to_many. This had the side effect of disallowing editable GenericRelations in ModelForms. Editable GenericRelations aren't officially supported, but if we don't fix this we don't offer any upgrade path for those who used the ability to set editable=True in GenericRelation subclass. Thanks to Trac alias joshcartme for the report and stephencmd and Loic for working on this issue. | |||
| 2013-11-11 | Fixed #21423 -- Fixed typo in widgets.py. | Baptiste Mispelon | |
| 2013-11-08 | Fixed #13970 -- Made SelectDateWidget use the standard widget is_required ↵ | Claude Paroz | |
| attribute Thanks mitar for the report and Tim Graham for the review. | |||
| 2013-11-03 | Fixed all E226 violations | Alex Gaynor | |
| 2013-11-03 | Merge pull request #1852 from jasonamyers/cleanup/PEP8 | Alex Gaynor | |
| Cleanup/pep8 tests | |||
| 2013-11-03 | Merge pull request #1861 from milmazz/E251 | Alex Gaynor | |
| Fixed flake8 E251 violations | |||
| 2013-11-03 | Merging in master | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-03 | Fixed #20849 -- ModelForms do not work well with prefetch_related. | Jim Bailey | |
| model_to_dict() (used when rendering forms) queries the database to get the list of primary keys for ManyToMany fields. This is unnecessary if the field queryset has been prefetched, all the keys are already in memory and can be obtained with a simple iteration. | |||
| 2013-11-03 | Fixed flake8 E251 violations | Milton Mazzarri | |
| 2013-11-02 | Fixing E302 Errors | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | Fixed the remaining E302 violations int eh django package | Alex Gaynor | |
| 2013-11-02 | More attacking E302 violators | Alex Gaynor | |
| 2013-11-02 | Fixed flake8 E241 | Boryslav Larin | |
| 2013-11-02 | Merge pull request #1848 from rayashmanjr/master | Alex Gaynor | |
| Correct flake8 violation E261 | |||
| 2013-11-02 | Correct flake8 violation E261 | Ray Ashman Jr | |
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-10-30 | Fixed #14877 -- repeated deletion using formsets | Anssi Kääriäinen | |
| When a formset contained deletion for an existing instance, and the instance was already deleted, django threw an exception. A common cause for this was resubmit of the formset. Original patch by Trac alias olau. In addition this commit cleaned some code in _construct_form(). This was needed as the primary key value the user submitted wasn't converted correctly to python value in case the primary key field was also a related field. | |||
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-26 | Fixed up some more flake8 violations (this particular violation still has ↵ | Alex Gaynor | |
| many occurrences in the tests/ dir so it can't be removed from setup.cfg yet) | |||
| 2013-10-24 | Start attacking E231 violations | Alex Gaynor | |
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-23 | Fixed E225 pep8 warnings. | Tim Graham | |
| 2013-10-22 | Removed import * in tests. | Tim Graham | |
| Thanks to flake8 path/to/file.py | awk -F ' ' '{ print $5 }' | sort | uniq | |||
| 2013-10-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21287 -- Fixed E123 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21268 -- Fixed E303 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21270 -- Fixed E701 pep8 warnings | Alasdair Nicol | |
| 2013-10-14 | Fixed #8620 -- Updated the Form metaclass to support excluding fields by ↵ | Loic Bistuer | |
| shadowing them. | |||
| 2013-10-14 | Fixed #19617 -- Refactored Form metaclasses to support more inheritance ↵ | Loic Bistuer | |
| scenarios. Thanks apollo13, funkybob and mjtamlyn for the reviews. | |||
| 2013-10-12 | Fixed #21173 -- Stopped fixing format for date-based widgets at init time | Claude Paroz | |
| Thanks Marc Tamlyn for the review. | |||
| 2013-10-11 | Fixed assorted flake8 errors. | Tim Graham | |
| 2013-10-10 | Used "is" for comparisons with None. | Tim Graham | |
| 2013-09-28 | Fixed #20931 -- Fixed select widgets nested choice rendering | Christopher Babiak | |
| ChoiceFieldRenderer was not rendering nested choices. Added recursion to ChoiceFieldRenderer to take nested choices and render them as <ul>'s. | |||
| 2013-09-28 | Fixed #20439 -- Started deprecation of IPAddressField | Erik Romijn | |
