Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-28Close #8326: Rename master_doc to root_docTakeshi KOMIYA
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.
2021-01-27Merge branch '3.x'Takeshi KOMIYA
2021-01-25Fix #7118: quickstart: got Mojibake if libreadline unavailableTakeshi KOMIYA
Do not output escape sequence for libreadline (\1 and \2) when libreadline is unavailable.
2021-01-01Merge branch '3.x'Takeshi KOMIYA
2021-01-01A happy new year!Takeshi KOMIYA
.. 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
2020-11-11Merge branch '3.x'Takeshi KOMIYA
2020-11-11Sort imports with isortFrançois Freitag
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.
2020-10-27Merge branch '3.x' into masterTakeshi KOMIYA
2020-10-25Fix #8298: sphinx-quickstart: Add :option:`sphinx-quickstart --no-sep` optionTakeshi KOMIYA
2020-10-05Makefiles: Include clean in help messageAaron Carlisle
The make clean help command was missing from all make files.
2020-05-17Merge branch '3.x'Takeshi KOMIYA
2020-05-16Resolve with absolute path casting.Álvaro Mondéjar
2020-05-11Fix py35 incompatibility with PosixPathÁlvaro Mondéjar
2020-05-11Fix multiple directory creation on quickstart script called with nested ↵Álvaro Mondéjar
relative path.
2020-05-09Fix double space inconsistences in code, CHANGES and translations.Álvaro Mondéjar
2020-05-03Add stacklevel parameter to warnings.warn() callTakeshi KOMIYA
2020-04-29Remove deprecated features marked as RemovedInSphinx40WarningTakeshi KOMIYA
2020-03-21refactor: Import libraries at the top of script (if no reason)Takeshi KOMIYA
2020-03-10Ignore bdb.BdbQuit when handling exceptionsDaniel Hahler
`bdb.BdbQuit` is used when quitting the debugger. It should not a) cause the debugger to be started (with `-P` / `--pdb`), and b) not a "crash" to be logged. This helps when using `pdb.set_trace()` manually, and quitting it with `q`. It gets used in `build_main`, and `BuildDoc.run` (distutils command).
2020-03-09build: start description lower-casedRafael Fontenelle
2020-01-01Merge branch '2.0'Takeshi KOMIYA
2020-01-01A happy new year!Takeshi KOMIYA
2019-12-22Merge branch '2.0'Takeshi KOMIYA
2019-12-21Replace `a and b or c` by the more legible `b if a or c`.Antony Lee
2019-10-06Merge branch '2.0'Takeshi KOMIYA
2019-10-06Fix mypy violations (for mypy-0.730)Takeshi KOMIYA
2019-07-13Merge branch '2.0'Takeshi KOMIYA
2019-07-06Fix #6549: sphinx-build: Escaped characters in error messagesTakeshi KOMIYA
2019-06-30Merge branch '2.0'Takeshi KOMIYA
2019-06-29Migrate to py3 style type annotation: sphinx.cmd.make_modeTakeshi KOMIYA
2019-06-29Migrate to py3 style type annotation: sphinx.cmd.quickstartTakeshi KOMIYA
2019-06-29Migrate to py3 style type annotation: sphinx.cmd.buildTakeshi KOMIYA
2019-06-15Merge branch '2.0'Takeshi KOMIYA
2019-06-09Fix #6464: updated invalid links of language codes in quickstart and all ↵Bingyao Liu
locale po files
2019-06-01Merge branch '2.0'Takeshi KOMIYA
2019-06-01Merge branch '2.0.2' into 2.0Takeshi KOMIYA
2019-04-17Fix capitalization to match other messagesjfbu
2019-04-14Fix the string in quickstart for 'path' argument of parserjfbu
2019-04-14Merge branch '2.0'Takeshi KOMIYA
2019-04-13Fix #6271: make clean is catastrophically broken if building into '.'Takeshi KOMIYA
2019-03-31refactor quickstartTakeshi KOMIYA
2019-03-25code snippet should not be a translation targetTakayuki SHIMIZUKAWA
2019-03-18Python-3-only clean ups discovered by pyupgradeJon Dufresne
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
2019-03-17Python-3-only clean ups discovered by pyupgradeJon Dufresne
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
2019-03-17Support --keep-going with BuildDoc setup command (#6180)Daniel Hahler
* Support --keep-going with BuildDoc setup command This allows for `tox -e docs -- -n -W --keep-going`.
2019-02-11Closes #4148: quickstart: some questions are removedTakeshi KOMIYA
2019-02-11refactor: Move terminal_safe() to sphinx.util.consoleTakeshi KOMIYA
2019-02-11Remove unused template variablesTakeshi KOMIYA
2019-01-03refactor: Use repr() to make escaped string in template for conf.pyTakeshi KOMIYA
2019-01-02Merge branch '1.8'Takeshi KOMIYA