mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-26 20:59:27 +01:00
Updated the class names for the table rows
This commit is contained in:
parent
3beb83f963
commit
281926b250
@ -29,10 +29,10 @@ pre {
|
||||
white-space:normal;
|
||||
}
|
||||
|
||||
.lightyellow {
|
||||
.treven {
|
||||
background:aliceblue;
|
||||
}
|
||||
|
||||
.lightgreen {
|
||||
.trodd {
|
||||
background:white;
|
||||
}
|
||||
}
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user