summaryrefslogtreecommitdiff
path: root/sphinx/cmdline.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | #2695: better error handling for setup_commandTakeshi KOMIYA2016-09-121-49/+53
|/
* Merge branch 'stable'Georg Brandl2016-02-161-0/+8
|\
| * Closes #2324: Print a hint how to increase the recursion limit when it is hit.Georg Brandl2016-02-161-0/+8
| |
* | Merge branch 'stable'Georg Brandl2016-01-141-1/+1
|\ \ | |/
| * Obligatory copyright update.Georg Brandl2016-01-141-1/+1
| |
* | Merge with '87998df9cbef2380345d436121e6bca43345d2bd' on stableshimizukawa2016-01-101-0/+4
|\ \ | |/ | | | | | | Conflicts: tests/test_build_latex.py
| * Fix #2193: shutil.SameFileError if source directory and destination ↵Takeshi KOMIYA2015-12-261-0/+4
| | | | | | | | directory are same
* | Merge pull request #1899 from Eric89GXL/optsTakeshi KOMIYA2016-01-011-1/+1
|\ \ | |/ |/| FIX: Ensure list is sent to OptParse
| * FIX: Ensure list is sent to OptParseEric Larson2015-05-221-1/+1
| |
* | fix message when calling sphinx-build without argumentsGeorg Brandl2015-07-251-6/+1
|/
* Support PEP-440 version spec for developers.shimizukawa2015-03-141-3/+3
|
* pep8 fixesGeorg Brandl2015-03-081-1/+0
|
* Merge branch 'stable'Georg Brandl2015-01-031-1/+1
|\
| * all: update copyrightGeorg Brandl2015-01-031-1/+1
| |
* | Merge branch 'stable'Georg Brandl2015-01-021-1/+1
|\ \ | |/
| * development process updates: bb->gh, hg->gitGeorg Brandl2015-01-021-1/+1
| |
* | Closes #1611: actually use "argv" argument again in cmdline.main.Georg Brandl2014-11-041-1/+1
| |
* | Fix default for verbosity option (crashes on Py3).Georg Brandl2014-09-221-1/+1
| |
* | Switch sphinx.cmdline to optparse.Georg Brandl2014-09-221-160/+153
| |
* | Update documentation and `sphinx-build -N` option behavior for windows color ↵Takayuki Shimizukawa2014-07-051-1/+0
| | | | | | | | console support. closes #1291.
* | use py2/py3 compat except syntax. #1350.Takayuki Shimizukawa2014-05-011-1/+1
| |
* | remove 'six' name except importing line.Takayuki Shimizukawa2014-04-301-4/+3
| |
* | use six privided text_type() to replace with unicode() to support py2/py3 in ↵Takayuki Shimizukawa2014-04-291-2/+3
| | | | | | | | one source. refs #1350.
* | introduce the six module and reduce sphinx.util.pycompat implementation. ↵Takayuki Shimizukawa2014-04-291-3/+4
| | | | | | | | refs #1350.
* | Update copyright year.Georg Brandl2014-03-011-1/+1
|\ \ | |/
| * Update copyright year.Georg Brandl2014-03-011-1/+1
| |
* | fix print statementGeorg Brandl2014-01-231-1/+1
| |
* | merge with stableGeorg Brandl2014-01-221-4/+2
|\ \ | |/
| * dont suggest reporting issues to user list anymoreGeorg Brandl2014-01-211-4/+2
| |
* | Resolve some conflictsDmitry Shachnev2014-01-221-39/+11
| |
* | MergeDmitry Shachnev2014-01-201-39/+69
|\ \
| * | Modernize the code now that Python 2.5 is no longer supportedDmitry Shachnev2014-01-191-48/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | merge with stableGeorg Brandl2014-01-191-0/+7
|\ \ \ | | |/ | |/|
| * | Closes #811: dont eat up UnicodeErrors during reading anymoreGeorg Brandl2014-01-191-0/+7
| | |
* | | merge with stableGeorg Brandl2014-01-191-14/+22
|\ \ \ | |/ / | | / | |/ |/|
| * Add "make mode" to sphinx-build, invoked by the -M flag.Georg Brandl2014-01-111-14/+22
| | | | | | | | | | | | | | | | | | This is intended to do almost all of what the quickstart-generated Makefile and make.bat did, but within Sphinx. The advantages are: * no duplication between Unix and Windows files * updates and fixes are propagated (the generated makefiles never update) * more Python code, less shell code!
* | Closes #925: Allow list-typed config values to be provided on the command line,Georg Brandl2014-01-101-8/+5
|/ | | | like ``-D key=val1,val2``.
* Add list of extensions to the traceback log file on unhandled exceptions.Georg Brandl2013-10-021-1/+2
|
* small grammar fix in multibyte filename messagesGeorg Brandl2013-10-011-2/+2
|
* When Sphinx couldn't decode multibyte filename, now Sphinx notices ↵Takayuki Shimizukawa2013-09-281-1/+6
| | | | UnicodeError and continuing if possible instead of raise exception. Closes #703
* Fix again: NFC/NFD normalizing problem. Closes #1142Takayuki Shimizukawa2013-09-181-8/+1
|
* Introduce a "-j" flag for parallel build.Georg Brandl2013-01-131-2/+11
|
* Refactor the "usage" help text into several sections.Georg Brandl2013-01-131-24/+38
|
* Write "making output directory" to the status fd, not to stderr unconditionally.Georg Brandl2013-01-121-3/+5
|
* Add a link to the Sphinx homepage when sphinx-build is called with -h.Georg Brandl2013-01-121-1/+4
|
* Add verbose option ``-v`` for sphinx-build and some rudimentary debugging ↵Jonathan Waltman2013-01-051-2/+7
| | | | support.
* sphinx-build: Provide more specific error messages for invalid arguments.Jonathan Waltman2013-01-041-4/+7
|
* sphinx-build: Support the standard ``--help`` and ``--version`` options.Jonathan Waltman2013-01-041-1/+10
|
* Issue #869: Add option ``-T`` for printing the full traceback on exception.Jonathan Waltman2013-01-041-10/+12
|
* Copyright update.Georg Brandl2013-01-011-1/+1
|