Commit Graph

879 Commits

Author SHA1 Message Date
Georg Brandl
b0381f97f8 changelog: split off older changes (pre-1.0) to a CHANGES.old file 2013-03-29 13:05:49 +01:00
Georg Brandl
ba39edb5db merge with parallel repo 2013-03-29 13:01:21 +01:00
Georg Brandl
00beefb6d7 changelog: add more backwards incompatible changes 2013-03-29 12:55:58 +01:00
Georg Brandl
a765d4c479 changelog: add missing entry for PR#122 2013-03-29 12:51:52 +01:00
Georg Brandl
3d0b924e70 remove xfileref_role() and directive_dwim() which were deprecated in 1.0 2013-03-29 12:28:38 +01:00
Georg Brandl
3bf631527c changelog: categorize 1.2 entries in features by component and bugfixes 2013-03-29 12:09:20 +01:00
Takayuki Shimizukawa
b8850502d2 merge heads 2013-03-17 10:58:28 +09:00
Takayuki Shimizukawa
ca18e9726a update CHANGES 2013-03-17 10:55:50 +09:00
Takayuki Shimizukawa
2c409959ac Add i18n capabilities for custom templates.
For example: The Sphinx reference documentation in doc directory provides
sphinx.pot file from ``doc/_templates/*.html`` by ``make gettext``.
2013-03-10 22:07:31 +09:00
Takayuki Shimizukawa
7b443298a3 add changes entry. refs #1106 2013-03-10 10:30:37 +09:00
Takayuki Shimizukawa
ba3e404b7c Fix uppercase word is not found in search when html_search_language='ja'. Closes #1111 2013-02-24 21:29:56 +09:00
Jonathan Waltman
15b34a0940 Set latex_elements['fontpkg'] = '' for Cyrillic languages (suggested by Dmitry Shachnev) 2013-02-22 02:16:02 -06:00
Jonathan Waltman
6294258b0d Add changelog entry for pull request #114. 2013-02-22 01:50:12 -06:00
Takayuki Shimizukawa
9b575f89d0 Added Hebrew locale. Closes #1113 2013-02-21 22:46:03 +09:00
Jonathan Waltman
c9a5c78a20 Changelog entry for pull request 115 and doc update. 2013-02-20 15:11:45 -06:00
Jonathan Waltman
66d799bb00 Closes #1108: [text] Correctly number enumerated lists with non-default start values (based on patch by Ewan Edwards). 2013-02-20 13:50:40 -06:00
Jonathan Waltman
50d4aec15c [texinfo] Update CHANGES and relevant documentation. 2013-02-20 04:09:50 -06:00
Jonathan Waltman
a37e4d2afd Closes #1074: Add environment version info to the generated search index to avoid compatibility issues. 2013-02-19 03:42:50 -06:00
Jonathan Waltman
e3a27b76f2 Closes #1110: Add new config value texinfo_no_detailmenu and do not generate detailed menus for non-"Top" nodes. 2013-02-19 03:24:57 -06:00
Jonathan Waltman
4e87ea0517 Add stub for the keep_warnings config value in quickstart's conf.py 2013-02-19 01:36:46 -06:00
Jonathan Waltman
db9cfa4d1a Speed up search index generation by caching word stemming calls.
Saves about 20 seconds when building the Python documentation.

Here are some stats for building the Python docs on my machine with
and without stem caching.

Without stem caching::

    % rm -fr _build
    % \time sphinx-build -q . _build/html
    158.22user 0.87system 2:39.25elapsed 99%CPU (0avgtext+0avgdata 400800maxresident)k
    104inputs+180240outputs (1major+113472minor)pagefaults 0swaps

    % \time sphinx-build -a -q . _build/html
    91.00user 0.67system 1:31.73elapsed 99%CPU (0avgtext+0avgdata 330704maxresident)k
    0inputs+69864outputs (1major+106009minor)pagefaults 0swaps

With stem caching::

    % rm -fr _build
    % \time sphinx-build -q . _build/html
    137.90user 1.10system 2:20.50elapsed 98%CPU (0avgtext+0avgdata 413344maxresident)k
    18896inputs+180232outputs (1major+113779minor)pagefaults 0swaps

    % \time sphinx-build -a -q . _build/html
    70.04user 0.74system 1:10.87elapsed 99%CPU (0avgtext+0avgdata 345632maxresident)k
    16inputs+69864outputs (1major+108010minor)pagefaults 0swaps
2013-02-18 21:02:51 -06:00
Takayuki Shimizukawa
fa1bd2c0d1 New locales: Added Basque locale. Closes #1097 2013-02-08 00:09:37 +09:00
Takayuki Shimizukawa
00fa1b2505 Fix text builder did not respect wide/fullwidth characters for textwrap. 2013-02-07 03:34:51 +00:00
Takayuki Shimizukawa
529e45a980 Fix text builder did not respect wide/fullwidth charactors for title line. 2013-02-05 23:57:26 +09:00
Takayuki Shimizukawa
e70a43a9c5 Closes #1062: sphinx.ext.autodoc use __init__ method signature for class signature. 2013-02-03 20:27:34 +09:00
Takayuki Shimizukawa
e47f434c32 add test for pull request #111: Respect add_autodoc_attrgetter() even when inherited-members is set 2013-02-03 12:48:39 +09:00
Takayuki Shimizukawa
6f4764f77b Fix gettext does not extract glossary terms. Closes #1090 2013-01-30 00:13:58 +09:00
Georg Brandl
c59cb9d6f6 docs: document -j option and add changelog 2013-01-14 08:38:46 +01:00
Jonathan Waltman
e26b02e23e Closes #1070: Avoid un-pickling issues under Python 3 when accessing doctrees saved under Python 2. 2013-01-09 08:58:28 -06:00
Jonathan Waltman
61e951d2ed Closes #1069: Fix autodoc signature formatting of "partial" functions without kwargs (patch by Artur Gaspar). 2013-01-09 08:42:59 -06:00
Jonathan Waltman
69b74303b8 Merged in rolmei/sphinx-epub (pull request #106: Add includehidden option to the toctree directive) 2013-01-07 22:12:03 -06:00
Jonathan Waltman
d1a666aef9 Use default values for latex_documents, man_pages, and texinfo_documents if not set in conf.py. 2013-01-07 01:29:53 -06:00
Roland Meister
1639f59726 Add includehidden option to the toctree directive
This option is equivalent to the includehidden option of the template function
toctree() and allows to restore to the toctree behaviour prior to version 1.1.
See also bug #790.
2013-01-06 14:55:35 +01:00
Robert Lehmann
32b87e258b merge birkenfeld/sphinx 2013-01-06 12:14:57 +01:00
Robert Lehmann
f91dbc7587 Changelog for PR#99. 2013-01-06 11:53:56 +01:00
Takayuki Shimizukawa
b17c588b0d Closes #976: Fix gettext does not extract index entries. 2013-01-05 23:38:21 +09:00
Jonathan Waltman
51fb8b435b Add verbose option `-v` for sphinx-build and some rudimentary debugging support. 2013-01-05 02:41:12 -06:00
Jonathan Waltman
3cd00a0809 sphinx-build: Provide more specific error messages for invalid arguments. 2013-01-04 22:52:42 -06:00
Jonathan Waltman
66fe7cc2d7 sphinx-build: Support the standard `--help and --version` options. 2013-01-04 22:48:21 -06:00
Jonathan Waltman
b338af55df Issue #869: Add option `-T` for printing the full traceback on exception. 2013-01-04 22:24:46 -06:00
Takayuki Shimizukawa
ab6706e6ed Closes #940: Fix gettext does not extract figure caption.
This is docutils issue.
see also: https://sourceforge.net/tracker/?func=detail&aid=3599485&group_id=38414&atid=422032
2013-01-05 01:06:42 +09:00
Takayuki Shimizukawa
263d5b376f Fix text writer can not handle visit_legend for figure directive contents. 2013-01-04 18:18:43 +09:00
Georg Brandl
367614d23a merge 2013-01-04 11:17:57 +01:00
Georg Brandl
1832284e89 Closes #1067: implement pluggable search scorer and tweak scoring to give good results. Patch by Hernan Grecco. 2013-01-04 11:17:32 +01:00
Jonathan Waltman
d997aa76b0 Closes #958: Do not preserve `environment.pickle` after a failed build. 2013-01-03 13:34:47 -06:00
Takayuki Shimizukawa
7022b6f251 Add regression test for gettext does not extract definition terms. Closes #975 2013-01-01 14:17:53 +09:00
Georg Brandl
54c1a45ffb Changelog for PR#97. 2012-12-30 18:15:42 +01:00
Georg Brandl
ddd51f7cc7 Closes #1055: add changelog entry for 7228c0534f0c. 2012-12-30 18:02:59 +01:00
Georg Brandl
19539dfc8a Changelog entry for #1053. 2012-12-30 17:50:13 +01:00
Jonathan Waltman
8ac4aa6282 Add Docutils-native XML and pseudo-XML builders 2012-12-04 21:10:15 -06:00