Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61104,61110-61112,61114-61115,61117,61120-61122,61126-61136 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61128 | martin.v.loewis | 2008-02-29 17:59:21 +0100 (Fr, 29 Feb 2008) | 1 line
Make _hashlib a separate project.
........
r61132 | georg.brandl | 2008-02-29 19:15:36 +0100 (Fr, 29 Feb 2008) | 2 lines
Until we got downloadable docs, stop confusing viewers by talking about a nonexisting table.
........
r61133 | martin.v.loewis | 2008-02-29 19:17:23 +0100 (Fr, 29 Feb 2008) | 1 line
Build db-4.4.20 with VS9; remove VS2003 build if necessary.
........
r61135 | georg.brandl | 2008-02-29 19:21:29 +0100 (Fr, 29 Feb 2008) | 2 lines
#2208: allow for non-standard HHC location.
........
r61136 | martin.v.loewis | 2008-02-29 19:54:45 +0100 (Fr, 29 Feb 2008) | 1 line
Port build_ssl.py to 2.4; support HOST_PYTHON variable
........
2008-02-29 15:39:25 -04:00
|
|
|
@@echo off
|
2008-01-18 14:40:46 -04:00
|
|
|
setlocal
|
|
|
|
|
|
|
|
set SVNROOT=http://svn.python.org/projects
|
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61104,61110-61112,61114-61115,61117,61120-61122,61126-61136 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61128 | martin.v.loewis | 2008-02-29 17:59:21 +0100 (Fr, 29 Feb 2008) | 1 line
Make _hashlib a separate project.
........
r61132 | georg.brandl | 2008-02-29 19:15:36 +0100 (Fr, 29 Feb 2008) | 2 lines
Until we got downloadable docs, stop confusing viewers by talking about a nonexisting table.
........
r61133 | martin.v.loewis | 2008-02-29 19:17:23 +0100 (Fr, 29 Feb 2008) | 1 line
Build db-4.4.20 with VS9; remove VS2003 build if necessary.
........
r61135 | georg.brandl | 2008-02-29 19:21:29 +0100 (Fr, 29 Feb 2008) | 2 lines
#2208: allow for non-standard HHC location.
........
r61136 | martin.v.loewis | 2008-02-29 19:54:45 +0100 (Fr, 29 Feb 2008) | 1 line
Port build_ssl.py to 2.4; support HOST_PYTHON variable
........
2008-02-29 15:39:25 -04:00
|
|
|
if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python
|
|
|
|
if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe
|
2008-01-18 14:40:46 -04:00
|
|
|
|
|
|
|
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
|
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61104,61110-61112,61114-61115,61117,61120-61122,61126-61136 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61128 | martin.v.loewis | 2008-02-29 17:59:21 +0100 (Fr, 29 Feb 2008) | 1 line
Make _hashlib a separate project.
........
r61132 | georg.brandl | 2008-02-29 19:15:36 +0100 (Fr, 29 Feb 2008) | 2 lines
Until we got downloadable docs, stop confusing viewers by talking about a nonexisting table.
........
r61133 | martin.v.loewis | 2008-02-29 19:17:23 +0100 (Fr, 29 Feb 2008) | 1 line
Build db-4.4.20 with VS9; remove VS2003 build if necessary.
........
r61135 | georg.brandl | 2008-02-29 19:21:29 +0100 (Fr, 29 Feb 2008) | 2 lines
#2208: allow for non-standard HHC location.
........
r61136 | martin.v.loewis | 2008-02-29 19:54:45 +0100 (Fr, 29 Feb 2008) | 1 line
Port build_ssl.py to 2.4; support HOST_PYTHON variable
........
2008-02-29 15:39:25 -04:00
|
|
|
if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\pydoc.hhp
|
2008-01-18 14:40:46 -04:00
|
|
|
goto end
|
|
|
|
|
|
|
|
:webrun
|
|
|
|
set PYTHONPATH=tools
|
|
|
|
%PYTHON% -m sphinx.web build\web
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:end
|