summaryrefslogtreecommitdiff
path: root/sphinx/util/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Add :numref: role to refer figures, tables and code-blocks by its fignumtk0miya2014-10-011-0/+17
|
* Factor out parallel building into a utility class. Better error handlingGeorg Brandl2014-09-221-3/+7
| | | | with traceback of the parallel process saved in the error log.
* [WIP] parallel readGeorg Brandl2014-09-221-0/+5
|
* Change extension setup() return value to a dictionary of metadata.Georg Brandl2014-09-221-1/+1
| | | | This makes it possible to introduce more metadata values later.
* Fix a few missing Unicode/bytes filename problems.Georg Brandl2014-09-211-4/+7
|
* merge with stableGeorg Brandl2014-09-171-1/+10
|\
| * Exception logs now contain the last 10 messages emitted by Sphinx.Georg Brandl2014-09-171-2/+10
| |
* | Add support for extensions to declare their version as a string returned ↵Georg Brandl2014-09-031-2/+3
| | | | | | | | from setup().
* | :mod:`~sphinx.ext.viewcode` support imported function/class aliases. Closes #623shimizukawa2014-08-221-0/+14
| |
* | wrap py3 iterators with list() for each places that expect a list object. ↵shimizukawa2014-04-301-1/+1
| | | | | | | | refs #1350.
* | remove 'six' name except importing line.shimizukawa2014-04-301-3/+2
| |
* | use six privided text_type() to replace with unicode() to support py2/py3 in ↵shimizukawa2014-04-291-2/+2
| | | | | | | | one source. refs #1350.
* | provide __next__() and use native next() to support py2/py3 in one source. ↵shimizukawa2014-04-291-3/+5
| | | | | | | | refs #1350.
* | wrap iterator with list() to avoid 'dictionary changed size during ↵shimizukawa2014-04-291-1/+1
| | | | | | | | iteration' on py3. refs #1350.
* | use six privided iteritems(),itervalues() to support py2/py3 in one source. ↵shimizukawa2014-04-291-1/+2
| | | | | | | | refs #1350.
* | use six privided functions/classes to support py2/py3 in one source. refs #1350.shimizukawa2014-04-291-1/+2
| |
* | introduce the six module and reduce sphinx.util.pycompat implementation. ↵shimizukawa2014-04-291-3/+2
| | | | | | | | refs #1350.
* | Update copyright year.Georg Brandl2014-03-011-3/+3
|\ \ | |/ |/|
| * merge with stableGeorg Brandl2014-01-261-3/+3
| |\
| | * MergeDmitry Shachnev2014-01-201-3/+3
| | |\
| | | * Modernize the code now that Python 2.5 is no longer supportedDmitry Shachnev2014-01-191-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections.
* | | | Update copyright year.Georg Brandl2014-03-011-1/+1
|/ / /
* | | Closes #1358: Fix handling of image paths outside of the source directory ↵Georg Brandl2014-01-231-1/+1
|/ / | | | | | | when using the "wildcard" style reference.
* | Closes #1330: Fix :confval:`exclude_patterns` behavior with subdirectories ↵Georg Brandl2014-01-191-12/+11
|/ | | | in the :confval:`html_static_path`.
* Extend extension info to the module filename for each loaded ext.Georg Brandl2013-10-021-7/+7
|
* Add list of extensions to the traceback log file on unhandled exceptions.Georg Brandl2013-10-021-2/+8
|
* Fix again: NFC/NFD normalizing problem. Closes #1142shimizukawa2013-09-181-1/+2
|
* Fix NFC/NFD normalizing problem of rst filename on Mac OS X. Closes #1142shimizukawa2013-09-171-2/+10
|
* Closes #1185: Don't crash when a Python module has a wrong or no encoding ↵Georg Brandl2013-09-161-7/+7
| | | | | | declared, and non-ASCII characters are included.
* Closes #976: Fix gettext does not extract index entries.shimizukawa2013-01-051-0/+23
|
* Add verbose option ``-v`` for sphinx-build and some rudimentary debugging ↵Jonathan Waltman2013-01-051-0/+6
| | | | support.
* Copyright update.Georg Brandl2013-01-011-1/+1
|
* Fix test_autodoc with Python 3.3, patches by Jon and Takayuki.Georg Brandl2012-11-011-4/+9
|
* Fix force_decode() to work on Python 3.1.1.3Georg Brandl2012-03-101-1/+2
|
* Merge with 1.0Georg Brandl2011-09-221-2/+2
|\
| * Fix #704: image file duplication bug.Georg Brandl2011-09-221-2/+2
| |
* | Merge with 1.0Georg Brandl2011-09-211-22/+62
|\ \ | |/ |/|
| * merge with 1.0Georg Brandl2011-05-151-1/+54
| |\
| * \ merge with 1.0Georg Brandl2011-01-071-21/+62
| |\ \
| | * | #454: Add more index markup capabilities: marking see/seealso entries, and ↵Georg Brandl2011-01-071-0/+8
| | | | | | | | | | | | | | | | main entries for a given key.
| | * | merge with 1.0Georg Brandl2011-01-041-1/+1
| | |\ \
| | * \ \ merge with 1.0Georg Brandl2010-10-221-1/+1
| | |\ \ \
| | * \ \ \ merge with 1.0Georg Brandl2010-10-161-0/+3
| | |\ \ \ \
| | * | | | | Docstring harmonization.Georg Brandl2010-08-221-13/+6
| | | | | | |
| | * | | | | Small code style changes, remove unused imports.Georg Brandl2010-08-211-8/+4
| | | | | | |
| | * | | | | Initial version tracking implementationDasIch2010-08-101-0/+36
| | | | | | |
| | * | | | | Decode templates using utf-8 as jinja2 requires that for python3. This ↵DasIch2010-06-171-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | change will very likely cause problems for some people
| | * | | | | Take string constant out of function.Georg Brandl2010-07-281-7/+10
| | | | | | |
| | * | | | | Encode even bytestrings containing ascii tests, they are unicode in python3Daniel Neuh?user2010-05-081-5/+8
| | | | | | |
* | | | | | | Fix #544: allow .pyw extension for importable modules.Georg Brandl2011-09-211-0/+2
| |_|_|_|_|/ |/| | | | |