summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-11[1.2.X] Bump to 1.2.3.1.2.3James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13749 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-11[1.2.X] Improved unicode-type, ASCII-convertible header handling inMalcolm Tredinnick
HttpResponse. Fixed #8765. Thanks to SmileyChris and semenov for working on this one. Backport of r13740 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13748 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-11[1.2.X] Fixed id attribute generation in the admin docs page. Patch from simeon.Malcolm Tredinnick
Fixed #3695. Thanks. Backport of r13728 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13747 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-11[1.2.X] Fixed #13599 -- No longer embed hidden `<td>` elements in ↵Justin Bronn
`ChangeList` that cause improper rendering when `list_editable` is enabled; refactored `admin_changelist` tests. Thanks, skevy for bug report and patch. Backport of r13744 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13745 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-11[1.2.X] Fixed #12632 -- Improved performance of `SortedDict`. Thanks, Alex ↵Justin Bronn
Gaynor. Backport of r13742 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13743 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed a test so that it actually tests what it's supposed to test.Luke Plant
Previously it passed whether or not the view was 'csrf_exempt'ed. Backport of [13735] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13736 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #14235 - UnicodeDecodeError in CSRF middlewareLuke Plant
Thanks to jbg for the report. This changeset essentially backs out [13698] in favour of a method that sanitizes the token rather than escaping it. Backport of [13732] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13733 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #13095 -- `formfield_callback` keyword argument is now more ↵Justin Bronn
sane and works with widgets defined in `ModelForm.Meta.widgets`. Thanks, hvdklauw for bug report, vung for initial patch, and carljm for review. Backport of r13730 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13731 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #13799, a test failure on Postgres. Thanks, Alex. Karen Tracey
r13400 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13727 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Converted doctest to unittest. Patch by Alex Gaynor.Jannis Leidel
Backport from trunk (r13725). git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13726 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed typos in es_AR translation.Ramiro Morales
Backport of r13572 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13724 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #14245 -- Added some files and paths missing from the ↵Russell Keith-Magee
MANIFEST.in. Thanks to pmclanahan for the report. Backport of r13719 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13720 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Pass commit=False to loaddata in tests, which will keep the DB ↵Karen Tracey
connection open. Closing the connection has the side-effect on some DBs (Postgres, MySQL/InnoDB) of rolling back the transaction that was in progress, causing these tests to fail. r13717 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13718 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #11158 - get_image_dimensions very slow/incorrect after 1 callLuke Plant
Thanks to kua for the report, and to kua, SmileyChris and SAn for the patch Backport of [13715] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13716 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #14246: Modified aggregation_regress tests so that they will ↵Karen Tracey
pass on a variety (sqlite, Postgres, MySQL/MyISAM) of DBs. r13712 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13714 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed some of the problems with aggregation_regress tests on higher ↵Karen Tracey
levles of Postgres. Refs #14246. r13709 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13710 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #14247 - 'forms' test failure in 1.2.XLuke Plant
Thanks to ramiro/pmclanaham for the report and analysis. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13707 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10[1.2.X] Fixed #14250 - FileBasedCacheTests.test_cull test failureLuke Plant
This patch makes the cull behaviour (which files deleted and how many deleted) deterministic. Backport of [13705] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13706 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-09[1.2.X] Fixed #14242 - UserChangeForm subclasses without 'user_permissions' ↵Luke Plant
field causes KeyError This was a regression introduced by [13684] Thanks to adammckerlie@gmail.com for report. Backport of [13702] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13704 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-09[1.2.X] Converted tests for contrib.auth.forms to unit tests.Luke Plant
Backport of [13701], needed in order to backport [13702] git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13703 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-09[1.2.X] Increment to Django 1.2.2.1.2.2James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13700 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-09[1.2.X] Patch CSRF-protection system to deal with reported security issue. ↵James Bennett
Announcement and details to follow. Backport of [13698] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13699 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-07[1.2.X] Fixed #13081 - Admin actions lose get-parameters in changelist viewLuke Plant
Thanks to joh for report and to SmileyChris for patch. Backport of [13696] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13697 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-07[1.2.X] Fixed #13350 - Documentation on autoescape should mention endautoescapeLuke Plant
Thanks to mountainpaul@gmail.com for report and to dwillis for patch. Backport of [13694] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13695 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-07[1.2.X] Fixed #13414 - QuerySet API ref wrong sql equivalent in __year ↵Luke Plant
lookup example Thanks to idle for report and patch Backport of [13690] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13693 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-07[1.2.X] Fixed #13853 - line with csrf_token too wideLuke Plant
Thanks to alper for report, alper/richardb for patch Backport of [13688] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13691 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-07[1.2.X] Fixed #14205 - Tiny grammar fix in form validation documentationLuke Plant
Thanks to zendak for report and patch. Backport of [13687] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13689 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-03[1.2.X] Fixed #13754 - Add a note about a test client session property gotchaLuke Plant
Thanks SmileyChris for report and patch. Backport of [13685] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13686 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-03Fixed #14090 - Many sql queries needed to display change user formLuke Plant
Thanks to Suor for report and patch. Backport for [13683] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13684 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-03[1.2.X] Added explanatory note on CSRF failure page for the case of a ↵Luke Plant
missing Referer header. This is intended to help power users who have disabled Referer headers, or installed add-ons which have done so, and to help web site administrators with debugging, since this problem will be browser specific and not a programming error. Backport of [13680] from trunk. Technically this is a (tiny) new feature, but it has been backported because it might give significant help with debugging rare problems with Django 1.2's new CSRF protection. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13682 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-03[1.2.X] Fixed #14145 - undeterministic behavior when project or app template ↵Luke Plant
contains dotdir Thanks to marbu for report and patch. Backport of [13668] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13681 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-31[1.2.X] Fixed #14199 -- Added a missing table creation statement in the db ↵Russell Keith-Magee
cache backend cull implementation, and added tests for cache culling. Thanks to Tim for the report. Backport of r13678 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13679 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-30[1.2.X] Fixed #14198 -- Corrected rendering of generic sitemaps when no ↵Russell Keith-Magee
priority is specified. Thanks to palkeo for the report. Backport of r13676 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13677 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-30[1.2.X] Fixed #14054 -- Added documentation for the connection_created ↵Russell Keith-Magee
event. Thanks to Rob Hudson for the report and patch. Backport of r13673 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13675 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-30[1.2.X] Fixed #13798 -- Added connection argument to the connection_created ↵Russell Keith-Magee
signal. Thanks to liangent for the report, and Alex Gaynor for the patch. Backport of r13672 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13674 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-30[1.2.X] Added a missing (empty) models.py file required for the tests from ↵Russell Keith-Magee
r13644 to actually run. Backport of r13670 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13671 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-30Fixed #14189 - permalink docs import mistakeLuke Plant
Thanks to 7times9 for report and patch. Backport of [13666] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13667 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-30[1.2.X] Fixed #13759 - Multi-db docs have an example that isn't syntax ↵Luke Plant
highlighting Thanks to Tim Hatch for report and patch. Backport of [13664] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13665 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-28[1.2.X] Fixed #12343 -- Added support for connection-by-socket to MySQL ↵Russell Keith-Magee
using the dbshell management command. Thanks to elyon001@gmail.com for the report, and sfllaw for the patch. Backport of r13660 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13663 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-28[1.2.X] Fixed #13723 -- Improved the legibility of hyperlinks included in ↵Russell Keith-Magee
admin validation error messages. Thanks to Sebastian Noack for the suggestion and patch. Backport of r13659 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13662 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-28[1.2.X] Fixed #13681 -- Added a commented out admindocs entry to the default ↵Russell Keith-Magee
INSTALLED_APPS for a new project. Thanks to elkan for the report, and andrews for the patch. Backport of r13658 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13661 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-28[1.2.X] Fixed #14166 -- Modified the list of state choices in the Indian ↵Russell Keith-Magee
localflavor to be a list of tuples, not just a list of values. Thanks to gogna for the report and patch. Backport of r13656 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13657 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-28[1.2.X] Fixed #14185 - improved example SQL for 'select' example.Luke Plant
Thanks to Trindaz for the suggestion. Also fixed some references to 'lede' which is no longer part of the example Blog model. Backport of [13652] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13653 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-28[1.2.X] Removed a stray DEBUG=True test setting introduced in r13641.Russell Keith-Magee
Backport of r13650 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13651 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-28[1.2.X] Refactored markup documentation to give it it's own home.Russell Keith-Magee
Backport of r13647 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13649 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-27[1.2.X] Fixed #14164 -- Ensure that sitemap priorities aren't rendered with ↵Russell Keith-Magee
localized numerical formats. Thanks to dokterbob for the report, and vung for the draft patch. Backport of r13644 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13646 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-27[1.2.X] Fixed #14156 -- Modified the way CSRF protection is applied to ↵Russell Keith-Magee
flatpages so that the flatpage middleware doesn't cause all POSTs resulting in 404s to turn into 403s. Thanks to patrys for the report. Backport of r13641 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13643 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-27[1.2.X] Fixed #14116 -- Added a flag to enable CSRF checks in the test ↵Russell Keith-Magee
client. Thanks to jon@licq.org for the suggestion. Backport of r13640 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13642 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-26[1.2.X] Fixed #14172: Corrected misspelling of explicitly. Thanks 3point2. Karen Tracey
r13638 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13639 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-24[1.2.X] Fixed #14159 -- Corrected more potential uses of relative paths in ↵Russell Keith-Magee
tests. Thanks to Alex Gaynor for the patch. Backport of r13636 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13637 bcc190cf-cafb-0310-a4f2-bffc1f526a37