Adrian Holovaty
|
6091f0ead3
|
Fixed #15621 -- Fixed potentially confusing error message in db backend loading. Thanks, keegan_csmith
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15871 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-17 16:57:37 +00:00 |
Russell Keith-Magee
|
a0878b5f95
|
Fixed #15627 -- Use constant time comparison for password checks. Thanks to hvdklauw for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15870 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-17 11:51:07 +00:00 |
Russell Keith-Magee
|
7ab5ce6cf1
|
Fixed #15628 -- Made the admin error email more useful when there isn't a request associated with the message. Thanks to hynek for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15869 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-17 10:33:08 +00:00 |
Russell Keith-Magee
|
354aa941b6
|
Fixed #15622 -- Clear content type cache to avoid problems with subsequence TransactionTestCases. Thanks to zyga for the report
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15867 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-17 08:41:25 +00:00 |
Russell Keith-Magee
|
b49ee91eb3
|
Fixed #15142 -- Force test views to be non-cached so that projects with caching middleware enabled don't cause test failures. Thanks to jsdalton for the report and patch
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-17 08:07:40 +00:00 |
Russell Keith-Magee
|
1af33427cb
|
Fixed #15623 -- Corrected province codes for Canadian localflavor. Thanks to shelldweller for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15864 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-17 00:59:30 +00:00 |
Russell Keith-Magee
|
c2ae6b2af7
|
Fixed #15569 -- Corrected the numbering updates to inlines when rows are added and deleted. Thanks to sbaechler for the report, to Arthur de Jong and mk for the work on the patch, and to Karen Tracey for the last minute testing help.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15862 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-17 00:44:12 +00:00 |
Justin Bronn
|
274849c873
|
Added GIS test fixture directories to the MANIFEST.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15860 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 19:02:56 +00:00 |
Justin Bronn
|
d60a8777c1
|
Add `setUp` and `tearDown` methods to the geographic feed and sitemap tests to ensure `Site` exists for tests.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 18:22:52 +00:00 |
Justin Bronn
|
127331041e
|
Use Sphinx `:download:` directives for spatial database template creation scripts instead of linking to geodjango.org.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 16:21:16 +00:00 |
Justin Bronn
|
4da019ea19
|
Fixed #15194 -- Add OSGeo4W DLL library names to GEOS and GDAL interfaces. Thanks, master for ticket and initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15852 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 04:44:26 +00:00 |
Adrian Holovaty
|
ad55bb0f87
|
Changed django/db/utils.py load_backend() to call sorted() instead of .sort(). Saves us a line of code. Taken from patch for #15621
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15851 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 04:26:38 +00:00 |
Adrian Holovaty
|
304a50d8ca
|
Fixed #15603 -- Changed the traceback error e-mails not to use HTML by default. It's now configurable with an 'include_html' parameter to AdminEmailHandler. Thanks, kmtracey
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15850 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 04:13:57 +00:00 |
Adrian Holovaty
|
2ee7cfcf1c
|
Corrected email --> e-mail in topics/logging.txt. Refs #15603
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15849 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 04:02:40 +00:00 |
Adrian Holovaty
|
ccc972e750
|
Fixed #15618 -- CookieStorage storage in messages framework now honors SESSION_COOKIE_DOMAIN. Thanks for the report and patch, lamby
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15848 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 03:50:51 +00:00 |
Adrian Holovaty
|
f71384a52b
|
Fixed #15229 -- Improved URLValidator to accept ftp:// links. Thanks, codefisher and crayz_train
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15847 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 03:38:34 +00:00 |
Justin Bronn
|
ebd5682989
|
Fixed #15533 -- Now use 3857 as spherical mercator projection instead of deprecated 900913 on platforms that support it. Thanks to cnorthwood for bug report and Christopher Schmidt for OpenLayers JavaScript workaround.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15845 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-16 02:58:35 +00:00 |
Jannis Leidel
|
10e1f5d1d2
|
Refined changes to Polish localization format file made in r13298 and r13327 by using non-breaking space. Refs #13577.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 22:13:36 +00:00 |
Jannis Leidel
|
d83cf4066c
|
Fixed mistake introduced in r15838 regarding naming of Mexican Spanish.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15842 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 22:13:29 +00:00 |
Jannis Leidel
|
b46cbc49c2
|
Fixed #15608 -- Added Nicaraguan Spanish locale (format file only). Thanks, fitoria.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15841 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 22:13:24 +00:00 |
Luke Plant
|
243d0bec19
|
Fixed #15617 - CSRF referer checking too strict
Thanks to adam for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15840 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:37:09 +00:00 |
Jannis Leidel
|
ad4118be44
|
Fixed #15598 -- Updated static URL helper to be no-op on non-local prefixes. Thanks, traff.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15839 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:13:21 +00:00 |
Jannis Leidel
|
5050e30507
|
Fixed #15563 -- Update the LANG_INFO dictionary with newly added translations az, es-mx and ur. Thanks, lasko.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15838 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:13:18 +00:00 |
Jannis Leidel
|
1df1f2aa1c
|
Pulled sites translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15837 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:13:13 +00:00 |
Jannis Leidel
|
d31cf12be1
|
Pulled sessions translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15836 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:12:38 +00:00 |
Jannis Leidel
|
4380fc2832
|
Pulled redirects translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15835 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:12:07 +00:00 |
Jannis Leidel
|
364cf89e06
|
Pulled messages translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15834 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:11:36 +00:00 |
Jannis Leidel
|
e5ccf0b9ba
|
Pulled localflavor translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15833 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:11:04 +00:00 |
Jannis Leidel
|
f193c17979
|
Pulled humanize translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15832 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:10:24 +00:00 |
Jannis Leidel
|
71e6f9b84d
|
Pulled gis translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15831 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:09:41 +00:00 |
Jannis Leidel
|
25f975a729
|
Pulled formtools translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15830 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:09:10 +00:00 |
Jannis Leidel
|
f7c8ce1d39
|
Pulled flatpages translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15829 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:08:36 +00:00 |
Jannis Leidel
|
e950cbf386
|
Pulled contenttypes translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15828 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:08:06 +00:00 |
Jannis Leidel
|
1bbe626033
|
Pulled comments translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15827 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:07:32 +00:00 |
Jannis Leidel
|
ffe88a7a6c
|
Pulled auth translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15826 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:06:58 +00:00 |
Jannis Leidel
|
ddbbb60077
|
Pulled admindocs translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15825 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:06:26 +00:00 |
Jannis Leidel
|
24350e45a3
|
Pulled admin translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15824 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:05:50 +00:00 |
Jannis Leidel
|
0b468d79b0
|
Pulled core translation updates from Transifex.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15823 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 20:05:03 +00:00 |
Adrian Holovaty
|
b1f67e7317
|
Fixed #15614 -- Fixed potentially confusing URLconf examples in docs/ref/generic-views.txt by adding explicit import statement and using function passing instead of strings in the URLpattern
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15822 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 17:07:16 +00:00 |
Russell Keith-Magee
|
6eb1c58430
|
Added file mistakenly ommitted from r15819
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 09:30:01 +00:00 |
Russell Keith-Magee
|
87a100b642
|
Fixed #15575 -- Corrected handling of pagination in generic views to match documentation and historical behavior. Thanks to Ivan Virabyan for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15820 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 08:24:31 +00:00 |
Russell Keith-Magee
|
c966566171
|
Fixed #14960 -- Added tests for inclusion tags. Thanks to Julien Phalip for the report, and to avenet and Paul Bissex for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15819 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 08:20:14 +00:00 |
Russell Keith-Magee
|
23288d1955
|
Fixed #15594 -- Corrected typo in the docs on HTTPOnly cookies. Thanks to philwills for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 08:19:57 +00:00 |
Russell Keith-Magee
|
350a56ad49
|
Fixed #15606 -- Ensured that boolean fields always use the Boolean filterspec. Thanks to Martin Tiršel for the report
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15817 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 08:19:39 +00:00 |
Russell Keith-Magee
|
6d991d10d6
|
Minor grammar fix to release notes added in r15765.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15816 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 08:19:17 +00:00 |
Justin Bronn
|
1fdbcadd22
|
Fixed #15378 -- Now properly handle OGR layers that have features with invalid geometries. Thanks, kunitoki for bug report and initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15813 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-15 02:26:37 +00:00 |
Adrian Holovaty
|
dd3313bf6d
|
Fixed #10654 -- Removed 'Does it have syntax errors' from the ImportError in django/conf/__init__.py. Evidently syntax errors raise a SyntaxError. Thanks, gutworth and alexr
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15812 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-14 23:06:06 +00:00 |
Adrian Holovaty
|
4e25bc71b1
|
Fixed #15609 -- Fixed some 'raise' statements to use the newer style syntax. Thanks, DaNmarner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15811 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-14 23:00:03 +00:00 |
Carl Meyer
|
f43b3f58fb
|
Added backwards-incompatibility note for r15805.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-14 22:49:14 +00:00 |
Justin Bronn
|
ab7ada16ed
|
Fixed brittle tests that broke with release of GDAL 1.8.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15806 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2011-03-14 21:15:34 +00:00 |