X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FUtils.pm;h=cbdb5c8a4ab4edc229b4fc91148b20433a59c44e;hp=4f7562dd69ce03ea24fff0329c3a96ff3fef8799;hb=4e53c34544d32b9cdc6c4339c015215ac81736f5;hpb=264f8208a4a30657671f107612748afd9b276f3b diff --git a/lib/ZOOM/IRSpy/Utils.pm b/lib/ZOOM/IRSpy/Utils.pm index 4f7562d..cbdb5c8 100644 --- a/lib/ZOOM/IRSpy/Utils.pm +++ b/lib/ZOOM/IRSpy/Utils.pm @@ -1,4 +1,4 @@ -# $Id: Utils.pm,v 1.23 2007-03-01 13:52:54 mike Exp $ +# $Id: Utils.pm,v 1.24 2007-03-01 13:59:45 mike Exp $ package ZOOM::IRSpy::Utils; @@ -67,7 +67,7 @@ sub cql_quote { my($term) = @_; $term =~ s/([""\\])/\\$1/g; - $term = qq["$term"] if $term =~ /\s/; + $term = qq["$term"] if $term =~ /[\s""\/]/; return $term; } @@ -76,9 +76,7 @@ sub cql_quote { sub cql_target { my($host, $port, $db) = @_; - return ("host=" . cql_quote($host) . " and " . - "port=" . cql_quote($port) . " and " . - "path=" . cql_quote($db)); + return "rec.id=" . cql_quote("$host:$port/$db"); }