summaryrefslogtreecommitdiff
path: root/doc/sphinxext
Commit message (Collapse)AuthorAgeFilesLines
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-0111-1/+17
| | | | | | | | This should be harmless, as we already are division clean. However, placement of this import takes some care. In the future a script can be used to append new features without worry, at least until such time as it exceeds a single line. Having that ability will make it easier to deal with absolute imports and printing updates.
* Merge branch 'enh-numpydoc'Charles Harris2013-02-2818-68/+274
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were some conflicts with the 2to3 work in numpy. I think I got the fixes right. * enh-numpydoc: DOC: fix doc/source/conf.py to work with Python 3 BUG: numpydoc: check that it works with sub-classes TST: numpydoc: more class tests BUG: numpydoc: fix bugs in attribute docstring extraction + improve presentation TST: numpydoc: add stub test files, to check that files at least import MAINT: always use plot directive from Matplotlib, and prefer Sphinx linkcode ENH: numpydoc: Python 2 & 3 in single codebase, restructure as a package ENH: numpydoc: deal with duplicated signatures DOC: numpydoc/linkcode: mention that the extension will be in Sphinx upstream BUG: numpydoc/linkcode: do not detect linkcode config changes Conflicts: doc/sphinxext/numpydoc/docscrape.py doc/sphinxext/numpydoc/docscrape_sphinx.py doc/sphinxext/numpydoc/linkcode.py doc/sphinxext/numpydoc/phantom_import.py doc/sphinxext/numpydoc/traitsdoc.py
| * BUG: numpydoc: check that it works with sub-classesPauli Virtanen2013-02-162-1/+5
| |
| * TST: numpydoc: more class testsPauli Virtanen2013-02-161-2/+114
| |
| * BUG: numpydoc: fix bugs in attribute docstring extraction + improve presentationPauli Virtanen2013-02-162-16/+34
| |
| * TST: numpydoc: add stub test files, to check that files at least importPauli Virtanen2013-02-164-0/+12
| |
| * ENH: numpydoc: Python 2 & 3 in single codebase, restructure as a packagePauli Virtanen2013-02-1614-47/+89
| |
| * ENH: numpydoc: deal with duplicated signaturesPauli Virtanen2013-02-162-7/+25
| |
| * DOC: numpydoc/linkcode: mention that the extension will be in Sphinx upstreamPauli Virtanen2013-02-161-2/+2
| |
| * BUG: numpydoc/linkcode: do not detect linkcode config changesPauli Virtanen2013-02-161-1/+1
| | | | | | | | | | | | Since the linkcode_resolve is a function, it triggers configuration change on each rebuild, resulting to full rebuild always. It's better to make it not do that.
* | Merge pull request #3047 from charris/2to3-callablenjsmith2013-02-285-5/+10
|\ \ | | | | | | 2to3: Fix callable.
| * | 2to3: Fix callable.Charles Harris2013-02-285-5/+10
| | |
* | | Merge pull request #3059 from charris/2to3-funcattrsnjsmith2013-02-281-1/+1
|\ \ \ | | | | | | | | 2to3: Apply `funcattrs` fixer. Closes #3058.
| * | | 2to3: Apply `funcattrs` fixer. Closes #3058.Charles Harris2013-02-281-1/+1
| |/ / | | | | | | | | | | | | This replaces the `b.func_xxxx` with newer `__xxxx__` attribute names For example, `f.__name__` replaces `f.func_name`
* | | 2to3: apply exec fixer results.Charles Harris2013-02-281-2/+2
|/ / | | | | | | This changes the `exec` command to the `exec` function.
* | Merge pull request #3027 from charris/2to3-remove-has_key-updateseberg2013-02-272-4/+4
|\ \ | | | | | | 2to3: Remove `has_key` use that was missed.
| * | 2to3: Remove `has_key` use that was missed.Charles Harris2013-02-272-4/+4
| |/ | | | | | | | | The files not in the numpy/ directory were missed. This gets them all (I hope).
* | 2to3: Updata `except Exception, msg:` syntax in files not in numpy/ .Charles Harris2013-02-272-4/+4
|/ | | | This should finish the updating of the exception syntax.
* sphinxext: remove mention of old files in LICENSE.txtDenis Laxalde2012-06-071-5/+2
|
* sphinxext: some cleanup in setup.pyDenis Laxalde2012-06-071-11/+3
| | | | | | | - remove obsolete entry_points (the corresponding code was removed in 08e85c1820f8502e2a5009da4d3d89c6462a911b). - drop setuptools import - adjust setup() argument to conform with distutils format
* DOC: generate links to source codePauli Virtanen2012-03-111-0/+79
|
* DOC: numpydoc.py was still using old, scipy trac url in docstringValentin Haenel2011-09-171-1/+1
|
* sphinxext: expose __call__ in the documentation, if it is presentPauli Virtanen2011-06-251-1/+6
|
* sphinxext: bump numpydoc versionPauli Virtanen2010-10-011-3/+3
|
* sphinxext: remove deprecated parts from numpydocPauli Virtanen2010-10-015-678/+3
|
* sphinxext: fix Other Parameters section parsing in docscrapePauli Virtanen2010-10-013-7/+79
|
* sphinxext/plot_directive: more robust relpathPauli Virtanen2010-09-051-35/+52
|
* sphinxext: be explicit about Sphinx version requirementsPauli Virtanen2010-09-041-0/+5
|
* sphinxext: more lenient parsing for See Also sectionsPauli Virtanen2010-09-011-1/+2
|
* sphinxext: plot_directive: insert figures at points where plt.show() is ↵Pauli Virtanen2010-08-081-112/+163
| | | | called in the text
* sphinxext: bug fix + some features in plot_directivePauli Virtanen2010-08-081-6/+15
|
* DOC: sphinxext: replace directive mangling with domains (#1489)Pauli Virtanen2010-07-293-90/+57
| | | | Only Sphinx >= 1.0 is supported now.
* Fix bug where __init__ was accessed for objects that might not have it.Fernando Perez2010-04-141-1/+2
|
* sphinxext: fix a small bug in docscrapePauli Virtanen2009-11-141-2/+2
|
* sphinxext: add numpydoc_show_class_members option (from Michael Droettboom)Pauli Virtanen2009-11-136-36/+108
|
* sphinxext: bump numpydoc version, fix build bugPauli Virtanen2009-09-211-2/+2
|
* numpydoc: really fix docutils < 0.5Pauli Virtanen2009-07-221-4/+19
|
* numpydoc: fix issue with docutils < 0.5Pauli Virtanen2009-07-221-4/+9
|
* numpydoc: add np-* directivesPauli Virtanen2009-07-182-1/+56
|
* numpydoc: fix some unicode issuesPauli Virtanen2009-07-111-17/+17
|
* Fix typo.Stefan van der Walt2009-07-041-2/+2
|
* docs: fill in stub Methods/Attributes sections if they are omittedPauli Virtanen2009-06-272-16/+12
|
* docs: remove forgotten debug printPauli Virtanen2009-06-271-1/+0
|
* docs: generate Attributes and Methods sections in class documentationPauli Virtanen2009-06-274-8/+101
|
* sphinxext: fix python2.4 compatibilityPauli Virtanen2009-05-211-1/+1
|
* sphinxext/numpydoc: wrap Examples in plot:: if they contain matplotlib ↵Pauli Virtanen2009-05-214-3/+43
| | | | example code
* sphinxext: revise plot_directivePauli Virtanen2009-05-211-250/+325
|
* sphinxext: use real RST references for bibliographies, and add suitable ↵Pauli Virtanen2009-04-192-16/+30
| | | | links for Latex
* Deprecating sphinxext/autosummary in favor of the version in Sphinx >= 0.7Pauli Virtanen2009-04-131-5/+6
|
* sphinxext: autosummary: don't insert nested paragraphs in the tablePauli Virtanen2009-04-042-1/+6
|