Changeset 92056 in webkit


Ignore:
Timestamp:
Jul 30, 2011 11:26:09 AM (13 years ago)
Author:
abarth@webkit.org
Message:

garden-o-matic should have a Refresh button to update its display
https://bugs.webkit.org/show_bug.cgi?id=65403

Reviewed by Dimitri Glazkov.

The refresh button should be faster and less disruptive than the browser's reload button.

  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html

    r91677 r92056  
    1616    <button class="show-selected-failures">Show Selected Failures</button>
    1717    <button class="rebaseline-selected">Rebaseline Selected</button>
     18    <button class="refresh">Refresh</button>
    1819</div>
    1920<div class="recent-history"></div>
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js

    r91677 r92056  
    226226function update()
    227227{
     228    displayOnButterbar('Loading...');
    228229    base.callInParallel([model.updateRecentCommits, model.updateResultsByBuilder], function() {
    229230        showRecentCommits();
     
    236237$('.show-selected-failures').live('click', showSelectedFailures);
    237238$('.rebaseline-selected').live('click', rebaselineSelected);
     239$('.refresh').live('click', update);
    238240
    239241$('.results-detail .actions .next').live('click', nextResultsDetail);
  • trunk/Tools/ChangeLog

    r92055 r92056  
     12011-07-30  Adam Barth  <abarth@webkit.org>
     2
     3        garden-o-matic should have a Refresh button to update its display
     4        https://bugs.webkit.org/show_bug.cgi?id=65403
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        The refresh button should be faster and less disruptive than the browser's reload button.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
     11        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
     12
    1132011-07-30  Adam Barth  <abarth@webkit.org>
    214
Note: See TracChangeset for help on using the changeset viewer.