Title: [184664] trunk/Websites/perf.webkit.org
- Revision
- 184664
- Author
- [email protected]
- Date
- 2015-05-20 15:07:14 -0700 (Wed, 20 May 2015)
Log Message
Build fix. Use POSIX timestamp instead of human readable string for the commit time.
* public/include/build-requests-fetcher.php:
Modified Paths
Diff
Modified: trunk/Websites/perf.webkit.org/ChangeLog (184663 => 184664)
--- trunk/Websites/perf.webkit.org/ChangeLog 2015-05-20 22:03:26 UTC (rev 184663)
+++ trunk/Websites/perf.webkit.org/ChangeLog 2015-05-20 22:07:14 UTC (rev 184664)
@@ -1,5 +1,11 @@
2015-05-20 Ryosuke Niwa <[email protected]>
+ Build fix. Use POSIX timestamp instead of human readable string for the commit time.
+
+ * public/include/build-requests-fetcher.php:
+
+2015-05-20 Ryosuke Niwa <[email protected]>
+
UI to associate bugs with an analysis task is crappy
https://bugs.webkit.org/show_bug.cgi?id=145198
Modified: trunk/Websites/perf.webkit.org/public/include/build-requests-fetcher.php (184663 => 184664)
--- trunk/Websites/perf.webkit.org/public/include/build-requests-fetcher.php 2015-05-20 22:03:26 UTC (rev 184663)
+++ trunk/Websites/perf.webkit.org/public/include/build-requests-fetcher.php 2015-05-20 22:07:14 UTC (rev 184664)
@@ -97,7 +97,8 @@
$root_id = $root_set_id . '-' . $repository;
array_push($root_ids, $root_id);
array_push($this->roots, array('id' => $root_id, 'repository' => $repository, 'revision' => $revision));
- $roots[$resolve_ids ? $row['repository_name'] : $row['repository_id']] = array('revision' => $revision, 'time' => $commit_time);
+ $roots[$resolve_ids ? $row['repository_name'] : $row['repository_id']] = array(
+ 'revision' => $revision, 'time' => Database::to_js_time($commit_time));
}
array_push($this->root_sets, array('id' => $root_set_id, 'roots' => $root_ids));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes