summaryrefslogtreecommitdiff
path: root/docs/_ext
AgeCommit message (Collapse)Author
2019-11-25[3.0.x] Fixed #31025 -- Fixed highlightlinenothreshold deprecation warning ↵Baptiste Mispelon
on Sphinx 1.8+. Backport of 89d41cba392b759732ba9f1db4ff29ed47da6a56 from master
2019-11-21[3.0.x] Made versionadded/versionchanged annotations without a content end ↵Sergey Fedoseev
with ".". Regression in d2afa5eb2308e672b6313876856e32e2561b90f3. Backport of 5032556483f16b0b5f182e393eb5c6548fc505be from master
2018-10-01Fixed crash building translated docs since Sphinx 1.8.Tim Graham
2018-09-19Updated contributing tutorial's virtual environment instructions.Thomas Grainger
2018-09-11Fixed env.note_versionchange() deprecation warning in Sphinx 1.8.Tim Graham
2018-09-10Removed usage of deprecated sphinx APIs.Tim Graham
2018-09-10Refs #20910 -- Replaced snippet directive with code-block.Curtis Maloney
2018-08-27Replaced CVE/ticket roles with extlinks.Tim Graham
2018-03-22Bumped minimum Sphinx version to 1.6.0.Tim Graham
2018-03-07Used console directive in "Writing documentation".Roy Zwambag
2018-01-20Fixed #28343 -- Add an OS chooser for docs command line examples.Ramiro Morales
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-05-24Removed usage of deprecated sphinx.util.compat.Directive.Tim Graham
2017-05-24Fixed docs build with Sphinx 1.6.Dmitry Shachnev
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2016-12-14Fixed missing versionadded/changed annotations on docs.djangoproject.com.Tim Graham
Fixed a regression in bacdfbf3d1eb23ff8e8110681728a5b467443446.
2016-12-05Removed deprecated html_translator_class sphinx config option.Tim Graham
2016-11-14Fixed #27463 -- Fixed E741 flake8 warnings.Ramin Farajpour Cami
2016-09-26Added a CVE role for Sphinx.Tim Graham
2016-07-06Added copy-to-clipboard support for all code snippetsBaptiste Mispelon
2016-01-14Fixed #23868 -- Added support for non-unique django-admin-options in docs.Tim Graham
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.
2016-01-13Removed unused docs/_ext/applyxrefs.pyTim Graham
2016-01-13Declared Sphinx extensions safe for parallel reading.Tim Graham
2015-11-16Removed a docs workaround for an old Sphinx version.Tim Graham
2015-11-16Fixed #23751 -- Fixed code snippet formatting in docs PDF.Tim Graham
Thanks Graham Wideman for the patch.
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.