Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2c8e9a1

Browse files
committed
Fix newline characters
1 parent fbbffed commit 2c8e9a1

File tree

1 file changed

+58
-58
lines changed

1 file changed

+58
-58
lines changed

Doc/refs/rest262/make.bat

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
1-
@@echo off
2-
setlocal
3-
4-
set SVNROOT=http://svn.python.org/projects
5-
if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python
6-
if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe
7-
if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/sphinxext/patchlevel.py`) do set DISTVERSION=%%v
8-
9-
if "%1" EQU "" goto help
10-
if "%1" EQU "html" goto build
11-
if "%1" EQU "htmlhelp" goto build
12-
if "%1" EQU "latex" goto build
13-
if "%1" EQU "text" goto build
14-
if "%1" EQU "suspicious" goto build
15-
if "%1" EQU "linkcheck" goto build
16-
if "%1" EQU "changes" goto build
17-
if "%1" EQU "checkout" goto checkout
18-
if "%1" EQU "update" goto update
19-
20-
:help
21-
set this=%~n0
22-
echo HELP
23-
echo.
24-
echo %this% checkout
25-
echo %this% update
26-
echo %this% html
27-
echo %this% htmlhelp
28-
echo %this% latex
29-
echo %this% text
30-
echo %this% suspicious
31-
echo %this% linkcheck
32-
echo %this% changes
33-
echo.
34-
goto end
35-
36-
:checkout
37-
svn co %SVNROOT%/doctools/trunk/sphinx tools/sphinx
38-
svn co %SVNROOT%/external/docutils-0.5/docutils tools/docutils
39-
svn co %SVNROOT%/external/Jinja-2.1.1/jinja2 tools/jinja2
40-
svn co %SVNROOT%/external/Pygments-0.11.1/pygments tools/pygments
41-
goto end
42-
43-
:update
44-
svn update tools/sphinx
45-
svn update tools/docutils
46-
svn update tools/jinja2
47-
svn update tools/pygments
48-
goto end
49-
50-
:build
51-
if not exist build mkdir build
52-
if not exist build\%1 mkdir build\%1
53-
if not exist build\doctrees mkdir build\doctrees
54-
cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%*
55-
if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\python%DISTVERSION:.=%.hhp
56-
goto end
57-
58-
:end
1+
@@echo off
2+
setlocal
3+
4+
set SVNROOT=http://svn.python.org/projects
5+
if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python
6+
if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe
7+
if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/sphinxext/patchlevel.py`) do set DISTVERSION=%%v
8+
9+
if "%1" EQU "" goto help
10+
if "%1" EQU "html" goto build
11+
if "%1" EQU "htmlhelp" goto build
12+
if "%1" EQU "latex" goto build
13+
if "%1" EQU "text" goto build
14+
if "%1" EQU "suspicious" goto build
15+
if "%1" EQU "linkcheck" goto build
16+
if "%1" EQU "changes" goto build
17+
if "%1" EQU "checkout" goto checkout
18+
if "%1" EQU "update" goto update
19+
20+
:help
21+
set this=%~n0
22+
echo HELP
23+
echo.
24+
echo %this% checkout
25+
echo %this% update
26+
echo %this% html
27+
echo %this% htmlhelp
28+
echo %this% latex
29+
echo %this% text
30+
echo %this% suspicious
31+
echo %this% linkcheck
32+
echo %this% changes
33+
echo.
34+
goto end
35+
36+
:checkout
37+
svn co %SVNROOT%/doctools/trunk/sphinx tools/sphinx
38+
svn co %SVNROOT%/external/docutils-0.5/docutils tools/docutils
39+
svn co %SVNROOT%/external/Jinja-2.1.1/jinja2 tools/jinja2
40+
svn co %SVNROOT%/external/Pygments-0.11.1/pygments tools/pygments
41+
goto end
42+
43+
:update
44+
svn update tools/sphinx
45+
svn update tools/docutils
46+
svn update tools/jinja2
47+
svn update tools/pygments
48+
goto end
49+
50+
:build
51+
if not exist build mkdir build
52+
if not exist build\%1 mkdir build\%1
53+
if not exist build\doctrees mkdir build\doctrees
54+
cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%*
55+
if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\python%DISTVERSION:.=%.hhp
56+
goto end
57+
58+
:end

0 commit comments

Comments
 (0)