X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=3247f23d8d2ff56a3af026218bf68ac049d1e542;hb=21ac1ac242d523e47468b8e63d87dbf1d018d26e;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..3247f23 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.25 2007-01-24 09:28:02 mike Exp $ <%once> -use XML::LibXML; -use XML::LibXML::XPathContext; -use URI::Escape; - sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -23,6 +19,21 @@ sub navlink { return $url; } +# Identical to the same-named function in full.mc +# So maybe this should go into IRSpy::Utils.pm? +# +sub calc_reliability { + my($xc) = @_; + + my @allpings = $xc->findnodes("i:status/i:probe"); + my $nall = @allpings; + return "[untested]" if $nall == 0; + my @okpings = $xc->findnodes('i:status/i:probe[@ok = "1"]'); + my $nok = @okpings; + return "$nok/$nall = " . int(100*$nok/$nall) . "%"; +} + + # Just make this once; forge the connection on first use our $conn = undef; @@ -41,7 +52,7 @@ if ($params{_query}) { $query .= "$key = ($val)"; } } -$query = 'cql.allRecords=x' if $query eq ""; +$query = 'cql.allRecords=1' if $query eq ""; my $sort = $params{"_sort"}; if ($sort) { @@ -58,10 +69,9 @@ if ($sort) { my $tried_to_open = 0; if (!defined $conn) { OPEN: - $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); + $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1"); $conn->option(elementSetName => "zeerex"); } -my $parser = new XML::LibXML(); my $rs; eval { $rs = $conn->search(new ZOOM::Query::CQL($query)) }; @@ -82,10 +92,10 @@ my $first = $skip+1; my $last = $first+$count-1; $last = $n if $last > $n; -
+

-

+

% if ($n == 0) { No matches @@ -105,7 +115,7 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); # Title - Author + Reliability Host Port DB @@ -115,14 +125,9 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); % my @ids; % 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($rs->record($i-1)); my $title = $xc->find("e:databaseInfo/e:title"); -my $author = $xc->find("e:databaseInfo/e:author"); +my $reliability = calc_reliability($xc); my $host = $xc->find("e:serverInfo/e:host"); my $port = $xc->find("e:serverInfo/e:port"); my $db = $xc->find("e:serverInfo/e:database"); @@ -133,15 +138,21 @@ push @ids, $id; <% $i %> - <% xml_encode($title) %> - <% xml_encode($author) %> - <% xml_encode($host) %> - <% xml_encode($port) %> - <% xml_encode($db) %> - [Test] - [Raw] + <% xml_encode($title, "[untitled]") %> + <% xml_encode($reliability, "", { nbsp => 1 }) %> + <% xml_encode($host, "") %> + <% xml_encode($port, "") %> + <% xml_encode($db, "") %> + + Test " title="Edit this target's record">Edit XML + % } @@ -154,4 +165,8 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); xml_encode(join("&", map { "id=" . uri_escape($_) } @ids)) %>">[Test all targets on this list]

+

+ [Statistics for targets on this list] +

% }