Title: [214513] trunk/Tools
Revision
214513
Author
[email protected]
Date
2017-03-28 18:32:01 -0700 (Tue, 28 Mar 2017)

Log Message

Bot watcher's dashboard has separate settings for "mac" and "macos"
https://bugs.webkit.org/show_bug.cgi?id=170164

Reviewed by Tim Horton.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Settings.js:
(Settings.prototype.parsePlatformFamily): Aded a special case for "macos".

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Settings.js (214512 => 214513)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Settings.js	2017-03-29 01:31:29 UTC (rev 214512)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Settings.js	2017-03-29 01:32:01 UTC (rev 214513)
@@ -88,7 +88,10 @@
     {
         if (!platformName)
             return '';
-        return platformName.substr(0, platformName.indexOf("-"));
+        var result = platformName.substr(0, platformName.indexOf("-"));
+        if (result === "macos")
+            result = "mac";
+        return result;
     },
 
     toggleHiddenPlatformFamily: function(platformFamily)

Modified: trunk/Tools/ChangeLog (214512 => 214513)


--- trunk/Tools/ChangeLog	2017-03-29 01:31:29 UTC (rev 214512)
+++ trunk/Tools/ChangeLog	2017-03-29 01:32:01 UTC (rev 214513)
@@ -1,5 +1,15 @@
 2017-03-28  Alexey Proskuryakov  <[email protected]>
 
+        Bot watcher's dashboard has separate settings for "mac" and "macos"
+        https://bugs.webkit.org/show_bug.cgi?id=170164
+
+        Reviewed by Tim Horton.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Settings.js:
+        (Settings.prototype.parsePlatformFamily): Aded a special case for "macos".
+
+2017-03-28  Alexey Proskuryakov  <[email protected]>
+
         Fix dashboard test results on the dashboard
         https://bugs.webkit.org/show_bug.cgi?id=170158
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to