Russell Keith-Magee 79d6e402e3 Fixed #12409 -- Corrected some documentation typos in the docs on raw querysets. Also added a missing __init__.py file. Thanks to Alex Gaynor for the reports. 15 年 前
..
aggregation 7caf21aa2e Make sure that all uses of max_length in the test suite use values smaller than 255. If we use max_length > 255 the test suite can't be run on MySQL 4. 16 年 前
basic eeb10d5f2c Optimised use of 'in' operator on QuerySet using an explicit __contains__ method. 15 年 前
choices 661f62be3c Fixed #7913 -- Corrected backwards incompatible parts of [7977] when optgroup handling was added to field choices (Ticket #4412). Thanks to Michael Elsdorfer (miracle2k) for the report and patch. 16 年 前
custom_columns ec2ee4fc62 Minor correction for [8325]. 16 年 前
custom_managers 212ee65be7 Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `FormField`s and db model `Field`s. This is fully backwards compatible at the moment since the legacy `maxlength` argument is still supported. Using `maxlength` will, however, issue a `PendingDeprecationWarning` when used. 17 年 前
custom_methods b3b71a0922 Fixed #7560 -- Moved a lot of the value conversion preparation for 16 年 前
custom_pk b38cf5db5c Fixed #11311 -- Reverted [10952], Refs #10785. Changeset [10952] caused problems with m2m relations between models that had non-integer primary keys. Thanks to Ronny for the report and test case. 16 年 前
defer 512ee0f528 Fixed #10572 -- Corrected the operation of the defer() and only() clauses when used on inherited models. 16 年 前
delete b9b9ca334e Fixed #9308 -- Corrected the updated of nullable foreign key fields when deleting objects. Thanks to Bob Thomas for the fix, and markshep for the improvements on the test case. 16 年 前
empty a72324bf7f Fixed #6068 -- Updated docstrings in model tests to make the documentation 17 年 前
expressions d56c1ab7f0 Fixed #11886 -- Corrected handling of F() expressions that use parentheses. Thanks to Brent Hagany for the report. 15 年 前
field_defaults 1418da7ee4 Fixed #6052 -- Worked around a bug in MySQLdb with regards to handling 16 年 前
field_subclassing c2ba59fc1d Removed oldforms, validators, and related code: 16 年 前
files 68a890e79f Fixed #7712, #9404, #10249, #10300: a light refactor and cleanup of file storage and the `File` object. Thanks to Armin Ronacher and Alex Gaynor. 16 年 前
fixtures 35cc439228 Fixed #7052 -- Added support for natural keys in serialization. 15 年 前
fixtures_model_package 01acd99947 Fixed #6961 - loaddata fails if models is a package instead of a module 15 年 前
force_insert_update e94d293504 There are some variations in the printed names of exceptions between Oracle and 16 年 前
generic_relations 3c8568a7dc Fixed #10271, #10281 -- Fixed the handling multiple inline models that share a common base class and have the link to the inline parent on the base class. Includes modifications that allow the equivalent handling for GenericFields. Thanks to Idan Gazit, Antti Kaihola (akaihola), and Alex Gaynor for their work on this patch. 16 年 前
get_latest 1697f4e49f Fixed a couple typos in the modeltests' descriptions and made use of ReST inline literal markup for code snippets. 16 年 前
get_object_or_404 50745cc31e Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code comments. Thanks kaikuehne. 16 年 前
get_or_create 85ebb91846 Fixed #8669 -- Use a consistent version of create() across the board for 16 年 前
invalid_models 585b7acaa3 Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introducing an autogenerated through model. 15 年 前
lookup 7efd96844d Fixed #12251 - QuerySet.in_bulk() should accept set/frozenset 15 年 前
m2m_and_m2o 212ee65be7 Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `FormField`s and db model `Field`s. This is fully backwards compatible at the moment since the legacy `maxlength` argument is still supported. Using `maxlength` will, however, issue a `PendingDeprecationWarning` when used. 17 年 前
m2m_intermediary 1697f4e49f Fixed a couple typos in the modeltests' descriptions and made use of ReST inline literal markup for code snippets. 16 年 前
m2m_multiple 1697f4e49f Fixed a couple typos in the modeltests' descriptions and made use of ReST inline literal markup for code snippets. 16 年 前
m2m_recursive 1697f4e49f Fixed a couple typos in the modeltests' descriptions and made use of ReST inline literal markup for code snippets. 16 年 前
m2m_through 585b7acaa3 Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introducing an autogenerated through model. 15 年 前
m2o_recursive 4ee22e480e Fixed #6365 -- Added `blank=True` to parent attribute of `m2o_recursive` model example, thanks dgrant. 17 年 前
m2o_recursive2 212ee65be7 Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `FormField`s and db model `Field`s. This is fully backwards compatible at the moment since the legacy `maxlength` argument is still supported. Using `maxlength` will, however, issue a `PendingDeprecationWarning` when used. 17 年 前
many_to_many 6ce25d3be9 Fixed #10413: RelatedManager.add no longer fails silenty when trying to add an object of the wrong type. Thanks, dgouldin. 16 年 前
many_to_one 6ce25d3be9 Fixed #10413: RelatedManager.add no longer fails silenty when trying to add an object of the wrong type. Thanks, dgouldin. 16 年 前
many_to_one_null 9c52d56f6f Merged the queryset-refactor branch into trunk. 17 年 前
model_forms 5bd63663a9 Fixed #399: Added big integer field. Thanks to Tomáš Kopeček for persistently maintaining a patch for this. 15 年 前
model_formsets 4e81086021 Cleaned up some stray text in the test from r11874. Thanks to Rob Hudson for the eagle eyes. 15 年 前
model_inheritance c763f26173 Updated the tests. 16 年 前
model_package 660f9086f1 Fixed #12245 -- Corrected target app handling for auto-generated m2m models when the parent model isn't in the models module (or a subpackage thereof). Thanks to emulbreh for the report and patch. 15 年 前
mutually_referential c2ba59fc1d Removed oldforms, validators, and related code: 16 年 前
one_to_one 02e56530c5 Fixed #10157: correctly set the related objects pk when assigning a reverse OneToOne. Thanks, dgouldin. 16 年 前
or_lookups 1697f4e49f Fixed a couple typos in the modeltests' descriptions and made use of ReST inline literal markup for code snippets. 16 年 前
order_with_respect_to 966f652464 Fixed #9615 -- Typo fix to testcase. Thanks jarrow. 16 年 前
ordering f55b834c2f Fixed #7302: Corrected quoting of columns in extra_group_by. Thanks to Ivan Sagalaev for the patch and initial test. 16 年 前
pagination 351a3ca154 Removed several deprecated features for 1.0 (refs #7830): 16 年 前
properties 212ee65be7 Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `FormField`s and db model `Field`s. This is fully backwards compatible at the moment since the legacy `maxlength` argument is still supported. Using `maxlength` will, however, issue a `PendingDeprecationWarning` when used. 17 年 前
proxy_models 031385e4cc Fixed #11194 -- Corrected loading of Proxy models from fixtures (and, by extension, save_base(raw=True) for Proxy models). 16 年 前
raw_query 79d6e402e3 Fixed #12409 -- Corrected some documentation typos in the docs on raw querysets. Also added a missing __init__.py file. Thanks to Alex Gaynor for the reports. 15 年 前
reserved_names 9c52d56f6f Merged the queryset-refactor branch into trunk. 17 年 前
reverse_lookup 9c52d56f6f Merged the queryset-refactor branch into trunk. 17 年 前
save_delete_hooks 65c0846c45 Updated a few save() methods on models to accept force_insert and force_update 16 年 前
select_related 9c52d56f6f Merged the queryset-refactor branch into trunk. 17 年 前
serializers cb43898d49 Fixed #9522 -- Modified handling of values in base serializer so that field subclasses can define their own value_to_string() method for serialization. Thanks to Alex Koshelev for the report and initial patch. 16 年 前
signals c935d7ffe3 Fixed #11134: signals recievers that disconnect during their processing no longer mess things up for other handlers. Thanks, Honza Kral. 16 年 前
str 212ee65be7 Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `FormField`s and db model `Field`s. This is fully backwards compatible at the moment since the legacy `maxlength` argument is still supported. Using `maxlength` will, however, issue a `PendingDeprecationWarning` when used. 17 年 前
test_client 13ea4a9133 Fixed #9978 -- Fixed a KeyError exception that was being raised when using the logout method on the test client on an unauthenticated user, based on patch from ericholscher. 16 年 前
transactions e522e61a80 Fixed #11392 -- Enforced a predictable result order for a couple of test cases. Thanks to Nathan Auch for the report and patch. 15 年 前
unmanaged_models 604c5bc52a Fixed the tests from #10455 so that they are set up correctly. 16 年 前
update c763f26173 Updated the tests. 16 年 前
user_commands 8da2322cad Fixed #10080: `call_command` now takes option defaults into account, sparing individual commands from any difference between `call_command` and being run from the shell. Thanks, Alex Koshelev. 16 年 前
__init__.py f69cf70ed8 MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions. 19 年 前