projects
/
oweals
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c34f6d
)
Fixes UVLdoc generation, thanks ffrrrr (closes #49)
author
Steven Barth
<steven@midlink.org>
Fri, 20 Feb 2009 11:47:52 +0000
(11:47 +0000)
committer
Steven Barth
<steven@midlink.org>
Fri, 20 Feb 2009 11:47:52 +0000
(11:47 +0000)
libs/uvldoc/luasrc/uvldoc/renderer.lua
patch
|
blob
|
history
diff --git
a/libs/uvldoc/luasrc/uvldoc/renderer.lua
b/libs/uvldoc/luasrc/uvldoc/renderer.lua
index d005ba315fa8253f6a18454db323f5a022b09a9f..7a188f6cf93023b30f9d15fdd8f03e298ebea3e0 100644
(file)
--- a/
libs/uvldoc/luasrc/uvldoc/renderer.lua
+++ b/
libs/uvldoc/luasrc/uvldoc/renderer.lua
@@
-32,7
+32,7
@@
function Generator.__init__(self, schemes, output, uvlpath)
self.names = schemes
self.output = output or "doc"
self.schemes = {}
- self.uvl = uvl.UVL()
+ self.uvl = uvl.UVL(
uvlpath
)
self.extension = ".xml"
self.additionals = {"uvldoc.css"}
@@
-121,4
+121,4
@@
function Generator._variable_target(self, scheme, section, variable)
self.schemes[scheme].variables[section][variable] then
return "section.%s.%s%s#variable.%s" % {scheme, section, self.extension, variable}
end
-end
\ No newline at end of file
+end