Django

Code

root/django/trunk/django/db/models


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @9550 [9550] 12/02/08 16:09:51 lukeplant Fixed #8248: made help() work on models and improved introspection …
(edit) @9546 [9546] 12/02/08 10:58:06 ikelly Fixed a pair of bugs in determining the set of models to flush that were …
(edit) @9475 [9475] 11/16/08 12:58:43 kmtracey Fixed #9608: Ensured a Model's default repr() is printable even if its …
(edit) @9272 [9272] 10/24/08 04:36:22 mtredinnick Fixed #9307 -- Added the ability to pickle the Query class used by the …
(edit) @9251 [9251] 10/24/08 01:09:47 mtredinnick Fixed #9406 -- Ensure that each database column is only represented once …
(edit) @9206 [9206] 10/08/08 04:45:27 mtredinnick A queryset that has had ordering removed (order_by()) can have ordering …
(edit) @9202 [9202] 10/08/08 03:38:33 mtredinnick Fixed #6748 -- When printing the repr() of querysets, don't load or …
(edit) @9201 [9201] 10/08/08 03:37:35 mtredinnick Applying a limit to a queryset that already had an upper limit of 0 …
(edit) @9150 [9150] 10/05/08 06:55:52 mtredinnick Fixed #9068 -- Fixed a couple of typos in InsertQuery?.clone(). Thanks, …
(edit) @9091 [9091] 09/27/08 23:36:10 mtredinnick Fixed Queryset.dates() in the presence of extra-select columns. Any …
(edit) @9081 [9081] 09/21/08 19:31:22 mtredinnick Fixed a missing variable initialisation deep in the Query bowels.
(edit) @9008 [9008] 09/10/08 21:02:06 mtredinnick Fixed a typo so that cloning UpdateQuery? objects won't fail mysteriously.
(edit) @9007 [9007] 09/10/08 21:00:27 mtredinnick A bug from queryset-refactor days: although the Query class has "group_by" …
(edit) @8932 [8932] 09/03/08 13:38:43 mtredinnick Fixed #7588 -- Inherit fields from concrete ancestor classes via abstract …
(edit) @8908 [8908] 09/03/08 00:53:50 mtredinnick Fixed #8825 -- Fixed a small error model field setup (on the model class) …
(edit) @8898 [8898] 09/02/08 22:48:25 mtredinnick Fixed #8819 -- Don't include two copies of extra-select columns in the …
(edit) @8884 [8884] 09/02/08 19:09:33 mtredinnick Fixed #8669 -- Use a consistent version of create() across the board …
(edit) @8855 [8855] 09/02/08 10:26:00 jacob Fixed #8309: subclasses now inherit GenericForeignKey correctly. There's …
(edit) @8853 [8853] 09/02/08 08:52:07 mtredinnick Fixed #8790 -- Multi-branch join trees that shared tables of the same name …
(edit) @8851 [8851] 09/02/08 04:04:54 mtredinnick Fixed #7154 -- Inherit all model managers from abstract base classes. Also …
(edit) @8832 [8832] 09/01/08 21:16:41 mtredinnick Fixed #8439 -- Complex combinations of Q-objects (using both conjunctions …
(edit) @8831 [8831] 09/01/08 19:50:19 mtredinnick A typo fix that fortunately wasn't creating invalid SQL, just slightly …
(edit) @8829 [8829] 09/01/08 19:20:10 mtredinnick Get the join promotion code (a bit more) correct when constructing joins …
(edit) @8827 [8827] 09/01/08 18:18:42 ikelly Replaced exact lookups of the empty string with isnull lookups in Oracle. …
(edit) @8823 [8823] 09/01/08 17:43:38 brosner Fixed #8648 -- Admin no longer ignores to_field. Thanks for the help Karen …
(edit) @8819 [8819] 09/01/08 17:15:35 jacob Fixed #8210 and #8664: moved USStateField and PhoneNumberField to …
(edit) @8816 [8816] 09/01/08 16:28:32 brosner Fixed #7975 -- Callable defaults in inline model formsets now work …
(edit) @8814 [8814] 09/01/08 16:04:01 jacob Fixed #8076: fixed get_(next/previous)_by_date when used with …
(edit) @8807 [8807] 09/01/08 14:35:03 jacob Fixed #8115: avoid a infiniate loop when collecting related objects for …
(edit) @8806 [8806] 09/01/08 14:20:03 jacob Repaired an oversight from [8772] that let made certain types of fields …
(edit) @8804 [8804] 09/01/08 13:45:49 ikelly Fixed extra_select with DateQuery? in Oracle
(edit) @8794 [8794] 09/01/08 07:07:26 russellm Fixed #7302: Corrected quoting of columns in extra_group_by. Thanks to …
(edit) @8783 [8783] 08/31/08 21:43:55 mtredinnick Fixed #7512 -- Fixed an oversight when I first fixed ordering on …
(edit) @8782 [8782] 08/31/08 19:49:03 mtredinnick Fixed #8316 -- Put tighter restrictions on the type of Foreign Key …
(edit) @8772 [8772] 08/31/08 15:11:11 jacob Fixed #6967: ModelForms now validate choices. Thanks, mattmcc -- the …
(edit) @8756 [8756] 08/31/08 04:49:55 brosner Fixed handling of primary keys in model formsets. Model formsets should …
(edit) @8730 [8730] 08/29/08 23:52:56 mtredinnick [8721] introduced some internal field names. We hide them from the list …
(edit) @8724 [8724] 08/29/08 17:29:38 mtredinnick Fixed a typo from the refactoring in [8455]. With bonus test, too. Thanks, …
(edit) @8723 [8723] 08/29/08 16:48:40 mtredinnick Fixed a missing piece of [8721].
(edit) @8721 [8721] 08/29/08 16:24:00 mtredinnick Fixed #8279 -- Multiple many-to-many relations to "self" are now possible.
(edit) @8691 [8691] 08/28/08 21:40:56 mtredinnick Fixed #8101 -- Allow the strings '1' and '0' as filter values for …
(edit) @8690 [8690] 08/28/08 21:40:50 mtredinnick Fixed #7823 -- Fixed an edge case in RelatedField?.get_db_prep_lookup() so …
(edit) @8684 [8684] 08/28/08 16:23:21 jacob Fixed a bug in NullBooleanField.to_python.
(edit) @8682 [8682] 08/28/08 15:58:10 jacob Fixed #8556: added a useful formfield to CommaSeparatedIntegerField. …
(edit) @8674 [8674] 08/28/08 14:28:31 mtredinnick Removed a couple of unused imports.
(edit) @8670 [8670] 08/28/08 12:18:05 mtredinnick Changed create() and get_or_create() to force an insert (not update an …
(edit) @8663 [8663] 08/28/08 11:05:09 jacob FIxed #8613: removed vestigal FileField.save_file(). Thanks, kratorius.
(edit) @8646 [8646] 08/28/08 00:42:05 mtredinnick Fixed #8597 -- Allow the use of strings containing underscores and …
(edit) @8644 [8644] 08/28/08 00:00:23 mtredinnick Improvements to [8608] to fix an infinite loop (for …
(edit) @8638 [8638] 08/27/08 16:30:47 jacob Fixed #8534: getting the size of a file no longer opens it (at least for …
(edit) @8637 [8637] 08/27/08 16:18:45 jacob Fixed #8175: don't open files we're about to close. This was a pesky bug …
(edit) @8616 [8616] 08/27/08 02:19:44 gwilson Removed oldforms, validators, and related code: * Removed Manipulator, …
(edit) @8608 [8608] 08/27/08 00:22:33 mtredinnick Fixed #5937 -- When filtering on generic relations, restrict the target …
(edit) @8598 [8598] 08/26/08 15:44:20 mtredinnick Fixed #8036 -- Fixed a case when attempting to traverse non-existent …
(edit) @8571 [8571] 08/25/08 23:55:56 gwilson Removed trailing whitespace in a few files.
(edit) @8559 [8559] 08/25/08 17:43:25 mtredinnick Fixed #8106 -- Untangled some problems with complex select_related() …
(edit) @8528 [8528] 08/24/08 22:51:25 brosner Fixed #7888 -- Handle model inheritance with model formsets correctly. …
(edit) @8526 [8526] 08/24/08 22:17:06 mtredinnick Fixed #8510 -- Allow both strings (mostly for the admin) and integers to …
(edit) @8515 [8515] 08/24/08 03:12:13 russellm Fixed #8298: Added a to_python method for integer fields. This ensures …
(edit) @8499 [8499] 08/23/08 13:34:32 mtredinnick Removed a relatively pointless QuerySet? clone introduced in [8472].
(edit) @8477 [8477] 08/22/08 23:59:25 brosner Fixed #8040 -- SlugField? now returns a proper formfield to deal with …
(edit) @8472 [8472] 08/22/08 17:00:28 mtredinnick Fixed #8046 -- The first filter() call on a related manager for …
(edit) @8469 [8469] 08/22/08 14:27:26 brosner Fixed #7947 -- Handle the display of OneToOneField? in model forms …
(edit) @8455 [8455] 08/20/08 17:38:15 mtredinnick Made it possible to pickle DateQuerySets?.
(edit) @8442 [8442] 08/19/08 09:17:24 russellm Fixed #7908: Added validation checks on attempts to create ForeignKey? and …
(edit) @8429 [8429] 08/17/08 17:38:36 mtredinnick Fixed #8039 -- Make sure that extra(tables=...) tables are always included …
(edit) @8426 [8426] 08/17/08 15:07:59 mtredinnick Changed the (internal) way extra(select=.., select_params=...) handling is …
(edit) @8415 [8415] 08/16/08 15:59:06 gwilson Fixed #3121 -- Made get_or_create() work for RelatedManager and …
(edit) @8398 [8398] 08/15/08 18:29:55 gwilson Fixed #6970 -- Raise the original IntegrityError when all required …
(edit) @8355 [8355] 08/14/08 20:33:18 mboersma Fixed Oracle backend test case failure in modeltests\lookup.
(edit) @8348 [8348] 08/14/08 10:37:43 gwilson Fixed #8206 -- Removed validate methods of Model and Model fields. They …
(edit) @8315 [8315] 08/12/08 00:59:43 mtredinnick Added savepoint protection to get_or_create() to avoid problems on …
(edit) @8296 [8296] 08/11/08 07:11:25 russellm Fixed #5461 -- Refactored the database backend code to use classes for the …
(edit) @8291 [8291] 08/10/08 16:10:47 gwilson Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms …
(edit) @8267 [8267] 08/09/08 12:19:23 mtredinnick Added the ability to force an SQL insert (or force an update) via a …
(edit) @8244 [8244] 08/08/08 15:59:02 jacob File storage refactoring, adding far more flexibility to Django's file …
(edit) @8229 [8229] 08/08/08 09:24:25 mtredinnick Fixed #8111 -- Error message typo fix. Thanks mzgur.
(edit) @8223 [8223] 08/06/08 10:32:46 jacob Major refactoring of django.dispatch with an eye towards speed. The net …
(edit) @8217 [8217] 08/05/08 12:43:05 jacob Fixed #7683: Try not to delete uploaded files before moving them, and …
(edit) @8212 [8212] 08/05/08 11:13:28 jacob Fixed #7904: added support for a "use_for_related_fields" property on …
(edit) @8199 [8199] 08/03/08 12:26:50 gwilson Removed unused warnings import that should have been removed in [8191], …
(edit) @8191 [8191] 08/01/08 23:56:11 gwilson Removed several deprecated features for 1.0 (refs #7830): * "simple" …
(edit) @8185 [8185] 08/01/08 18:16:59 gwilson Fixed #8070 -- Cache related objects passed to Model init as keyword …
(edit) @8143 [8143] 07/29/08 19:18:49 mtredinnick Fixed #8023 -- Allow filtering of DecimalFields? (in models) using …
(edit) @8139 [8139] 07/29/08 16:43:07 russellm Fixed #7913 -- Corrected ham-fisted typo from [8102]. Thanks to evinrik …
(edit) @8138 [8138] 07/29/08 13:31:27 jacob Fixed a subtle bug (really, an inconsistency) in ForeignKey? that [8132]
(edit) @8136 [8136] 07/29/08 07:41:08 russellm Fixed #6095 -- Added the ability to specify the model to use to manage a …
(edit) @8132 [8132] 07/29/08 00:17:47 mtredinnick Fixed #8011 -- Be careful not to evalute lazy-translated …
(edit) @8131 [8131] 07/29/08 00:09:29 mtredinnick Fixed #7560 -- Moved a lot of the value conversion preparation …
(edit) @8128 [8128] 07/27/08 20:32:46 mtredinnick Fixed #7853 -- Fixed another case of deleting inherited models with …
(edit) @8127 [8127] 07/27/08 19:45:04 mtredinnick Put back [8120] along with a small tweak. Fixed #6217.
(edit) @8126 [8126] 07/27/08 19:08:17 mtredinnick Back out [8120] for a bit. Refs #6217. It's having unintended side-effects …
(edit) @8120 [8120] 07/27/08 17:51:49 mtredinnick Fixed #6217 -- Reduced the memory used by each ugettext_lazy() …
(edit) @8112 [8112] 07/27/08 13:38:56 mtredinnick Fixed #7886 -- Reordered some code in Query.results_iter() to ensure that …
(edit) @8107 [8107] 07/27/08 13:16:17 mtredinnick Fixed #7872 -- Fixed a missed case of promoting table joins when …
(edit) @8102 [8102] 07/27/08 02:22:39 russellm Fixed #7913 -- Corrected backwards incompatible parts of [7977] when …
(edit) @8100 [8100] 07/26/08 23:18:52 mtredinnick Fixed #7778 -- Fixed a tricky case of foreign key clearing with …
(edit) @8098 [8098] 07/26/08 20:18:23 mtredinnick Fixed #7530, #7716 -- When using select_related() and encountering a …
(edit) @8061 [8061] 07/23/08 01:12:15 mtredinnick Allow for matches against unsaved objects in querysets (which will …
(edit) @8053 [8053] 07/22/08 03:23:20 mtredinnick Fixed #7813 -- Allow pickling of Query classes that use …
Note: See TracRevisionLog for help on using the revision log.