| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-24 | [1.9.x] Refs #25294 -- Added BoundField import for backwards compatibility. | Moritz Sichert | |
| Backport of a51070e7434426467869147608c5a8ca58e21e00 from master | |||
| 2015-09-16 | Refs #25294 -- Moved BoundField to django.forms.boundfield. | Moritz Sichert | |
| 2015-09-16 | Fixed #25294 -- Allowed custom BoundFields on forms. | Moritz Sichert | |
| 2015-08-21 | Removed BaseForm._raw_value(). | Tim Graham | |
| Unused since efb0100ee67931329f17bc9988ecd5f0619cea14. | |||
| 2015-08-04 | Used @cached_property for BaseForm.changed_data. | Curtis Maloney | |
| 2015-07-16 | Fixed #25078 -- Added support for disabled form fields | Claude Paroz | |
| Thanks Keryn Knight and Tim Graham for the reviews. | |||
| 2015-06-06 | Fixed #12437 -- Added css_classes to Form._html_output() | Markus Amalthea Magnuson | |
| 2015-06-04 | Removed comment from Form.changed_data; refs #24191 | Alasdair Nicol | |
| 2015-05-25 | Fixed #24788 -- Allowed Forms to specify a prefix at the class level. | Paweł Marczewski | |
| 2015-05-06 | Fixed #24497 -- Added Widget.supports_microseconds attribute | wdmgsm | |
| 2015-03-27 | Fixed #24469 -- Refined escaping of Django's form elements in non-Django ↵ | Moritz Sichert | |
| templates. | |||
| 2015-03-18 | Refs #24469 -- Fixed escaping of forms, fields, and media in non-Django ↵ | Moritz Sichert | |
| templates. | |||
| 2015-03-16 | Fixed #5986 -- Added ability to customize order of Form fields | Thomas Tanner | |
| 2015-02-24 | Fixed #24391 -- Made BoundField.value() cache callable values. | Michael Angeletti | |
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-18 | Removed forms.forms.get_declared_fields() per deprecation timeline; refs #19617. | Tim Graham | |
| 2015-01-15 | Fixed #23712 -- Fixed KeyError with BaseForm._html_output() | Yang Liu | |
| 2014-12-03 | Removed redundant numbered parameters from str.format(). | Berker Peksag | |
| Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}". | |||
| 2014-09-05 | Limited lines to 119 characters in django/ | Tim Graham | |
| refs #23395. | |||
| 2014-08-22 | Fixed #23167 -- Added BaseForm.__repr__() | areski | |
| Thanks Keryn Knight for the idea. | |||
| 2014-08-15 | Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed(). | Gabriel Muñumel | |
| 2014-08-04 | Fixed #22745 -- Prevented reevaluation of ModelChoiceField's queryset when ↵ | Vincent-Vega | |
| accesssing BoundField's attrs. Thanks Christian Schmitt for review. | |||
| 2014-08-04 | Corrected a comment in forms/forms.py; refs #16612. | Tim Graham | |
| 2014-08-02 | Fixed two typos in docstrings. | Baptiste Mispelon | |
| 2014-07-05 | Ensured bound field renders as unicode safe data | Claude Paroz | |
| Refs #22950. | |||
| 2014-06-02 | Fixed #11776 -- Added CSS class for non-field/top of form errors. | Nick Presta | |
| Thanks Daniel Pope for the suggestion. | |||
| 2014-05-24 | Fixed #22510 -- Harden field removal to only None. | Marc Tamlyn | |
| Refs #8620. If we allow any value to remove form fields then we get name clashes with method names, media classes etc. There was a backwards incompatibility introduced meaning ModelForm subclasses with declared fields called media or clean would lose those fields. Field removal is now only permitted by using the sentinel value None. The docs have been slightly reworded to refer to removal of fields rather than shadowing. Thanks to gcbirzan for the report and initial patch, and several of the core team for opinions. | |||
| 2014-05-13 | Fixed #22533 -- Added label_suffix parameter to form fields. | Julen Ruiz Aizpuru | |
| Fields can now receive the `label_suffix` attribute, which will override a form's `label_suffix`. This enhances the possibility to customize form's `label_suffix`, allowing to use such customizations while using shortcuts such as `{{ form.as_p }}`. Note that the field's own customization can be overridden at runtime by using the `label_prefix` parameter to `BoundField.label_tag()`. Refs #18134. | |||
| 2014-05-10 | Fixed #22502 -- Fixed microseconds/default/form interaction | Stephen Burrows | |
| Made explicit lack of microsecond handling by built-in datetime form fields. Used that explicitness to appropriately nix microsecond values in bound fields. Thanks Claude Paroz for the review. | |||
| 2014-05-05 | Fixed #22570 -- Made Form.__getitem__ KeyError more descriptive. | Ben Davis | |
| 2014-04-07 | Removed casting to bool just before negation. | Tomasz Wysocki | |
| 2014-03-24 | Fixed #17922 -- Added required_css_class to form label. | Anubhav Joshi | |
| Thanks hanson2010 for the suggestion. | |||
| 2014-03-24 | Fixed #22318 -- Added Form.has_error() to easily check if a given error has ↵ | Loic Bistuer | |
| happened. | |||
| 2014-03-21 | Removed backwards compatibility code to call field.widget._has_changed() | Tim Graham | |
| This logic should be moved to field._has_changed() as described in ebb504db692cac496f4f45762d1d14644c9fa6f - refs #16612. | |||
| 2014-03-08 | Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warnings | Claude Paroz | |
| Thanks Anssi Kääriäinen for the idea and Simon Charette for the review. | |||
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-02-08 | Fixed #16192 -- Made unique error messages in ModelForm customizable. | Loic Bistuer | |
| Overriding the error messages now works for both unique fields, unique_together and unique_for_date. This patch changed the overriding logic to allow customizing NON_FIELD_ERRORS since previously only fields' errors were customizable. Refs #20199. Thanks leahculver for the suggestion. | |||
| 2014-01-10 | Fixed docstring typo in django/forms/forms.py. | Marc Sibson | |
| 2013-12-16 | Fixed #17413 -- Serialization of form errors along with all metadata. | Loic Bistuer | |
| 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-03 | Fixed flake8 E251 violations | Milton Mazzarri | |
| 2013-11-02 | More attacking E302 violators | Alex Gaynor | |
| 2013-11-02 | Correct flake8 violation E261 | Ray Ashman Jr | |
| 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-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-09-21 | Ensured that BoundField.as_widget always returns properly localized fields. | Florian Apolloner | |
| This is a follow-up to #18777 which improperly converted to strings in prepare_value and as such caused regressions like #21074. Refs #18777, #21074 | |||
| 2013-09-16 | Fixed #17627 -- Renamed util.py files to utils.py | Tim Graham | |
| Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor Kołodziej for the initial patch. | |||
| 2013-09-10 | Fixed #5749 -- Added field_name as a key in the _html_output dict | e0ne | |
| Thanks SmileyChris for the suggestion. | |||
| 2013-08-22 | Moved translator comment just above the target string | Claude Paroz | |
