summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Closed branch rneu31/added-support-for-windows-color-output-u-1404418973591rneu31/added-support-for-windows-color-output-u-1404418973591shimizukawa2014-07-050-0/+0
* Added support for Windows color output using colorama (if installed)rneu312014-07-031-1/+6
* more corrections for spelling and grammarEricFromCanada2014-06-198-24/+25
* Link-checked and updated the URLs for projects using Sphinx that are still av...EricFromCanada2014-06-191-36/+42
* corrected contractionsEricFromCanada2014-06-184-4/+4
* improved consistency for how docs refer to True and FalseEricFromCanada2014-06-189-40/+41
* rewrapping paragraphs when over 80 characters wideEricFromCanada2014-06-1823-106/+120
* corrections for misspellingsEricFromCanada2014-06-188-14/+13
* * fix over 80 chars line and remove unused import.shimizukawa2014-06-159-12/+12
* Merged in shimizukawa/sphinx-remove-complex-method-distinguishing (pull reque...Takayuki Shimizukawa2014-06-151-36/+19
|\
| * * remove PY3 importingshimizukawa2014-06-101-1/+1
| * * remove complex distinguishing method/classmethod/staticmethod approachshimizukawa2014-06-091-35/+18
* | * add test and code comment for pull request #157shimizukawa2014-06-143-1/+53
* | Merged in David_Ham/sphinx (pull request #157)Takayuki Shimizukawa2014-06-141-1/+15
|\ \
| * \ mergedavid ham2014-03-281-1/+15
| |\ \
| | * \ mergedavid ham2014-03-28365-3561/+8160
| | |\ \
| | * | | Create a derivative of the DocstringSignatureMixin which stripsdavid ham2013-08-121-1/+15
* | | | | Closes #1489: Removes use of ":annotation:" for attribute types in napoleon, ...Rob Ruana2014-06-134-3/+40
* | | | | * fix again for mathjax secure url. refs #1459.shimizukawa2014-06-112-2/+4
* | | | | Merged in stevepiercy/sphinx/stevepiercy/update-pylons-link-add-pyramid-and-s...Takayuki Shimizukawa2014-06-110-0/+0
|\ \ \ \ \
* | | | | | Update Pylons link, add Pyramid and Substance DSteve Piercy2014-06-111-1/+3
|/ / / / /
* | | | | added Lasso to example sites and booksEricFromCanada2014-06-091-0/+3
| |_|_|/ |/| | |
* | | | merge with stableshimizukawa2014-06-09195-1800/+18674
|\ \ \ \
| * | | | * Provide non-minified JS files for jquery.js and underscore.js to clarify th...shimizukawa2014-06-074-0/+10496
| * | | | update CHANGES for #1459,PR#244 mathjax http:// url.shimizukawa2014-06-051-0/+2
| * | | | fixes #1459sbrandtb2014-06-051-1/+1
| * | | | * update CHANGES and fix for py3-compat for pull request #241. Closes #1466shimizukawa2014-05-282-1/+3
| * | | | Merged in vitaut/sphinx/cpp-variadic (pull request #241)Takayuki Shimizukawa2014-05-28100-717/+713
| |\ \ \ \
| | * | | | * Drop Python-3.2. And now, removing 2to3 mechanism procedure has been comple...shimizukawa2014-05-275-18/+10
| | * | | | Merged in shimizukawa/sphinx-py3-native (pull request #243)Takayuki Shimizukawa2014-05-274-3/+25
| | |\ \ \ \
| | | * \ \ \ Merged in shimizukawa/sphinx-use-six (pull request #238)Takayuki Shimizukawa2014-05-254-3/+25
| | | |\ \ \ \
| | * | | | | | remove unnecessary `list()` wrappers. In some places, I replaced `iterable.so...shimizukawa2014-05-257-21/+17
| | * | | | | | remove custom_fixers. it is not needed anymore.shimizukawa2014-05-033-13/+1
| | * | | | | | use b prefix for bytes instead of sphinx.pycompat.b function.shimizukawa2014-05-0110-58/+42
| | * | | | | | Add Python-3.4 supportshimizukawa2014-05-012-1/+2
| | * | | | | | delegate '__nonzero__' to '__bool__' for py2/py3 compatibility in one source....shimizukawa2014-05-013-3/+6
| | * | | | | | remove 2to3. #1350.shimizukawa2014-05-012-20/+3
| | * | | | | | use py2/py3 compat except syntax. #1350.shimizukawa2014-05-011-1/+1
| | * | | | | | fix py2/py3 compat for 'iter.next()/next(iter)' and 'dict.values()/list(dict....shimizukawa2014-05-012-2/+2
| | * | | | | | use 'next(iter)' instead of 'iter.next()' to support py2/py3 compatibiity. re...shimizukawa2014-05-011-6/+6
| | * | | | | | tiny fix for py2/py3 compatibility in one source.shimizukawa2014-05-012-9/+2
| | * | | | | | wrap py3 iterators with list() for each places that expect a list object. ref...shimizukawa2014-04-3021-37/+35
| | * | | | | | replace ur'' prefix with r'' to support py2/py3 in one source. refs #1350shimizukawa2014-04-305-94/+97
| | |/ / / / /
| | * | | | | remove 'six' name except importing line.shimizukawa2014-04-3044-143/+126
| | * | | | | use six privided functions/classes to support py2/py3 in one source. refs #1350shimizukawa2014-04-304-13/+14
| | * | | | | use UnicodeMixin for __str__, __unicode__ to support py2/py3 in one source. r...shimizukawa2014-04-303-24/+20
| | * | | | | use six privided text_type() to replace with unicode() to support py2/py3 in ...shimizukawa2014-04-2928-128/+151
| | * | | | | provide __next__() and use native next() to support py2/py3 in one source. re...shimizukawa2014-04-298-29/+33
| | * | | | | wrap iterator with list() to avoid 'dictionary changed size during iteration'...shimizukawa2014-04-299-18/+18
| | * | | | | use six privided iteritems(),itervalues() to support py2/py3 in one source. r...shimizukawa2014-04-2936-85/+129