X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FConnection.pm;h=bd44b12aeb09de10cfb6f23095f8a30c4f9b85a7;hb=60f55185298aae923e6164226251bf5769b72400;hp=b55644793135db9337befb76f5ad011f05030782;hpb=92d16e5b5e8dd133a917d9b2883156ec692d5a1e;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Connection.pm b/lib/ZOOM/IRSpy/Connection.pm index b556447..bd44b12 100644 --- a/lib/ZOOM/IRSpy/Connection.pm +++ b/lib/ZOOM/IRSpy/Connection.pm @@ -1,4 +1,4 @@ -# $Id: Connection.pm,v 1.10 2007-03-09 08:57:12 mike Exp $ +# $Id: Connection.pm,v 1.12 2007-04-27 14:04:40 mike Exp $ package ZOOM::IRSpy::Connection; @@ -10,7 +10,7 @@ use ZOOM; our @ISA = qw(ZOOM::Connection); use ZOOM::IRSpy::Record; -use ZOOM::IRSpy::Utils qw(cql_target render_record); +use ZOOM::IRSpy::Utils qw(cql_target render_record irspy_identifier2target); use ZOOM::IRSpy::Task::Connect; use ZOOM::IRSpy::Task::Search; @@ -41,7 +41,7 @@ sub create { my $target = shift(); my $this = $class->SUPER::create(@_); - $this->option(host => $target); + $this->option(host => irspy_identifier2target($target)); $this->{irspy} = $irspy; $this->{tasks} = []; @@ -51,7 +51,8 @@ sub create { $this->log("irspy", "query '$query' found $n records"); my $zeerex; $zeerex = render_record($rs, 0, "zeerex") if $n > 0; - $this->{record} = new ZOOM::IRSpy::Record($this, $target, $zeerex); + $this->{record} = new ZOOM::IRSpy::Record($this, + irspy_identifier2target($target), $zeerex); return $this; } @@ -60,7 +61,6 @@ sub create { sub destroy { my $this = shift(); $this->SUPER::destroy(@_); - $this->{rs}->destroy() if defined $this->{rs}; }