summaryrefslogtreecommitdiff
path: root/scripts/html_summary.py
blob: 0d92abf445648eb020eb63440978cc8e8062429b (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
37
38
39
40
41
42
43
44
45
46
47
#! /usr/bin/env python3
#===============================
#
# html_summary
#
# 2021/02/09 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
#===============================
import sys
import os

import find
import view
import html_base
from html_base import html
#====================================
#
# periject_html
#
#====================================
class periject_html(html_base.myhtml):

    def __init__(self):
        super().__init__()

    def print(self, argv):
        # remove this script
        argv.pop(0)

        dir = os.path.normpath(argv[0])

        # -------
        # summary
        # -------
        #
        # -------
        self.print_css(dir)
        with html("body"):
            self.summary(dir, self.top() + "/" + dir, find.find([dir]).get())

#====================================
#
# As command
#
#====================================
if __name__=='__main__':
    # html_summary.py projects/linux/io
    periject_html().print(sys.argv)