SEESenv/scripts/docbook2html.py
changeset 32 de7ac08f237b
parent 29 5ce5b22a9a0b
child 34 18b34db550ec
--- a/SEESenv/scripts/docbook2html.py	Fri Feb 26 22:39:39 2010 +0530
+++ b/SEESenv/scripts/docbook2html.py	Sat Feb 27 00:10:28 2010 +0530
@@ -3,7 +3,9 @@
 import time
 names = glob.glob('/home/hg/repos/SEES-hacks/temp/ch*.docbook')
 for name in names:
-	command="xsltproc html-single.xsl %s > %s.html" %(name ,name.split('.')[0])
+#	command="xsltproc html-single.xsl %s > %s.html" %(name ,name.split('.')[0])
+    command="xsltproc %shtml-single.xsl %s > %s.html" %(xsl_loc, name ,name.split('.')[0])
+
 	print command	
 	subprocess.Popen(command,shell=True)
 	time.sleep(10)