Georg Brandl
613679d3b8
merge with macagua/sphinx
2013-04-01 11:56:15 +02:00
Georg Brandl
0b41ccb005
Bump to 1.2b1.
2013-03-31 15:45:44 +02:00
Georg Brandl
77d2a90f36
Closes #1128 : Fix Unicode errors when trying to format time strings with a non-standard locale.
2013-03-30 17:53:04 +01:00
Georg Brandl
b9696a9d9d
Closes #1123 : Allow whitespaces in filenames given to :rst:dir:literalinclude.
2013-03-30 17:47:21 +01:00
Georg Brandl
2e8b8ba7e3
Closes #1102 : Support multi-context "with" statements in autodoc by updating
...
pycode grammar from lib2to3.
2013-03-30 17:45:42 +01:00
Georg Brandl
6feb07951e
Closes #1127 : Fix traceback when autodoc tries to tokenize a non-Python file.
2013-03-30 14:10:37 +01:00
Georg Brandl
44d1f1e952
Closes #995 : Fix table-of-contents and page numbering for the LaTeX "howto" class.
2013-03-30 14:00:43 +01:00
Georg Brandl
c18479a772
Closes #961 : Fix LaTeX output for triple quotes in code snippets.
2013-03-30 12:49:59 +01:00
Georg Brandl
181b075251
Closes #1112 : Avoid duplicate download files when referenced from documents in
...
different ways (absolute/relative).
2013-03-30 12:44:39 +01:00
Georg Brandl
1f79ba7e74
Fix leading space in LaTeX table header cells.
2013-03-30 12:30:36 +01:00
Georg Brandl
cef883f8ae
Closes #1132 : Fix LaTeX table output for multi-row cells in the first column.
2013-03-30 12:23:04 +01:00
Georg Brandl
4f78f0d598
Closes #1126 : Fix double-hyphen to en-dash conversion in wrong places such as
...
command-line option names in LaTeX.
2013-03-30 12:00:51 +01:00
Georg Brandl
6608b58732
Closes #1117 : Handle .pyx files in sphinx-apidoc.
2013-03-30 11:44:43 +01:00
Georg Brandl
1d08c910c8
Closes #723 : Fix the search function on local files in WebKit based browsers.
2013-03-30 11:30:48 +01:00
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
Leonardo J. Caballero G.
e8f0f0af8e
Updated changelog
2013-03-04 10:37:22 -05:30
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