| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-23 | Fixed #25410 -- Fixed empty ClearableFileInput crash on Python 2. | Tim Graham | |
| Reverted "Fixes #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2" and added a regression test. This reverts commit 5c412dd8a724b263489c1bd7a2fea381460665d7. | |||
| 2015-07-15 | Fixed #25124 -- Eased customization of SelectDateWidget subwidget. | George Brocklehurst | |
| 2015-07-14 | Fixed #25085 -- Overrode Select widget's __deepcopy__() | Eric Carrillo | |
| 2015-06-11 | Allowed easier extendability of ChoiceFieldRenderer. | TMFGravyHands | |
| 2015-05-13 | Removed unnecessary arguments in .get method calls | Piotr Jakimiak | |
| 2015-05-06 | Fixed #24497 -- Added Widget.supports_microseconds attribute | wdmgsm | |
| 2015-05-04 | Fixes #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2 | Antonio Garcia-Dominguez | |
| 2015-04-18 | Removed cases of six.iter* wrapped in a list() | Curtis Maloney | |
| There's absolutely no advantage [and a mild performance hit] to using six.iter* in these cases. | |||
| 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-01 | Fixed #17401 -- Made SelectDateWidget.render reflect wrong value | Claude Paroz | |
| Thanks Marcin Wrobel for the initial patch. | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-27 | Fixed #24219 -- Moved SelectDateWidget together with the other widgets | Loic Bistuer | |
| and deprecated django.forms.extras. Thanks Berker Peksag and Tim Graham for the reviews. | |||
| 2015-01-17 | Removed django.utils.datastructures.MergeDict per deprecation timeline; refs ↵ | Tim Graham | |
| #18659. | |||
| 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-10-27 | Removed some commented code in the forms Media class. | Tim Graham | |
| 2014-09-05 | Limited lines to 119 characters in django/ | Tim Graham | |
| refs #23395. | |||
| 2014-08-29 | Fixed #21201 -- Improved customization of ClearableFileInput. | Vlastimil Zíma | |
| 2014-07-28 | Fixed #23113 -- ChoiceInput.render should take specified attrs into account. | Simon Charette | |
| Thanks to Tim Graham for the review. | |||
| 2014-07-05 | Fixed #22950 -- Eased markup customization for choice field rendering | Claude Paroz | |
| Thanks Patrick Robertson for the report. | |||
| 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-03-21 | Removed warning for Widget.is_hidden property. | Tim Graham | |
| refs #22137. | |||
| 2014-03-21 | Removed django.forms.widgets.RadioInput per deprecation timeline. | Tim Graham | |
| refs #4592. | |||
| 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-01 | Fixed #22137 -- Made Widget.is_hidden a read-only property | Claude Paroz | |
| Thanks django at patjack.co.uk for the report and the review. | |||
| 2014-02-27 | Fixed #22136 -- Updated comment for Textarea widget | Claude Paroz | |
| Thanks Aymeric Augustin for the suggestion. | |||
| 2013-12-10 | Fixed E124 pep8 warnings. | Loic Bistuer | |
| 2013-11-11 | Fixed #21423 -- Fixed typo in widgets.py. | Baptiste Mispelon | |
| 2013-11-02 | Fixing E302 Errors | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | More attacking E302 violators | Alex Gaynor | |
| 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-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-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21270 -- Fixed E701 pep8 warnings | Alasdair Nicol | |
| 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-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 #20841 -- Added messages to NotImplementedErrors | Gregor MacGregor | |
| Thanks joseph at vertstudios.com for the suggestion. | |||
| 2013-09-05 | Took advantage of django.utils.six.moves.urllib.*. | Aymeric Augustin | |
| 2013-08-29 | Added SplitHiddenDateTimeWidget to django.forms.widgets.__all__ | Tomer Chachamu | |
| 2013-08-13 | Fixed #20555 -- Make subwidget id attribute available | Matt Johnson | |
| In `BoundField.__iter__`, the widget's id attribute is now passed to each subwidget. A new id_for_label property was added to ChoiceInput. | |||
| 2013-08-05 | Fixed #20850 -- Added MultiWidget.needs_multipart_form | Tim Heap | |
