summaryrefslogtreecommitdiff
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-11[1.1.X] Python 2.3 doesn't do decorators.Karen Tracey
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12761 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-11[1.1.X] Corrected a markup error in middleware docs. Backport of applicable ↵James Bennett
bits of [12759] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12760 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-11[1.1.X] Fixed #13084: Corrected typo in error-reporting docs. Backport of ↵James Bennett
[12757] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12758 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] Updated svnmerge metadata to reflect changesets that have been and ↵Karen Tracey
should not be merged. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12731 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] Move the tests added for #12302 to where some other tests for debug ↵Karen Tracey
page responses already existed. r12723 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12724 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-08[1.1.X] Made a few Python 2.3 compatibility test fixes.Karen Tracey
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12716 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-08[1.1.X] Fixed #12097 -- Cleaned up the documentation for ModelChoiceField ↵Russell Keith-Magee
and MultipleModelChoiceField. Thanks to JasonYosinski for the patch. Backport of r12712 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12715 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-08[1.1.X] Fixed #12114 -- Clarified the existence of the reverse relation _set ↵Russell Keith-Magee
in the tutorial. Thanks to panfist for the suggestion, and dwillis for the patch. Backport of r12711 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12714 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-08[1.1.X] Fixed #12811 -- Modified Tutorial 2 to indicate that the templating ↵Russell Keith-Magee
language will be covered later. Thanks to bac for the suggestion, and Gabriel Hurley for the draft text. Backport of r12710 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12713 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] snvmerge metadata housekeeping.Karen Tracey
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12703 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-07[1.1.X] Fixed #13048: Corrected typo in email documentation. Backport of ↵James Bennett
[12694] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12695 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-06[1.1.X] Fixed #11680: Added a note in the error-reporting documentation ↵James Bennett
about basic e-mail configuration. Backport of [12686] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12687 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] Fixed the files test to not care whether the names are reported as ↵Karen Tracey
bytestrings or unicode. Refs #12898. r12676 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12677 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-03[1.1.X] Fixed #12601: Documented the slug field in the forms module. ↵James Bennett
Backport of [12673] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12674 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-03[1.1.X] Fixed #12217: Documented the fact that serving flatpages from the ↵James Bennett
flatpage middleware does not apply view middleware methods. Backport of [12671] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12672 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-03[1.1.X] Fixed #11889: Documented the fact that context processors will ↵James Bennett
overwrite pre-existing context variables of the same names. Backport of [12669] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12670 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-03[1.1.X] Fixed #11883: Documented how to set a custom template name on a ↵James Bennett
flatpage. Backport of [12667] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12668 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 #12946: Removed an invalid example of url tag usage from the ↵Karen Tracey
docs. r12652 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12653 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-02[1.1.X] Fixed #11710: Made a small test change to ensure utf-8 bytestrings ↵Karen Tracey
in verbose_names don't cause a server error when the admin change log message is built. The necessary code fix was made for #12966 in r12627. Thanks Rupe. r12650 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12651 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