Merged the queryset-refactor branch into trunk.
commit0f2392e00d935cd9513afbb9e00d6c24f565298b
authormtredinnick <mtredinnick@bcc190cf-cafb-0310-a4f2-bffc1f526a37>
Sun, 27 Apr 2008 02:50:16 +0000 (27 02:50 +0000)
committermtredinnick <mtredinnick@bcc190cf-cafb-0310-a4f2-bffc1f526a37>
Sun, 27 Apr 2008 02:50:16 +0000 (27 02:50 +0000)
treeeeded174bec983e4415f5f52f187b3d5d9a1882d
parentf34f522e34c4a7478bc171ac094fd179f57221c6
Merged the queryset-refactor branch into trunk.

This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.

Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
57 files changed:
django/contrib/admin/views/main.py
django/contrib/contenttypes/generic.py
django/core/exceptions.py
django/core/management/sql.py
django/core/management/validation.py
django/core/serializers/base.py
django/db/__init__.py
django/db/backends/__init__.py
django/db/backends/mysql/base.py
django/db/backends/mysql_old/base.py
django/db/backends/oracle/base.py
django/db/backends/oracle/query.py [new file with mode: 0644]
django/db/backends/postgresql/operations.py
django/db/backends/sqlite3/base.py
django/db/models/base.py
django/db/models/fields/__init__.py
django/db/models/fields/proxy.py [new file with mode: 0644]
django/db/models/fields/related.py
django/db/models/manager.py
django/db/models/options.py
django/db/models/query.py
django/db/models/query_utils.py [new file with mode: 0644]
django/db/models/sql/__init__.py [new file with mode: 0644]
django/db/models/sql/constants.py [new file with mode: 0644]
django/db/models/sql/datastructures.py [new file with mode: 0644]
django/db/models/sql/query.py [new file with mode: 0644]
django/db/models/sql/subqueries.py [new file with mode: 0644]
django/db/models/sql/where.py [new file with mode: 0644]
django/utils/tree.py [new file with mode: 0644]
docs/db-api.txt
docs/model-api.txt
tests/modeltests/basic/models.py
tests/modeltests/custom_columns/models.py
tests/modeltests/field_subclassing/models.py
tests/modeltests/lookup/models.py
tests/modeltests/many_to_many/models.py
tests/modeltests/many_to_one/models.py
tests/modeltests/many_to_one_null/models.py
tests/modeltests/model_inheritance/models.py
tests/modeltests/one_to_one/models.py
tests/modeltests/or_lookups/models.py
tests/modeltests/order_with_respect_to/__init__.py [new file with mode: 0644]
tests/modeltests/order_with_respect_to/models.py [new file with mode: 0644]
tests/modeltests/ordering/models.py
tests/modeltests/reserved_names/models.py
tests/modeltests/reverse_lookup/models.py
tests/modeltests/select_related/models.py
tests/modeltests/serializers/models.py
tests/modeltests/signals/models.py
tests/modeltests/transactions/models.py
tests/modeltests/update/__init__.py [new file with mode: 0644]
tests/modeltests/update/models.py [new file with mode: 0644]
tests/regressiontests/null_queries/models.py
tests/regressiontests/queries/__init__.py [new file with mode: 0644]
tests/regressiontests/queries/models.py [new file with mode: 0644]
tests/regressiontests/serializers_regress/models.py
tests/regressiontests/serializers_regress/tests.py