summaryrefslogtreecommitdiff
path: root/docs/howto
AgeCommit message (Collapse)Author
2013-02-09[1.5.x] Fixed #19749 -- Documented ending param to command's self.stdout/errClaude Paroz
Thanks xian at mintchaos.com for the report. Backport of 0201b9d6d from master
2013-01-31[1.5.x] Fixed #19692 -- Completed deprecation of mimetype in favor of ↵Aymeric Augustin
content_type. Thanks Tim for the report and initial patch. Backport of 89cb771 from master.
2013-01-22[1.5.x] Fixed #19633 - Discouraged use of gunicorn's Django integration.Tim Graham
Backport of 0db86273ae from master
2013-01-15[1.5.x] Fixed a typo in the error reporting docs.Aymeric Augustin
Backport of 83d0cc52.
2013-01-02[1.5.x] Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward. Backport of 9b5f64cc6e from master.
2012-12-31[1.5.x] Fixed #19453 -- Ensured that the decorated function's arguments are ↵Julien Phalip
obfuscated in the @sensitive_variables decorator's frame, in case the variables associated with those arguments were meant to be obfuscated from the decorated function's frame. Thanks to vzima for the report. Backport of 9180146d21cf2a31eec
2012-12-29[1.5.x] Fixed broken links, round 4. refs #19516Tim Graham
Backport of 067505ad19 from master
2012-12-28[1.5.x] Fixed #19498 -- refactored auth documentationPreston Holmes
The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way.
2012-12-26[1.5.X] Fixed broken links, round 3. refs #19516Tim Graham
Backport of b3a8c9dab8 from master
2012-12-24[1.5.X] Fixed links to DATABASE ENGINE setting. refs #19516Tim Graham
Backport of f56f6cfa58 from master
2012-11-17[1.5.x] Fix typo in file storage docs.Aymeric Augustin
Backport of 4585e12 from master.
2012-11-17[1.5.x] Fixed #19310 -- changed method docs formatting for custom file ↵Preston Holmes
storage docs
2012-10-29[1.5.x] Fixed #19208 -- Docs for mod_wsgi daemon modeAymeric Augustin
Thanks Graham Dumpleton for the patch. Backport of bc00075 from master.
2012-10-19Fixed #17388 - Noted in the custom model field docs that field methods need ↵Tim Graham
to handle None if the field may be null.
2012-10-16Fixed #19128 -- Reworded admonition about Jython and Django 1.5Claude Paroz
Thanks adam@hopelessgeek.com for the report.
2012-10-03Fixed #19006 - Quoted filenames in Content-Disposition header.Tim Graham
2012-10-02Fixed #19057 -- support custom user models in mod_wsgi auth handlerPreston Holmes
thanks @freakboy3742 for the catch and review
2012-09-29Added a missing commaPreston Holmes
2012-09-29Fixed a couple errors and inconsistencies in mod_wsgi docsPreston Holmes
Fixes #19042
2012-09-27Fixed #18518 -- Add warning re mod_wsgi and wsgi.py environ handling.Carl Meyer
2012-09-27fixed #10809 -- add a mod_wsgi authentication handlerPreston Holmes
Thanks to baumer1122 for the suggestion and initial patch and David Fischer for the contributions and long term patch maintenance and docs.
2012-09-20Fixed #18934 - Removed versionadded/changed annotations for Django 1.3Tim Graham
2012-09-08Fixed #15566 - Documented that update() doesn't honor DateField.auto_nowTim Graham
Thanks Shabda Raaj for the draft patch.
2012-08-18[py3] Ported django.utils.safestring.Aymeric Augustin
Backwards compatibility aliases were created under Python 2.
2012-08-12Fix link to Gunicorn website in deployment howto.Martijn Vermaat
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
* Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str.
2012-07-15Fixed #18626 -- rst syntax collision.Aymeric Augustin
2012-07-07Fixed #18587 -- Typo in management command exampleAymeric Augustin
Thanks Frank Wiles.
2012-07-06restored a missing \ in uwsgi docsDaniele Procida
2012-07-02Replaced 'return' by 'raise' in custom model field docsClaude Paroz
Thanks Simon Charette for noticing it. Refs #11162.
2012-06-30Fixed #11162 -- Mentioned ValidationError in custom model field docsClaude Paroz
2012-06-29Fixed #18528 -- Fixed custom field value_to_string exampleClaude Paroz
Thanks anuraguniyal for the report.
2012-06-28Updated obsolete links in the documentationClaude Paroz
2012-06-11Fixed #18451 -- Vastly improved class based view documentation.Jannis Leidel
Many thanks to Daniel Greenfeld, James Aylett, Marc Tamlyn, Simon Williams, Danilo Bargen and Luke Plant for their work on this.
2012-06-08Fixed #18440 -- Pointed out that ReportLab is not thread safe. Thanks, ↵Adrian Holovaty
jens@lundstroem.com
2012-06-07Removed references to changes made in 1.2.Aymeric Augustin
Thanks Florian Apolloner for the patch.
2012-06-06Replaced documentation snippets using "gender" with less sensitive examples.Jacob Kaplan-Moss
2012-06-06Added alt attribute to img tags in docs.Aymeric Augustin
This is a good practice for accessibility. Thanks Jessica McKellar for the report.
2012-05-27Fixed #18387 -- Do not call sys.exit during call_command.Claude Paroz
Moved sys.exit(1) so as failing management commands reach it only when running from command line.
2012-05-19Fixed #18325 -- Wrapped self.stdout/stderr in OutputWrapper classClaude Paroz
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
This new syntax for next() has been introduced in Python 2.6 and is compatible with Python 3.
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
Also replaced StringIO.StringIO by BytesIO in some other appropriate places. StringIO is not available in Python 3.
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-30docs: It's rsync_project not rysnc_projectKyle Fuller
2012-04-29Minor fixes in the custom template tags docs.Aymeric Augustin
2012-04-25Fixed #18060 -- Corrected the import path of an example in custom management ↵Claude Paroz
commands docs. Thanks smuss for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-23Fixed #18187 -- Completed example and details about custom command options. ↵Claude Paroz
Thanks purple for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17930 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-22Fixed #18186 -- Fixed ReportLab Web site links. Thanks pablog for the report ↵Claude Paroz
and the initial patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17928 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-11Fixed #18099 -- corrected a typo in the initial data docs. Thanks to ↵Alex Gaynor
Bradley Ayers for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17895 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-08Fixed #18035 -- Removed deprecated AdminMediaHandler, as per official ↵Claude Paroz
deprecation timeline. Thanks Jannis Leidel and Ramiro Morales for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17879 bcc190cf-cafb-0310-a4f2-bffc1f526a37