summaryrefslogtreecommitdiff
path: root/scripts/html_body.py
blob: df89db204d39427be187e201936ed6cc4d443543 (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
#! /usr/bin/env python3
#===============================
#
# html_body
#
# 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):
        self.print_css("html")
        with html("body", {"onload":"parent.frames['menu'].location.reload()"}):
            html("div").print("select tasks from menu")

#====================================
#
# As command
#
#====================================
if __name__=='__main__':
    periject_html().print()