Title: [191988] trunk/Tools
Revision
191988
Author
a...@apple.com
Date
2015-11-03 15:39:42 -0800 (Tue, 03 Nov 2015)

Log Message

build.webkit.org/dashboard should use ISO dates in Trac URLs
https://bugs.webkit.org/show_bug.cgi?id=150855

Reviewed by Darin Adler.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js:
(Trac.prototype._xmlTimelineURL):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js (191987 => 191988)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js	2015-11-03 23:39:37 UTC (rev 191987)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js	2015-11-03 23:39:42 UTC (rev 191988)
@@ -83,7 +83,7 @@
         var toDay = new Date(toDate.getFullYear(), toDate.getMonth(), toDate.getDate());
 
         return this.baseURL + "timeline?changeset=on&format=rss&max=0" +
-            "&from=" +  (toDay.getMonth() + 1) + "%2F" + toDay.getDate() + "%2F" + (toDay.getFullYear() % 100) +
+            "&from=" +  toDay.toISOString().slice(0, 10) +
             "&daysback=" + ((toDay - fromDay) / 1000 / 60 / 60 / 24);
     },
 

Modified: trunk/Tools/ChangeLog (191987 => 191988)


--- trunk/Tools/ChangeLog	2015-11-03 23:39:37 UTC (rev 191987)
+++ trunk/Tools/ChangeLog	2015-11-03 23:39:42 UTC (rev 191988)
@@ -1,3 +1,13 @@
+2015-11-03  Alexey Proskuryakov  <a...@apple.com>
+
+        build.webkit.org/dashboard should use ISO dates in Trac URLs
+        https://bugs.webkit.org/show_bug.cgi?id=150855
+
+        Reviewed by Darin Adler.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js:
+        (Trac.prototype._xmlTimelineURL):
+
 2015-11-03  Said Abou-Hallawa  <sabouhall...@apple.com>
 
         Unreviewed, add myself to the SVG watchlist.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to