Gobligine/doc/scripts/makeindex.py
feber dda6da86d1 Added documentation for SetPlayerData and GetPlayerData.
Updated documentation helper scripts to use the new filenames.
2004-07-23 07:44:25 +00:00

25 lines
667 B
Python
Executable file

#!/usr/bin/env python
"Update the command index in index.html."
import os
commands = []
reffiles = {}
for infile in os.listdir('.'):
if not infile.endswith('.html'): continue
for part in open(infile).read().split('<a name="')[1:]:
command = part.split('"')[0]
commands.append(command)
reffiles[command] = infile
commands.sort()
head, trash, tail = open('index.html').read().split('SCRIPT')
f = open('index.html', 'w')
f.write(head + 'SCRIPT -->\n')
for command in commands:
f.write('<dt><a href="' + reffiles[command] + '#' + command + '">' + command + '</a></dt>\n')
f.write('<dd></dd>\n')
f.write('<!-- SCRIPT' + tail)