X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FUtils.pm;h=d5bc7b47208ec6ed5fc30fe14019e1310d6d022f;hp=75a7bf654c3952cfd5c1adc591dae3ef8377d484;hb=ee1d0970cbfa0228ee4a4d55bca480af4a2b35a4;hpb=3500a3bcd22ae868037a7b203e7984eb2ca73fe7 diff --git a/lib/ZOOM/IRSpy/Utils.pm b/lib/ZOOM/IRSpy/Utils.pm index 75a7bf6..d5bc7b4 100644 --- a/lib/ZOOM/IRSpy/Utils.pm +++ b/lib/ZOOM/IRSpy/Utils.pm @@ -1,4 +1,4 @@ -# $Id: Utils.pm,v 1.34 2007-06-27 11:08:08 mike Exp $ +# $Id: Utils.pm,v 1.37 2007-12-12 11:02:37 mike Exp $ package ZOOM::IRSpy::Utils; @@ -205,6 +205,9 @@ sub irspy_identifier2target { sub _irspy_identifier2target { my($id) = @_; + confess "_irspy_identifier2target(): id is undefined" + if !defined $id; + my($protocol, $target) = ($id =~ /(.*?):(.*)/); if (uc($protocol) eq "Z39.50") { return "tcp:$target"; @@ -214,7 +217,7 @@ sub _irspy_identifier2target { return "sru=srw,http:$target"; } - warn "unrecognised protocol '$protocol' in ID $id"; + warn "_irspy_identifier2target($id): unrecognised protocol '$protocol'"; return $target; } @@ -399,7 +402,7 @@ sub inheritance_tree { # This function is made available in xslt using the register_function call sub xslt_strcmp { my ($arg1, $arg2) = @_; - return ($arg1->to_literal()) cmp ($arg2->to_literal()); + return "$arg1" cmp "$arg2"; }