Cleaned up a bit

This commit is contained in:
Josh Yelon 2005-11-30 23:13:04 +00:00
parent fac75f516f
commit 2c2fd1a17f

View File

@ -641,11 +641,11 @@ def generateFunctionDocs(code, method):
proto = code.getFunctionPrototype(method) proto = code.getFunctionPrototype(method)
comment = code.getFunctionComment(method) comment = code.getFunctionComment(method)
if (comment == ""): comment = "Undocumented function.<br>\n" if (comment == ""): comment = "Undocumented function.<br>\n"
chunk = '<table class="codecomment1" width="100%"><tr><td>' + "\n" chunk = '<table bgcolor="e8e8e8" border=0 cellspacing=0 cellpadding=5 width="100%"><tr><td>' + "\n"
chunk = chunk + '<a name="' + name + '"><b>' + name + "</b></a><br>\n" chunk = chunk + '<a name="' + name + '"><b>' + name + "</b></a><br>\n"
chunk = chunk + proto + "<br>\n" chunk = chunk + proto + "<br>\n"
chunk = chunk + comment chunk = chunk + comment
chunk = chunk + "</td></tr></table>\n" chunk = chunk + "</td></tr></table><br>\n"
return chunk return chunk
def generateLinkTable(table, cols, urlprefix, urlsuffix): def generateLinkTable(table, cols, urlprefix, urlsuffix):