diff options
Diffstat (limited to 'scripts/html_subindex.py')
-rwxr-xr-x | scripts/html_subindex.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/html_subindex.py b/scripts/html_subindex.py new file mode 100755 index 0000000..2452b2e --- /dev/null +++ b/scripts/html_subindex.py @@ -0,0 +1,36 @@ +#! /usr/bin/env python3 +#=============================== +# +# html_subindex +# +# 2021/02/09 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> +#=============================== +import html_base +from html_base import html +#==================================== +# +# periject_html +# +#==================================== +class periject_html(html_base.myhtml): + + #-------------------- + # print + #-------------------- + def print(self): + # ------- + # summary + # ------- + # body + # ------- + 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() + +#==================================== +# +# As command +# +#==================================== +if __name__=='__main__': + periject_html().print() |