summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
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
2011-02-21Fixed #14099 - BaseModelFormSet should use _should_delete_formLuke Plant
2011-02-19Fixed #9161 -- Ensure that ModelMultipleChoiceField respects to_field_name in...Russell Keith-Magee
2011-02-09Fixed #15182 - Fixed a security issue with ClearableFileInput. Disclosure and...Carl Meyer
2011-02-08Fixed #10573 -- Corrected autofocus problem in admin when the first widget di...Russell Keith-Magee
2011-02-05Fixed #15226 - Made SelectDateWidget render the label tag associated with the...Ramiro Morales
2011-02-05Fixed #14984 -- Ensure that ClearableFileInput produces XHTML Strict output. ...Russell Keith-Magee
2011-02-05Fixed #15167 -- Ensure that non-form errors are always part of an ErrorList. ...Russell Keith-Magee
2011-02-04Fixed #13968 -- Fixed SelectDateWidget processing of an invalid date input va...Ramiro Morales
2011-01-25Fixed #14938 - Fixed save-as-new on inline formset with new forms.Carl Meyer
2011-01-25Removed dead code in modelforms.Carl Meyer
2011-01-25Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no...Carl Meyer