summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2006-06-28Fixed #1754, #2211, #2192 -- allow date filtering comparisons to use strings asMalcolm Tredinnick
2006-06-28Fixed #1812 -- permit apps without models (without disguising other errors).Malcolm Tredinnick
2006-06-28Fixed #2196 -- Fixed AttributeError in method_set_order. Thanks, fonsoAdrian Holovaty
2006-06-27Added {{{Manager.create()}}} method to create and save an object in a single ...Jacob Kaplan-Moss
2006-06-26Fixed another path where imports were creating two instances of a model'sMalcolm Tredinnick
2006-06-26Fixed #1796 -- implemented more robust normalisation for module filenamesMalcolm Tredinnick
2006-06-25Fixed #1796 -- only load a single copy of each model, even when it isMalcolm Tredinnick
2006-06-25Fixes #1812 -- Added model validity checks to ensure that models.py exists, a...Russell Keith-Magee
2006-06-23Fixed #1661 -- Added logic for string-form model references in the 'to' argum...Russell Keith-Magee
2006-06-23Added comments to clarify the string->field name resolution logic.Russell Keith-Magee
2006-06-23Fixed #1662 -- Added resolver for string-form model references for models tha...Russell Keith-Magee
2006-06-21Fixed #2031 -- Don't try to remove microseconds on date objects (only datetime)Malcolm Tredinnick
2006-06-20Fixed #1964 -- Fixed bug in fetching the dimensions of an ImageField. Thanks,...Adrian Holovaty
2006-06-20Fixed #1857 -- Fixed get_previous_by_FIELD and get_next_by_FIELD to workMalcolm Tredinnick
2006-06-19Fixed #1683 -- Permit initialising models using settable properties as well asMalcolm Tredinnick
2006-06-16Fixed typo in docstring in db/transaction.pyAdrian Holovaty
2006-06-16Added generic foreign key support to Django. Much thanks to Ian Holsman and Jacob Kaplan-Moss
2006-06-15Fixed the detection of when a custom manager is required because an 'objects'Malcolm Tredinnick
2006-06-15Fixed #2164 -- Create correct SQL when pk column name is not the same as theMalcolm Tredinnick
2006-06-12Fixed the empty model saving case so that it retrieves the primary key id. AlsoMalcolm Tredinnick
2006-06-08Fixed #2108 -- allow saving of empty models, rather than just dropping them.Malcolm Tredinnick
2006-06-08Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty
2006-06-08Fixed #2108 -- do not try to save an empty model.Malcolm Tredinnick
2006-06-07Added Manager.get_or_create()Adrian Holovaty
2006-06-06Backed out [3088] which was a premature commit with a message meant for anoth...Jacob Kaplan-Moss
2006-06-06BNW: Added modpython handler to autosettingsJacob Kaplan-Moss
2006-06-04Changed all model unit tests to use __str__() instead of __repr__(). Also sli...Adrian Holovaty
2006-06-03Fixed #593 -- Added 'search' DB-API lookup type, which does full-text index s...Adrian Holovaty
2006-06-03Eliminated lots of mutable default arguments (since they are bugsLuke Plant
2006-06-01Fixed #2061 -- Fixed PostgreSQL index introspection in tables that have dropp...Adrian Holovaty
2006-06-01Fixed bug in Model._get_next_or_previous_in_order()Adrian Holovaty
2006-06-01Fixed #2052 -- Fixed some threading issues for FreeBSD. Thanks, scott@clued-i...Adrian Holovaty
2006-06-01Fixed #1454 -- Improved DB API quote_only_if_word() so that it doesn't quote ...Adrian Holovaty
2006-06-01Fixed #411 -- CursorDebugWrapper now supports pyformat paramstyleAdrian Holovaty
2006-05-31Fixed #2038 -- QuerySet._combine now combines where clause. Thanks, graham@da...Adrian Holovaty
2006-05-29Fixed #1584 - auto_now_add fields now work when saving multiple times.Luke Plant
2006-05-26Fixed bug with QuerySet.exclude() failing to do negations on Q objects, andLuke Plant
2006-05-26Fixed #1732 -- AttributeErrors in models are no longer ignored by the model v...Adrian Holovaty
2006-05-26Improved error message if DATABASE_ENGINE is invalid.Adrian Holovaty
2006-05-26Fixed #1673 -- Every database backend now raises ImproperlyConfigured if the ...Adrian Holovaty
2006-05-26Made negative indexing on QuerySet instances raise an assertion error (previo...Luke Plant
2006-05-26Added half of oracle backend. (The other half is all of the special-casing in...Adrian Holovaty
2006-05-23Fixed bug with Meta.ordering being ignored when slicing a single item off a Q...Luke Plant
2006-05-19Fixed #1901 -- removed typos from calls to _get_image_dimensions andMalcolm Tredinnick
2006-05-18Fixed #1904 -- Got postgresql_psycopg2 backend working. Thanks for the patch,...Adrian Holovaty
2006-05-16Added postgresql_psycopg2 backend, which is untested, just for a starting pointAdrian Holovaty
2006-05-16Fixed #1830 -- MySQL inspectdb now detects tinyint field properlyAdrian Holovaty
2006-05-15Fixed #1884 -- Made django.db.models.options.get_verbose_name smarter. Thanks...Adrian Holovaty
2006-05-15Fixed #1858 : typo in get_FIELD_size() method. Thanks, tom@jerakeen.org.Malcolm Tredinnick
2006-05-14Fixed #1530 -- make count() respect distinct() on QuerySets. Create someMalcolm Tredinnick