summaryrefslogtreecommitdiff
path: root/sphinx/writers/texinfo.py
Commit message (Expand)AuthorAgeFilesLines
* fix trailing space and long lineshimizukawa2014-10-091-2/+4
* Support :numref: in other writerstk0miya2014-10-021-0/+5
* Fix @caption should be placed to inside of @float element in texinfotk0miya2014-09-241-6/+10
* Add app.set_translator() API to register or override a Docutils translator cl...shimizukawa2014-08-051-1/+4
* use six privided iteritems(),itervalues() to support py2/py3 in one source. r...shimizukawa2014-04-291-1/+2
* use six privided functions/classes to support py2/py3 in one source. refs #1350.shimizukawa2014-04-291-2/+2
* Update copyright year.Georg Brandl2014-03-011-1/+6
|\
| * Modernize the code now that Python 2.5 is no longer supportedDmitry Shachnev2014-01-191-1/+1
| * Closes #1174: Fix smart quotes being applied inside roles like :rst:role:`pro...Georg Brandl2014-01-121-0/+5
* | Update copyright year.Georg Brandl2014-03-011-1/+1
|/
* Closes #901: Emit a warning when using docutils' new "math" markup without a ...Georg Brandl2014-01-111-0/+8
* Remove handlers for the "refcount" node.Georg Brandl2013-10-121-5/+0
* Avoid some pyflakes false positives.Georg Brandl2013-09-161-1/+0
* versionlabels are handled entirely in the versionmodified directive, instead ...Nozomu Kaneko2013-01-061-7/+2
* [texinfo] Do not add the "Index" node when there are no entries.Jonathan Waltman2013-02-191-1/+5
* [texinfo] Do not capitalize words in deffn categories containing capital lett...Jonathan Waltman2013-02-191-1/+12
* [texinfo] Render desc_annotation nodes instead of skipping them.Jonathan Waltman2013-02-191-1/+16
* [texinfo] Change formatting of `@strong` and `@emph` in Info output.Jonathan Waltman2013-02-191-0/+2
* [texinfo] Fix seealso labels. (broke by commit d9c2da912d3d)Jonathan Waltman2013-02-191-2/+3
* [texinfo] Tweak formatting of field lists.Jonathan Waltman2013-02-191-11/+7
* [texinfo] Use sphinx.locale.admonitionlabels for admonition nodes.Jonathan Waltman2013-02-191-13/+13
* [texinfo] Format system messages and problematic nodes like the text builder.Jonathan Waltman2013-02-191-10/+7
* [texinfo] Prevent hyphen conversion in option directive signatures.Jonathan Waltman2013-02-191-3/+8
* [texinfo] Avoid creating some unnecessary garbage when assembling the final d...Jonathan Waltman2013-02-191-1/+2
* [texinfo] Use `@finalout` and use the default page size for better TeX output.Jonathan Waltman2013-02-191-1/+1
* [texinfo] Use `@ref` instead of `@pxref` for better display of links in non-I...Jonathan Waltman2013-02-191-3/+3
* [texinfo] Change formatting of transitions.Jonathan Waltman2013-02-191-1/+1
* [texinfo] Change paragraphindent from 2 to 0.Jonathan Waltman2013-02-191-5/+3
* Closes #1110: Add new config value texinfo_no_detailmenu and do not generate ...Jonathan Waltman2013-02-191-7/+7
* Fix pyflakes issues.Georg Brandl2013-01-131-1/+1
* Copyright update.Georg Brandl2013-01-011-1/+1
* texinfo: Handle duplicate domain indices.Jon Waltman2012-07-261-20/+24
* Follow the behavior described by :confval:`primary_domain` to display domain ...Jon Waltman2011-07-071-4/+6
* Use ``ObjType.lname`` for the category in Texinfo desc_signatures.Jon Waltman2011-07-031-21/+12
* Prevent indexing commands from causing a paragraph break in Texinfo.Jon Waltman2011-06-291-1/+6
* Replace no-break spaces with normal ones inside desc_parameters for Texinfo.Jon Waltman2011-06-271-1/+4
* Properly escape ``quote'' characters in Texinfo.Jon Waltman2011-06-271-0/+3
* Add method ``ensure_eol`` and use it to fix paragraph spacing in Texinfo.Jon Waltman2011-06-271-20/+34
* Add :confval:`texinfo_show_urls`.Jon Waltman2011-03-061-2/+2
* Add Texinfo support in ext.graphviz, ext.inheritance_diagram and ext.mathbase.Jon Waltman2011-03-051-102/+103
* Use the standard Texinfo markup for footnotes.Jon Waltman2011-03-051-7/+53
* Add stubs for missing node handlers in Texinfo and remove unnecessary ones.Jon Waltman2011-03-051-17/+26
* Refactor Texinfo writer; remove ``add_text`` and ``rstrip`` methods.Jon Waltman2011-03-051-268/+188
* Handle targets better in Texinfo to avoid bad xrefs.Jon Waltman2011-03-041-57/+87
* Use builder.warn instead of document.reporter.* in Texinfo.Jon Waltman2011-03-041-12/+13
* Add contextual information in Texinfo system messages.Jon Waltman2011-03-041-5/+7
* Add a standard @copying block in Texinfo.Jon Waltman2011-03-031-15/+44
* Wrap long menu entries in Texinfo.Jon Waltman2011-02-221-9/+18
* Generate domain indices in Texinfo.Jon Waltman2011-02-081-5/+52
* Don't delete characters that can be escaped in Texinfo.Jon Waltman2011-02-081-34/+29