#!/usr/bin/env python
import fileinput
import glob
import os
import shutil
import sys
def check_build():
build_dirs = ['build', 'build/doctrees', 'build/html', 'build/latex',
'_static', '_templates']
for d in build_dirs:
try:
os.mkdir(d)
except OSError:
pass
def html():
check_build()
os.system('sphinx-build -b html -d build/doctrees . build/html')
def latex():
check_build()
if sys.platform != 'win32':
# LaTeX format.
os.system('sphinx-build -b latex -d build/doctrees . build/latex')
# Produce pdf.
os.chdir('build/latex')
# Copying the makefile produced by sphinx...
os.system('pdflatex sampledoc.tex')
os.system('pdflatex sampledoc.tex')
os.system('makeindex -s python.ist sampledoc.idx')
os.system('makeindex -s python.ist modsampledoc.idx')
os.system('pdflatex sampledoc.tex')
os.chdir('../..')
else:
print 'latex build has not been tested on windows'
def clean():
shutil.rmtree('build')
def all():
html()
latex()
funcd = {'html':html,
'latex':latex,
'clean':clean,
'all':all,
}
if len(sys.argv)>1:
for arg in sys.argv[1:]:
func = funcd.get(arg)
if func is None:
raise SystemExit('Do not know how to handle %s; valid args are'%(
arg, funcd.keys()))
func()
else:
all()