Commit Graph

4917 Commits

Author SHA1 Message Date
Takayuki Shimizukawa
a335414b81 Merged in shimizukawa/sphinx-py3-native (pull request #243)
native py2/py3 support without 2to3. refs #1350
2014-05-27 23:01:35 +09:00
Takayuki Shimizukawa
6beeeeb827 remove unnecessary list() wrappers. In some places, I replaced iterable.sort() with sorted(iterable). 2014-05-25 09:25:02 +09:00
Takayuki Shimizukawa
edb8fd96bd Fix: make-mode will work with sphinx-build command that is generated from setup.py entry_points definition.
This fix relates to https://bitbucket.org/birkenfeld/sphinx/pull-request/203/add-make-mode-to-sphinx-build-invoked-by/diff#comment-1133945
2014-05-25 02:06:39 +09:00
Takayuki Shimizukawa
80fd0f72d9 Merged in shimizukawa/sphinx-use-six (pull request #238)
using six package for py2/3 compatibility without 2to3. refs #1350
2014-05-25 01:29:49 +09:00
Victor Zverovich
6e56a12d4a Add support for variadic templates in C++ domain 2014-05-12 08:12:37 -07:00
Takayuki Shimizukawa
191f29279f Merged in davidjb/sphinx/tag-documentation (pull request #240)
Add clarification about the syntax of tags
2014-05-12 11:16:13 +09:00
David Bernard
7f78995d06 Expand tag documentation to include syntax requirements 2014-05-12 12:04:16 +10:00
David Bernard
78af1cb5d3 Start documentation branch 2014-05-12 12:03:24 +10:00
Takayuki Shimizukawa
187431b8ea update CHANGES for string length of the websupport db schema. 2014-05-05 16:21:32 +09:00
Takayuki Shimizukawa
c84ce436b6 Merged in solos/sphinx (pull request #235)
fix node_id String length
2014-05-05 16:14:44 +09:00
Takayuki Shimizukawa
7a44d4d0eb fix: For a apidoc -M feature, packages with empty docstring caused a syntax error. Closes #1456.
# see also pull request #236
2014-05-05 12:22:58 +09:00
Takayuki Shimizukawa
d50feaaec3 Merged in westurner/sphinx/apidoc_output_order (pull request #236)
#1456: apidoc: Add a -M option to put module documentation before submodule documentation
2014-05-05 12:15:41 +09:00
Takayuki Shimizukawa
82a53382d5 Fix: In python3 environment, make linkcheck cause "Can't convert 'bytes'
object to str implicitly" error when link target url has a hash part.
Thanks to Jorge_C. Closes #1457
2014-05-04 00:43:50 +09:00
Takayuki Shimizukawa
3ae8906447 fix: make-mode can't handle extra options that passed as SPHINXOPTS 2014-05-03 13:41:02 +09:00
Takayuki Shimizukawa
15879896fd remove custom_fixers. it is not needed anymore. 2014-05-03 13:26:36 +09:00
Takayuki Shimizukawa
ba4dcaa8dd use b prefix for bytes instead of sphinx.pycompat.b function. 2014-05-01 22:54:09 +09:00
Takayuki Shimizukawa
5c6d6c8e24 Add Python-3.4 support 2014-05-01 20:54:41 +09:00
Takayuki Shimizukawa
75e22ba522 delegate '__nonzero__' to '__bool__' for py2/py3 compatibility in one source. #1350 2014-05-01 20:14:19 +09:00
Takayuki Shimizukawa
956d6286bf remove 2to3. #1350. 2014-05-01 17:27:27 +09:00
Takayuki Shimizukawa
b00d97a86f use py2/py3 compat except syntax. #1350. 2014-05-01 13:22:22 +09:00
Takayuki Shimizukawa
5fd8dc885f fix py2/py3 compat for 'iter.next()/next(iter)' and 'dict.values()/list(dict.values())'. refs #1350. 2014-05-01 13:08:36 +09:00
Takayuki Shimizukawa
071fb45a54 use 'next(iter)' instead of 'iter.next()' to support py2/py3 compatibiity. refs #1350. 2014-05-01 12:49:47 +09:00
Takayuki Shimizukawa
27ac856300 tiny fix for py2/py3 compatibility in one source. 2014-05-01 00:09:44 +09:00
Takayuki Shimizukawa
2d1549b35a wrap py3 iterators with list() for each places that expect a list object. refs #1350. 2014-04-30 23:25:44 +09:00
Takayuki Shimizukawa
6ae3b68859 replace ur'' prefix with r'' to support py2/py3 in one source. refs #1350 2014-04-30 23:04:21 +09:00
Takayuki Shimizukawa
1e58062692 remove 'six' name except importing line. 2014-04-30 21:30:46 +09:00
Takayuki Shimizukawa
f31d9113ff use six privided functions/classes to support py2/py3 in one source. refs #1350 2014-04-30 20:39:26 +09:00
Takayuki Shimizukawa
9dbb6bf092 use UnicodeMixin for __str__, __unicode__ to support py2/py3 in one source. refs #1350. 2014-04-30 00:31:09 +09:00
Takayuki Shimizukawa
00eff0b7f6 use six privided text_type() to replace with unicode() to support py2/py3 in one source. refs #1350. 2014-04-29 23:44:12 +09:00
Takayuki Shimizukawa
91b9d75ac8 provide __next__() and use native next() to support py2/py3 in one source. refs #1350. 2014-04-29 21:54:25 +09:00
Takayuki Shimizukawa
49944cfa52 wrap iterator with list() to avoid 'dictionary changed size during iteration' on py3. refs #1350. 2014-04-29 22:43:58 +09:00
Takayuki Shimizukawa
ce4d342e20 use six privided iteritems(),itervalues() to support py2/py3 in one source. refs #1350. 2014-04-29 21:20:56 +09:00
Takayuki Shimizukawa
c3c879f2c6 use six privided functions/classes to support py2/py3 in one source. refs #1350. 2014-04-29 19:59:58 +09:00
Takayuki Shimizukawa
68290a266c introduce the six module and reduce sphinx.util.pycompat implementation. refs #1350. 2014-04-29 11:46:47 +09:00
Takayuki Shimizukawa
1e4b390b22 remove tests.util.write_file duplicated implementation. 2014-04-28 19:58:26 +09:00
Takayuki Shimizukawa
638458038d tiny documentation fix 2014-04-28 19:41:14 +09:00
Rob Ruana
7f710be021 Updates Napoleon documentation per suggestion by a user 2014-04-26 19:43:46 -04:00
Wes Turner
aaf8ca9e1b #1456: apidoc: Add a -M option to put module documentation before submodule documentation 2014-04-19 19:08:41 -05:00
solos
96463fbf0c 合并 birkenfeld/sphinx 到 default 2014-04-19 21:34:51 +08:00
Rob Ruana
bbfd0d058a Closes 1455: Adds better handling of namedtuples in napoleon's skipmember function 2014-04-19 03:58:11 -04:00
solos
1e7022c973 fix node_id String length
fix node_id String length
2014-04-19 13:57:12 +08:00
Takayuki Shimizukawa
ecaeff1689 refactoring the test_autosummary.py 2014-04-12 00:24:53 +09:00
Takayuki Shimizukawa
8f69e25c85 * Fix: autosummary does not create the description from attributes docstring. Closes #1444 2014-04-11 23:38:37 +09:00
Georg Brandl
397e3773c1 Merged in exarkun/sphinx/extdev-tutorial-doc (pull request #232)
extdev tutorial documentation fix
2014-04-04 18:14:57 +02:00
Jean-Paul Calderone
19533c96a5 Fix a copy/paste (presumably) mistake in the extdev tutorial. 2014-04-04 11:53:37 -04:00
Jean-Paul Calderone
c297e80b62 Created new branch extdev-tutorial-doc 2014-04-04 15:52:15 +00:00
Torbjörn Klatt
299c67918c Closes #1436: fix missing empty line after return type in NumPy docstrings 2014-04-01 14:29:54 +02:00
David Ham
617ad0b907 merge 2014-03-28 14:47:25 +00:00
David Ham
3a559979b3 merge 2014-03-28 14:38:52 +00:00
Georg Brandl
04065625ed merge with stable 2014-03-26 07:30:55 +01:00