Title: [205121] trunk/Tools
Revision
205121
Author
aakash_j...@apple.com
Date
2016-08-29 09:18:37 -0700 (Mon, 29 Aug 2016)

Log Message

EWS patch status page should indicate bot corresponding to each status message
https://bugs.webkit.org/show_bug.cgi?id=161280

Reviewed by Alexey Proskuryakov.

* QueueStatusServer/templates/patch.html: Added bot_id in the template so that bot id is displayed
for each status message.
* QueueStatusServer/stylesheets/common.css:
(.status-bot): Added corresponding stylesheet class.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (205120 => 205121)


--- trunk/Tools/ChangeLog	2016-08-29 16:12:24 UTC (rev 205120)
+++ trunk/Tools/ChangeLog	2016-08-29 16:18:37 UTC (rev 205121)
@@ -1,3 +1,15 @@
+2016-08-29  Aakash Jain  <aakash_j...@apple.com>
+
+        EWS patch status page should indicate bot corresponding to each status message
+        https://bugs.webkit.org/show_bug.cgi?id=161280
+
+        Reviewed by Alexey Proskuryakov.
+
+        * QueueStatusServer/templates/patch.html: Added bot_id in the template so that bot id is displayed
+        for each status message.
+        * QueueStatusServer/stylesheets/common.css:
+        (.status-bot): Added corresponding stylesheet class.
+
 2016-08-29  Per Arne Vollan  <pvol...@apple.com>
 
         Attempt to fix Windows build after r205090.

Modified: trunk/Tools/QueueStatusServer/stylesheets/common.css (205120 => 205121)


--- trunk/Tools/QueueStatusServer/stylesheets/common.css	2016-08-29 16:12:24 UTC (rev 205120)
+++ trunk/Tools/QueueStatusServer/stylesheets/common.css	2016-08-29 16:18:37 UTC (rev 205121)
@@ -72,6 +72,12 @@
   font-size: 8pt;
 }
 
+.status-bot {
+  color: #AAA;
+  float: left;
+  font-size: 11pt;
+}
+
 .queue_bubble {
     border: 1px solid black;
     margin-bottom: 10px;

Modified: trunk/Tools/QueueStatusServer/templates/patch.html (205120 => 205121)


--- trunk/Tools/QueueStatusServer/templates/patch.html	2016-08-29 16:12:24 UTC (rev 205120)
+++ trunk/Tools/QueueStatusServer/templates/patch.html	2016-08-29 16:18:37 UTC (rev 205121)
@@ -12,6 +12,7 @@
   <h2>{{ queue_name }}</h2>
   <ul>{% for status in statuses %}
     <li>
+      <span class="status-bot">({{ status.bot_id }}): </span>
       <span class="status-message">{{ status.message|force_escape|urlize|webkit_linkify|safe }}</span>{% if status.results_file %}
       <span class="status-results">[{{ status.key.id|results_link|safe }}]</span>{% endif %}
       <span class="status-date">{{ status.date|timesince }} ago</span>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to