X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=3247f23d8d2ff56a3af026218bf68ac049d1e542;hb=21ac1ac242d523e47468b8e63d87dbf1d018d26e;hp=7df2dff5a1518242c5d946c62f38ba1b94f328b6;hpb=07bd6ea6c324b2707538656eb0526a223826922d;p=irspy-moved-to-github.git diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index 7df2dff..3247f23 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,4 +1,4 @@ -%# $Id: found.mc,v 1.20 2006-11-16 17:10:30 mike Exp $ +%# $Id: found.mc,v 1.25 2007-01-24 09:28:02 mike Exp $ <%once> sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -19,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; @@ -37,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) { @@ -54,7 +69,7 @@ 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"); } @@ -100,7 +115,7 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); # Title - Author + Reliability Host Port DB @@ -112,7 +127,7 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); <%perl> 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"); @@ -125,14 +140,15 @@ push @ids, $id; <% $i %> <% xml_encode($title, "[untitled]") %> - <% xml_encode($author, "") %> + <% xml_encode($reliability, "", { nbsp => 1 }) %> <% xml_encode($host, "") %> <% xml_encode($port, "") %> <% xml_encode($db, "") %> Test " title="Edit this target's record">Edit XML @@ -149,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] +

% }