summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2009-06-08Fixed #11194 -- Corrected loading of Proxy models from fixtures (and, by exte...Russell Keith-Magee
2009-06-08Fixed #10672 -- Altered save_base to ensure that proxy models send a post_sav...Russell Keith-Magee
2009-05-19Fixed #11116 -- Corrected the deletion of proxy objects. Thanks to Samuel Ada...Russell Keith-Magee
2009-05-11Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss
2009-04-04Fixed #10695 -- Fixed implementation of deferred attribute retrieval.Malcolm Tredinnick
2009-03-22Fixed deferred loading of fields with default values.Malcolm Tredinnick
2009-03-20Fixed #2698 -- Fixed deleting in the presence of custom managers.Malcolm Tredinnick
2009-03-20Fixed #10547 -- Worked around some odd behaviour in Python 2.3 and 2.4.Malcolm Tredinnick
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-18Fixed #10356 -- Added pure-Python inheritance for models (a.k.a proxy models).Malcolm Tredinnick
2009-03-15Use plain model.Manager, or suitable proxy, for model saving.Malcolm Tredinnick
2009-03-10Fixed #10443 -- Fixed model attribute updating after r10003.Malcolm Tredinnick
2009-03-09Pass values through get_db_prep_save() in a QuerySet.update() call.Malcolm Tredinnick
2009-03-06Fixed #9649 -- Better error handling in model creation.Malcolm Tredinnick
2009-03-04Made it explicit if you accidentally override a Field from a parent model.Malcolm Tredinnick
2009-03-04Fixed #10406 -- Fixed some problems with model inheritance and pk fields.Malcolm Tredinnick
2008-12-09Fixed #9775 -- Fixed an oversight from r9601 and allow direct attributeMalcolm Tredinnick
2008-12-08The first step in fixing a group of problems related to outputting a properMalcolm Tredinnick
2008-11-16Fixed #9608: Ensured a Model's default repr() is printable even if its __unic...Karen Tracey
2008-09-03Fixed #7588 -- Inherit fields from concrete ancestor classes via abstract baseMalcolm Tredinnick
2008-09-03Fixed #8825 -- Fixed a small error model field setup (on the model class) fromMalcolm Tredinnick
2008-09-02Fixed #8309: subclasses now inherit `GenericForeignKey` correctly. There's al...Jacob Kaplan-Moss
2008-09-02Fixed #7154 -- Inherit all model managers from abstract base classes.Malcolm Tredinnick
2008-08-28Removed a couple of unused imports.Malcolm Tredinnick
2008-08-27Removed oldforms, validators, and related code:Gary Wilson Jr
2008-08-14Fixed #8206 -- Removed validate methods of Model and Model fields. They are a...Gary Wilson Jr
2008-08-10Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr
2008-08-09Added the ability to force an SQL insert (or force an update) via a model'sMalcolm Tredinnick
2008-08-08File storage refactoring, adding far more flexibility to Django's file handli...Jacob Kaplan-Moss
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-08-05Fixed #7683: Try not to delete uploaded files before moving them, and don't w...Jacob Kaplan-Moss
2008-08-01Fixed #8070 -- Cache related objects passed to Model init as keyword argument...Gary Wilson Jr
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-20Fixed #6450 -- Improved the checking of errors when creating the directories ...Russell Keith-Magee
2008-07-19Reverted [7986].Malcolm Tredinnick
2008-07-19Fixed #5619 -- Return the same path in get_FOO_filename() before and after aMalcolm Tredinnick
2008-07-19Fixed #4412 -- Added support for optgroups, both in the model when defining c...Russell Keith-Magee
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-07-18Fixed #7816 -- Fixed error in a few DeprecationWarnings. Thanks, leahculverAdrian Holovaty
2008-07-08Fixed a couple typos as well as several minor style issues.Gary Wilson Jr
2008-07-07Fixed #7614: the quickening has come, and there now is only one UploadedFile....Jacob Kaplan-Moss
2008-07-06Fixed #7621 -- Enable superclassing of the various metaclasses we use.Malcolm Tredinnick
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss
2008-06-30Fixed #7156 -- Normalise file paths before returning them in models.Malcolm Tredinnick
2008-06-29Fixed #7276 -- Delete multi-table objects correctly.Malcolm Tredinnick
2008-06-29Moved the settings of db_table to Options.contribute_to_class().Malcolm Tredinnick
2008-06-21Fixed bug with Model.delete() which did not always delete objects in the righ...Luke Plant
2008-06-21Removed some unnecessary work in Model._collect_sub_objects()Luke Plant
2008-06-09Fixed #7350, #7202 -- Fixed serialization for multi-model inheritance, which ...Russell Keith-Magee