Anssi Kääriäinen
|
d5b93d3281
|
Fixed #10494 -- Added kwargs to QuerySet.get() error message in the case no objects were found.
Thanks brondsem for the report, Szymon Pyzalski for the patch and oinopion for review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-20 11:09:32 +00:00 |
Claude Paroz
|
0e01023897
|
Converted more test assertions to assert[Not]Contains.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17910 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-14 13:35:25 +00:00 |
Claude Paroz
|
749243941c
|
Fixed #18041 -- Removed support for Markdown versions < 2.1, following the 1.5 deprecation timeline. Thanks Ramiro Morales for the review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17909 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-14 12:35:31 +00:00 |
Claude Paroz
|
2cd516002d
|
Fixed #18002 -- Fixed typo in attribute name in ReverseSingleRelatedObjectDescriptor.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17904 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-12 20:23:41 +00:00 |
Claude Paroz
|
844e56e21a
|
Fixed #18039 -- Changed geometry transform without a SRID raise a GEOSException.
This was planned in the official deprecation timeline for 1.5.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17903 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-12 16:35:28 +00:00 |
Aymeric Augustin
|
632b6a1a73
|
Fixed #17439 -- Prevented spurious queries for missing objects after prefetch_related has run.
That affects nullable foreign key, nullable one-to-one, and reverse one-to-one relations.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17899 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-11 21:11:22 +00:00 |
Claude Paroz
|
e2548ec2a9
|
Fixed #18071 -- Ignored case sensitivity in urlize utility. Thanks luke@creaturecreative.com and adamzap for the report and the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17898 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-11 17:49:22 +00:00 |
Aymeric Augustin
|
f0697570e9
|
Fixed #18103 -- Regression introduced in r17895.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17896 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-11 13:00:38 +00:00 |
Aymeric Augustin
|
93240b7d90
|
Fixed #17229 -- Allow 'True', 'False' and 'None' to resolve to the corresponding Python objects in templates.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17894 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-10 20:49:45 +00:00 |
Aymeric Augustin
|
28e5b66518
|
Fixed #18087 -- Prevented date-based generic views from loading entire tables in memory when pagination is enabled.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17893 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-10 20:05:46 +00:00 |
Aymeric Augustin
|
b90d4e5b74
|
Made the caching of related and reverse related objects consistent in OneToOneFields. Fixed #13839. Refs #17439.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17890 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-10 12:29:25 +00:00 |
Aymeric Augustin
|
1f11069aa5
|
Fixed #18090 -- Applied filters when running prefetch_related backwards through a one-to-one relation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17888 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-10 06:04:53 +00:00 |
Carl Meyer
|
f195f1ed24
|
Fixed #18083 -- Fixed cascade deletion with proxy model of concrete subclass. Thanks Simon Charette for report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17887 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-09 22:41:20 +00:00 |
Julien Phalip
|
6f7aa51b2c
|
Fixed #17864 -- Added Hong Kong localflavor. Thanks to mrkschan and Adrien Lemaire.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17886 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-09 17:25:02 +00:00 |
Claude Paroz
|
883c38c499
|
Fixed #17848 -- Added setting_changed signal for cases when TEMPLATE_CONTEXT_PROCESSORS is overriden in tests.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17885 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-09 13:24:57 +00:00 |
Julien Phalip
|
a0b55f30a8
|
Fixed #18086 -- Restored '-pk' as the default order in the admin changelist. This rectifies a slight change in behavior introduced in Django 1.4 and r17635.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17881 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-09 04:28:32 +00:00 |
Julien Phalip
|
93d1fdb130
|
Fixed #17877 -- Ensured that extra WHERE clauses get correctly ANDed when they contain OR operations. Thanks to Marek Brzóska for the report, to eleather for the test case and to Adrien Lemaire for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17880 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-09 00:43:08 +00:00 |
Claude Paroz
|
5c53e30607
|
Fixed #18035 -- Removed deprecated AdminMediaHandler, as per official deprecation timeline. Thanks Jannis Leidel and Ramiro Morales for the review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17879 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-08 21:13:32 +00:00 |
Anssi Kääriäinen
|
4f62352412
|
Fixed #18014 -- Removed rev_join_map from sql/query.py.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17878 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-08 12:29:05 +00:00 |
Claude Paroz
|
8dd04fd84b
|
Fixed #15683 -- Prevented escaped string to be needlessly marked safe twice in force_escape filter. Thanks tyrion for the initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17876 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-07 15:16:11 +00:00 |
Claude Paroz
|
8663bc1103
|
Fixed #16074 -- Added ContextMixin to class-based generic views to handle get_context_data. Thanks emyller, Luke Plant, Preston Holmes for working on the ticket and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-06 21:24:33 +00:00 |
Claude Paroz
|
5c954136ea
|
Fixed #15644 -- Improved Django File wrapper to support more file-like objects. Thanks nickname123 and Michael Palumbo for working on the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17871 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-05 15:44:04 +00:00 |
Claude Paroz
|
5e047ed859
|
Removed pre-2.6 compatibility code in date-based form fields. Refs #9459.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17870 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-05 14:49:02 +00:00 |
Claude Paroz
|
4b3fd424f4
|
Fixed #15782 -- Prevented MySQL backend to crash on runserver when db server is down. Thanks toofishes for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17868 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-02 20:29:50 +00:00 |
Ramiro Morales
|
cac5d9fd80
|
Fixed #18022 -- Fixed import of standalone Python 'json' module.
Thanks Clueless for the report and initial patch.
Refs #17071, r17018.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-01 21:11:46 +00:00 |
Ramiro Morales
|
7d5979f953
|
Removed broken function-based custom test runner in GeoDjango
We forgot to delete it during the 1.4 development cycle.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17864 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-04-01 21:03:50 +00:00 |
Ramiro Morales
|
b41ebcf1b9
|
Fixed #18040 -- Removed so-called project-level locale trees from the list of paths the translation loading process takes in account.
Deprecated in Django 1.3. Removed completely for Django 1.5.
Thanks Claude for the review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17861 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 22:24:24 +00:00 |
Ramiro Morales
|
f38cf60c35
|
Advanced version identifiers for 1.5 development cycle.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17860 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 19:39:28 +00:00 |
Claude Paroz
|
2d01c9de69
|
Removed some more useless code related to the verify_exists removal.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 18:27:17 +00:00 |
Julien Phalip
|
c39e1cff99
|
Fixed #17972 -- Ensured that admin filters on a foreign key respect the `to_field` attribute. This fixes a regression introduced in [14674] and Django 1.3. Thanks to graveyboat and Karen Tracey for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 18:22:12 +00:00 |
Aymeric Augustin
|
ad355e48ce
|
Moved a template that was added in the wrong directory.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 17:16:14 +00:00 |
Aymeric Augustin
|
98e9d1c6ab
|
Used the override_settings decorator in the tests of auth, flatpages, and formtools.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17851 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 16:03:09 +00:00 |
Claude Paroz
|
6d9227bb0f
|
Removed some more imports/warnings useless after recent removals.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17850 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 15:20:57 +00:00 |
Claude Paroz
|
d2e273e295
|
Fixed #18029 -- Removed leftover mod_python files forgotten in r17835.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17849 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 14:50:54 +00:00 |
Aymeric Augustin
|
9ed6e08ff9
|
Removed deprecated URLField.verify_exists.
The deprecation schedule was slightly accelerated because of possible security ramifications.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17847 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 13:55:03 +00:00 |
Aymeric Augustin
|
fbfaa35fb0
|
Required that the MEDIA_URL and STATIC_URL settings end with a slash, per the deprecation timeline.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17845 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 13:01:59 +00:00 |
Aymeric Augustin
|
95d9662f39
|
Removed deprecated copy of PermWrapper and PermLookupDict from django.core.context_processors.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17844 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 12:57:06 +00:00 |
Aymeric Augustin
|
bfbe4dfff7
|
Removed deprecated CompatCookie.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 12:54:40 +00:00 |
Aymeric Augustin
|
d38690796c
|
Removed the deprecated reset and sqlreset management commands.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17842 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 12:38:11 +00:00 |
Aymeric Augustin
|
dec21a1d4b
|
Removed deprecated and undocumented function django.contrib.formtools.utils.security_hash().
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17841 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 12:26:46 +00:00 |
Aymeric Augustin
|
c7229c681e
|
Removed deprecated DjangoTestRunner.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17840 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 12:22:52 +00:00 |
Aymeric Augustin
|
3f16506809
|
Removed deprecated attribute Response.template in the test client. Refs #12226.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17839 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 12:18:50 +00:00 |
Aymeric Augustin
|
9e11ff2665
|
Prevented Django from running with an empty secret key. Refs #17800.
This accelerated deprecation schedule was documented in r17617.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17836 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 11:44:57 +00:00 |
Claude Paroz
|
a1ffb02107
|
Fixed #18029 -- Removed mod_python as of deprecation process. Thanks Aymeric Augustin for the review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17835 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 10:34:11 +00:00 |
Claude Paroz
|
23d3459761
|
Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for the initial patch and Aymeric Augustin for the review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17834 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-31 08:24:29 +00:00 |
Aymeric Augustin
|
4fe87c370d
|
Removed some Python < 2.6 compatibility code. Refs #17965.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17830 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-30 09:20:04 +00:00 |
Aymeric Augustin
|
eb163f37cb
|
Use the class decorator syntax available in Python >= 2.6. Refs #17965.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17829 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-30 09:08:29 +00:00 |
Claude Paroz
|
9383a2761c
|
Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks jonash for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17828 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-30 08:02:08 +00:00 |
Claude Paroz
|
8bb5b60628
|
Fixed #17811 -- Added connection parameter in call to EmailMessage from send_mass_mail. Thanks fed239 for the report and danielr for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17827 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-29 18:53:27 +00:00 |
Claude Paroz
|
31e84e40f8
|
Fixed #17870 -- Documented that EmailField default max_length of 75 does not comply with RFCs 3696/5321. Thanks Rotund for the report and the patch and Russell Keith-Magee for the review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17826 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2012-03-29 18:39:21 +00:00 |