merge docchanges from new-docs branch

This commit is contained in:
Jorgen Stenarson
2008-12-17 19:46:35 +01:00
6 changed files with 212 additions and 1 deletions
+7 -1
View File
@@ -2,11 +2,17 @@
"""Script to build documentation using Sphinx.
"""
import fileinput,os,sys
import fileinput, os, sys
def oscmd(c):
os.system(c)
if os.path.isdir("build"):
os.removedirs("build")
os.makedirs("build/html")
os.makedirs("build/latex")
# html manual.
oscmd('sphinx-build -d build/doctrees source build/html')