Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/_ext
Commit message (Collapse)AuthorAgeFilesLines
* Removed obsolete literals_to_xrefs.py script.Tim Graham2015-06-151-174/+0
|
* Fixed E265 comment styleCollin Anderson2015-02-061-2/+2
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-063-6/+5
|
* Fixed #23968 -- Replaced list comprehension with ↵Jon Dufresne2014-12-082-3/+3
| | | | generators and dict comprehension
* Added sphinx extension to ease generation of ticket links.Tim Graham2014-08-191-0/+38
|
* Fixed #23067 -- Updated docs to use django-adminChristoph Heer2014-07-301-1/+1
|
* Removed duplicate "Deprecated in Django A.B" text in docs.Tim Graham2014-06-071-6/+7
| | | | sphinx 1.2+ adds this text itself.
* Fixed #21869 -- Fixed docs building with Sphinx 1.2.1.Tim Graham2014-01-241-2/+4
| | | | Thanks tragiclifestories for the report.
* Fixed E127 pep8 warnings.Loic Bistuer2013-12-141-2/+2
|
* Removed a u'' prefix that prevented the docs from ↵Tim Graham2013-12-061-1/+1
| | | | building on Python 3.2.
* Replace use of dict.has_key with `key in dict`Alex Gaynor2013-11-261-2/+2
|
* Fixed all E226 violationsAlex Gaynor2013-11-031-2/+2
|
* Fixed the remaining E302 violations int eh django packageAlex Gaynor2013-11-033-0/+7
|
* Fixed flake8 E241Boryslav Larin2013-11-021-24/+25
|
* Fixed all the E203 violationsAlex Gaynor2013-10-271-1/+1
|
* Fixed E221 pep8 warnings.Tim Graham2013-10-221-8/+8
|
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-2/+2
|
* Fixed #20910 -- Added a "snippet" sphinx directive to ↵M Nasimul Haque2013-10-141-0/+134
| | | | | | allow prefixing a filename. Thanks Marc Tamlyn for the suggestion.
* Whitespace cleanup.Tim Graham2013-10-101-17/+17
| | | | | | | * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
* Added a bugfix in docutils 0.11 -- docs will now build ↵Tim Graham2013-07-311-0/+6
| | | | properly.
* Replaced `and...or...` constructs with PEP 308 ↵Ramiro Morales2013-05-271-1/+1
| | | | conditional expressions.
* Adapted uses of versionchanged/versionadded to the new form.Juan Catalano2013-04-201-1/+1
| | | | Refs #20104.
* Removed unused imports.Juan Catalano2013-04-201-3/+1
|
* Fixed #20104 -- Changed VersionDirective in order to ↵Juan Catalano2013-04-201-6/+10
| | | | | | | | | | | avoid ambiguity. 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.
* Fixed spelling errorsGavin Wahl2013-03-282-2/+2
|
* 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" ↵Tim Graham2013-02-091-9/+3
| | | | | | | | | | from 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-053-28/+14
|
* Replaced print statement by print function (forward ↵Claude Paroz2012-04-302-8/+8
| | | | compatibility syntax).
* 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 ↵Luke Plant2012-01-111-1/+1
| | | | | | | | release notes' removed 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, ↵Luke Plant2011-10-101-22/+0
| | | | | | | | | and the custom 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 ↵Ramiro Morales2011-10-101-11/+12
| | | | | | | | literal blocks 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-161-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 ↵Ramiro Morales2010-11-201-8/+2
| | | | | | | | our extension code. 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 ↵Luke Plant2010-11-061-3/+7
| | | | | | docs so that 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 ↵Ramiro Morales2010-10-271-0/+14
| | | | | | | | | command. 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 ↵Jacob Kaplan-Moss2010-08-191-3/+3
| | | | | | | | between documents. 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 ↵Jannis Leidel2010-08-181-30/+39
| | | | | | Sphinx 1.X in the 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 ↵Jannis Leidel2010-07-251-110/+42
| | | | | | Sphinx extension. 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 ↵Jannis Leidel2010-07-241-6/+17
| | | | | | compatible with Sphinx 1.0. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13446 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added hyperlinks for builtin template tags and filters ↵Luke Plant2010-05-081-2/+41
| | | | | | | | | | | | to code samples in docs. 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 ↵Justin Bronn2010-03-201-1/+1
| | | | | | added it to the 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 ↵Russell Keith-Magee2009-07-031-14/+39
| | | | | | accommodate 0.6 while 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 ↵Malcolm Tredinnick2009-03-091-0/+31
| | | | | | | | development version". 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 ↵Malcolm Tredinnick2008-12-071-6/+6
| | | | | | | | | | in Sphinx so that 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 ↵Jacob Kaplan-Moss2008-09-021-0/+11
| | | | | | smartypants to literal blocks. Fixes #8696; thanks, ramiro. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8875 bcc190cf-cafb-0310-a4f2-bffc1f526a37