Alex Gaynor
|
9b077ee4b6
|
[1.2.X] Converted model_inheritance_select_related tests from doctests to unittests. We have always been at war with doctests. Backport of [14181].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14182 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-12 02:09:35 +00:00 |
|
Alex Gaynor
|
9ab383b394
|
[1.2.X] Converted initial_sql_regress tests from doctests (sort of...) to unittests. We have always been at war with doctests. Backport of [14179].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14180 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-12 01:59:46 +00:00 |
|
Alex Gaynor
|
de8ff6b672
|
[1.2.X] Converted get_or_create_regress tests from doctests to unittests. We have always been at war with doctests. Backport of [14177].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14178 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-12 01:54:48 +00:00 |
|
Jannis Leidel
|
d327611b24
|
[1.2.X] Fixed #13494 -- Correctly concat an email subject prefix with a translation string. Thanks, hcarvalhoalves and Andi Albrecht.
Backport from trunk (r14157).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14159 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-11 22:36:17 +00:00 |
|
Jacob Kaplan-Moss
|
69d40b4a6f
|
[1.2.X] Fixed #14440 - Converted mail doctests to unittests.
Thanks to Rob Hudson for the patch and also to andialbrecht who filed a
similar patch that I didn't use.
Backport of r14143 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14144 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-11 15:18:34 +00:00 |
|
Ramiro Morales
|
46812b4c2b
|
[1.2.X] Fixed #6073 -- Made compilemessages 18n management command reject PO files with BOM.
Backport of [14125] from trunk
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14126 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-10 16:45:06 +00:00 |
|
Chris Beaven
|
fee4aa31d7
|
[1.2.X] Fixed #11907 -- EmailField now runs strip() on its input. This means mistakenly including leading or trailing spaces will not cause a validation error, and clean() will remove those spaces. Thanks, krisneuharth and djansoft. Backport of [13997].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14124 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-10 10:02:18 +00:00 |
|
Carl Meyer
|
700c5a3dfe
|
[1.2.X] Refs #11256 -- Extended the annotation field name conflict check to cover m2ms and reverse related descriptors as well. This is needed to actually cover the case raised by #14373. Backport of [14116].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14117 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-10 08:06:39 +00:00 |
|
Ramiro Morales
|
4d70df8b78
|
[1.2.X] Fixed #12650 -- Don't generate invalid XHTML in the admin, databrowse apps when
the i18n context processor is active. Thanks to Rob Hudson for the report and
fix suggestion.
Backport of [14104] from trunk
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-10 01:59:17 +00:00 |
|
Alex Gaynor
|
5d9140c137
|
[1.2.X] Fixed a typo in the comments tests, as well as a dependency on CPython's reference counting semantics. Backport of [14098].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14099 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-09 23:05:09 +00:00 |
|
Alex Gaynor
|
ee8fc8d93a
|
[1.2.X] Converted defer_regress tests from doctests to unittests. We have always been at war with doctests. Backport of [14094].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14095 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-09 21:55:33 +00:00 |
|
Carl Meyer
|
b6223d3020
|
[1.2.X] Added sanity-checking of annotation alias names. Backport of [14092] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14093 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-09 20:10:00 +00:00 |
|
Alex Gaynor
|
b3e02d19ec
|
[1.2.X] Fixed #14011 -- Doing a subquery with __in and an EmptyQuerySet no longer raises an Exception. This is actually just a test for this, it was fixed by [14085]. Thanks to skatei for the report and mk for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14087 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-09 16:51:50 +00:00 |
|
Alex Gaynor
|
bb66cb8463
|
[1.2.X] Fixed #14366 -- Model.objects.none().values() now correctly returns a QuerySet with no items, rather than raising an Exception. Thanks to Carl Meyer for the patch. Backport of [14084].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14085 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-09 16:46:25 +00:00 |
|
Russell Keith-Magee
|
9584b77c35
|
[1.2.X] Fixed #11509 -- Modified usage of "Web" to match our style guide in various documentation, comments and code. Thanks to timo and Simon Meers for the work on the patch
Backport of r14069 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14072 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-09 08:25:01 +00:00 |
|
Jannis Leidel
|
9937943f3a
|
[1.2.X] Fixed a few minor backporting oversights that prevented the tests to pass.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14031 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-08 17:54:40 +00:00 |
|
Jannis Leidel
|
fb3f629457
|
[1.2.X] Fixed #10970 -- Initialize DateFields with datetime.date objects, not datetime.datetime. Thanks, summerisgone, Cyberj and Ramiro Morales.
Backport from trunk (r14029).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14030 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-08 17:54:11 +00:00 |
|
Russell Keith-Magee
|
0d4d924ca5
|
[1.2.X] Fixed #13218 -- Ensure that syndicated content served over HTTPS uses https:// links by default. Thanks to schaefer for the report, and Ben Firshman for the patch.
Backport of r14007 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14010 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-08 14:17:13 +00:00 |
|
Luke Plant
|
cf1d9f4b2c
|
[1.2.X] Fixed #14430 - Test failure on Windows with get_image_dimensions since [13715]
Thanks to gabrielhurley for report and patch.
Backport of [14001] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14002 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-07 23:49:31 +00:00 |
|
Luke Plant
|
c7ce5b8929
|
[1.2.X] Fixed #13092 -- Added support for the "in" operator when dealing with context lists. Thanks to clelland for the patch.
Backport of [13510] from trunk. Backported in order to support some other
tests which need to be backported.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13986 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-05 20:27:11 +00:00 |
|
Russell Keith-Magee
|
1429a3dbba
|
[1.2.X] Corrected a test failure under MySQL.
Backport of r13976 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13977 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-02 13:14:47 +00:00 |
|
Jannis Leidel
|
36ce5d0b3a
|
[1.2.X] Fixed #14363 -- Fixed render method of ManyToManyRawIdWidget to set attrs to an empty dict. Thanks, tyrion and dpn.
Backport from trunk (r13971).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-01 02:40:25 +00:00 |
|
Jannis Leidel
|
a0cabd766f
|
[1.2.X] Fixed #13568 -- Fixed the blocktrans tag to not raise a KeyError if the number of variables in the singular and the plural block differ. Thanks, deloide.
Backport from trunk (r13967).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13973 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-10-01 02:39:45 +00:00 |
|
Russell Keith-Magee
|
f27d85b8f4
|
[1.2.X] Modified a fixtures_regress test case to make it more robust to database ordering.
Backport of r13958 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13959 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-29 01:29:10 +00:00 |
|
Russell Keith-Magee
|
cd7e271e54
|
[1.2.X] Migrated fixtures_regress doctests. Thanks to David Brenneman for the patch.
Backport of r13954 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13955 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 14:53:21 +00:00 |
|
Russell Keith-Magee
|
49544ffb36
|
[1.2.X] Migrated extra_regress doctests. Thanks to Stephan Jaekel.
Backport of r13951 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13953 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 13:45:22 +00:00 |
|
Russell Keith-Magee
|
51ded1500f
|
[1.2.X] Migrated expressions_regress doctests. Thanks to Stephan Jaekel.
Backport of r13950 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 13:44:49 +00:00 |
|
Russell Keith-Magee
|
aec5f084a3
|
[1.2.X] Modified the requests unit tests so that they aren't dependent on dictionary ordering.
Backport of r13848 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 12:10:52 +00:00 |
|
Russell Keith-Magee
|
0f41f91bc2
|
[1.2.X] Unified the regressiontests/dateformat tests with the regressiontests/utils/dateformat tests.
Backport of r13938 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13946 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:31:01 +00:00 |
|
Russell Keith-Magee
|
a36a8bbb39
|
[1.2.X] Migrated defaultfilters doctests. Thanks to Stephan Jaekel
Backport of r13937 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13945 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:30:22 +00:00 |
|
Russell Keith-Magee
|
3b255e33e8
|
[1.2.X] Migrated regressiontest/datastructures doctest, and moved it into the existing utils datastructures package. Thanks to Stephan Jaekel.
Backport of r13937 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13944 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:29:58 +00:00 |
|
Russell Keith-Magee
|
efa27fc86c
|
[1.2.X] A few test optimizations; using native unittest where no Django-specific TestCase features are required.
Backport of r13935 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13943 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:29:30 +00:00 |
|
Russell Keith-Magee
|
5277425ae4
|
[1.2.X] Migrated null_fk doctests. Thanks to Stephan Jaekel.
Backport of r13934 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13942 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:28:56 +00:00 |
|
Russell Keith-Magee
|
ccd6a6783b
|
[1.2.X] Migrated null_fk_ordering doctests. Thanks to Stephan Jaekel.
Backport of r13933 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13941 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:28:32 +00:00 |
|
Russell Keith-Magee
|
a9e0305f22
|
[1.2.X] Migrated null_queries doctests. Thanks to Stephan Jaekel.
Backport of r13932 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13940 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:28:07 +00:00 |
|
Russell Keith-Magee
|
45859fe9ff
|
[1.2.X] Migrated one_to_one_regress doctests. Thanks to Stephan Jaekel.
Backport of r13931 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13939 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 08:27:43 +00:00 |
|
Russell Keith-Magee
|
66cb5d5aae
|
[1.2.X] Migrated requests doctests. Thanks to Stephan Jaekel.
Backport of r13927 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13930 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 07:10:05 +00:00 |
|
Russell Keith-Magee
|
7230b609c3
|
[1.2.X] Migrated reverse_single_related doctests. Thanks to Stephan Jaekel.
Backport of r13926 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13929 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 07:09:40 +00:00 |
|
Russell Keith-Magee
|
e9f10deec0
|
[1.2.X] Migrated select_related_regress doctests. Thanks to Stephan Jaekel.
Backport of r13925 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13928 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 07:09:19 +00:00 |
|
Russell Keith-Magee
|
cf0e0c47f0
|
[1.2.X] Removed a test assertion that depended on primary key ordering. The test doesn't validate anything significant, and fails under Postgres. Thanks to Tobias McNulty and the magical Caktus buildbot for pointing out the problem.
Backport of r13923 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13924 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-28 04:49:37 +00:00 |
|
Jannis Leidel
|
229c738a03
|
[1.2.X] Fixed #14053 -- Also localize long integers. Thanks, David Danier.
Backport from trunk (r13920).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13921 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 16:22:30 +00:00 |
|
Russell Keith-Magee
|
554be48d01
|
[1.2.X] Migrated signals_regress doctests. Thanks to Stephan Jaekel.
Backport of r13896 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:37:45 +00:00 |
|
Russell Keith-Magee
|
025ee2c13e
|
[1.2.X] Migrated string_lookup doctests. Thanks to Stephan Jaekel.
Backport of r13895 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13916 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:37:19 +00:00 |
|
Russell Keith-Magee
|
74b6c76e25
|
[1.2.X] Migrated text doctests. Thanks to Stephan Jaekel.
Backport of r13894 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:36:54 +00:00 |
|
Russell Keith-Magee
|
2f480e0882
|
[1.2.X] Migrated urlpatterns_reverse doctests. Thanks to Stephan Jaekel.
Backport of r13893 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13914 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:36:30 +00:00 |
|
Russell Keith-Magee
|
8425cdef45
|
[1.2.X] Added imports for some new unittest modules. Thanks to Stephan Jaekel.
Backport of r13892 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13913 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:36:07 +00:00 |
|
Russell Keith-Magee
|
0b7b3e1ae8
|
[1.2.X] Migrated datastructures utils doctests. Thanks to Stephan Jaekel.
Backport of r13891 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13912 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:35:39 +00:00 |
|
Russell Keith-Magee
|
46d1d951c2
|
[1.2.X] Migrated timesince utils doctests. Thanks to Stephan Jaekel.
Backport of r13890 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13911 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:35:07 +00:00 |
|
Russell Keith-Magee
|
4cd11f8681
|
[1.2.X] Reorganized utils tests so it's all in separate modules. Thanks to Stephan Jaekel.
Backport of r13889 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13910 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:34:41 +00:00 |
|
Russell Keith-Magee
|
494933a36b
|
[1.2.X] Migrated datetime_safe doctests. Thanks to Stephan Jaekel.
Backport of r13888 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13909 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2010-09-27 15:34:06 +00:00 |
|