summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2010-04-12[1.1.X] Fixed #11711 -- clarified that ValuesQuerySets are not lists per se.Karen Tracey
It rarely hurts to think of the returned result from a values() or values_list() call as a list, but it's really an iterable and sometimes the difference matters. r12743 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12953 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-04-12[1.1.X] Fixed two small doc markup errors. Karen Tracey
Partial merge of r12741 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-04-05[1.1.X] Fixed #11949 -- Added a hook to allow ModelAdmin customization of ↵Russell Keith-Magee
the delete selected template. Thanks to bendavis78 for the report and patch, and Ramiro Morales for his cleanup work. Backport of r12916 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-27[1.1.X] Fixed #13103 -- A bit of re-organization to the custom template ↵Gary Wilson Jr
`ModelAdmin` options documentation section to remove some duplication and fix some confusing wording. Backport of r12868 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12869 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-27[1.1.X] Fixed #13202 -- Documented required libraries for markup template ↵Gary Wilson Jr
tags, based on patch from steveed. Backport of r12860 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12861 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-23[1.1.X] Fixed #13177 -- Corrected usage of firstof in admin templates. ↵Russell Keith-Magee
Thanks to nomulous for the report and patch. Backport of r12840 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12841 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-20[1.1.X] Fixed `fieldlookup` docs cross-reference directive, and added it to ↵Justin Bronn
the queryset reference. Refs #12930. Backport of r12808 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-16[1.1.X] Fixed #10361 -- Added documentation for ComboField and ↵Gary Wilson Jr
MultiValueField form fields, patch from timo. Backport of r12798 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12799 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-15[1.1.X] Fixed #13114 -- Modified escapejs to produce output that is JSON ↵Russell Keith-Magee
compliant. Thanks to David Danier for the report. Backport of r12780 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12781 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-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 #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-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-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-01[1.1.X] Fixed #12987 - Added a few versionadded directives to the docs. ↵Jannis Leidel
Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12629 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-26Corrected a versionchanged marker added in r12603.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12604 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-24[1.1.X] Fixed #11933 -- Added versionchanged marker for the cache_db session ↵Russell Keith-Magee
backend. Thanks to gabrielhurley for the report and patch. Backport of r12569 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12571 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-24[1.1.X] Fixed #12538 -- Added a note that pickles aren't stable during ↵Russell Keith-Magee
version updates. Thanks to snow0x2d0 for the suggestion. Backport of r12560 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12565 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-23[1.1.X] Fixed #12802 -- Specify the correct factory in the ↵Justin Bronn
`InlineModelAdmin` docs. Thanks, rctay and unbracketed. Backport of r12527 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12529 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-23[1.1.X] Fixed #12837 -- Clarified the naming strategy for m2m intermediate ↵Russell Keith-Magee
tables. Thanks to Ramiro Morales for the report and patch. Backport of r12516 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12521 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-22[1.1.X] Fixed #12620 - Refer to better fieldname in defer docs. Thanks, dwillis.Jannis Leidel
Backport of r12462. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12479 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-02-16[1.1.X] Fixed #10260 - Refactored internationalization documentation. ↵Jannis Leidel
Thanks, Ramiro Morales. Partial backport of r12440. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12449 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-28[1.1.X] Fixed #4140: Documented the ORA-06552 error that can occur when a ↵Ian Kelly
keyword is used as a field name in the Oracle notes. Backport of r12346 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12347 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-28[1.1.X] Fixed #11973 -- Corrected some misleading documentation regarding ↵Russell Keith-Magee
the feed_copyright attribute on feeds. Backport of a small part of r12338 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12339 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-18[1.1.X] Fixed bad indentation in contenttypes code example so that cut and ↵Karen Tracey
paste from doc will work. r12253 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12254 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-17[1.1.X] Fixed #9819 - Added exemplary documentation for comments app. Thanks ↵Jannis Leidel
for the initial patch, Thejaswi Puthraya. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12245 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-17[1.1.X] Fixed #12496 - Added code examples to built-in filter documentation. ↵Jannis Leidel
Thanks, Arthur Koziel. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12243 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-16[1.1.X] Fixed #12622 - exists() mentioned in 1.1 docsLuke Plant
Thanks for the report kmike. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12231 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-16[1.1.X] Created a 'DB optimization' topic, with cross-refs to relevant sections.Luke Plant
Also fixed #10291, which was related, and cleaned up some inconsistent doc labels. Backport of r12229 from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12230 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-08[1.1.X] Updated the docs to suggest using ``*args, **kwargs`` when ↵Russell Keith-Magee
implementing model save methods. Thanks to Jeff Croft for the report. Partial backport of r12118 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12119 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-04[1.1.X] Fixed #12503 - form examples don't validate according to w3cLuke Plant
Thanks to skyl for the report. Backport of r12086 from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12087 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-01[1.1.X] Fixed #8468 - Updated class names in docs of Polish local flavor.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12063 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-01Typo fix for localflavor documentationJannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12062 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-26[1.1.X] Fixed several broken and redirecting URLs in the documentation ↵Gary Wilson Jr
(fixes #12219, refs #12427). Backport of r11994 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11995 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-26[1.1.X] Fixed #11570 -- Changed output in examples to unicode strings, ↵Gary Wilson Jr
thanks adamnelson. Backport of r11992 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11993 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-26[1.1.X] Fixed #9465 -- Simplified API Reference documentation titles for ↵Gary Wilson Jr
easier lookup and made first-level heading styles consistent. Thanks, adamnelson. Backport of r11990 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11991 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-25[1.1.X] Form wizard documentation tweaks:Gary Wilson Jr
* Simplified Sphinx references to FormWizard class. * Wrapped long lines. * Added references to template loader functions. Backport of r11986 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11987 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-25[1.1.X] Added a few Sphinx directives to the form API and template API docs.Gary Wilson Jr
Backport of r11984 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11985 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-19[1.1.X] Fixed #12234 -- Create additional indexes that use the appropriate ↵Justin Bronn
operation class for PostgreSQL `varchar` and `text` columns when `db_index=True`. Backport of r11912 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11913 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-11-23[1.1.X] Cleaned up the release notes index page, and added some stub 1.1.2 ↵Russell Keith-Magee
and 1.2 release notes. Backport of r11760 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11761 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-11-12[1.1.X] Fixed #12204 -- Corrected the use of :djadmin: links in the testing ↵Russell Keith-Magee
docs, plus updated a lot of old-style markup in the django-admin docs. Thanks to Art_S for the report. Backport of r11734 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11735 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-30[1.1.X] Fixed #12115 -- Corrected typo in admin documentation. Thanks encinas.Brian Rosner
Backport of [11686] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11687 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-27Added a no-op {% csrf_token %} tag to 1.1.X, to ease transition of apps to 1.2Luke Plant
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11674 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-27[1.1.X] Fixed #10996 - documented login CSRF vulnerabilities in the ↵Luke Plant
CsrfMiddleware 1.1.X branch only fix - trunk is completely different now. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11662 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-24[1.1.X] Fixed #9163 - CsrfMiddleware needs to reset ETag headerLuke Plant
Thanks to carljm for report and patch. Backport of r11650 from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11651 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-28[1.1.X] Fixed #9674 - documented app_label.Luke Plant
Thanks to andymckay for the report and jpaulett for the patch. Backport for [11596] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11597 bcc190cf-cafb-0310-a4f2-bffc1f526a37