summaryrefslogtreecommitdiff
path: root/docs/_ext
AgeCommit message (Collapse)Author
2017-01-23[1.9.x] Removed deprecated html_translator_class sphinx config option.Tim Graham
Backport of bacdfbf3d1eb23ff8e8110681728a5b467443446 and e5d3f98abcdc20d64d99609bd0aa82331835b439 from master
2017-01-23[1.9.x] Declared Sphinx extensions safe for parallel reading.Tim Graham
Backport of 03306a187ec3bb5e2592728a900d4a41185f9e30 from master
2016-09-26[1.9.x] Added a CVE role for Sphinx.Tim Graham
Backport of a46742e738b91f79dd7b2e6ecba6dd1604e14d05 from master
2016-02-01[1.9.x] Fixed #23868 -- Added support for non-unique django-admin-options in ↵Tim Graham
docs. Also documented missing short command line options to fix #24134. This bumps the minimum sphinx version required to build the docs to 1.3.4. Thanks Simon Charette for review. Backport of e519aab43a419589e92fe284e4ce2f2e034aec6a from master
2015-11-16[1.9.x] Fixed #23751 -- Fixed code snippet formatting in docs PDF.Tim Graham
Thanks Graham Wideman for the patch. Backport of e48a5b5a03181b3ada6183595eb6e1c599a9657a from master
2015-06-15Removed obsolete literals_to_xrefs.py script.Tim Graham
2015-02-06Fixed E265 comment styleCollin Anderson
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict ↵Jon Dufresne
comprehension
2014-08-19Added sphinx extension to ease generation of ticket links.Tim Graham
2014-07-30Fixed #23067 -- Updated docs to use django-adminChristoph Heer
2014-06-06Removed duplicate "Deprecated in Django A.B" text in docs.Tim Graham
sphinx 1.2+ adds this text itself.
2014-01-24Fixed #21869 -- Fixed docs building with Sphinx 1.2.1.Tim Graham
Thanks tragiclifestories for the report.
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-12-06Removed a u'' prefix that prevented the docs from building on Python 3.2.Tim Graham
2013-11-26Replace use of dict.has_key with `key in dict`Alex Gaynor
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-02Fixed the remaining E302 violations int eh django packageAlex Gaynor
2013-11-02Fixed flake8 E241Boryslav Larin
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-22Fixed E221 pep8 warnings.Tim Graham
2013-10-21Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol
2013-10-14Fixed #20910 -- Added a "snippet" sphinx directive to allow prefixing a ↵M Nasimul Haque
filename. Thanks Marc Tamlyn for the suggestion.
2013-10-10Whitespace cleanup.Tim Graham
* Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
2013-07-31Added a bugfix in docutils 0.11 -- docs will now build properly.Tim Graham
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-04-20Removed unused imports.Juan Catalano
2013-04-20Fixed #20104 -- Changed VersionDirective in order to avoid ambiguity.Juan Catalano
As explained in ticket #20104, the use of versionchanged/versionadded was confusing. To solve this ambiguity these directives no longer accept a second argument but now they only receive the version number (1st arg) and then a content with the proper comment.
2013-03-28Fixed spelling errorsGavin Wahl
2013-02-24Fixed creation of html docs on python 3.Florian Apolloner
Thanks to Alan Lu for the report and the patch.
2013-02-09Fixed #19699 - Removed "Please see the release notes" from ↵Tim Graham
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.
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
And started the deprecation path for django.utils.simplejson. Thanks Alex Ogier, Clueless, and other contributors for their work on the patch.
2012-01-11Fixed #17526 - unnecessary comma in 'Please, see the release notes' removedLuke Plant
Thanks to datakid for the report git-svn-id: http://code.djangoproject.com/svn/django/trunk@17367 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-10-10Removed use of non-standard indentation rules in docs, and the custom ↵Luke Plant
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
2011-10-10Made fix for quote characters with SmartPants + parsed literal blocks ↵Ramiro Morales
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
2011-05-15Fixed djangodocs Sphinx extension to work with latest SphinxLuke Plant
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16231 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-05-14Fixed our Sphinx extension to work with latest SphinxLuke Plant
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
2010-11-20Reformated some code for readability.Alex Gaynor
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14652 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-11-20Fixed hyperlinking of template tags for Sphinx >= 1.0Luke Plant
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
2010-11-19Removed compatibility with Sphinx < 1.0 workarounds in our extension code. ↵Ramiro Morales
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
2010-11-06Fixed hyperlinking of template tags/filters in offline docs so that ↵Luke Plant
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
2010-10-27Documented options accepted by the runfcgi management command.Ramiro Morales
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
2010-08-19Fixed #14141: docs now use the :doc: construct for links between documents.Jacob Kaplan-Moss
Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-18Fixed #14033 -- Fixed another problem with xrefs and Sphinx 1.X in the ↵Jannis Leidel
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
2010-07-25Fixed #14005 - Removed a few unneeded workarounds in the Sphinx extension. ↵Jannis Leidel
Thanks for the report and patch, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13447 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-07-24Fixed #13616 - Updated the documentation to be compatible with Sphinx 1.0.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13446 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-05-08Added hyperlinks for builtin template tags and filters to code samples in docs.Luke Plant
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