Title: [92055] trunk/Tools
Revision
92055
Author
[email protected]
Date
2011-07-30 11:25:09 -0700 (Sat, 30 Jul 2011)

Log Message

garden-o-matic should look for the "patch by" line in revisions ostensibly authored by the commit-queue
https://bugs.webkit.org/show_bug.cgi?id=65231

Reviewed by Dimitri Glazkov.

The human readable name is easier to understand, especially when the patch is landed by the commit-queue.

* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js (92054 => 92055)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js	2011-07-30 18:24:13 UTC (rev 92054)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js	2011-07-30 18:25:09 UTC (rev 92055)
@@ -41,6 +41,12 @@
     return findUsingRegExp(message, regexp);
 }
 
+function findAuthor(message)
+{
+    var regexp = /Patch by ([^<]+) </;
+    return findUsingRegExp(message, regexp);
+}
+
 function findBugID(message)
 {
     var regexp = /\/show_bug.cgi\?id=(\d+)/;
@@ -96,7 +102,7 @@
             'revision': findRevision(title),
             'title': title,
             'summary': findSummary(message),
-            'author': author,
+            'author': findAuthor(message) || author,
             'reviewer': findReviewer(message),
             'bugID': findBugID(message),
             'message': message,

Modified: trunk/Tools/ChangeLog (92054 => 92055)


--- trunk/Tools/ChangeLog	2011-07-30 18:24:13 UTC (rev 92054)
+++ trunk/Tools/ChangeLog	2011-07-30 18:25:09 UTC (rev 92055)
@@ -1,5 +1,16 @@
 2011-07-30  Adam Barth  <[email protected]>
 
+        garden-o-matic should look for the "patch by" line in revisions ostensibly authored by the commit-queue
+        https://bugs.webkit.org/show_bug.cgi?id=65231
+
+        Reviewed by Dimitri Glazkov.
+
+        The human readable name is easier to understand, especially when the patch is landed by the commit-queue.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
+
+2011-07-30  Adam Barth  <[email protected]>
+
         garden-o-matic should strikeout revisions that have been rolled out
         https://bugs.webkit.org/show_bug.cgi?id=65227
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to