Changeset 191988 in webkit


Ignore:
Timestamp:
Nov 3, 2015 3:39:42 PM (9 years ago)
Author:
ap@apple.com
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r190550 r191988  
    8484
    8585        return this.baseURL + "timeline?changeset=on&format=rss&max=0" +
    86             "&from=" +  (toDay.getMonth() + 1) + "%2F" + toDay.getDate() + "%2F" + (toDay.getFullYear() % 100) +
     86            "&from=" +  toDay.toISOString().slice(0, 10) +
    8787            "&daysback=" + ((toDay - fromDay) / 1000 / 60 / 60 / 24);
    8888    },
  • trunk/Tools/ChangeLog

    r191975 r191988  
     12015-11-03  Alexey Proskuryakov  <ap@apple.com>
     2
     3        build.webkit.org/dashboard should use ISO dates in Trac URLs
     4        https://bugs.webkit.org/show_bug.cgi?id=150855
     5
     6        Reviewed by Darin Adler.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js:
     9        (Trac.prototype._xmlTimelineURL):
     10
    1112015-11-03  Said Abou-Hallawa  <sabouhallawa@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.