Warning, /graphics/kst-plot/pyKst/html/make.bat is written in an unsupported language. File is not indexed.
0001 @ECHO OFF 0002 0003 REM Command file for Sphinx documentation 0004 0005 if "%SPHINXBUILD%" == "" ( 0006 set SPHINXBUILD=sphinx-build 0007 ) 0008 set BUILDDIR=_build 0009 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . 0010 if NOT "%PAPER%" == "" ( 0011 set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% 0012 ) 0013 0014 if "%1" == "" goto help 0015 0016 if "%1" == "help" ( 0017 :help 0018 echo.Please use `make ^<target^>` where ^<target^> is one of 0019 echo. html to make standalone HTML files 0020 echo. dirhtml to make HTML files named index.html in directories 0021 echo. singlehtml to make a single large HTML file 0022 echo. pickle to make pickle files 0023 echo. json to make JSON files 0024 echo. htmlhelp to make HTML files and a HTML help project 0025 echo. qthelp to make HTML files and a qthelp project 0026 echo. devhelp to make HTML files and a Devhelp project 0027 echo. epub to make an epub 0028 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter 0029 echo. text to make text files 0030 echo. man to make manual pages 0031 echo. changes to make an overview over all changed/added/deprecated items 0032 echo. linkcheck to check all external links for integrity 0033 echo. doctest to run all doctests embedded in the documentation if enabled 0034 goto end 0035 ) 0036 0037 if "%1" == "clean" ( 0038 for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i 0039 del /q /s %BUILDDIR%\* 0040 goto end 0041 ) 0042 0043 if "%1" == "html" ( 0044 %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html 0045 echo. 0046 echo.Build finished. The HTML pages are in %BUILDDIR%/html. 0047 goto end 0048 ) 0049 0050 if "%1" == "dirhtml" ( 0051 %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml 0052 echo. 0053 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. 0054 goto end 0055 ) 0056 0057 if "%1" == "singlehtml" ( 0058 %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml 0059 echo. 0060 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. 0061 goto end 0062 ) 0063 0064 if "%1" == "pickle" ( 0065 %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle 0066 echo. 0067 echo.Build finished; now you can process the pickle files. 0068 goto end 0069 ) 0070 0071 if "%1" == "json" ( 0072 %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json 0073 echo. 0074 echo.Build finished; now you can process the JSON files. 0075 goto end 0076 ) 0077 0078 if "%1" == "htmlhelp" ( 0079 %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp 0080 echo. 0081 echo.Build finished; now you can run HTML Help Workshop with the ^ 0082 .hhp project file in %BUILDDIR%/htmlhelp. 0083 goto end 0084 ) 0085 0086 if "%1" == "qthelp" ( 0087 %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp 0088 echo. 0089 echo.Build finished; now you can run "qcollectiongenerator" with the ^ 0090 .qhcp project file in %BUILDDIR%/qthelp, like this: 0091 echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pykst.qhcp 0092 echo.To view the help file: 0093 echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pykst.ghc 0094 goto end 0095 ) 0096 0097 if "%1" == "devhelp" ( 0098 %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp 0099 echo. 0100 echo.Build finished. 0101 goto end 0102 ) 0103 0104 if "%1" == "epub" ( 0105 %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub 0106 echo. 0107 echo.Build finished. The epub file is in %BUILDDIR%/epub. 0108 goto end 0109 ) 0110 0111 if "%1" == "latex" ( 0112 %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex 0113 echo. 0114 echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. 0115 goto end 0116 ) 0117 0118 if "%1" == "text" ( 0119 %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text 0120 echo. 0121 echo.Build finished. The text files are in %BUILDDIR%/text. 0122 goto end 0123 ) 0124 0125 if "%1" == "man" ( 0126 %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man 0127 echo. 0128 echo.Build finished. The manual pages are in %BUILDDIR%/man. 0129 goto end 0130 ) 0131 0132 if "%1" == "changes" ( 0133 %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes 0134 echo. 0135 echo.The overview file is in %BUILDDIR%/changes. 0136 goto end 0137 ) 0138 0139 if "%1" == "linkcheck" ( 0140 %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck 0141 echo. 0142 echo.Link check complete; look for any errors in the above output ^ 0143 or in %BUILDDIR%/linkcheck/output.txt. 0144 goto end 0145 ) 0146 0147 if "%1" == "doctest" ( 0148 %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest 0149 echo. 0150 echo.Testing of doctests in the sources finished, look at the ^ 0151 results in %BUILDDIR%/doctest/output.txt. 0152 goto end 0153 ) 0154 0155 :end