Title: [199251] trunk/Websites/perf.webkit.org
- Revision
- 199251
- Author
- [email protected]
- Date
- 2016-04-08 15:37:34 -0700 (Fri, 08 Apr 2016)
Log Message
Build fix. We need to escape the path or http.request would fail.
* tools/js/remote.js:
Modified Paths
Diff
Modified: trunk/Websites/perf.webkit.org/ChangeLog (199250 => 199251)
--- trunk/Websites/perf.webkit.org/ChangeLog 2016-04-08 22:01:10 UTC (rev 199250)
+++ trunk/Websites/perf.webkit.org/ChangeLog 2016-04-08 22:37:34 UTC (rev 199251)
@@ -1,5 +1,11 @@
2016-04-08 Ryosuke Niwa <[email protected]>
+ Build fix. We need to escape the path or http.request would fail.
+
+ * tools/js/remote.js:
+
+2016-04-08 Ryosuke Niwa <[email protected]>
+
Fix various bugs in the new syncing script
https://bugs.webkit.org/show_bug.cgi?id=156393
Modified: trunk/Websites/perf.webkit.org/tools/js/remote.js (199250 => 199251)
--- trunk/Websites/perf.webkit.org/tools/js/remote.js 2016-04-08 22:01:10 UTC (rev 199250)
+++ trunk/Websites/perf.webkit.org/tools/js/remote.js 2016-04-08 22:37:34 UTC (rev 199251)
@@ -93,7 +93,7 @@
port: server.port,
auth: server.auth ? server.auth.username + ':' + server.auth.password : null,
method: method,
- path: path,
+ path: escape(path),
};
let request = (server.scheme == 'http' ? http : https).request(options, function (response) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes