Updated the class names for the table rows

This commit is contained in:
James Vega 2003-10-20 17:13:40 +00:00
parent 3beb83f963
commit 281926b250
2 changed files with 9 additions and 5 deletions

View File

@ -29,10 +29,10 @@ pre {
white-space:normal;
}
.lightyellow {
.treven {
background:aliceblue;
}
.lightgreen {
.trodd {
background:white;
}
}

View File

@ -40,14 +40,18 @@ import textwrap
import traceback
import conf
conf.dataDir = 'test-data'
conf.confDir = 'test-conf'
conf.logDir = 'test-log'
import debug
import callbacks
def makePluginDocumentation(filename):
print 'Generating documentation for %s' % filename
trClasses = { 'lightyellow':'lightgreen', 'lightgreen':'lightyellow' }
trClass = 'lightyellow'
trClasses = { 'treven':'trodd', 'trodd':'treven' }
trClass = 'treven'
pluginName = filename.split('.')[0]
moduleInfo = imp.find_module(pluginName, conf.pluginDirs)
module = imp.load_module(pluginName, *moduleInfo)