summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
2010-12-21[1.2.X] Fixed #4976 -- Stopped humanize template tags to raise a TypeError if...Jannis Leidel
2010-12-13[1.2.X] Fixed #14158 -- Fixed SelectMultiple._has_changed to not assume same ...Jannis Leidel
2010-12-13[1.2.X] Fixed #14144 -- Made sure custom validators are called in ModelMultip...Jannis Leidel
2010-12-02[1.2.X] Fixed #8217 -- Correctly sort files in FilePathFields on older Python...Jannis Leidel
2010-11-21Fixes #13804 -- URLField validation failure for a url containing '://' on the...Chris Beaven
2010-11-18[1.2.X] Fixed pk uniqueness validation for new objects created outside of a M...Carl Meyer
2010-11-18[1.2.X] Fixed #14234 -- Re-validating a model instance added via ModelForm no...Carl Meyer
2010-10-13[1.2.X] Changed unique validation in model formsets to ignore None values, no...Honza Král
2010-10-10[1.2.X] Fixed #11907 -- EmailField now runs strip() on its input. This means ...Chris Beaven
2010-09-11[1.2.X] Fixed #13390 -- `SplitDateTimeWidget` now recognizes when it's no lon...Justin Bronn
2010-09-11[1.2.X] Fixed #13149 -- The admin `ForeignKeyRawIdWidget` now properly handle...Justin Bronn
2010-09-10[1.2.X] Fixed #13095 -- `formfield_callback` keyword argument is now more san...Justin Bronn
2010-08-14[1.2.X] Fixed #13679, #13231, #7287 -- Ensured that models that have ForeignK...Russell Keith-Magee
2010-08-05[1.2.X] Fixed #13621 -- Corrected the handling of input formats on date/time ...Russell Keith-Magee
2010-05-23Fixed #13592 -- Make sure the SelectDateWidget works with dates before 1900 w...Jannis Leidel
2010-05-21Fixed #13560 -- Fixed localization of widgets.Jannis Leidel
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-05-03Fixed Python2.4 incompatibility introduced in r13041: datetime.strptime class...Karen Tracey
2010-04-28Fixed #12986 -- Ensured that SelectDateField repopulates correctly when USE_L...Russell Keith-Magee
2010-04-28Fixed #13431 -- Corrected a unicode literal in select widgets. Thanks to gutw...Russell Keith-Magee
2010-04-27Fixed #12749 -- Corrected a problem with validation of inline primary keys. T...Russell Keith-Magee
2010-04-27Fixed #13407 -- Corrected verbose names for autogenerated m2m models, and cle...Russell Keith-Magee
2010-03-31Restored pre-r10062 behavior allowing None from formfield_callback to exclude...Brian Rosner
2010-03-27Fixed #13023 - Removed ambiguity with regard to the max_num option of formset...Jannis Leidel
2010-03-27Fixed #13032 - Added localize parameter to form fields to be able to selecti...Jannis Leidel
2010-03-18Fixed #13138: Ensure required=False on a model form field overrides Karen Tracey
2010-03-16Fixed #12881: Corrected handling of inherited unique constraints. Thanks for ...Karen Tracey
2010-03-16Fixed #12434: Made pretty_name handle empty string and None as input. Thanks ...Karen Tracey
2010-03-12Fixed #11801 -- Corrected form validation to ensure you can still get deleted...Russell Keith-Magee
2010-03-09Fixed #12048 - MultiWidget does not define `__deepcopy__`Luke Plant
2010-03-08Fixed #11183 - BaseForm init leaves pointers pointing back to base_fieldsLuke Plant
2010-03-07Fixed #12858. DateTime related widgets now handle custom formats properly in ...Joseph Kocherhans
2010-03-06Fixed #12960. The return value of ModelForm.clean() is now applied to the mod...Joseph Kocherhans
2010-03-03Expanded the fix in [12663] to cover CSS declarations, which were also affect...James Bennett
2010-03-03Fixed #12879: Declaring the same JS file multiple times in a single Media ins...James Bennett
2010-03-01Fixed #12779 - Sanitize numeric form field input according to decimal and tho...Jannis Leidel
2010-02-25Fixed #12901. Again. Model validation will not be performed on excluded field...Joseph Kocherhans
2010-02-23Fixed #9336. Changed CheckboxInput to render 'True' and 'False' input strings...Joseph Kocherhans
2010-02-23Fixed #12878. Formset-wide errors are now rendered properly as html.Joseph Kocherhans
2010-02-23Fixed #12420. Now that OneToOneField allows assignment of None, stop guarding...Joseph Kocherhans
2010-02-23Fixed a few more spots related to #11859. Thanks, cramm and Alex Gaynor.Joseph Kocherhans
2010-02-23Fixed #12285. ModelForm raises a more informative error if it doesn't have a ...Joseph Kocherhans
2010-02-23Fixed #11860. Changed NullBooleanSelect's _has_changed method to repect diffe...Joseph Kocherhans
2010-02-22Fixed #12901. Exclude overridden form fields from model field validation. Tha...Joseph Kocherhans
2010-02-22Fixed #7777 -- Added validation handling for NaN, Inf and -Inf in DecimalFiel...Russell Keith-Magee
2010-02-14Fixed #6054: work around PIL's installation brokeness by detecting either of ...Jacob Kaplan-Moss
2010-02-10Fixed #12698. Model.clean() used with a ModelForm no longer causes a KeyError...Joseph Kocherhans
2010-02-01Fixed #12692 - Properly handle the extra clause of admin inline formsets. Als...Jannis Leidel
2010-01-26Fixed #12508 - Added ability to dynamically add inlines in the admin app.Jannis Leidel
2010-01-21Fixed #12596. Calling super from a ModelForm's clean method is once again opt...Joseph Kocherhans