diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-02-27 17:47:14 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-04-09 14:59:46 +0900 |
commit | 8902d6580f4af54d003bfab3804a489313e3adc3 (patch) | |
tree | 2de4d693e1dbe0686543be1861bf92a7ffc10f1b | |
parent | 52373e42e7b11961fcff298822d5ba025e0dedfd (diff) |
html.py: tidyup parse command
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
-rwxr-xr-x | scripts/html.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/scripts/html.py b/scripts/html.py index 11f573f..9360974 100755 --- a/scripts/html.py +++ b/scripts/html.py @@ -157,7 +157,6 @@ class periject_html(base.base): html("frame", {"src":"./summary.html", "name":"summary"}).print() html("frame", {"src":"./body.html", "name":"subbody"}).print() - #-------------------- # summary #-------------------- @@ -598,12 +597,12 @@ class periject_html(base.base): elif (cmd == "body"): # html.py body self.body() - elif (cmd == "summary"): - # html.py summary projects/linux/io - self.summary(sys.argv) elif (cmd == "menu"): # html.py menu self.menu() + elif (cmd == "summary"): + # html.py summary projects/linux/io + self.summary(sys.argv) elif (cmd == "task"): # html.py task projects/linux/io/xxx.yaml self.task(sys.argv) @@ -617,7 +616,7 @@ class periject_html(base.base): # ./script/find.py -t Core | xargs ./script/html.py status Core self.team(sys.argv) elif (cmd == "bsp"): - # ./script/html.py bsp xxx.yaml xxx.yaml ... + # ./script/find.py -a | xargs ./script/html.py bsp self.bsp(sys.argv) #==================================== |