summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
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
2011-06-10More removal of poorly legible constructs to workaround Python 2.4 shortcomings.Ramiro Morales
2011-06-09Fixed #9459: forms.HiddenInput and DateTime field loses microseconds. Thanks ...Andrew Godwin
2011-06-07Fixed #14082 -- Use metaclass of provided ModelForm subclass in modelform_fac...Carl Meyer
2011-05-03Fixed #13770 -- Extended BooleanField form field to also clean `u'false'` to ...Jannis Leidel
2011-05-01Replaced old-style with new-style decorator syntax.Jannis Leidel
2011-05-01Fixed #5714 -- Strip whitespaces around date and time form field values befor...Jannis Leidel
2011-04-22Fixed #13584 -- Optionally allow empty files with django.forms.FileField. Tha...Chris Beaven
2011-04-22Fixed #15758 -- Removed stale constants that were missed in r15983.Jannis Leidel
2011-04-22Fixed #6953 -- Correctly sort ManyToMany fields in ModelForms. Thanks, dgould...Jannis Leidel
2011-04-02Removed deprecated en_format helper function.Russell Keith-Magee
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-03-14Importing django.forms no longer requires DJANGO_SETTINGS_MODULE. Moved djang...Adrian Holovaty
2011-02-21Fixed #15349 - Bound FormSet produces bound empty_formLuke Plant