SEESenv/scripts/docbook2html.py
author amit@thunder
Mon, 22 Feb 2010 17:51:14 +0530 (2010-02-22)
changeset 19 a9636afd4c95
parent 2 52d12eb31c30
child 29 5ce5b22a9a0b
permissions -rw-r--r--
Testing
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)