Fixed the links at the bottom, which I broke.

This commit is contained in:
Jeremy Fincher 2003-11-20 01:58:39 +00:00
parent 8a850e7f64
commit 8b3afe9f74

View File

@ -160,10 +160,11 @@ def makePluginDocumentation(pluginWindow):
</div> </div>
<div style="text-align: center;"> <div style="text-align: center;">
<br /> <br />
<a href="plugins/%s.html">&lt;- %s</a> | <a href="%s.html">&lt;- %s</a> |
<a href="plugins.html">Plugin Index</a> | <a href="../plugins.html">Plugin Index</a> |
<a href="../index.html">Home</a> | <a href="commands.html">Command Index <a href="../../index.html">Home</a> |
</a> | <a href="plugins/%s.html">%s -&gt;</a> <a href="../commands.html">Command Index</a> |
<a href="%s.html">%s -&gt;</a>
%s %s
''' % (prev, cprev, next, cnext, genFooter()))) ''' % (prev, cprev, next, cnext, genFooter())))
fd.close() fd.close()
@ -243,8 +244,8 @@ if __name__ == '__main__':
prepIndex() prepIndex()
plugins = [p for p in genPlugins()] plugins = [p for p in genPlugins()]
plugins.sort() plugins.sort()
plugins.insert(0, None) plugins.insert(0, [None])
plugins.append(None) plugins.append([None])
for pluginWindow in window(plugins, 3): for pluginWindow in window(plugins, 3):
makePluginDocumentation(pluginWindow) makePluginDocumentation(pluginWindow)
finishIndex() finishIndex()