[wpdev-commits] xmlscripts/documentation generate_html.py,1.4,1.5
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-06-29 14:47:30
|
Update of /cvsroot/wpdev/xmlscripts/documentation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2575 Modified Files: generate_html.py Log Message: Documentation Index: generate_html.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/documentation/generate_html.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** generate_html.py 29 Jun 2004 11:36:25 -0000 1.4 --- generate_html.py 29 Jun 2004 14:47:20 -0000 1.5 *************** *** 109,113 **** text = text.replace('{OVERVIEW}', overview) ! output = open('output/commands.html', "wt") output.write(text) output.close() --- 109,113 ---- text = text.replace('{OVERVIEW}', overview) ! output = open('webroot/commands.html', "wt") output.write(text) output.close() *************** *** 139,143 **** text = text.replace('{NOTES}', notes) ! output = open('output/command_%s.html' % command['name'].lower(), "wt") output.write(text) output.close() --- 139,143 ---- text = text.replace('{NOTES}', notes) ! output = open('webroot/command_%s.html' % command['name'].lower(), "wt") output.write(text) output.close() *************** *** 171,175 **** text = text.replace('{VERSION}', version) ! output = open('output/events.html', "wt") output.write(text) output.close() --- 171,175 ---- text = text.replace('{VERSION}', version) ! output = open('webroot/events.html', "wt") output.write(text) output.close() *************** *** 191,195 **** text = text.replace('{VERSION}', version) ! output = open('output/event_%s.html' % event['name'].lower(), "wt") output.write(text) output.close() --- 191,195 ---- text = text.replace('{VERSION}', version) ! output = open('webroot/event_%s.html' % event['name'].lower(), "wt") output.write(text) output.close() *************** *** 233,237 **** text = text.replace('{VERSION}', version) ! output = open('output/objects.html', "wt") output.write(text) output.close() --- 233,237 ---- text = text.replace('{VERSION}', version) ! output = open('webroot/objects.html', "wt") output.write(text) output.close() *************** *** 378,382 **** text = text.replace('{DESCRIPTION}', '') ! output = open('output/object_%s.html' % object['object'].lower(), "wt") output.write(text) output.close() --- 378,382 ---- text = text.replace('{DESCRIPTION}', '') ! output = open('webroot/object_%s.html' % object['object'].lower(), "wt") output.write(text) output.close() *************** *** 427,431 **** text = text.replace('{VERSION}', version) ! output = open('output/modules.html', "wt") output.write(text) output.close() --- 427,431 ---- text = text.replace('{VERSION}', version) ! output = open('webroot/modules.html', "wt") output.write(text) output.close() *************** *** 505,509 **** text = text.replace('{MODULEFUNCTIONS}', overview) ! output = open('output/module_%s.html' % module.replace('.', '_').lower(), "wt") output.write(text) output.close() --- 505,509 ---- text = text.replace('{MODULEFUNCTIONS}', overview) ! output = open('webroot/module_%s.html' % module.replace('.', '_').lower(), "wt") output.write(text) output.close() *************** *** 521,525 **** text = text.replace('{MODULES}', str(len(modules))) ! output = open('output/index.html', "wt") output.write(text) output.close() \ No newline at end of file --- 521,525 ---- text = text.replace('{MODULES}', str(len(modules))) ! output = open('webroot/index.html', "wt") output.write(text) output.close() \ No newline at end of file |