| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2013-07-31 | Fixed #20649 -- Allowed blank field display to be defined in the initial ↵ | Alex Couper | |
| list of choices. | |||
| 2013-07-29 | Removed most of absolute_import imports | Claude Paroz | |
| Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way. | |||
| 2013-06-29 | Advanced deprecation warnings for Django 1.7. | Aymeric Augustin | |
| 2013-06-19 | Removed several unused imports. | Aymeric Augustin | |
| 2013-05-17 | Replaced an antiquated pattern. | Aymeric Augustin | |
| Thanks Lennart Regebro for pointing it out. | |||
| 2013-04-13 | Fixed #4592: Made CheckboxSelectMultiple more like RadioSelect | Baptiste Mispelon | |
| I refactored RadioSelect and CheckboxSelectMultiple to make them inherit from a base class, allowing them to share the behavior of being able to iterate over their subwidgets. Thanks to Matt McClanahan for the initial patch and to Claude Paroz for the review. | |||
| 2013-04-13 | Fixed #4117: Apply id attribute to the outer <ul> of RadioSelect | Baptiste Mispelon | |
| 2013-04-13 | Fixed #19874: Apply id attribute to the outer <ul> of CheckboxSelectMultiple | Baptiste Mispelon | |
| 2013-03-04 | Fixed #19464 -- Eased customization of ClearableFileInput's link markup | Claude Paroz | |
| Thanks rubyruy for the report and the patch. | |||
| 2013-02-23 | Fixed #19686 -- Added HTML5 number input type | Claude Paroz | |
| Thanks Simon Charette for his help on the patch. Refs #16630. | |||
| 2013-01-28 | Added HTML5 url input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-28 | Added HTML5 email input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-25 | Moved has_changed logic from widget to form field | Claude Paroz | |
| Refs #16612. Thanks Aymeric Augustin for the suggestion. | |||
| 2013-01-09 | Fixed #19581 -- ensure unique html ids with CheckboxSelectMultiple widgets | Loic Raucy | |
| ID check is now done the same way as MultipleHiddenInput. | |||
| 2012-12-31 | Fixed #19537 -- Made CheckboxInput._has_changed handle 'False' string | Claude Paroz | |
| Thanks dibrovsd@gmail.com for the report. | |||
| 2012-11-05 | Fixed #8627 -- Prevented textareas to swallow first newline content | Claude Paroz | |
| Browsers consider the first newline in textareas as some display artifact, not real content. Hence they are not sending it back to the server. If we want to keep initial newlines, we have to add one when we render the textarea. Thanks bastih for the report and initial patch. | |||
| 2012-10-26 | Fixed #16820 -- Treated '0' value as True for checkbox inputs | Claude Paroz | |
| Thanks Dan Fairs for the report and the initial patch. | |||
| 2012-09-10 | Document and test 'type' usage in Widget attrs | Claude Paroz | |
| Refs #16630. | |||
| 2012-09-07 | Fixed #17888 -- no longer silence exceptions inside of check_test. Thanks to ↵ | Alex Gaynor | |
| brutasse for the patch. | |||
| 2012-08-18 | Fixed #18791: [py3] Double import of six in django.forms.widgets | Alexey Boriskin | |
| 2012-08-12 | [py3] Refactored __unicode__ to __str__. | Aymeric Augustin | |
| * Renamed the __unicode__ methods * Applied the python_2_unicode_compatible decorator * Removed the StrAndUnicode mix-in that is superseded by python_2_unicode_compatible * Kept the __unicode__ methods in classes that specifically test it under Python 2 | |||
| 2012-08-07 | [py3] Ported django.utils.encoding. | Aymeric Augustin | |
| * Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str. | |||
| 2012-08-07 | [py3] Fixed access to dict keys/values/items. | Aymeric Augustin | |
| 2012-08-06 | Fixed #15754 -- avoid recursively computing the tree of media widgets more ↵ | Alex Gaynor | |
| times than is necessary for a wiget | |||
| 2012-07-22 | [py3] Updated urllib/urllib2/urlparse imports. | Aymeric Augustin | |
| Lots of functions were moved. Use explicit imports in all cases to keey it easy to identify where the functions come from. | |||
| 2012-07-22 | [py3] Replaced basestring by six.string_types. | Aymeric Augustin | |
| 2012-07-22 | [py3] Used six.with_metaclass wherever necessary. | Aymeric Augustin | |
