#! /usr/bin/env python3 #=============================== # # html_status # # 2021/02/09 Kuninori Morimoto #=============================== 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) argv.pop(0) dir = "{}/html".format(self.top()) self.print_css(dir) with html("body"): self.summary(None, dir, argv) #==================================== # # As command # #==================================== if __name__=='__main__': # ./script/find.py -s Active | xargs ./script/html_status.py Active periject_html().print(sys.argv)