summaryrefslogtreecommitdiff
path: root/docs/_ext/djangodocs.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed creation of html docs on python 3.Florian Apolloner2013-02-241-1/+1
| | | | Thanks to Alan Lu for the report and the patch.
* Fixed #19699 - Removed "Please see the release notes" from ↵Tim Graham2013-02-091-9/+3
| | | | | | | | | | versionadded/changed directives Also bumped django_next_version back to 1.6 so those annotations are described as "the development version" in the docs. Thanks Aymeric for the patch.
* Made more extensive usage of context managers with open.Claude Paroz2012-05-051-5/+4
|
* Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin2012-04-291-13/+1
| | | | | | | And started the deprecation path for django.utils.simplejson. Thanks Alex Ogier, Clueless, and other contributors for their work on the patch.
* Fixed #17526 - unnecessary comma in 'Please, see the release notes' removedLuke Plant2012-01-111-1/+1
| | | | | | Thanks to datakid for the report git-svn-id: http://code.djangoproject.com/svn/django/trunk@17367 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed use of non-standard indentation rules in docs, and the custom ↵Luke Plant2011-10-101-22/+0
| | | | | | | | | transform that supported them. Doc writers should be aware that we are now back to normal ReST rules regarding blockquotes. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16955 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Made fix for quote characters with SmartPants + parsed literal blocks ↵Ramiro Morales2011-10-101-11/+12
| | | | | | | | conditional on Sphinx version. This hs been fixed upstream in releases >= 1.0.8 (issue 647.) git-svn-id: http://code.djangoproject.com/svn/django/trunk@16952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed djangodocs Sphinx extension to work with latest SphinxLuke Plant2011-05-151-0/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@16231 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed our Sphinx extension to work with latest SphinxLuke Plant2011-05-141-0/+1
| | | | | | | | | This is pretty hacky, but there doesn't seem to be a nice way to fix it, since we can't call the base method - we are deliberately overriding it in order to not call the base method, which adds an unwanted 'border=1' to the HTML. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16223 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Reformated some code for readability.Alex Gaynor2010-11-201-6/+6
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@14652 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed hyperlinking of template tags for Sphinx >= 1.0Luke Plant2010-11-201-12/+7
| | | | | | | Follow on from incomplete fix in [14477], and [14631] which removed compatibility for Sphinx < 1.0 git-svn-id: http://code.djangoproject.com/svn/django/trunk@14639 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed compatibility with Sphinx < 1.0 workarounds in our extension code. ↵Ramiro Morales2010-11-191-8/+2
| | | | | | | | Also, started to use the 'needs_sphinx' Sphinx config var. Follow up on r14624. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14631 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed hyperlinking of template tags/filters in offline docs so that ↵Luke Plant2010-11-061-3/+7
| | | | | | non-builtin tags/filters are not hyperlinked to a page where no docs for them exist git-svn-id: http://code.djangoproject.com/svn/django/trunk@14477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Documented options accepted by the runfcgi management command.Ramiro Morales2010-10-271-0/+14
| | | | | | | Also, modified our custom management command option docs xref parser to also process those without a ``--`` prefix. -- Refs #14398. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14361 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14141: docs now use the :doc: construct for links between documents.Jacob Kaplan-Moss2010-08-191-3/+3
| | | | | | Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14033 -- Fixed another problem with xrefs and Sphinx 1.X in the ↵Jannis Leidel2010-08-181-30/+39
| | | | | | Django doc extension. Thanks for the report and patch, Ramiro Morales and Georg Brandl. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13602 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14005 - Removed a few unneeded workarounds in the Sphinx extension. ↵Jannis Leidel2010-07-251-110/+42
| | | | | | Thanks for the report and patch, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13447 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13616 - Updated the documentation to be compatible with Sphinx 1.0.Jannis Leidel2010-07-241-6/+17
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@13446 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added hyperlinks for builtin template tags and filters to code samples in docs.Luke Plant2010-05-081-2/+41
| | | | | | | | | | Implemented in javascript because doing it 'properly' is pretty much impossible with Sphinx and Pygments. Refs #12249 git-svn-id: http://code.djangoproject.com/svn/django/trunk@13135 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed `fieldlookup` docs cross-reference directive, and added it to the ↵Justin Bronn2010-03-201-1/+1
| | | | | | queryset reference. Refs #12930. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12808 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10539 -- Updated Sphinx configuration to accommodate 0.6 while ↵Russell Keith-Magee2009-07-031-14/+39
| | | | | | 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
* Fixed #9436 -- Updated docs build code to create "new in development version".Malcolm Tredinnick2009-03-091-0/+31
| | | | | | Patch from Marc Fargas. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10006 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9645 -- Work around a backwards-incompatibility in Sphinx so thatMalcolm Tredinnick2008-12-071-6/+6
| | | | | | | | various combinations of released docutils and sphinx versions all work together. Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9586 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed the documentation HTML writer to not apply smartypants to literal ↵Jacob Kaplan-Moss2008-09-021-0/+11
| | | | | | blocks. Fixes #8696; thanks, ramiro. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8753: converted "new in ..." callouts to proper Sphinx ↵Jacob Kaplan-Moss2008-09-021-0/+28
| | | | | | "versionadded/versionchanged" directives. Thanks to Marc Fargas for all the heavy lifting here. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* A noble spirit no longer embiggens the smallest function signatures.Jacob Kaplan-Moss2008-08-261-1/+10
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@8593 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Massive reorganization of the docs. See the new docs online at ↵Jacob Kaplan-Moss2008-08-231-0/+146
http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37