X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=da1e53ef1bd7b175b0a022e5697702591f6a0786;hb=544515e29d8fc2e81af6552f42f440bb5a0df266;hp=c3063753ab999a41253cd5857db677f2a6ffb631;hpb=d062a7adf8b80d4bc0869491113787d45b5ad0d3;p=irspy-moved-to-github.git diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index c306375..da1e53e 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,9 +1,5 @@ -%# $Id: found.mc,v 1.14 2006-10-18 14:03:42 mike Exp $ +%# $Id: found.mc,v 1.17 2006-10-27 00:47:05 mike Exp $ <%once> -use XML::LibXML; -use XML::LibXML::XPathContext; -use URI::Escape; - sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -61,7 +57,6 @@ if (!defined $conn) { $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); $conn->option(elementSetName => "zeerex"); } -my $parser = new XML::LibXML(); my $rs; eval { $rs = $conn->search(new ZOOM::Query::CQL($query)) }; @@ -116,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"); @@ -133,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] + + Test Edit XML + % }