summaryrefslogtreecommitdiff
path: root/tests/test_api_translator.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix pytest style issuesAdam Turner2023-02-181-1/+1
|
* Increase minimum Docutils to 0.17Adam Turner2022-09-271-5/+1
|
* Use docutils.__version_info__ directlyAdam Turner2022-04-221-2/+1
|
* Collapse single line docstringsAdam Turner2022-02-201-2/+1
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Fix module docstring indentationAdam Turner2022-02-201-2/+2
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* A happy new year!Takeshi KOMIYA2021-01-011-1/+1
| | | | | | | .. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* HTML builder outputs HTML5 by defaultTakeshi KOMIYA2019-02-111-1/+6
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-1/+0
|/ | | | | | | | | | | | | | In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
* A happy new year!Takeshi KOMIYA2018-01-011-1/+1
|
* refs #3458: add sphinx.testing that are moved from /tests directory.shimizukawa2017-05-141-7/+6
|
* Remove the custom smartypants codeDmitry Shachnev2017-04-251-9/+0
| | | | | | | | | | Instead rely on docutils’ ‘smart_quotes’ option which is available since docutils 0.10. This adds support for internationalization: our code supported only English quotes, while docutils code supports 27 different languages. Closes #498, #580, #3345, #3472.
* Merge branch 'master' into drop_websupportTakeshi KOMIYA2017-04-231-12/+12
|\
| * Move translators to SphinxFactoryTakeshi KOMIYA2017-04-221-12/+12
| |
* | Simplify testcases for websupportTakeshi KOMIYA2017-04-221-11/+0
|/ | | | | | Now websupport modules has separated and move into sphinxcontrib-websupport package. They are also tested in the package. Hence, we should test the bridge code for them.
* Merge branch 'stable'Takeshi KOMIYA2017-03-261-1/+1
|\
| * Year++Takeshi KOMIYA2017-03-261-1/+1
| |
* | Merge branch 'stable'shimizukawa2017-01-071-15/+16
|\ \ | |/
| * pytest: remove deprecated with_app decorator functionsshimizukawa2017-01-061-18/+19
| |
* | Drop deprecated options for html builderTakeshi KOMIYA2017-01-051-22/+2
|/
* Fix #1953: ``Sphinx.add_node`` does not add handlers the translator ↵Takeshi KOMIYA2016-08-191-1/+1
| | | | installed by `html_translator_class`
* Fix flake8 violation under tests/Takeshi KOMIYA2016-06-121-1/+1
|
* Obligatory copyright update.Georg Brandl2016-01-141-1/+1
|
* Merge branch 'stable'Georg Brandl2015-01-031-1/+1
|
* fix trailing space and long lineTakayuki Shimizukawa2014-10-091-1/+2
|
* Complete test suite overhaul.Georg Brandl2014-09-211-99/+36
| | | | | | | | | | | | * rename a few test modules to make the names more consistent * do not copy/use Sphinx from build/ (unnecessary without 2to3) * use a temporary dir for *all* test projects, the source tree will stay pristine that way (default is tests/build) * speed up tests by ~3x by splitting up test projects and avoiding rebuilds
* fix test caused by previious commit: 989c16e04371cTakayuki Shimizukawa2014-08-051-8/+26
|
* Add app.set_translator() API to register or override a Docutils translator ↵Takayuki Shimizukawa2014-08-051-0/+185
class like :confval:`html_translator_class`.