summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2008-11-15[1.0.x] Fixed #9477 -- Removed and edited a bunch of references to "developmentMalcolm Tredinnick
version". Some were replaced with versionadded or versionchanged directives. Other, more minor ones, were removed altogether. Based on a patch from James Bennett. Backport of r9454 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9455 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14[django-1.0.X] Fixed #9507 -- Correct an example in the admin docs. Thanks,Malcolm Tredinnick
john_scott and SmileyChris. Backport of r9432 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9433 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-09[1.0.X] Fixed #9556 - typos in syndication docs. Thanks sedden. Karen Tracey
[9373] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9374 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-02[1.0.X] Fixed #9497 - Doc typos. Many thanks ramiro. Karen Tracey
[9330] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9331 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-01[1.0.X] Fixed #9487 -- Corrected several links into the Python docs that ↵Karen Tracey
were broken by the recent Python docs refactor. [9312] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9313 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-24[1.0.X] Fixed #9430 -- Fixed documentation references to the HttpResponseMalcolm Tredinnick
classes for returning HTTP status codes other than 200. Backport of r9266 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9269 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-24[1.0.X] Fixed #9420 -- Fixed an exception type in the documentation ofMalcolm Tredinnick
Queryset.get(). Based on a suggestion from daveyjoe. Backport of r9257 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9261 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-24[1.0.X] Fixed #9390 -- Restored some documentation about select_related() thatMalcolm Tredinnick
was accidentally lost in the docs refactor. Backport of r9256 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9260 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-24[1.0.X] Fixed #9384 -- Fixed a couple of typos. Thanks, Thomas Güttler and ↵Malcolm Tredinnick
romke. Backport of r9255 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9259 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-09[1.0.X] Fixed #9239 -- Somebody read my form validation docs from r9180 andMalcolm Tredinnick
found a typo in them. I guess that was predictable. Thanks, Berry Groenendijk Backport of r9217 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-06[1.0.X] Added a lot more explanation about form field validation, includingMalcolm Tredinnick
expanded examples. Fixed #5843, #6652, #7428. Backport of r9177 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9180 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-06[1.0.X] Fixed #6979 -- Fixed the documentation cross-reference between theMalcolm Tredinnick
TIME_ZONE setting and manual settings configuration. Backport of r9175 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9178 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-06[1.0.X] Fixed a couple of markup errors in the documentation.Malcolm Tredinnick
Backport of r9164 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9170 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-05[1.0.X] Fixed #8964 -- Added a note that MyISAM may not necessarily be the ↵Malcolm Tredinnick
default storage engine for MySQL. Some packagers seem to like causing confusion. Backport of r9143 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9144 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-10-05[1.0.X] Fixed #9291 -- Tweaked a piece of example code slightly to set a goodMalcolm Tredinnick
example for others (now uses an encoding that is guaranteed to work for XML consumers). Backport r9133 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9137 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-30[1.0.X] Apply doc fix from [9105]; refs #9255.James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-30[1.0.X] Port Adrian's doc fix from [9101] and publicly shame him for ↵James Bennett
forgetting to apply it here. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9104 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-28Restored documentation about pickling QuerySets (and how to only pickle theMalcolm Tredinnick
details for the query, rather than the results) from r7499. These were accidentally nuked in the docs refactor. We know who the offenders were. They will be made to sit in the corner on the naughty mat for a while. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9090 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-27Fied #9169 -- Fixed a typo in a docs example. Thanks, jeremyb.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9085 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-22Fixed #8371: Added a note warning Windows users about the use of forward ↵Russell Keith-Magee
slashes when specifying the DATABASE_NAME setting. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9084 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-22Fixed #8967: Added documentation for the 'through' option on a many-to-many ↵Russell Keith-Magee
field in the fields reference documentation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9083 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-21Fixed #9149: Fixed reST error in syndication docsJames Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9078 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-18Fixed #9121: Corrected markup in the form preview docs. Thanks to Jarek ↵Russell Keith-Magee
Zgoda for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9069 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-17Fixed some misordered markup for the ROOT_URLCONF setting in the docs.Malcolm Tredinnick
Fixed #9098. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9061 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-17Fixed #8546 -- Fixed error in request-response.txt where we were incorrectly ↵Adrian Holovaty
listing HttpResponse.content() in the 'Methods' section instead of the 'Attributes' section. Thanks, schmichael git-svn-id: http://code.djangoproject.com/svn/django/trunk@9054 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-17Fixed #9103 -- Added django.contrib.admin to the docs modindex (I think)Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-16Fixed #9091 -- Rephrased Variable() documentation. Thanks, teleniekoAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9044 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-16Edited some recent docs changesAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9042 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-15Added documentation of the Form class's custom __iter__ method to the forms ↵Simon Willison
API reference as well git-svn-id: http://code.djangoproject.com/svn/django/trunk@9031 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-14Fixed #9032: Corrected some minor typos in the admin docs. Thanks to ↵Russell Keith-Magee
rduffield for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9028 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-14Fixed #9078: Added commas to the example URLconf lines so that they can be ↵Russell Keith-Magee
easily copied and pasted. Thanks to mo.longman@gmail.com for the suggestion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9026 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-14Fixed #9067: Added a note that you can register a model with the admin ↵Russell Keith-Magee
without providing a ModelAdmin object. Thanks to Rob Hudson for the suggestion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9024 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-11Fixed #8858 by correcting typoSimon Willison
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9006 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-11Re-added docs for QuerySet reverse() and all() methods, refs #9000 - thanks ↵Simon Willison
ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@9005 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-10Fixed #9003 -- Fixed awkward wording in querysets.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8996 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-09Fixed #8979 -- Made a bunch of typo/formatting fixes to the docs. Thanks, ramiroAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8987 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-07Fixed #8580 -- Hyperlinked some module names in settings.txt. Thanks, msaelicesAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-07Small wording improvements to sitemaps.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-07Fixed #8919 -- Fixed typo in signals.txt. Thanks, jbaloghAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8977 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-06Fixed #8727 -- Fixed broken link to Italian SSN page in localflavor.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8976 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-06Fixed #8858 -- Fixed typo in SQLite version information. Also reworded it to ↵Adrian Holovaty
be a bit more future-compatible. Thanks, adamv git-svn-id: http://code.djangoproject.com/svn/django/trunk@8975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-06Fixed #8909 -- Fixed typo in contenttypes docs. Thanks, arienAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8973 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-04Correct bad target in middleware documentationJames Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8964 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-04Fixed #8867: Corrected a couple typos in the signals documentationJames Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8963 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-03Added the last notes about 1.0, including the inevitable (short!) list of ↵Jacob Kaplan-Moss
known issues. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8959 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-03Added a note about queryset.query being opaque.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8955 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-03Added a note about SQLite versions before 3.3.6. Refs #7570. Thanks, ramiro.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8950 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-03Fixed #8849: added some more "new in 1.0" flags. Thanks, ramiro.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8947 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-03Fixed #8838 - two typos in model field docs. Thanks, arienSimon Willison
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8927 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-03Fixed #8802 -- Documented MySQL's usage of 1/0 instead of True/False for modelMalcolm Tredinnick
BooleanFields. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8910 bcc190cf-cafb-0310-a4f2-bffc1f526a37