mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-30 06:49:24 +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;
|
white-space:normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lightyellow {
|
.treven {
|
||||||
background:aliceblue;
|
background:aliceblue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lightgreen {
|
.trodd {
|
||||||
background:white;
|
background:white;
|
||||||
}
|
}
|
||||||
|
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user