Download:
child 65:db29d521fe06
parent 63:c43e088b6aed
64:ef5755f23a35
Anton Shestakov <av6@dwimlabs.net>, Fri, 24 Jun 2016 21:11:16 +0800
incoming: mark "job failed" line as a failure

2 файлов изменено, 5 вставок(+), 0 удалений(-) [+]
incoming.py file | annotate | diff | comparison | revisions
static/main.css file | annotate | diff | comparison | revisions
--- a/incoming.py Thu Jun 23 23:04:26 2016 +0800
+++ b/incoming.py Fri Jun 24 21:11:16 2016 +0800
@@ -109,6 +109,7 @@
m = re.match('^job failed$', rest)
if m is not None:
success = False
+ item['cls'] = 'failure'
m = re.match('^job (started|finished): ([\dT:+-]+)$', rest)
if m is not None:
--- a/static/main.css Thu Jun 23 23:04:26 2016 +0800
+++ b/static/main.css Fri Jun 24 21:11:16 2016 +0800
@@ -59,3 +59,7 @@
.check-log .meta {
color: #929292;
}
+
+.check-log .failure {
+ color: #f1bf8e;
+}