diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-18 11:58:50 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-18 11:58:50 (GMT) |
commit | bd865db90c00a1114defeb12149698cbf4e7313b (patch) | |
tree | 445a9c746624e88f63475e3d41ff10d65d76636f /Doc | |
parent | b222bbc32105f7ca9a1c5c5ad37c07de3997b9c4 (diff) | |
download | cpython-bd865db90c00a1114defeb12149698cbf4e7313b.zip cpython-bd865db90c00a1114defeb12149698cbf4e7313b.tar.gz cpython-bd865db90c00a1114defeb12149698cbf4e7313b.tar.bz2 |
Added win_add2path.py to Tools/scripts/
Added builddoc.bat to Doc/
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/builddoc.bat | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/Doc/builddoc.bat b/Doc/builddoc.bat new file mode 100644 index 0000000..a26851f --- /dev/null +++ b/Doc/builddoc.bat @@ -0,0 +1,52 @@ +@echo off
+setlocal
+
+set SVNROOT=http://svn.python.org/projects
+if "%PYTHON%" EQU "" set PYTHON=python25
+
+if "%1" EQU "" goto help
+if "%1" EQU "html" goto build
+if "%1" EQU "htmlhelp" goto build
+if "%1" EQU "web" goto build
+if "%1" EQU "webrun" goto webrun
+if "%1" EQU "checkout" goto checkout
+if "%1" EQU "update" goto update
+
+:help
+echo HELP
+echo.
+echo builddoc checkout
+echo builddoc update
+echo builddoc html
+echo builddoc htmlhelp
+echo builddoc web
+echo builddoc webrun
+echo.
+goto end
+
+:checkout
+svn co %SVNROOT%/doctools/trunk/sphinx tools/sphinx
+svn co %SVNROOT%/external/docutils-0.4/docutils tools/docutils
+svn co %SVNROOT%/external/Pygments-0.9/pygments tools/pygments
+goto end
+
+:update
+svn update tools/sphinx
+svn update tools/docutils
+svn update tools/pygments
+goto end
+
+:build
+if not exist build mkdir build
+if not exist build\%1 mkdir build\%1
+if not exist build\doctrees mkdir build\doctrees
+cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%1
+if "%1" EQU "htmlhelp" "%ProgramFiles%\HTML Help Workshop\hhc.exe" build\htmlhelp\pydoc.hhp
+goto end
+
+:webrun
+set PYTHONPATH=tools
+%PYTHON% -m sphinx.web build\web
+goto end
+
+:end
|