summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
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
2008-05-13Fixed #7212 -- Added `alters_data` attribute to `Model.save_base` method, tha...Gary Wilson Jr
2008-04-29Undo [7474]. I didn't think it through nearly carefully enough.Malcolm Tredinnick
2008-04-27Merged the queryset-refactor branch into trunk.Malcolm Tredinnick
2008-02-19Fixed #2936, #6500 -- Added a __hash__() method to Models (since we implement...Malcolm Tredinnick
2008-02-15Tweaked [7098] to follow a more duck-typing approach.Malcolm Tredinnick
2008-02-13Fixed #6596 -- Corrected minor typo in comment. Thanks, cbmeeks@gmail.com.Russell Keith-Magee
2008-02-08Fixed #6214 -- Added some small optimisations to model class initialisation.Malcolm Tredinnick
2008-02-01Fixed #5422 -- Added a `raw` parameter to model `pre_save` and `post_save` si...Gary Wilson Jr
2007-12-02Fixed #3511 -- Changed QuerySet.get() to return a MultipleObjectsReturned exc...Malcolm Tredinnick
2007-11-29Fixed #3291 -- Allow calling get_absolute_url() with extra positional andMalcolm Tredinnick
2007-09-16Fixed #3703 -- Added pk property to models. Thanks, Collin Grady and jeromie@...Malcolm Tredinnick
2007-09-15Fixed #4879 -- Added 'created' arg to post_save signal. This is True is a new...Malcolm Tredinnick
2007-09-14Fixed #5448: you can now use unicode characters in primary keys. Thanks, pigl...Jacob Kaplan-Moss
2007-09-14Fixed #1760 -- Unwound a subselect in an update for order_with_respect_to han...Malcolm Tredinnick
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-19Refactored get_pk_default_value() to DatabaseOperations.pk_default_value(). R...Adrian Holovaty
2007-08-19Refactored get_last_insert_id() to DatabaseOperations.last_insert_id(). Refs ...Adrian Holovaty
2007-08-19Tweaked the unset primary key check from [5933] to accommodate models created...Malcolm Tredinnick