scripts/docbook2html.py
changeset 0 8083d21c0020
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/docbook2html.py	Mon Jan 25 18:56:45 2010 +0530
@@ -0,0 +1,9 @@
+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)