From 97087e29c26ea3a8f46c880e1dc07ee68a396a43 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Fri, 16 Mar 2001 13:50:13 +0000 Subject: [PATCH] Method get of the getter no more used. Replaced by getciconly (whose name is now insignificant) --- helm/on-line/javascript/control.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/on-line/javascript/control.js b/helm/on-line/javascript/control.js index e34551a7f..1b00d17e7 100644 --- a/helm/on-line/javascript/control.js +++ b/helm/on-line/javascript/control.js @@ -106,7 +106,7 @@ function makeURL(type,uri,cicflags,typesflags) else format = mode_list[2]; if (output == "raw") { - url = getterURL + "get?uri=" + uri; + url = getterURL + "getciconly?uri=" + uri; } else { if (format == "html" && type == "cic") { keys = "C1,HC2¶m.processorURL=" + escape(processorURL) + @@ -134,7 +134,7 @@ function makeURL(type,uri,cicflags,typesflags) if (cicflags != "NO" || type == "theory") { annotations = mode_list[4]; } - url = processorURL + "apply?xmluri=" + escape(getterURL + "get?uri=" + uri) + "&keys=" + keys + "¶m.CICURI=" + uri + "¶m.naturalLanguage=" + naturalLanguage + "¶m.annotations=" + annotations; + url = processorURL + "apply?xmluri=" + escape(getterURL + "getciconly?uri=" + uri) + "&keys=" + keys + "¶m.CICURI=" + uri + "¶m.naturalLanguage=" + naturalLanguage + "¶m.annotations=" + annotations; } return url; -- 2.39.2