Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Increase static typing strictness (#10530) | Adam Turner | 2022-06-16 | 1 | -4/+2 |
| | |||||
* | Collapse single line docstrings | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove copyright and licence fields | Adam Turner | 2022-02-20 | 1 | -3/+0 |
| | |||||
* | Fix module docstring indentation | Adam Turner | 2022-02-20 | 1 | -2/+2 |
| | |||||
* | Fix module docstring first line | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove module titles in docstrings | Adam Turner | 2022-02-19 | 1 | -3/+0 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
| | |||||
* | Close #8326: Rename master_doc to root_doc | Takeshi KOMIYA | 2021-02-28 | 1 | -2/+2 |
| | | | | | | To describe the purpose more accurately, the `master_doc` is now renamed to `root_doc`. The old name is still available. But it is recommeneded to use new one from now on. | ||||
* | Merge branch '3.x' | Takeshi KOMIYA | 2021-01-22 | 1 | -0/+5 |
|\ | |||||
| * | Fix #1112: download role creates duplicated copies | Takeshi KOMIYA | 2021-01-19 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | `:download:` role creates duplicated copies when the document contains two or more the role for the same file, but in different form. It considers two paths are different when one contains relative path like `path/to/../file.dat`. Internally, `env.relfn2path()` does not normalize the given path in relative form. As a result, download role can't detect the same paths are given. This adds `os.path.normpath()` to `env.relfn2path()` to normalize the path. | ||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2021-01-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2021-01-01 | 1 | -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 | ||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-11-12 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Sort imports with isort | François Freitag | 2020-11-11 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | Keep imports alphabetically sorted and their order homogeneous across Python source files. The isort project has more feature and is more active than the flake8-import-order plugin. Most issues caught were simply import ordering from the same module. Where imports were purposefully placed out of order, tag with isort:skip. | ||||
* | | py domain: Add :canonical: option | Takeshi KOMIYA | 2020-05-04 | 1 | -1/+1 |
|/ | |||||
* | Fix #7301: Allow . and _ for node_id | Takeshi KOMIYA | 2020-03-22 | 1 | -1/+1 |
| | | | | | | | | | | | | In development of 3.0, Sphinx starts to obey to the rule of "Identifier Normalization" of docutils. This extends it to allow dots(".") and underscores("_") for node identifier. It allows Sphinx to generate node identifier from source string as possible as it is (bacause dots and underscores are usually used in many programming langauges). This change will keep not to break hyperlinks as possible. | ||||
* | py domain: Generate node_id for objects in the right way | Takeshi KOMIYA | 2020-03-07 | 1 | -1/+1 |
| | |||||
* | py domain: Generate node_id for modules in the right way | Takeshi KOMIYA | 2020-03-07 | 1 | -1/+1 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | ENH: Explain rebuilds | Eric Larson | 2019-08-06 | 1 | -1/+15 |
| | |||||
* | Fix #6531: Failed to load last environment object when extension added | Takeshi KOMIYA | 2019-06-30 | 1 | -0/+23 |
| | |||||
* | Python-3-only clean ups discovered by pyupgrade | Jon Dufresne | 2019-03-17 | 1 | -7/+6 |
| | | | | | | | | | | | | | | https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension | ||||
* | test: Reduce warnings on building test-root | Takeshi KOMIYA | 2019-02-14 | 1 | -2/+0 |
| | | | | Note: all warnings are tested on test-warnings. | ||||
* | Add PathComparer for testing and fix 2 test failure on Windows. (#5943) | Takayuki SHIMIZUKAWA | 2019-01-13 | 1 | -2/+3 |
| | | | | | | | | | commits are squashed. * Add PathComparer for testing and fix 2 test failure on Windows. * fix flake8 * add type information by f2f review. Thanks to @tk0miya! * fix mypy, flake8 again.. | ||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| | | |||||
* | | Remove unnecessary encoding cookie from Python source files | Jon Dufresne | 2018-12-16 | 1 | -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. | ||||
* | | Move env.doc2path() and env.path2doc() to Project class | Takeshi KOMIYA | 2018-10-16 | 1 | -0/+44 |
|/ | |||||
* | Deprecate env.update()! | Takeshi KOMIYA | 2018-02-24 | 1 | -68/+11 |
| | | | | | To make BuildEnvironment simple, the responsibility of converting source files to doctrees is moved to Builder class. | ||||
* | Fix flake8 violations | Takeshi KOMIYA | 2018-02-19 | 1 | -1/+1 |
| | |||||
* | Merge branch 'happy_new_year' into master | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| | | |||||
* | | Fix flake8 violations | Takeshi KOMIYA | 2017-12-23 | 1 | -1/+1 |
|/ | |||||
* | refs #3458: add sphinx.testing that are moved from /tests directory. | shimizukawa | 2017-05-14 | 1 | -7/+9 |
| | |||||
* | Drop warning for nonlocal image URI | Takeshi KOMIYA | 2017-04-19 | 1 | -2/+0 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
|\ | |||||
| * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | | |||||
* | | Create an instance of builder before initialize env | Takeshi KOMIYA | 2017-03-19 | 1 | -0/+4 |
| | | |||||
* | | BuildEnvironment always own application object (after read phase) | Takeshi KOMIYA | 2017-03-08 | 1 | -4/+4 |
| | | |||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2017-01-10 | 1 | -4/+2 |
|\ \ | |/ | |||||
| * | pytest optimizatoin: | shimizukawa | 2017-01-08 | 1 | -4/+2 |
| | | | | | | | | | | | | | | | | - remote using deprecated decorators - remove gen_with_app - remove yield testing - remove pytest warnings - refactoring | ||||
| * | pytest migration | shimizukawa | 2017-01-04 | 1 | -2/+0 |
| | | |||||
* | | Use loggers | Takeshi KOMIYA | 2017-01-02 | 1 | -17/+7 |
|/ | |||||
* | Optimized tests: remove markups for warnings | Takeshi KOMIYA | 2016-07-15 | 1 | -5/+0 |
| | |||||
* | Fix broken testcase | Takeshi KOMIYA | 2016-04-22 | 1 | -1/+1 |
| | |||||
* | Obligatory copyright update. | Georg Brandl | 2016-01-14 | 1 | -1/+1 |
| | |||||
* | Fix #981: LaTeX: support image file names with more than 1 dots | Hong Xu | 2015-12-17 | 1 | -4/+6 |
| | | | | | | | | LaTeX cannot detect image file names with more than 1 dots in it correctly. The solution is to use '{}' to surround the base name. See https://tex.stackexchange.com/questions/10574/includegraphics-dots-in-filename Fix #981 | ||||
* | Adapt test after env-updated change. | Georg Brandl | 2015-01-25 | 1 | -3/+2 |
| | |||||
* | Merge branch 'stable' | Georg Brandl | 2015-01-03 | 1 | -1/+1 |
| | |||||
* | Test suite fixes after env.update() change. | Georg Brandl | 2014-09-22 | 1 | -16/+6 |
| |