blob: 2452b2e7592c3352741bb261f95fbd0e0c576b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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()
|