From 08c7c40bae5cad080e9bc8b6636ba33a3a4f0c9e Mon Sep 17 00:00:00 2001 From: "rniwa@webkit.org" Date: Fri, 8 Apr 2016 22:37:34 +0000 Subject: [PATCH] Build fix. We need to escape the path or http.request would fail. * tools/js/remote.js: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@199251 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Websites/perf.webkit.org/ChangeLog | 6 ++++++ Websites/perf.webkit.org/tools/js/remote.js | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Websites/perf.webkit.org/ChangeLog b/Websites/perf.webkit.org/ChangeLog index 0047e92..a547105 100644 --- a/Websites/perf.webkit.org/ChangeLog +++ b/Websites/perf.webkit.org/ChangeLog @@ -1,5 +1,11 @@ 2016-04-08 Ryosuke Niwa + Build fix. We need to escape the path or http.request would fail. + + * tools/js/remote.js: + +2016-04-08 Ryosuke Niwa + Fix various bugs in the new syncing script https://bugs.webkit.org/show_bug.cgi?id=156393 diff --git a/Websites/perf.webkit.org/tools/js/remote.js b/Websites/perf.webkit.org/tools/js/remote.js index e6de4f1..d251019 100644 --- a/Websites/perf.webkit.org/tools/js/remote.js +++ b/Websites/perf.webkit.org/tools/js/remote.js @@ -93,7 +93,7 @@ class RemoteAPI { 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) { -- 1.8.3.1