summaryrefslogtreecommitdiff
path: root/django/db/models/fields/__init__.py
AgeCommit message (Expand)Author
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
2010-03-06Fixed #13034: Corrected default error message for IntegerField.James Bennett
2010-02-24Fixed #7190. Boolean fields now return bool values instead of 1 or 0. Thanks,...Joseph Kocherhans
2010-02-24Fixed #12546. Objects with a __len__ that returns 0 can now be serialized. Th...Joseph Kocherhans
2010-02-23Fixed a few more spots related to #11859. Thanks, cramm and Alex Gaynor.Joseph Kocherhans
2010-02-02Fixed #12667. Added optgroup validation support to model fields with choices....Joseph Kocherhans
2010-01-09Fixed #10015 -- PostgreSQL 8.3+ no longer barfs when passing an integer as a ...Adrian Holovaty
2010-01-09Fixed #12059 - Let TimeField.to_python correctly return a datetime.time objec...Jannis Leidel
2010-01-05Merged soc2009/model-validation to trunk. Thanks, Honza!Joseph Kocherhans
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss
2009-12-17Fixed #399: Added big integer field. Thanks to Tomáš Kopeček for persisten...Karen Tracey
2009-12-16Fixed #12385: Made built-in field type descriptions in admindocs translatable...Karen Tracey
2009-12-12Fixed #7977: Fixed admindocs to use docstrings instead of a static array to l...Karen Tracey