scripts/docbook2html.py
author amit@thunder
Mon, 25 Jan 2010 18:56:45 +0530
changeset 0 8083d21c0020
permissions -rw-r--r--
The first commit of all the required files for the review app

import glob, os, re, sys
import subprocess
import time
names = glob.glob('ch*.docbook')
for name in names:
	command="xsltproc html-single.xsl %s > %s.html" %(name ,name.split('.')[0])
	print command	
	subprocess.Popen(command,shell=True)
	time.sleep(10)