summaryrefslogtreecommitdiff
path: root/django/db/models/fields/__init__.py
AgeCommit message (Expand)Author
2013-10-13[1.6.x] Fixed #19560 -- Identified field in warning for naive datetime.Aymeric Augustin
2013-08-30[1.6.x] Fixed #20999 - Allow overriding formfield class with choices, without...Carl Meyer
2013-08-29[1.6.x] Fixed #14786 -- Fixed get_db_prep_lookup calling get_prep_value twice...Tim Graham
2013-07-12[1.6.x] Fixed backport of #20740Tim Graham
2013-07-12[1.6.x] Fixed #20740 -- GenericIPAddressField should pass protocol to formfie...Tim Graham
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ...Loic Bistuer
2013-06-18Refactored ValidationError to allow persisting error params and error codes a...Loic Bistuer
2013-06-13Fixed #20594 -- Add validation to models.SlugField.Baptiste Mispelon
2013-05-20Fixed #20378 -- regression in GenericRelation on abstract modelAnssi Kääriäinen
2013-05-17Replaced an antiquated pattern.Aymeric Augustin
2013-03-24Fixed #19385 again, now with real code changesAnssi Kääriäinen
2013-03-24Fixed #15124 -- Changed the default for BooleanField.Aymeric Augustin
2013-03-22Fixed #20094 - Be more careful when checking for IteratorMarc Tamlyn
2013-03-17Fixed #19635 -- Made fields pickleableAnssi Kääriäinen
2013-03-17Merge pull request #902 from evildmp/BLANK_CHOICE_NONEAymeric Augustin
2013-03-13removed unused BLANK_CHOICE_NONEDaniele Procida
2013-03-12Fixed #19964 -- Removed relabel_aliases from some structsAnssi Kääriäinen
2013-03-06Fixed #19989 -- Suppressed UnicodeWarning during BinaryField validationClaude Paroz
2013-03-02Added support for serializing BinaryFieldClaude Paroz
2013-03-02Add a BinaryField model fieldClaude Paroz
2013-02-25Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
2013-02-23Proposed fix for #18162.Tomek Paczkowski
2013-02-16Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin
2012-09-26Fixed #17899 -- Rewrote [Ee]-mail to [Ee]mailAdrien Lemaire
2012-09-01Fixed #18212 -- Standardized arguments of GenericIPAddressFieldClaude Paroz
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-08[py3] Fixed a loop that changed dictionary size.Aymeric Augustin
2012-08-07[py3] Applied minor fixes so the test suite startsAymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-06Fixed #18724 -- Fixed IntegerField validation with value 0Brendan MacDonell
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