diff options
| author | Georg Brandl <georg@python.org> | 2009-09-07 22:52:26 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2009-09-07 22:52:26 +0200 |
| commit | 4d587fdf718a171359198d412f5a1d6e995b7ed7 (patch) | |
| tree | 89c33e03f3beba4ed7343248c34be120be6cf78d /sphinx/addnodes.py | |
| parent | 2524b3f01e98bb2b787fdfc44810d9b6441311c6 (diff) | |
| download | sphinx-4d587fdf718a171359198d412f5a1d6e995b7ed7.tar.gz | |
More refactoring for language-independent domain support.
* Renamed "desc"ription unit to "object" wherever possible.
* Added standard x-ref types to a StandardDomain which is always consulted.
* Split domains module into a subpackage.
* Removed additional_xref_types in favor of new directive classes in StandardDomain.
* Implemented x-ref inventory version 2, for all object types.
* Added env.doc_read_data which is for temporary data stored while reading.
* Minimally updated extension tutorial.
* Started to implement changes to interactive search.
* Test suite passes again.
Diffstat (limited to 'sphinx/addnodes.py')
| -rw-r--r-- | sphinx/addnodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index b8c9a354..71a26feb 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -14,7 +14,7 @@ from docutils import nodes # index markup class index(nodes.Invisible, nodes.Inline, nodes.TextElement): pass -# description units (classdesc, funcdesc etc.) +# domain-specific object description units (class, function etc.) # parent node for signature and content class desc(nodes.Admonition, nodes.Element): pass |
