summaryrefslogtreecommitdiff
path: root/tests/root/objects.txt
Commit message (Collapse)AuthorAgeFilesLines
* Closes #1623: Return types specified with ``:rtype:`` are now turned into ↵Georg Brandl2014-11-121-1/+1
| | | | links if possible.
* Closes #1284: Program options documented with :rst:dir:`option` can now ↵Georg Brandl2014-09-201-0/+4
| | | | start with ``+``.
* Remove sphinx.ext.oldcmarkup compatibility extension.Georg Brandl2014-01-171-8/+0
|
* Allow "." and "~" prefixes in inline :param: typedefs.Virgil Dupras2014-01-041-0/+1
|
* Fix #1203: Does not append space to unknown field names.Rob Ruana2013-06-231-0/+26
| | | | | | | If an unknown field name is encountered, a space is only appended if the field arguments are not empty. Also, only the first character of the field name is upper cased, and the case of the rest of the string remains unchanged.
* Fix #677: allow multiple signatures in C++ domain directives.Georg Brandl2011-09-221-3/+1
|
* Fix tracebacks occurring for duplicate C++ domain objects.Georg Brandl2011-01-061-0/+11
|
* #581: Fix traceback in Python domain for empty cross-reference targets.Georg Brandl2011-01-041-0/+3
|
* Fix test_build_html after latest docfields fix.Georg Brandl2011-01-041-3/+5
|
* Regression of #77: If there is only one parameter given with ``:param:`` ↵Georg Brandl2011-01-031-0/+2
| | | | markup, the bullet list is now suppressed again.
* Allow breaking long signatures, continuing with backlash-escaped newlines.Georg Brandl2010-08-051-0/+4
|
* #484: Fix crash when duplicating a parameter in an info field list.Georg Brandl2010-08-051-0/+2
| | | | | Problem was that the :type: info nodes were inserted twice into the doctree, which led to inconsistencies when reference nodes were resolved.
* Add some tests for docfields.Georg Brandl2010-07-271-0/+5
|
* Add the "oldcmarkup" extension, to help migrating to 1.0.Georg Brandl2010-05-241-0/+8
|
* Added `doc_field_types` to :class:`JSCallable`, arguments, errors and the ↵DasIch2010-03-311-2/+6
| | | | return value of JavaScript functions/methods/constructors can now be documented using fields.
* Added a :class:`JSXRefRole` which allows to display a method/attribute name ↵DasIch2010-03-301-0/+1
| | | | only.
* Added a :js:attribute:: directive as well as a :js:attr: role to describe ↵DasIch2010-03-301-0/+4
| | | | attributes of javascript objects.
* It is now possible to use the js:function:: directive for methods.DasIch2010-03-301-0/+5
|
* Added a js:data directive/role to describe/refer to global variables/constants.DasIch2010-03-301-0/+4
|
* Added a :js:func: role to refer to functions described with the ↵DasIch2010-03-301-0/+3
| | | | js:function:: directive.
* Added a JavaScript domain and a js:function directive.DasIch2010-03-301-0/+6
|
* Add missing option_spec for Python domain.Georg Brandl2010-02-281-0/+2
|
* Fix :type:-class field processing and add doc field markup to test suite.Georg Brandl2010-01-171-0/+17
|
* The ``toctree()`` callable in templates now has a ``maxdepth``Georg Brandl2009-09-091-2/+2
| | | | | | keyword argument to control the depth of the generated tree. Also add tests for that callable.
* Move HTML test into own module and add some C references.Georg Brandl2009-09-081-7/+7
|
* More refactoring for language-independent domain support.Georg Brandl2009-09-071-0/+91
* 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.