summaryrefslogtreecommitdiff
path: root/sphinx/roles.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * all: update copyrightGeorg Brandl2015-01-031-1/+1
| |
* | Minor PEP8 cleanup.Georg Brandl2014-09-211-0/+3
| |
* | Add ref context to all "any" references. Should make it possible to resolve ↵Georg Brandl2014-09-201-1/+10
| | | | | | | | them more accurately.
* | PEP8 cleanup in roles.py.Georg Brandl2014-09-201-11/+13
| |
* | Added the `any` role that can be used to find a cross-reference ofGeorg Brandl2014-09-191-0/+2
| | | | | | | | | | *any* type in *any* domain. Custom domains should implement the new `~Domain.resolve_any_xref` method to make this work properly.
* | Changing the default role document-locally with the docutils ".. default-role::"Georg Brandl2014-09-191-1/+6
| | | | | | | | directive is now supported.
* | Fix #1381 :rfc: and :pep: roles support custom link texttk0miya2014-08-201-14/+20
| |
* | Now sphinx.roles.abbr_role pass through `**options` to ↵Takayuki Shimizukawa2014-07-261-2/+4
| | | | | | | | `addnodes.abbriviation`. Closes #1515
* | use six privided iteritems(),itervalues() to support py2/py3 in one source. ↵Takayuki Shimizukawa2014-04-291-2/+3
| | | | | | | | refs #1350.
* | Update copyright year.Georg Brandl2014-03-011-1/+1
|\ \ | |/
| * Update copyright year.Georg Brandl2014-03-011-1/+1
| |
* | Closes #1174: Fix smart quotes being applied inside roles like ↵Georg Brandl2014-01-121-3/+3
|/ | | | :rst:role:`program` or :rst:role:`makevar`.
* remove xfileref_role() and directive_dwim() which were deprecated in 1.0Georg Brandl2013-03-291-8/+0
|
* Closes #976: Fix gettext does not extract index entries.Takayuki Shimizukawa2013-01-051-0/+1
|
* Copyright update.Georg Brandl2013-01-011-1/+1
|
* Merge with 1.0Georg Brandl2011-09-231-3/+4
|\
| * Fix the ``abbr`` role when the abbreviation has newlines in it.Georg Brandl2011-09-231-1/+1
| |
| * Fix #648: Fix line numbers reported in warnings about undefined references.Georg Brandl2011-09-231-2/+2
| |
* | Always warn on missing :doc: or citation references.Georg Brandl2011-01-081-1/+1
| |
* | merge with 1.0Georg Brandl2011-01-081-1/+3
|\ \ | |/
| * #572: Show warnings by default when reference labels cannot be found.Georg Brandl2011-01-081-1/+3
| |
* | #454: Add more index markup capabilities: marking see/seealso entries, and ↵Georg Brandl2011-01-071-5/+10
| | | | | | | | main entries for a given key.
* | #586: Implemented improved glossary markup which allows multiple terms per ↵Georg Brandl2011-01-061-1/+0
| | | | | | | | definition.
* | #516: Added new value of the :confval:`latex_show_urls` option to show the ↵Georg Brandl2011-01-061-0/+1
| | | | | | | | URLs in footnotes.
* | merge with 1.0Georg Brandl2011-01-041-1/+1
|\ \ | |/
| * New year update.Georg Brandl2011-01-041-1/+1
| |
* | #504: Add an ``index`` role, to make inline index entries.Georg Brandl2010-08-251-1/+23
| |
* | Docstring harmonization.Georg Brandl2010-08-221-6/+5
|/
* Allow references to PEPs and RFCs with explicit anchors.Georg Brandl2010-08-051-2/+12
|
* #486: Fix removal of ``!`` for all cross-reference roles.Georg Brandl2010-08-051-2/+2
|
* Fix :guilabel: unescaping, and make some tests actually run.Georg Brandl2010-07-211-1/+2
|
* Merge with http://bitbucket.org/tpowers/sphinx/ (rewriting the ↵Georg Brandl2010-05-241-9/+27
|\ | | | | | | | | | | | | | | external/internal distinction code) In HTML output, references now get the class ``internal`` if they are internal to the whole project, as opposed to internal to the current page. The ``menuselection`` and ``guilabel`` roles now support ampersand accelerators.
| * Rename "underline" class to accelerator to preserve separation of semantics ↵tpowers2010-04-271-4/+5
| | | | | | | | & presentation.
| * Indicate "accelerator" key of menu & gui items via ampersand.tpowers2010-04-261-6/+25
| | | | | | | | Accelerator(s) will be underlined within :menuselection: and :guilabel:.
| * Implemented "simple" docroles for things that only format the text in a ↵tpowers2010-04-261-7/+20
| | | | | | | | different style.
* | Move :ref: labels over to std domain.Georg Brandl2010-05-231-4/+0
|/
* Fix variable name.Georg Brandl2010-03-011-1/+1
|
* Allow escaping "<" in x-ref roles by a backslash.Georg Brandl2010-03-011-1/+3
|
* Fix-up classes for roles without domain.Georg Brandl2010-02-281-1/+2
|
* In HTML output, inline roles now get a CSS class with their name,Georg Brandl2010-02-281-8/+10
| | | | | allowing styles to customize their appearance. Domain-specific roles get two classes, ``domain`` and ``domain-rolename``.
* Make the _ gettext alias an explicit import instead of installing into builtins.Georg Brandl2010-01-171-1/+2
|
* merge with trunkGeorg Brandl2010-01-171-1/+2
|\
| * Refactor util package.Georg Brandl2010-01-171-1/+2
| |
* | merge with trunkGeorg Brandl2010-01-071-0/+2
|\ \ | |/
| * merge with 0.6Georg Brandl2010-01-031-0/+1
| |\
| | * #302: Fix links generated by the ``:doc:`` role for LaTeX output.Georg Brandl2010-01-031-0/+1
| | | | | | | | | | | | | | | | | | For that, record the source docname in an xfileref node in node['refdoc']. The LaTeX builder creates one big toctree out of all documents, therefore "fromdocname" in resolve_references refers to the wrong file.
* | | merge with trunkGeorg Brandl2010-01-021-140/+134
|\ \ \ | |/ / |/| |
| * | Work on remaining XXXs.Georg Brandl2009-09-121-1/+34
| | |
| * | fix bugs.Georg Brandl2009-09-101-4/+5
| | |
| * | Remove envvar from specific roles list.Georg Brandl2009-09-091-1/+0
| | |