Changeset 92055 in webkit


Ignore:
Timestamp:
Jul 30, 2011 11:25:09 AM (13 years ago)
Author:
abarth@webkit.org
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js

    r92054 r92055  
    3939{
    4040    var regexp = /Reviewed by ([^.]+)/;
     41    return findUsingRegExp(message, regexp);
     42}
     43
     44function findAuthor(message)
     45{
     46    var regexp = /Patch by ([^<]+) </;
    4147    return findUsingRegExp(message, regexp);
    4248}
     
    97103            'title': title,
    98104            'summary': findSummary(message),
    99             'author': author,
     105            'author': findAuthor(message) || author,
    100106            'reviewer': findReviewer(message),
    101107            'bugID': findBugID(message),
  • trunk/Tools/ChangeLog

    r92054 r92055  
     12011-07-30  Adam Barth  <abarth@webkit.org>
     2
     3        garden-o-matic should look for the "patch by" line in revisions ostensibly authored by the commit-queue
     4        https://bugs.webkit.org/show_bug.cgi?id=65231
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        The human readable name is easier to understand, especially when the patch is landed by the commit-queue.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
     11
    1122011-07-30  Adam Barth  <abarth@webkit.org>
    213
Note: See TracChangeset for help on using the changeset viewer.