|
[Rivet-svn] r2047 - trunk/binblackhole at projects.hepforge.org blackhole at projects.hepforge.orgMon Nov 9 22:01:03 GMT 2009
Author: fsiegert Date: Mon Nov 9 22:01:03 2009 New Revision: 2047 Log: Nicer titles for html-pages from make-html Modified: trunk/bin/make-html Modified: trunk/bin/make-html ============================================================================== --- trunk/bin/make-html Mon Nov 9 17:08:29 2009 (r2046) +++ trunk/bin/make-html Mon Nov 9 22:01:03 2009 (r2047) @@ -79,11 +79,12 @@ index = open(os.path.join(opts.OUTPUTDIR, "index.html"), "w") +index.write('<html><head><title>%s</title></head><body>' % opts.OUTPUTDIR) for analysis in sorted(analyses): anapath = os.path.join(opts.OUTPUTDIR, analysis) os.mkdir(anapath) anaindex = open(os.path.join(anapath, "index.html"), 'w') - anaindex.write("<html>\n") + anaindex.write("<html><head><title>%s - %s</title></head><body>\n" % (opts.OUTPUTDIR, analysis)) datfiles = glob.glob("%s/%s_*.dat" % (opts.OUTPUTDIR, analysis)) for fulldatfile in sorted(datfiles): @@ -109,7 +110,8 @@ anaindex.write('<a href="%s" style="font-size:small;text-decoration:none;font-weight:bold;">' % psfile) anaindex.write('%s:<br><img border="0" src="%s"></a></div>\n' % (psfile, pngfile)) - anaindex.write("</html>\n") + anaindex.write("</body></html>\n") index.write('<h1><a href="%s/index.html" style="text-decoration:none;">%s</a></h1>\n' %(analysis, analysis)) description = Popen(["rivet", "--show-analysis", analysis], stdout=PIPE).communicate()[0] index.write('<pre>%s</pre>\n' % description) +index.write('</body></html>')
More information about the Rivet-svn mailing list |