summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
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
2009-09-23[1.1.X] Fixed #11931: Removed mention of nonexistent get_sql() method for ↵James Bennett
arguments to limit_choices_to. Since the correct reference involves undocumented ORM internals, this simply removes the reference entirely in favor of publicly-documented use of Q objects. Backport of [11591] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11592 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-16[1.1.X] Fixed some ReST markup in admin installation docs.Russell Keith-Magee
Merge of r11580 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11584 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-16[1.1.X] Fixed counting error in admin installation overview docs.Russell Keith-Magee
Merge of r11579 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11583 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-13[1.1.X] Fixed #9236 -- Added documentation on the dependencies of the admin.Russell Keith-Magee
Merge of r11543 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11565 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-13[1.1.X] Fixed #6047 -- Minor correction to the documentation regarding regex ↵Russell Keith-Magee
field lookups. Thanks to Richard D. Worth for the suggestion, and Steve Holden for the text. Merge of r11541 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11563 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-13[1.1.X] Fixed #11359 -- Added a link to the signals topic guide in the ↵Russell Keith-Magee
signals reference. Thanks to tyson for the suggestion. Merge of r11540 and r11554 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11562 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-13[1.1.X] Fixed #11592 -- Corrected the grammar in the queryset docs. Thanks ↵Russell Keith-Magee
to Shannon Bradshaw for the report. Merge of r11539 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11561 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-13[1.1.X] Fixed #11728 -- Corrected a typo in a class name in the ↵Russell Keith-Magee
request/response docs. Thanks to Tommstein for the report. Merge of r11536 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11558 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-13[1.1.X] Fixed #11808 -- Corrected typo in admin docs. Thanks to kratorius ↵Russell Keith-Magee
for the patch. Merge of r11534 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11556 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-13[1.1.X] Fixed #11831 -- Corrected typo in comments docs. Thanks to gsf for ↵Russell Keith-Magee
the patch. Merge of r11533 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11555 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-10Fixed #11071 - update is_ajax() docs.Luke Plant
Thanks timo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11490 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-09-10Fixed #7437: SelectDateWidget is not documented.Luke Plant
Thanks timo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11488 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-08-29Fixed #6674: Documented a couple of widget arguments. Thanks timo.Karen Tracey
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11478 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-08-24Fixed #10566: Added support for cx_Oracle compiled with the WITH_UNICODE flag.Ian Kelly
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-08-13Fixed #11508: Adding missing word to form wizard doc. Thanks thepointer and ↵Karen Tracey
timo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11444 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-29BACKWARDS-INCOMPATIBLE CHANGE: Removed SetRemoteAddrFromForwardedFor middleware.Jacob Kaplan-Moss
In a nutshell, it's been demonstrated that this middleware can never be made reliable enough for general-purpose use, and that (despite documentation to the contrary) its inclusion in Django may lead application developers to assume that the value of ``REMOTE_ADDR`` is "safe" or in some way reliable as a source of authentication. So it's gone. See the Django 1.1 release notes for full details, as well as upgrade instructions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11363 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-24Fixed #11527 -- Added unit tests and documentation for the use of F() ↵Russell Keith-Magee
expressions in single object updates. Thanks to Zachary Voase for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11322 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-16Fixed #10061 -- Added namespacing for named URLs - most importantly, for the ↵Russell Keith-Magee
admin site, where the absence of this facility was causing problems. Thanks to the many people who contributed to and helped review this patch. This change is backwards incompatible for anyone that is using the named URLs introduced in [9739]. Any usage of the old admin_XXX names need to be modified to use the new namespaced format; in many cases this will be as simple as a search & replace for "admin_" -> "admin:". See the docs for more details on the new URL names, and the namespace resolution strategy. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-15Fixed #11480 -- Corrected markup error in admin docs. Thank to msgre for the ↵Russell Keith-Magee
report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11240 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-15Fixed #11235 -- Added a missing clause from some sample SQL in the queryset ↵Russell Keith-Magee
docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11239 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-15Fixed #11348 -- Trimmed the width of a screenshot image in the admin docs. ↵Russell Keith-Magee
Thanks to smcoll for the new image. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11238 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-15Fixed #11374 -- Modified the documentation for forms.BooleanField to allow ↵Russell Keith-Magee
for the fact that it can be rendered using widgets other than a checkbox. Thanks to lygaret for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11236 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-13Fixed #11416 -- Restored use of the never_cache decorator on admin views. ↵Russell Keith-Magee
Thanks to Ramiro Morales and Michael Newmann for their work on the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11229 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-11Fixed #11450 -- Corrected markup problem in contenttype docs. Thanks to ↵Russell Keith-Magee
seveas for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-11Fixed #11454 -- Corrected mismatched parenthesis in admin docs. Thanks to ↵Russell Keith-Magee
seveas for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11217 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-03Fixed #11419 -- Corrected a minor typo in the admin docs. Thanks to jspeis ↵Russell Keith-Magee
for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11176 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-03Fixed #9669 -- Corrected an answer in the admin FAQ that is wrong in a ↵Russell Keith-Magee
post-newforms-admin world. Thanks to Alex for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11175 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-03Fixed #11417 -- Corrected typo in MySQL collation notes. Thanks to vorushin ↵Russell Keith-Magee
for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-03Fixed #11413 -- Added notes on the cycle and firstof tag detailing that ↵Russell Keith-Magee
variables output by those tags will not be escaped by default. Thanks to krystal for the report and draft patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11163 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-24Fixed #8861 -- Added note on the availability of ModelForm.instance. Thanks ↵Russell Keith-Magee
to Ramiro Morales for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11097 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-24Fixed #10415 -- Added documentation for features added in r7627 and r7630; ↵Russell Keith-Magee
extensibility points for the ModelAdmin and AdminSite. Thanks to Ramiro Morales for the draft text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11095 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-24Fixed #11354 -- Remove stray whitespace in queryset docs. Thanks to flebel ↵Russell Keith-Magee
for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11094 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-24Fixed #11356 -- Added links to the growing collection of 3rd party database ↵Russell Keith-Magee
backends that are available. Thank to Nathan Auch for the draft text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11093 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Fixed #11221 -- Replaced a reference to a non-existent URL with an actual ↵Russell Keith-Magee
explanation of sequences. Thanks to Rob Hudson for the report, and SmileyChris for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11053 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Fixed #11141 -- Corrected a code example in the admin docs. Thanks to jodal ↵Russell Keith-Magee
for the report, and SmileyChris for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11049 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Fixed #11312 -- Fixed the default value given for DEFAULT_FILE_STORAGE in ↵Russell Keith-Magee
the docs. THanks to x00nix@gmail.com for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11046 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Fixed #11272 -- Made some clarifications to the overview and tutorial. ↵Russell Keith-Magee
Thanks to jjinux for the review notes. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11044 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Refs #11336 -- Another dummy commit to force refresh of some index pages by ↵Russell Keith-Magee
Sphinx, caused by file ommitted from [11025] and included in [11026]. Thanks to Peter Landry for the report, and Ramiro for the explanation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11032 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-17Fixed #11336 -- Dummy commit to force refresh of some index pages by Sphinx, ↵Russell Keith-Magee
caused by file ommitted from [11025] and included in [11026]. Thanks to Peter Landry for the report, and Ramiro for the explanation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11031 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-17Fixed #10336 -- Added improved documentation of generic views. Thanks to ↵Russell Keith-Magee
Jacob and Adrian for the original text (from the DjangoBook), and Ramiro for doing the work of porting the docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11025 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-17Fixed #9919 -- Added note on the need to mark transactions as dirty when ↵Russell Keith-Magee
using raw SQL. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11022 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-10Fixed #10981 -- Clarified documentation regarding lazy cross-application ↵Russell Keith-Magee
relationships. Thanks to Ramiro for the suggestion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10971 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-10Fixed #11056 -- Corrected reference to File class in storage docs. Thanks to ↵Russell Keith-Magee
wam for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10970 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-05-27Fixed #11204 -- Corrected typo in the pluralize doc. Thanks martin and ↵Karen Tracey
SmileyChris. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10849 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-05-26Fixed #11070 -- Removed JING_PATH setting, which was no longer used. Thanks ↵Adrian Holovaty
for the patch, seanl git-svn-id: http://code.djangoproject.com/svn/django/trunk@10840 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-05-17Fixed #11031 -- Added doc for some additional roles needed when testing ↵Karen Tracey
Oracle. Thanks JirkaV and Matt Boersma. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10805 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-05-17Fixed #11034: Corrected serialization example in admin actions doc. Thanks ↵Karen Tracey
timo and kaikuehne. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10804 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-05-17Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code ↵Karen Tracey
comments. Thanks kaikuehne. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10801 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-05-15Add a proper cross-reference to the mention of HttpRequest in the comment ↵James Bennett
moderation docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10786 bcc190cf-cafb-0310-a4f2-bffc1f526a37