summaryrefslogtreecommitdiff
path: root/django/db/models/fields/__init__.py
AgeCommit message (Expand)Author
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-06-01Fixed a typo in a comment. Refs #17742.Aymeric Augustin
2012-05-31Fixed #18407 -- Made model field's to_python methods fully accept unicode.Claude Paroz
2012-05-22Replaced 'next' testing by collections.Iterator testing.Claude Paroz
2012-05-07Made model fields comparable to other objectsSimon Charette
2012-05-01Fixed #17742 -- Handled aware datetimes in DateFieldAymeric Augustin
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Prevent Oracle from changing field.null to TrueAnssi Kääriäinen
2012-04-24Fixed #17653 -- Changed MySQL backend to raise a ValueError if zero is used a...Anssi Kääriäinen
2012-04-22Fixed #5893 -- Added a flag to FilePathField to allow listing folders, in add...Alex Gaynor
2012-03-31Removed deprecated URLField.verify_exists.Aymeric Augustin
2012-03-29Fixed #17870 -- Documented that EmailField default max_length of 75 does not ...Claude Paroz
2012-02-09Fixed #17219 -- Updated model field descriptions to be more precise. Thanks, ...Jannis Leidel
2012-01-24Added a missing warning forgotten in r17392.Jannis Leidel
2012-01-24Fixed #17580 -- Made sure datetime.date instances are correctly handled when ...Jannis Leidel
2011-11-25Fixed #17294 -- Supported nullable DateTimeFields when time zone support is e...Aymeric Augustin
2011-11-19Fixed #17263 -- Added a warning when a naive datetime reaches the database la...Aymeric Augustin
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-10-13Fixed #16906 -- Format datetimes with str/unicode instead of strftime where p...Aymeric Augustin
2011-10-13Fixed a couple of `assert` syntax warnings mistakingly introduced in r16966 a...Julien Phalip
2011-10-13Fixed #12467 -- Made the model data validation for `DateField` and `DateTimeF...Julien Phalip
2011-09-10Altered the behavior of URLField to avoid a potential DOS vector, and to avoi...Russell Keith-Magee
2011-08-22Improved error message display during validation errors.Malcolm Tredinnick
2011-08-13Fixed #14695 -- Stopped model fields from incorrectly overwriting the field n...Jannis Leidel
2011-07-29Fixed #16531 -- Fixed various instances of "undefined name" issues. Thanks, B...Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-13Fixed #16246 -- Fixed GenericIPAddressField tests on PostgreSQL.Jannis Leidel
2011-06-13Refs #16234: Avoid GenericIPAddressField clobbering Field default_error_messa...Karen Tracey
2011-06-11Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks t...Jannis Leidel
2011-06-09Fixed #8913 - Make "must be unique" error messages customisable. Thanks to Le...Andrew Godwin
2011-05-03Fixed #5931 -- Added __repr__ to db fields. Thanks, Thomas Güttler, emulbreh...Jannis Leidel
2011-04-02Removed deprecated XMLField.Russell Keith-Magee
2011-03-30Removed deprecated legacy connection handling for `Field.get_db_*`.Alex Gaynor
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-03-03Fixed #3094 -- Accelerated deprecation of XMLField, since it hasn't served an...Russell Keith-Magee
2010-10-09Fixed #11509 -- Modified usage of "Web" to match our style guide in various d...Russell Keith-Magee
2010-10-08Fixed #10970 -- Initialize DateFields with datetime.date objects, not datetim...Jannis Leidel
2010-08-07Fixed #13516 -- Added an internal type definition for AutoFields, so that sub...Russell Keith-Magee
2010-08-05Fixed #13613 -- Ensure that forms.URLField and forms.EmailField are used on a...Russell Keith-Magee
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-21Fixed #13328 -- Ensured that querysets on models with callable defaults can b...Russell Keith-Magee
2010-04-20Fixed #13366 -- Corrected the field __setstate__ method to avoid a race condi...Russell Keith-Magee
2010-04-15Fixed #13328 -- Added a __getstate__/__setstate__ pair to fields so that call...Russell Keith-Magee
2010-03-27Fixed #12769, #12924 -- Corrected the pickling of curried and lazy objects, w...Russell Keith-Magee
2010-03-20Fixed #12239, again: Refined the original fix to avoid the test errors introd...Karen Tracey
2010-03-20Fixed #12239: Fixed results of gte and lt queries when comparing floats to in...Karen Tracey
2010-03-10Forced blank=True for NullBooleanField to allow it to pass model validation w...James Bennett
2010-03-08Fixed #11940 - ModelForm evaluates callable default values on form class crea...Luke Plant
2010-03-07Fixed #12913. Fields with choices now respect show_hidden_initial as a keywor...Joseph Kocherhans