summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
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-29Added 1.1 release notes.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11362 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-28Fixed #11556 -- Clarified the argument required by get_object_or_404. Thanks ↵Russell Keith-Magee
to rbonvall for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11344 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-27Fixed #11519 -- Corrected minor typo in release notes index.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11338 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-22Clarify the description of URL namespacing.James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11288 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-22Add draft release notes for 1.1 RC 1.James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11287 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-21Updated my bio.Gary Wilson Jr
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11281 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-21Fixed #11493 -- Added an internal document listing the APIs that have been ↵Russell Keith-Magee
formally deprecated. Thanks to Alex Gaynor for the draft text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11277 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-21Cleanup of some minor markup problems in URL documentation.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11275 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-17Added myself to AUTHORS and updated my bio.Justin Bronn
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11265 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-17Fixed #11492 -- Corrected some typos, and added some extra markup for the ↵Russell Keith-Magee
URLs documentation. Thanks to Ramiro Morales for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11258 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-16Fixed #11491 -- Corrected minor typo in new namespace URL docs. Thanks to ↵Russell Keith-Magee
Carl Meyer for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11253 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-16Fixed #11229 -- Updated the mod_wsgi deployment documentation to avoid ↵Russell Keith-Magee
references to mod_python and techniques that are not recommended or required for mod_wsgi. Thanks to Graham Dumpleton for the suggestion and guidance. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11249 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-16Fixed #10908 -- Clarified the procedure for creating test users in the ↵Russell Keith-Magee
testing docs. Thanks to gruszczy and timo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11248 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 #11364 -- Modified the jsi18n example to use the {% url %} tag rather ↵Russell Keith-Magee
than a placeholder. Thanks to jcassee for the suggestion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11237 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-15Fixed #11469 -- Removed suspicion that Django developers have trouble ↵Russell Keith-Magee
counting to four. Thanks to msgre for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11235 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-15Fixed #10287 -- Added better examples in the docs of formset validation. ↵Russell Keith-Magee
Thanks to Andrew Badr for the text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11234 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 #11439 -- Added docs on including URL patterns as an iterable. Thanks ↵Russell Keith-Magee
to Ramiro Morales for the draft text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11221 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-11Fixed #11438 -- Corrected some bad grammar in the custom fields docs. Thanks ↵Russell Keith-Magee
to thepointer for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11220 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-11Fixed #11453 -- Added note on customizing SERVER_EMAIL for error reporting. ↵Russell Keith-Magee
Thanks to seveas for the suggestion and draft text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11219 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 #9607 -- Added documentation for the ``extra`` argument in test client ↵Russell Keith-Magee
methods. Thanks to jroes for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11173 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-07-03Fixed #10426 -- Added note on language variables required for Apache to ↵Russell Keith-Magee
survive non-ASCII file uploads. Thanks to daybreaker for the report, and david for the draft text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11170 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 #10604 -- Added note on the limitation of ungettext, especially as ↵Russell Keith-Magee
relating to the {% blocktrans %} tag. Thanks to bartTC for the report, and Ramiro Morales for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11164 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-07-03Fixed #10539 -- Updated Sphinx configuration to accommodate 0.6 while ↵Russell Keith-Magee
retaining compatibility with 0.4 and 0.5. Thanks to Ramiro Morales for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11162 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-24Fixed #10741: Updated instructions on the best gettext package to get for ↵Karen Tracey
Windows. Thanks Ramiro. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11103 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-19Fixed #11344 -- Made a couple of minor clarifications to the mod_wsgi ↵Karen Tracey
deployment doc. Thanks nartzpod and achew22. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11079 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Made correction to documentation change from [11045].Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11054 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 #10978 -- Clarified that the include statement is part of the ↵Russell Keith-Magee
urlpattern definition. Thanks to swatermasysk for the suggestion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11052 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Fixed #11253 -- Normalized the way the docs refer to TestCase.assert* ↵Russell Keith-Magee
methods. Thanks to SmileyChris for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-18Fixed #11119 -- Corrected spelling error in 1.0 porting guide.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11050 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 #11322 -- Clarified docs regarding middleware processing. Thanks the ↵Russell Keith-Magee
Michael Malone for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11048 bcc190cf-cafb-0310-a4f2-bffc1f526a37