summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix #3130: HTML rendering problems inside admonition block in Sphinx docTakeshi KOMIYA2016-11-131-0/+4
|
* doc: Fix markupTakeshi KOMIYA2016-11-061-1/+1
|
* docs: sourcename has empty value on creating genindex and so on (refs: #3094)Takeshi KOMIYA2016-11-041-0/+1
|
* Fix doc/Makefile that can't build man because of doc/man folder existsYoshiki Shibukawa2016-10-131-0/+4
|
* doc: Use AutodocReporter at example of nested_parse_with_titles()Takeshi KOMIYA2016-09-071-0/+2
| | | | | In detail, please refer following thread: https://groups.google.com/forum/#!topic/sphinx-dev/l4fHrIJfwq4
* fix document: rtd is optional from 1.4Yoshiki Shibukawa2016-08-231-22/+35
|
* fix html entity to fix epub errorYoshiki Shibukawa2016-08-092-4/+4
|
* fix epub warning in Sphinx's documentYoshiki Shibukawa2016-08-091-3/+4
|
* fix epub3 toc.xhtml, epub date format to satisfy specYoshiki Shibukawa2016-08-091-0/+4
|
* remove extra colons in C++ domain examplesEric Knibbe2016-08-021-4/+4
|
* Merge pull request #2786 from shibukawa/fix/epubTakeshi KOMIYA2016-07-201-1/+1
|\ | | | | Reduce epub checker warnings/errors for epub3 builder.
| * Reduce epub checker warnings/errors for epub3 builder.Yoshiki Shibukawa2016-07-171-1/+1
| | | | | | | | | | | | | | | | | | Fix DOCTYPE to html5 and change extension from .html to .xhtml. Sphinx's documents result: before: 95 warnings& 1238 errors after: 623 errors
* | add preferred instruction to download role descriptionYoshiki Shibukawa2016-07-191-0/+6
| |
* | fix document download roles. download roles works only on html.Yoshiki Shibukawa2016-07-192-2/+6
|/
* fix a mark-up typo in doc/install.rstjfbu2016-06-301-1/+1
|
* Fix #2629. Add new config option ``latex_keep_old_macro_names``jfbu2016-06-151-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The cause of the issue was a clash about ``\titleref`` macro being already defined in memoir class context. To avoid similar problems, this makes the text styling macros ``\strong``, ``\code``, ``\bfcode``, ``\email``, ``\tablecontinued``, ``\titleref``, ``\menuselection``, ``\accelerator``, ``\crossref``, ``\termref``, ``\optional``, also available with ``\sphinx`` prefix, with a conf.py boolean option to let sphinx.sty only define ``\sphinx``-prefixed macros. As default value is False, backwards compatibility is maintained. On this occasion, some internal non-public macros have been renamed with prefix ``\spx@``. The command find . -name '*.sty' -exec grep -l \\\\spx@ {} \; has been executed in TeXLive 2015 and 2016 installations to check no package defines macros starting with ``\spx@``. Some internal macros having public names (because they are written by latex.py into the body of the latex document) have been renamed to have ``\sphinx`` prefix. The macros in sphinx.sty starting with \py@, or \DU, or \PYG have not been modified. Similarly ``\release``, ``\version``, ``\releasename``, etc... have not been renamed.
* Convert text into links at bottom of tutorial.rst and top of config.rstjfbu2016-06-092-5/+10
|
* Display correctly the Builtin themes in the PDF build of Sphinx docjfbu2016-06-061-0/+2
| | | | Add longtable as class, which will allow pagebreaks in pdf output.
* Update docs; the inputenc hack will be released at 1.4.3Takeshi KOMIYA2016-05-311-1/+1
|
* Only add '\\usepackage[utf8]{inputenc}' when using pdflatexAvram Lubkin2016-05-311-2/+7
|
* Update description of `numref` option (ref: #2384)Takeshi KOMIYA2016-05-271-1/+6
|
* Add info on inline web link syntaxbarbara-sfx2016-05-061-0/+2
|
* Split doctest extension docs into sectionsnevimov2016-05-021-6/+12
| | | | | | | At the moment the docs have no sections at all. This commit adds sections "Directives" and "Configuration" to facilitate navigation. Also, it removes the outdated line about the number of directives provided by the extension (there’s now 5 of them).
* Fix code example in "HTML theming support" docsnevimov2016-04-261-2/+2
| | | | | - replaces invalid js-style comments with valid python - shortens the comments so they don't need l10n
* Add warning for Application.add_source_parser()Takeshi KOMIYA2016-04-241-0/+1
|
* Fix #2466: Allow image.data_uri and image.nonlocal_uri as confval of ↵Takeshi KOMIYA2016-04-221-0/+2
| | | | suppress_warnings
* update devguide: following current procedure to run testshimizukawa2016-04-181-1/+1
|
* Define new warning types for `suppress_warnings` (ref #2451)Takeshi KOMIYA2016-04-161-0/+4
|
* Clear up Pygments is mandatoryRobert Lehmann2016-04-051-3/+3
| | | While Pygments is not required for other builders, it is *always* used in the HTML builder.
* The default format of `today_fmt` and `html_last_updated_fmt` is back to ↵Takeshi KOMIYA2016-04-031-9/+20
| | | | | | | | | strftime format again `html_last_updated_fmt` is commonly used for non date formatting. But LDML is difficult to represent them from its characteristics. Now we moved to strftime format again (ref: #2394).
* C++, make prefixes of type declarations better.Jakob Lykke Andersen2016-03-301-1/+18
| | | | | | Type declarations are now using the prefixes ``typedef``, ``using``, and ``type``, depending on the style of declaration. See also michaeljones/breathe#243 and michaeljones/breathe#242.
* Merge branch '2327_toplevel_sectioning'Takeshi KOMIYA2016-03-031-0/+12
|\
| * Fix #2327: Add `latex_toplevel_sectioning` to switch the top level ↵Takeshi KOMIYA2016-03-021-0/+12
| | | | | | | | sectioning of LaTeX document.
* | Merge branch '2229_suppress_warnings'Takeshi KOMIYA2016-03-031-0/+20
|\ \ | |/ |/|
| * Fix #2229: no warning is given for unknown optionsTakeshi KOMIYA2016-02-231-0/+1
| |
| * Add :confval:`suppress_warnings` to supress arbitrary warning messageTakeshi KOMIYA2016-02-231-0/+19
| |
* | Merge branch 'stable'Takeshi KOMIYA2016-03-021-5/+2
|\ \ | |/ |/|
| * update doc: LaTeX writer now refers maxdepth option (ref #2358)Takeshi KOMIYA2016-03-021-5/+2
| |
* | Fix #2245: Add ``latex_elements["passoptionstopackages"]`` option to call ↵Takeshi KOMIYA2016-02-231-0/+4
| | | | | | | | PassOptionsToPackages in early stage of preambles
* | Merge pull request #2276 from tk0miya/1921_figure_substitutionsTakeshi KOMIYA2016-02-221-3/+17
|\ \ | | | | | | Fix #1921: Support figure substitutions by locale
| * | Add figure_language_filename to customize filename pattern for figure ↵Takeshi KOMIYA2016-02-221-0/+8
| | | | | | | | | | | | substitutions
| * | Fix #1921: Support figure substitutions by localeTakeshi KOMIYA2016-02-221-3/+9
| | |
* | | remove a part of description that mentioned about epub3 internal formating.shimizukawa2016-02-221-2/+1
| | |
* | | Fix: ambiguous description for epub3_page_progression_direction conf value.shimizukawa2016-02-221-2/+6
|/ /
* | Highlighting fallbacks by defaultTakeshi KOMIYA2016-02-201-3/+5
| | | | | | | | | | | | | | | | | | | | In 423bf7b, I tried to add fallback mechanism to ``python3``. But it breaks the python3 highlighting on python2 environment. This adds ``'default'`` to highlighting languages; it works like ``'python3'``, but fallbacks if failed Highlighting. And this removes try-parse step from ``'python3'`` language. Now, it highlights regardless of runtime environments. Thanks to Yoshiki SHIBUKAWA.
* | fix wrong documentationshimizukawa2016-02-151-7/+5
| |
* | Fix #794: Date formatting in latex output is not localizedTakeshi KOMIYA2016-02-141-7/+21
| |
* | classifier of glossary terms can be used for index entries grouping key. The ↵shimizukawa2016-02-141-0/+20
| | | | | | | | classifier also be used for translation. See also :ref:`glossary-directive`.
* | Closes #1853: support custom text splitter on html search with `language='ja'`.shimizukawa2016-02-141-10/+52
| |
* | Merge pull request #2321 from sphinx-doc/py-3-highlightingTakayuki SHIMIZUKAWA2016-02-145-19/+44
|\ \ | | | | | | The default highlight language is now Python 3. Use it in viewcode as well.