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; white-space:normal;
} }
.lightyellow { .treven {
background:aliceblue; background:aliceblue;
} }
.lightgreen { .trodd {
background:white; background:white;
} }

View File

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