X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=13143c6f452c95d4277663c0f6785db0994eeb58;hp=5c8993f36ef9bee981c279962e81ea622f339fe4;hb=0b57258ec2d28940302af3bd7c721311810b2302;hpb=a54f6e8f9d1fe1d12beb7e2a0ad30d06047bcc10 diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index 5c8993f..13143c6 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,4 +1,4 @@ -%# $Id: found.mc,v 1.18 2006-11-14 16:23:11 mike Exp $ +%# $Id: found.mc,v 1.33 2009-04-15 18:16:46 wosch Exp $ <%once> sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -19,11 +19,27 @@ sub navlink { return $url; } +# Identical to the same-named function in full.mc +# So maybe this should go into IRSpy::Utils.pm? +# Name changed (append 2) to prevent inadvertent clashes in Mason namespace +# +sub calc_reliability2 { + 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; <%perl> -my %params = map { ( $_, $r->param($_)) } grep { $r->param($_) } $r->param(); +my %params = map { ( $_, utf8param($r, $_)) } grep { &utf8param($r, $_) } &utf8param($r); my $query; if ($params{_query}) { $query = $params{_query}; @@ -37,7 +53,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,8 +70,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"); + $conn->option(count => 20); } my $rs; @@ -77,10 +94,10 @@ my $first = $skip+1; my $last = $first+$count-1; $last = $n if $last > $n; -
+

-

+

% if ($n == 0) { No matches @@ -100,7 +117,8 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); # Title - Author + Host Connection Reliability <& /help/link.mc, help => "info/reliability" &> + Host Port DB @@ -108,32 +126,31 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); % my @ids; +% $rs->records($first-1, $last-$first+1); ## Force pre-cache % foreach my $i ($first .. $last) { <%perl> -my $rec = $rs->record($i-1); -my $xc = irspy_xpath_context($rec); -my $title = $xc->find("e:databaseInfo/e:title"); -my $author = $xc->find("e:databaseInfo/e:author"); +my $xc = irspy_xpath_context($rs->record($i-1)); +my $title = $xc->find("e:databaseInfo/e:title") || "[UNTITLED]"; +my $reliability = calc_reliability2($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"); -my $id = $xc->find("concat(e:serverInfo/e:host, ':', - e:serverInfo/e:port, '/', - e:serverInfo/e:database)"); +my $id = irspy_record2identifier($xc); push @ids, $id; <% $i %> <% xml_encode($title, "[untitled]") %> - <% xml_encode($author, "") %> + %>"><% xml_encode($title) %> + <% xml_encode($reliability, "", { nbsp => 1 }) %> <% xml_encode($host, "") %> <% xml_encode($port, "") %> <% xml_encode($db, "") %> - Test " title="Edit this target's record">Edit XML @@ -146,8 +163,12 @@ print_navlink(\%params, $skip > 0, "Prev", $count < $skip ? $skip-$count : 0); print_navlink(\%params, $last < $n, "Next", $skip+$count);

- [Test all targets on this list]

+

+ [Statistics for targets on this list] +

% }