From 67986b7634e9fa1ca1583d9b44092d62d299edef Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Tue, 18 May 2004 17:12:05 +0000 Subject: [PATCH] * the input of the function mkMetaTheoryURL must an (unquoted) URI. Fixed. --- helm/on-line/javascript/graphLinks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/on-line/javascript/graphLinks.js b/helm/on-line/javascript/graphLinks.js index 7e3199802..05ce3f92e 100644 --- a/helm/on-line/javascript/graphLinks.js +++ b/helm/on-line/javascript/graphLinks.js @@ -72,6 +72,6 @@ function mkMetaTheoryURL(uri) var rdflyURL = "http://mowgli.cs.unibo.it:58086/"; var url = setParam(location.href,"keys","meta_theory," + unescape(getTheoryKeys())); url = setParam(url,"param.embedkeys", getEmbedKeys()); - url = setParam(url,"xmluri", rdflyURL + "get%3Fkind%3Dbackward%26object%3D" + uri); + url = setParam(url,"xmluri", rdflyURL + "get%3Fkind%3Dbackward%26object%3D" + escape(escape(uri))); return url; } -- 2.39.2