summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/html.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/html.py b/scripts/html.py
index 388d194..d8ac92d 100755
--- a/scripts/html.py
+++ b/scripts/html.py
@@ -461,6 +461,11 @@ class periject_html(base.base):
def task_commit_upstream(self, v):
upstream = v.get_data("upstream")
if (not len(upstream)):
+ status = v.get_data("status")
+ if (status == "Done" or
+ status == "Abandoned"):
+ html("p").print("ignored")
+ return 1
return 0
cnt = 0
@@ -584,7 +589,9 @@ class periject_html(base.base):
with html("tr"):
a.option({"href":
self.relpath_y2h(file, "{}/html".format(self.top()))})
- html("td").print(a.text(os.path.basename(file).replace(".yaml", "")))
+ html("td").print("{}<br>({})".format(
+ a.text(os.path.basename(file).replace(".yaml", "")),
+ v.get_data("status")))
with html("td"):
tmp = self.task_commit_bsp(bsp)