| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add :numref: role to refer figures, tables and code-blocks by its fignum | tk0miya | 2014-10-01 | 1 | -0/+17 |
| | | |||||
| * | Factor out parallel building into a utility class. Better error handling | Georg Brandl | 2014-09-22 | 1 | -3/+7 |
| | | | | | with traceback of the parallel process saved in the error log. | ||||
| * | [WIP] parallel read | Georg Brandl | 2014-09-22 | 1 | -0/+5 |
| | | |||||
| * | Change extension setup() return value to a dictionary of metadata. | Georg Brandl | 2014-09-22 | 1 | -1/+1 |
| | | | | | This makes it possible to introduce more metadata values later. | ||||
| * | Fix a few missing Unicode/bytes filename problems. | Georg Brandl | 2014-09-21 | 1 | -4/+7 |
| | | |||||
| * | merge with stable | Georg Brandl | 2014-09-17 | 1 | -1/+10 |
| |\ | |||||
| | * | Exception logs now contain the last 10 messages emitted by Sphinx. | Georg Brandl | 2014-09-17 | 1 | -2/+10 |
| | | | |||||
| * | | Add support for extensions to declare their version as a string returned ↵ | Georg Brandl | 2014-09-03 | 1 | -2/+3 |
| | | | | | | | | | from setup(). | ||||
| * | | :mod:`~sphinx.ext.viewcode` support imported function/class aliases. Closes #623 | shimizukawa | 2014-08-22 | 1 | -0/+14 |
| | | | |||||
| * | | wrap py3 iterators with list() for each places that expect a list object. ↵ | shimizukawa | 2014-04-30 | 1 | -1/+1 |
| | | | | | | | | | refs #1350. | ||||
| * | | remove 'six' name except importing line. | shimizukawa | 2014-04-30 | 1 | -3/+2 |
| | | | |||||
| * | | use six privided text_type() to replace with unicode() to support py2/py3 in ↵ | shimizukawa | 2014-04-29 | 1 | -2/+2 |
| | | | | | | | | | one source. refs #1350. | ||||
| * | | provide __next__() and use native next() to support py2/py3 in one source. ↵ | shimizukawa | 2014-04-29 | 1 | -3/+5 |
| | | | | | | | | | refs #1350. | ||||
| * | | wrap iterator with list() to avoid 'dictionary changed size during ↵ | shimizukawa | 2014-04-29 | 1 | -1/+1 |
| | | | | | | | | | iteration' on py3. refs #1350. | ||||
| * | | use six privided iteritems(),itervalues() to support py2/py3 in one source. ↵ | shimizukawa | 2014-04-29 | 1 | -1/+2 |
| | | | | | | | | | refs #1350. | ||||
| * | | use six privided functions/classes to support py2/py3 in one source. refs #1350. | shimizukawa | 2014-04-29 | 1 | -1/+2 |
| | | | |||||
| * | | introduce the six module and reduce sphinx.util.pycompat implementation. ↵ | shimizukawa | 2014-04-29 | 1 | -3/+2 |
| | | | | | | | | | refs #1350. | ||||
| * | | Update copyright year. | Georg Brandl | 2014-03-01 | 1 | -3/+3 |
| |\ \ | |/ |/| | |||||
| | * | merge with stable | Georg Brandl | 2014-01-26 | 1 | -3/+3 |
| | |\ | |||||
| | | * | Merge | Dmitry Shachnev | 2014-01-20 | 1 | -3/+3 |
| | | |\ | |||||
| | | | * | Modernize the code now that Python 2.5 is no longer supported | Dmitry Shachnev | 2014-01-19 | 1 | -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 Brandl | 2014-03-01 | 1 | -1/+1 |
| |/ / / | |||||
| * | | | Closes #1358: Fix handling of image paths outside of the source directory ↵ | Georg Brandl | 2014-01-23 | 1 | -1/+1 |
| |/ / | | | | | | | when using the "wildcard" style reference. | ||||
| * | | Closes #1330: Fix :confval:`exclude_patterns` behavior with subdirectories ↵ | Georg Brandl | 2014-01-19 | 1 | -12/+11 |
| |/ | | | | in the :confval:`html_static_path`. | ||||
| * | Extend extension info to the module filename for each loaded ext. | Georg Brandl | 2013-10-02 | 1 | -7/+7 |
| | | |||||
| * | Add list of extensions to the traceback log file on unhandled exceptions. | Georg Brandl | 2013-10-02 | 1 | -2/+8 |
| | | |||||
| * | Fix again: NFC/NFD normalizing problem. Closes #1142 | shimizukawa | 2013-09-18 | 1 | -1/+2 |
| | | |||||
| * | Fix NFC/NFD normalizing problem of rst filename on Mac OS X. Closes #1142 | shimizukawa | 2013-09-17 | 1 | -2/+10 |
| | | |||||
| * | Closes #1185: Don't crash when a Python module has a wrong or no encoding ↵ | Georg Brandl | 2013-09-16 | 1 | -7/+7 |
| | | | | | | | declared, and non-ASCII characters are included. | ||||
| * | Closes #976: Fix gettext does not extract index entries. | shimizukawa | 2013-01-05 | 1 | -0/+23 |
| | | |||||
| * | Add verbose option ``-v`` for sphinx-build and some rudimentary debugging ↵ | Jonathan Waltman | 2013-01-05 | 1 | -0/+6 |
| | | | | | support. | ||||
| * | Copyright update. | Georg Brandl | 2013-01-01 | 1 | -1/+1 |
| | | |||||
| * | Fix test_autodoc with Python 3.3, patches by Jon and Takayuki. | Georg Brandl | 2012-11-01 | 1 | -4/+9 |
| | | |||||
| * | Fix force_decode() to work on Python 3.1.1.3 | Georg Brandl | 2012-03-10 | 1 | -1/+2 |
| | | |||||
| * | Merge with 1.0 | Georg Brandl | 2011-09-22 | 1 | -2/+2 |
| |\ | |||||
| | * | Fix #704: image file duplication bug. | Georg Brandl | 2011-09-22 | 1 | -2/+2 |
| | | | |||||
| * | | Merge with 1.0 | Georg Brandl | 2011-09-21 | 1 | -22/+62 |
| |\ \ | |/ |/| | |||||
| | * | merge with 1.0 | Georg Brandl | 2011-05-15 | 1 | -1/+54 |
| | |\ | |||||
| | * \ | merge with 1.0 | Georg Brandl | 2011-01-07 | 1 | -21/+62 |
| | |\ \ | |||||
| | | * | | #454: Add more index markup capabilities: marking see/seealso entries, and ↵ | Georg Brandl | 2011-01-07 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | main entries for a given key. | ||||
| | | * | | merge with 1.0 | Georg Brandl | 2011-01-04 | 1 | -1/+1 |
| | | |\ \ | |||||
| | | * \ \ | merge with 1.0 | Georg Brandl | 2010-10-22 | 1 | -1/+1 |
| | | |\ \ \ | |||||
| | | * \ \ \ | merge with 1.0 | Georg Brandl | 2010-10-16 | 1 | -0/+3 |
| | | |\ \ \ \ | |||||
| | | * | | | | | Docstring harmonization. | Georg Brandl | 2010-08-22 | 1 | -13/+6 |
| | | | | | | | | |||||
| | | * | | | | | Small code style changes, remove unused imports. | Georg Brandl | 2010-08-21 | 1 | -8/+4 |
| | | | | | | | | |||||
| | | * | | | | | Initial version tracking implementation | DasIch | 2010-08-10 | 1 | -0/+36 |
| | | | | | | | | |||||
| | | * | | | | | Decode templates using utf-8 as jinja2 requires that for python3. This ↵ | DasIch | 2010-06-17 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | change will very likely cause problems for some people | ||||
| | | * | | | | | Take string constant out of function. | Georg Brandl | 2010-07-28 | 1 | -7/+10 |
| | | | | | | | | |||||
| | | * | | | | | Encode even bytestrings containing ascii tests, they are unicode in python3 | Daniel Neuh?user | 2010-05-08 | 1 | -5/+8 |
| | | | | | | | | |||||
| * | | | | | | | Fix #544: allow .pyw extension for importable modules. | Georg Brandl | 2011-09-21 | 1 | -0/+2 |
| | |_|_|_|_|/ |/| | | | | | |||||
