summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2010-03-13[1.1.X] Fixed #13107: Adjusted decimal_places validation to accept 0 as a ↵Karen Tracey
valid value. Thanks to loewis for report. r12774 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12775 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-12[1.1.X] Fixed #11801 -- Corrected form validation to ensure you can still ↵Russell Keith-Magee
get deleted_forms and ordered_forms when a form that is being deleted doesn't validate. Thanks to dantallis for the report and patch. Backport of r12771 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12772 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-12[1.1.X] Fixed #12404 -- Improved model validation for CharField and ↵Russell Keith-Magee
DecimalField. Thanks to tiliv for the report, josh for the patch, and Leo for the tests. Backport of r12768 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12769 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-12[1.1.X] Fixed #11891 -- Ensured that attributes of get_absolute_url are ↵Russell Keith-Magee
preserved through the metaclass. Thanks to nfg for the report and patch. Backport of r12766 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12767 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-12[1.1.X] Fixed #11900 -- Corrected an edge case of transaction handling in ↵Russell Keith-Magee
the commit_on_success decorator. Thanks to guettli for the report, and Gabriel Hurley for the initial test case. Backport of r12764 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12765 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-12[1.1.X] Fixed #13093 -- Updated some decorators and the ↵Russell Keith-Magee
decorator_from_middleware function to allow callable classes to be decorated. Thanks to Brian Neal for the report. Backport of r12762 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12763 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-09[1.1.X] Fixed #12048 - MultiWidget does not define `__deepcopy__`Luke Plant
Thanks to powderflask for report, test case and initial patch. Backport of [12739] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12740 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-09[1.1.X] Changed last_executed_query to avoid raising exceptions on ↵Karen Tracey
non-utf8-encoded parameter data. r12737 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12738 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-09[1.1.X] Fixed #11183 - BaseForm init leaves pointers pointing back to ↵Luke Plant
base_fields Thanks to margieroginski for the report Backport of [12733] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12736 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-09[1.1.X] Fixed #12689: Fixed admin validation to report an error on invalid ↵Karen Tracey
exclude specification. Thanks for report to bparker and for patch with tests to ramiro. r12734 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12735 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-08[1.1.X] Fixed #12024: Changed admin code to avoid raising an exception when ↵Karen Tracey
a field listed in raw_id_fields has limit_choices_to specified as a Q object. Tweaked a test to trigger the condition and verify the fix. Finally, documented that limit_choices_to specified as a Q object has no effect on the choices available for fields listed in raw_id_fields, and removed another incorrect note that claimed limit_choices_to had no effect on inlines in the admin. r12728 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12729 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-08[1.1.X] Fixed #11461: Ensured complete traceback is available on the debug ↵Karen Tracey
page when an exception is encountered during template rendering, even when running on Python 2.6 or higher. Thanks Glenn. r12725 and r12726 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12727 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-08[1.1.X] Fixed #11940 - ModelForm evaluates callable default values on form ↵Luke Plant
class creation Thanks to Harm Geerts for the report and initial patch. Backport of [12721] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12722 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-08[1.1.X] Fixed #12240 - select_related doesn't work correctly when mixing ↵Luke Plant
nullable and non-nullable keys Thanks to embe for report and Alex for fix. Backport of 12719 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12720 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-07[1.1.X] Fixed #6228: Changed common middleware to respect request-specific ↵Karen Tracey
urlconf. Thanks trey, skevy, and mikexstudios. r12704 and r12705 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12706 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-07[1.1.X] Fixed #12876 -- Corrected a problem with recursive relations under ↵Russell Keith-Magee
deepcopy. Thanks to elachuni for the patch. Backport of r12700 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12702 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-07[1.1.X] Fixed #12858. DateTime related widgets now handle custom formats ↵Joseph Kocherhans
properly in _has_changed. Backport of r12698 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12699 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-07[1.1.X] Fixed #12913. Fields with choices now respect show_hidden_initial as ↵Joseph Kocherhans
a keyword argument to formfield. Backport of r12696 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12697 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-06[1.1.X] Fixed #12734. Deferred fields will now be properly converted to ↵Joseph Kocherhans
python when accessed. Backport of r12579 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12692 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-06[1.1.X] Fixed #6918, #12791: If an email message has an encoding, actually ↵Karen Tracey
use that encoding to encode body and headers. Thanks for patch with tests oyvind. Backport of r12683 and r12688 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12689 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-05[1.1.X] Fixed #12151: Ensured the comments code does not cause a server ↵Karen Tracey
error when a request comes in for a comment specifying an invalid primary key value. Thanks thejaswi_puthraya. r12681 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12682 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-05[1.1.X] Fixed #12083: Ensured generating debug 404 page won't raise a key ↵Karen Tracey
error. Thanks pigletto. r12679 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12680 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-04[1.1.X] Made Python 2.3 compatibility fixes for some recent test additions.Karen Tracey
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12678 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-03[1.1.X] Expanded the fix in [12663] to cover CSS declarations, which were ↵James Bennett
also affected by the bug. Refs #12879. Backport of [12665] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12666 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-03[1.1.X] Fixed #12879: Declaring the same JS file multiple times in a single ↵James Bennett
Media instance now only includes that file once. Backport of [12663] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12664 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-02[1.1.X] Fixed #12898: Reverted a change that assumed the file system ↵Karen Tracey
encoding was utf8, and changed a test to demonstrate how that assumption corrupted uploaded non-ASCII file names on systems that don't use utf8 as their file system encoding (Windows for one, specifically). Thanks for the report to vrehak. r12661 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12662 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-02[1.1.X] Fixed #11522: Restored ability of http redirect responses to ↵Karen Tracey
correctly handle redirect locations with non-ASCII chars. r12659 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-02[1.1.X] Fixed Bosnian language code introduced in r12330.Jannis Leidel
Backport from r12657. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12658 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-02[1.1.X] Fixed #6510 -- Refactored the way child nodes are found in template ↵Russell Keith-Magee
nodes to avoid potential inconsistencies. Thanks to SmileyChris for the patch. Backport of r12654 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12655 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-02[1.1.X] Fixed #11465: Ensure nonexistent pks enterd in an admin raw id field ↵Karen Tracey
do not cause a server error. Thanks for report and initial patch sacre@wp.pl. Backport of r12648 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12649 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-02[1.1.X] Fixed a silly bug in [12644].Jacob Kaplan-Moss
Backport of [12646]. Of course, this sort of thing *does* do wonders for my commit count. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12647 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-01[1.1.X] Fixed #1104: set `FormWizard.extra_context` in `__init__` to avoid ↵Jacob Kaplan-Moss
context leakage. Backport of [12644] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12645 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-01[1.1.X] Fixed #5605: only lowercase the domain portion of an email address ↵Jacob Kaplan-Moss
in `UserManager.create_user`. Thanks, Leo. Backport of [12641] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12642 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-01[1.1.X] Fixed #10878, an error in the `Moderator` docstring.Jacob Kaplan-Moss
Thanks, Travis Cline. Backport of [12639] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12640 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-01[1.1.X] Fixed #11012: don't needless convert cache values to unicode.Jacob Kaplan-Moss
This means you can now successfully store binary blogs, such as compressed data, in the cache. Thanks to Matt Croydon for the final patch. Backport of [12637] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12638 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-01[1.1.X] Fixed #11457: tightened the security check for "next" redirects ↵Jacob Kaplan-Moss
after logins. The new behavior still disallows redirects to off-site URLs, but now allows redirects of the form `/some/other/view?foo=http://...`. Thanks to brutasse. Backport of [12635] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12636 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-01[1.1.X] Fixed #11791: Put hidden input elements in the change list inside td ↵Karen Tracey
elements so they're valid HTML. Thanks panni and mlavin. r12631 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12632 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-01[1.1.X] Fixed #12966 - Force unicode of verbose labels in admin change messages.Jannis Leidel
Backport of r12627. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12628 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-28[1.1.X] Fixed #12302: Modified force_unicode to avoid raising unicode errors ↵Karen Tracey
when handed exceptions with non-ASCII bytestring data and no working unicode method under Python 2.6 and higher. r12621 and r12622 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12623 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-27[1.1.X] Removed more stray tabs in Python files. Karen Tracey
Applicable parts of r12616 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12617 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-27[1.1.X] Fixed #12981 -- Removed some stray tabs. Thanks to loewis for the ↵Karen Tracey
report. Backport of the applicable part of r12614 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12615 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Fixed #12608 -- No longer return inconsistent results when using ↵Justin Bronn
values and values_list in conjunction with annotate. Thanks, Charlie Leifer. Backport of r12505 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12613 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Fixed #5971 - Fixed inconsistent behaviour of the TokenParser when ↵Jannis Leidel
parsing filters that follow constant strings or variables. Thanks Dmitri Fedortchenko, Adam Vandenberg and Ramiro Morales. Backport of r12471. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12610 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Fixed #11384 - Make sure translations in the project directory ↵Jannis Leidel
really override translations in apps as specified in the docs. Backport of r12447. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Corrected an edge case introduced in r12602. Thanks to Ramiro ↵Russell Keith-Magee
Morales for the eagle eyes. Backport of r12605 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12606 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Fixed #1480 -- Added the ability to use the system timezone. Thanks ↵Russell Keith-Magee
to Ramiro Morales for the patch. Backport of r12602 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12603 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Python 2.3 compatibility: moved the fallback import for set to where ↵Karen Tracey
set() is now used. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12601 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Fixed #6191, #11296 -- Modified the admin deletion confirmation page ↵Russell Keith-Magee
to use the same object collection scheme as the actual deletion. This ensures that all objects that may be deleted are actually deleted, and that cyclic display problems are avoided. Thanks to carljm for the patch. Backport of r12598 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12600 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Fixed #11226 -- Corrected an validation edge case with m2m relations ↵Russell Keith-Magee
between two models with the same class name. Thanks to pkoch for the report, and to Ramiro Morales for the patch. Backport of r12489 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12596 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26[1.1.X] Fixed a bunch of Python 2.3 incompatibilities that had crept into ↵Karen Tracey
the 1.1.X branch. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12595 bcc190cf-cafb-0310-a4f2-bffc1f526a37