summaryrefslogtreecommitdiff
path: root/scripts/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/html.py')
-rwxr-xr-xscripts/html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/html.py b/scripts/html.py
index 9360974..446c200 100755
--- a/scripts/html.py
+++ b/scripts/html.py
@@ -140,7 +140,7 @@ class periject_html(base.base):
# | | |
# |menu|body|
# | | |
- with html("frameset", {"cols":"200,*"}):
+ with html("frameset", {"cols":"{},*".format(self.config("html-default-cols"))}):
html("frame", {"src":"./html/menu.html", "name":"menu"}).print()
html("frame", {"src":"./html/subindex.html", "name":"body"}).print()
@@ -153,7 +153,7 @@ class periject_html(base.base):
# -------
# body
# -------
- with html("frameset", {"rows":"300,*"}):
+ with html("frameset", {"rows":"{},*".format(self.config("html-default-rows"))}):
html("frame", {"src":"./summary.html", "name":"summary"}).print()
html("frame", {"src":"./body.html", "name":"subbody"}).print()