summaryrefslogtreecommitdiff
path: root/django/db/models/fields/related.py
AgeCommit message (Expand)Author
2008-09-03Fixed #8669 -- Use a consistent version of create() across the board forMalcolm Tredinnick
2008-09-01Fixed #8648 -- Admin no longer ignores to_field. Thanks for the help Karen Tr...Brian Rosner
2008-09-01Fixed #8076: fixed `get_(next/previous)_by_date` when used with subclasses. T...Jacob Kaplan-Moss
2008-09-01Fixed #8316 -- Put tighter restrictions on the type of Foreign Key fieldsMalcolm Tredinnick
2008-08-31Fixed handling of primary keys in model formsets. Model formsets should now w...Brian Rosner
2008-08-29Fixed a missing piece of [8721].Malcolm Tredinnick
2008-08-29Fixed #8279 -- Multiple many-to-many relations to "self" are now possible.Malcolm Tredinnick
2008-08-29Fixed #7823 -- Fixed an edge case in RelatedField.get_db_prep_lookup() so thatMalcolm Tredinnick
2008-08-27Removed oldforms, validators, and related code:Gary Wilson Jr
2008-08-26Removed trailing whitespace in a few files.Gary Wilson Jr
2008-08-22Fixed #8046 -- The first filter() call on a related manager for many-to-manyMalcolm Tredinnick
2008-08-22Fixed #7947 -- Handle the display of OneToOneField in model forms correctly. ...Brian Rosner
2008-08-19Fixed #7908: Added validation checks on attempts to create ForeignKey and M2M...Russell Keith-Magee
2008-08-16Fixed #3121 -- Made `get_or_create()` work for `RelatedManager` and `ManyRela...Gary Wilson Jr
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-08-05Fixed #7904: added support for a "use_for_related_fields" property on manager...Jacob Kaplan-Moss
2008-08-02Removed several deprecated features for 1.0 (refs #7830):Gary Wilson Jr
2008-07-29Fixed a subtle bug (really, an inconsistency) in ForeignKey that [8132] expos...Jacob Kaplan-Moss
2008-07-29Fixed #6095 -- Added the ability to specify the model to use to manage a Many...Russell Keith-Magee
2008-07-29Fixed #8011 -- Be careful not to evalute lazy-translated Meta.verbose_nameMalcolm Tredinnick
2008-07-22Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty
2008-07-22Fixed #6755: model inheritance now works in the admin. Thanks, sloonz and Mic...Jacob Kaplan-Moss
2008-07-21FIxed #7666: use a bare queryset when accessing single related objects so tha...Jacob Kaplan-Moss
2008-07-19Fixed #7741: django.newforms is now django.forms. This is obviously a backwar...Jacob Kaplan-Moss
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-06-29Fixed #7378 -- Use the "to_field" where appropriate on reverse relations.Malcolm Tredinnick
2008-06-29Fixed handling of multiple fields in a model pointing to the same related model.Malcolm Tredinnick
2008-06-26Fixed #7215 -- Create correct reverse-relation accessors when using abstract ...Malcolm Tredinnick
2008-06-12Fixed #7026 -- Fixed misleading/incorrect exception text when adding to a man...Adrian Holovaty
2008-06-05Fixed #6886: Tightened up ForeignKey and OneToOne field assignment. Specifica...Jacob Kaplan-Moss
2008-05-29Fixed #7173 -- Corrected the caching of objects in reverse OneToOne relations...Russell Keith-Magee
2008-05-29Fixed #7306 -- Added missing import. Thanks, SmileyChris.Russell Keith-Magee
2008-04-27Merged the queryset-refactor branch into trunk.Malcolm Tredinnick
2008-03-25Fixed #6867 -- Added some missing DeprecationWarnings to db.models.fields.rel...Adrian Holovaty
2008-03-20Fixed #6445 -- Allow model instances to be used as a default for ForeignKeysMalcolm Tredinnick
2008-02-26Beefed up support for "lazy" related objects. Now, in addition to ForeignKey(...Jacob Kaplan-Moss
2007-08-20Removed a bunch of legacy django.db.backend importsAdrian Holovaty
2007-08-20Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty
2007-08-06Fixed #3297 -- Implemented FileField and ImageField for newforms. Thanks to t...Russell Keith-Magee
2007-07-20Added a db_type() method to the database Field class. This is a hook for calc...Adrian Holovaty
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-23Fixed #4607 -- Tweaked checks for features missing in Python 2.3 to not assumeMalcolm Tredinnick
2007-04-28Refactored the formfield() methods on models.fields.Field subclasses slightlyMalcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-02-26Fixed #3581, a small typo in OneToOneField.formfield(). Thanks, Andrew Suther...Jacob Kaplan-Moss
2007-02-20Fixed #3257 -- Added newforms ModelChoiceField and ModelMultipleChoiceField, ...Adrian Holovaty
2007-02-11Revert [4485] in order to fix accidental mod_python breakage. Refs #2920.Malcolm Tredinnick
2007-02-11Refs #2920 -- Replaced implicit uses of _() with explicit imports or calls to...Russell Keith-Magee
2007-01-29Fixed #3389 -- Many-to-many sets can now be assigned with primary key valuesAdrian Holovaty