summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
2012-07-06Fixed #18572 - Python26 string format incompatibilityLuke Plant
2012-07-03Changed a lot of internal code to use 'format_html' where appropriate/possibleLuke Plant
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-31Fixed #18409 -- Made RegexField work with unicode characters.Julien Phalip
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-16Hidden __pycache__ dirs for FilePathField. Refs #17393.Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Fixed #17976 -- Made forms.BooleanField pickleable.Aymeric Augustin
2012-04-22Fixed #5893 -- Added a flag to FilePathField to allow listing folders, in add...Alex Gaynor
2012-04-05Removed pre-2.6 compatibility code in date-based form fields. Refs #9459.Claude Paroz
2012-03-31Removed deprecated URLField.verify_exists.Aymeric Augustin
2012-03-29Fixed #11150 -- Removed dependency on cStringIO in ImageField validation. Tha...Claude Paroz
2012-02-05Made a minor tweak to a doctoring in `django/forms.forms.py` that was missed ...Julien Phalip
2012-02-05Fixed #17493 -- Made `Widget.id_for_label()` consistently be an instance method.Julien Phalip
2012-02-04Fixed #17542 -- Gracefully handle errors when checking if the values of a Sel...Jannis Leidel
2012-02-04Fixed #17594 -- Stopped ModelFormset.save from running a SELECT query by rely...Jannis Leidel
2012-02-04Fixed #14184 -- Enabled running the validators in MultiValueFields. Thanks, p...Jannis Leidel
2012-01-19Clean up the form's code a little bit, to make it more consistantly go throug...Alex Gaynor
2012-01-15Added support for specifying initial values to model formsets and inline form...Ramiro Morales
2011-12-07Changed BoundField.subwidgets() to return SubWidget objects instead of render...Adrian Holovaty
2011-12-07Made BoundFields iterable, so that you can iterate over individual radio butt...Adrian Holovaty
2011-11-21Fixed #17114 -- Handled integer values 0 and 1 for checkboxes like other inte...Aymeric Augustin
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-11-15Fixed #15912 -- Ensured that `forms.CharField.widget_attrs()` always returns ...Julien Phalip
2011-11-13Fixed #17134: Corrected Python 2.5 fallback code for parsing microseconds in ...Karen Tracey
2011-11-12Fixed #17190 -- Ensured that the `NullBooleanSelect` widget's options get laz...Julien Phalip
2011-11-07Fixed #17125 -- Made it possible to change a `RegexField`'s regular expressio...Julien Phalip
2011-11-06Fixed #17165 -- Fixed `SelectDateWidget._has_changed()` to work correctly wit...Julien Phalip
2011-10-28Fixed #17127 -- Made field validators list independent per form instance. Tha...Carl Meyer
2011-10-18Remove comments referencing encryption. Django doesn't do encryption.Paul McMillan
2011-10-18Remove all relative imports. We have always been at war with relative imports.Alex Gaynor
2011-10-17Remove several more relative imports.Alex Gaynor
2011-10-17Remove more relative imports (I will kill them all).Alex Gaynor
2011-10-17remove some relative imports from djangoAlex Gaynor
2011-09-18Fixes #8103 -- Select widget should only allow for one selected optionChris Beaven
2011-09-10Fixed #11404. Added ``FormSet.has_changed``, for consistancy with ``Form.has...Alex Gaynor
2011-09-10Make ``Formset.__getitem__`` O(1), rather than O(n). If you override ``__ite...Alex Gaynor
2011-09-10Fixed #15722: ensure formsets evaluate to True even if they have no forms. Th...Karen Tracey
2011-09-09Fixes #16664 -- URLField's to_python method fails with ValueError on some url...Chris Beaven
2011-09-09Fix and test for cleaning a non-string value in a URLFieldChris Beaven
2011-08-23Fixed #15315 -- Added support for the 'widget' argument to modelform_factory....Russell Keith-Magee
2011-08-12Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-26Fixed #16230 -- Correctly escape errors message passed to ErrorDict. Thanks, ...Jannis Leidel
2011-06-26Fixed #16272 -- Removed stale format class attributes of date-related widgets...Jannis Leidel
2011-06-16Fixed #15127 -- Properly copy the choices of choice fields. Thanks, dready an...Jannis Leidel
2011-06-13Fixed #16246 -- Fixed GenericIPAddressField tests on PostgreSQL.Jannis Leidel
2011-06-11Minor cosmetic cleanup for r16347.Jannis Leidel
2011-06-11Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks t...Jannis Leidel