X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=20a91b9810cb92108585111a0a498cbd94030d3a;hp=84f8514c2442e5fff9568f69188bb92b5dabcfdb;hb=085f4a7c5d42a0f3720e0684cda4f8c737143da9;hpb=d8692d0e56ed88b5fdb6224d69b2b3a11cbeb2b8 diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index 84f8514..20a91b9 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,9 +1,5 @@ -%# $Id: found.mc,v 1.13 2006-10-18 12:36:05 mike Exp $ +%# $Id: found.mc,v 1.16 2006-10-26 17:22:56 mike Exp $ <%once> -use XML::LibXML; -use XML::LibXML::XPathContext; -use URI::Escape; - sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -55,13 +51,23 @@ if ($sort) { $query .= " 0"; } +my $tried_to_open = 0; if (!defined $conn) { + OPEN: $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); + $conn->option(elementSetName => "zeerex"); +} + +my $rs; +eval { $rs = $conn->search(new ZOOM::Query::CQL($query)) }; +if ($@ && ref $@ && $@->isa('ZOOM::Exception') && + $@->code() == ZOOM::Error::CONNECTION_LOST && !$tried_to_open) { + $tried_to_open = 1; + goto OPEN; +} elsif ($@) { + die $@; } -$conn->option(elementSetName => "zeerex"); -my $parser = new XML::LibXML(); -my $rs = $conn->search(new ZOOM::Query::CQL($query)); my $n = $rs->size(); my $skip = $params{"_skip"} || 0; @@ -105,11 +111,7 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); % foreach my $i ($first .. $last) { <%perl> my $rec = $rs->record($i-1); -my $xml = $rec->render(); -my $doc = $parser->parse_string($xml); -my $root = $doc->getDocumentElement(); -my $xc = XML::LibXML::XPathContext->new($root); -$xc->registerNs(e => 'http://explain.z3950.org/dtd/2.0/'); +my $xc = irspy_xpath_context($rec); my $title = $xc->find("e:databaseInfo/e:title"); my $author = $xc->find("e:databaseInfo/e:author"); my $host = $xc->find("e:serverInfo/e:host"); @@ -122,15 +124,20 @@ push @ids, $id; <% $i %> - <% xml_encode($title) %> + <% xml_encode($title) %> <% xml_encode($author) %> <% xml_encode($host) %> <% xml_encode($port) %> <% xml_encode($db) %> - [Test] - [Raw] + + T E X + % }