diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-03-01 10:34:29 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-04-09 14:59:46 +0900 |
commit | fc079b6489240673348db06cee87b7babebf3b52 (patch) | |
tree | c8e6b9abc1350b0b0a1240d4cefb3384cc1c0abc /scripts | |
parent | 8df29fe78c6e982dc370252755d291fb69928fd6 (diff) |
html.py: enable to setup html default cols/rows
For selfish boys & girls
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/html.py | 4 |
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() |