Bug 298960 - -remote can no longer handle commas or quotes, r=bsmedberg

git-svn-id: svn://10.0.0.236/trunk@185939 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wr%rosenauer.org
2005-12-12 01:39:32 +00:00
parent 4793d8512b
commit 01606c4bf2

View File

@@ -247,7 +247,14 @@ var nsBrowserContentHandler = {
try {
var a = /^\s*(\w+)\(([^\)]*)\)\s*$/.exec(remoteCommand);
var remoteVerb = a[1].toLowerCase();
var remoteParams = a[2].split(",");
var remoteParams = [];
var sepIndex = a[2].lastIndexOf(",");
if (sepIndex == -1)
remoteParams[0] = a[2];
else {
remoteParams[0] = a[2].substring(0, sepIndex - 1);
remoteParams[1] = a[2].substring(sepIndex + 1);
}
switch (remoteVerb) {
case "openurl":