summaryrefslogtreecommitdiff
path: root/scripts/html_team.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/html_team.py')
-rwxr-xr-xscripts/html_team.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/scripts/html_team.py b/scripts/html_team.py
new file mode 100755
index 0000000..51458ab
--- /dev/null
+++ b/scripts/html_team.py
@@ -0,0 +1,40 @@
+#! /usr/bin/env python3
+#===============================
+#
+# html_team
+#
+# 2021/02/09 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
+#===============================
+import sys
+
+import html_base
+from html_base import html
+#====================================
+#
+# periject_html
+#
+#====================================
+class periject_html(html_base.myhtml):
+
+ #--------------------
+ # print
+ #--------------------
+ def print(self, argv):
+ # remove this script
+ argv.pop(0)
+
+ team = argv.pop(0)
+ dir = "{}/html".format(self.top())
+
+ self.print_css(dir)
+ with html("body"):
+ self.summary(team, dir, argv)
+
+#====================================
+#
+# As command
+#
+#====================================
+if __name__=='__main__':
+ # ./script/find.py -t Core | xargs ./script/html_team.py Core
+ periject_html().print(sys.argv)