Django

Code

root/django/branches/magic-removal/django/db/models/query.py


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @2803 [2803] 05/01/06 18:27:46 adrian magic-removal: Fixed #1685 -- order_by no longer breaks when using a …
(edit) @2754 [2754] 04/27/06 17:11:35 adrian magic-removal: Fixed typo in QuerySet?.exclude() docstring
(edit) @2688 [2688] 04/12/06 08:39:34 adrian magic-removal: Merged to [2687]
(edit) @2663 [2663] 04/10/06 22:15:22 adrian magic-removal: Fixed #1565 -- in_bulk() now returns empty dictionary if …
(edit) @2613 [2613] 04/05/06 07:00:38 lukeplant magic-removal: Fixed #1535 (bug with combined m2m and m2o to the same …
(edit) @2575 [2575] 03/28/06 11:25:53 adrian magic-removal: Merged to [2574]
(edit) @2560 [2560] 03/24/06 15:52:39 jkocherhans No comments so... fixed #1532.
(edit) @2488 [2488] 03/04/06 17:40:15 russellm magic-removal: Modified bulk delete algorithnm to remove objects and …
(edit) @2487 [2487] 03/04/06 06:13:41 russellm magic-removal: Fixed problem with delete where dependent objects would be …
(edit) @2485 [2485] 03/03/06 18:19:59 lukeplant magic-removal: Implemented 'laziness' for QuerySet? slicing, to restore …
(edit) @2457 [2457] 03/01/06 11:08:33 jacob magic-removal: added transaction support to Django! see transactions.txt …
(edit) @2422 [2422] 02/27/06 16:51:36 jacob Added QuerySet?.exclude() which does the opposite of QuerySet?.filter(). As …
(edit) @2393 [2393] 02/25/06 11:37:58 adrian magic-removal: Merged to [2392]
(edit) @2381 [2381] 02/24/06 04:25:02 russellm magic-removal: Refs #1346 -- Refactored query logic for m2m descriptor …
(edit) @2362 [2362] 02/19/06 02:35:40 russellm magic-removal: Refactored accessor to name used to build related queries.
(edit) @2361 [2361] 02/19/06 02:24:21 russellm magic-removal: Refactored accessor for m2m table name, and added accessors …
(edit) @2354 [2354] 02/18/06 16:47:03 adrian magic-removal: Fixed #1350 -- Changed QuerySet?.in_bulk() to return the …
(edit) @2339 [2339] 02/18/06 14:24:24 adrian magic-removal: Merged to [2338]
(edit) @2314 [2314] 02/17/06 06:56:48 russellm magic-removal: Fixes #1363 -- Moved a Python2.3 declaration of set from …
(edit) @2313 [2313] 02/17/06 06:46:03 russellm magic-removal: Removed last references to OLD_get_accessor_name, and added …
(edit) @2308 [2308] 02/15/06 10:19:18 adrian magic-removal: Fixed #1358 -- Fixed Python 2.3 incompatibility in …
(edit) @2307 [2307] 02/14/06 03:51:27 russellm magic-removal: Fixed #1219 -- Added implementation of bulk delete, and …
(edit) @2303 [2303] 02/10/06 21:15:36 russellm magic-removal: Fixed a problem with query join order caused by a join …
(edit) @2288 [2288] 02/06/06 18:51:42 lukeplant magic-removal: Fixed bug in combining ordered QuerySets?
(edit) @2260 [2260] 02/03/06 18:07:03 adrian magic-removal: Added support for QuerySet?.latest() and Manager.latest(), …
(edit) @2257 [2257] 02/03/06 17:30:56 adrian magic-removal: Improved QOperator.get_sql() to NOT output parenthesis in …
(edit) @2250 [2250] 02/03/06 16:29:15 adrian magic-removal: Changed QuerySet?.in_bulk() to check for tuple or list, …
(edit) @2246 [2246] 02/03/06 14:32:19 adrian magic-removal: Removed QuerySet?.core_filters hook, because we now have …
(edit) @2236 [2236] 02/03/06 07:03:51 lukeplant magic-removal: Fixed bug in parse_lookup introduced in 2150, and tidied up …
(edit) @2223 [2223] 02/01/06 22:46:56 adrian magic-removal: Fixed #1301 -- Fixed AttributeError? when QuerySet?.dates() …
(edit) @2221 [2221] 02/01/06 22:38:45 adrian magic-removal: Fixed #1312 -- made QuerySet?.in_bulk() accepting of any …
(edit) @2203 [2203] 01/30/06 20:29:31 adrian magic-removal: Fixed bug in field-name calculation in …
(edit) @2201 [2201] 01/30/06 20:22:54 lukeplant magic-removal: fixed bug with indexing in QuerySet?.getitem
(edit) @2200 [2200] 01/30/06 20:21:31 adrian magic-removal: Created InBulkQuerySet?, ValuesQuerySet? and DateQuerySet?, …
(edit) @2198 [2198] 01/30/06 20:04:45 lukeplant magic-removal: removed legacy 'import copy', and re-introduced Q() objects …
(edit) @2197 [2197] 01/30/06 19:50:16 lukeplant magic-removal: Fixed bug with .values() when no arguments are passed, and …
(edit) @2196 [2196] 01/30/06 19:13:10 adrian magic-removal: Changed Manager so that it's not a subclass of QuerySet?, …
(edit) @2194 [2194] 01/30/06 18:02:11 adrian magic-removal: Implemented Manager.all() and changed Manager so that it …
(edit) @2191 [2191] 01/30/06 16:50:38 adrian magic-removal: Renamed self.klass to self.model in QuerySet?
(edit) @2189 [2189] 01/30/06 16:23:21 adrian magic-removal: Restored and/or support for QuerySets?
(edit) @2186 [2186] 01/30/06 12:00:53 adrian magic-removal: Fixed #1297 -- Fixed Python 2.4 style dict.update() to …
(edit) @2181 [2181] 01/29/06 23:38:02 adrian magic-removal: Implemented QuerySet?.values(). All 'lookup' unit tests …
(edit) @2178 [2178] 01/29/06 23:20:36 adrian magic-removal: Various fixes to QuerySet?. Temporarily turned off caching.
(edit) @2177 [2177] 01/29/06 22:36:41 adrian magic-removal: Changed get_DATEFIELD_list() manager method to dates(), …
(edit) @2171 [2171] 01/29/06 21:51:10 adrian magic-removal: Fixed subtle bug in QuerySet? ordering -- now, if _order_by …
(edit) @2168 [2168] 01/29/06 21:36:25 adrian magic-removal: Restored extra() on QuerySet? -- renamed from extras()
(edit) @2167 [2167] 01/29/06 21:33:40 adrian magic-removal: Restored getitem() on QuerySet? and fixed bug in …
(edit) @2166 [2166] 01/29/06 21:17:19 adrian magic-removal: Moved delete() from Manager to QuerySet?
(edit) @2165 [2165] 01/29/06 20:57:04 adrian magic-removal: Restored caching on QuerySet?
(edit) @2163 [2163] 01/29/06 20:23:56 adrian magic-removal: Changed QuerySet?._clone() to copy self.klass
(edit) @2161 [2161] 01/29/06 20:11:21 adrian magic-removal: Changed QuerySet?._clone() to clone where, params and tables
(edit) @2160 [2160] 01/29/06 20:09:25 adrian magic-removal: Changed QuerySet? to copy core_filters in init() instead of …
(edit) @2159 [2159] 01/29/06 20:07:10 adrian magic-removal: Massaged Manager and QuerySet?. Still more work to do.
(edit) @2156 [2156] 01/28/06 20:02:58 adrian magic-removal: Removed unnecessary legacy 'import copy' and restored some …
(edit) @2154 [2154] 01/28/06 19:09:10 lukeplant magic-removal: Removed caching hack for managers, disabling caching for …
(edit) @2150 [2150] 01/28/06 18:22:10 lukeplant magic-removal: first stab at implementing Manager as a QuerySet?
(edit) @2145 [2145] 01/28/06 11:06:05 russellm magic-removal: Modified query lookup to correctly handle non-plural …
(edit) @2110 [2110] 01/22/06 20:41:01 adrian magic-removal: Moved FieldDoesNotExist? exception to …
(edit) @2070 [2070] 01/18/06 21:33:30 adrian magic-removal: Removed support for old-style undocumented '_or' syntax in …
(edit) @2017 [2017] 01/16/06 17:11:12 adrian magic-removal: Negligible formatting cleanups in django/db/models
(edit) @1884 [1884] 01/09/06 05:01:38 russellm magic-removal: Fixed #1133 -- Added ability to use Q objects as args in DB …
(edit) @1856 [1856] 01/08/06 00:16:05 adrian magic-removal: Fixed #1186 -- Fixed problem resolving primary key in some …
(edit) @1802 [1802] 12/30/05 10:38:26 adrian magic-removal: Fixed #1143 -- Fixed backwards incompatibilities in …
(edit) @1792 [1792] 12/29/05 13:11:00 adrian magic-removal: Fixed #1136: Removed duplicated DB joins resulting from …
(edit) @1733 [1733] 12/18/05 21:51:43 adrian magic-removal: Got rid of some uses of '_', the special underscore …
(edit) @1696 [1696] 12/16/05 07:49:52 rjwittams Split up of models/init.py complete, tests run and admin works to a …
(edit) @1695 [1695] 12/16/05 07:00:13 rjwittams Split out manager
(add) @1694 [1694] 12/16/05 06:44:48 rjwittams Continued models/init.py breakup
Note: See TracRevisionLog for help on using the revision log.