X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=e4312fb69e086c933b9ecb2c95dc118c5e48c827;hp=ebe7367de7356477ca76fb466bfe6a68668e23c5;hb=f0030d177f58f280c6cd1019f9e26b81f9f8cbda;hpb=4251adda38740fd055badc12ee9996c63bc37c90 diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index ebe7367..e4312fb 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,7 +1,4 @@ -%# $Id: found.mc,v 1.15 2006-10-20 16:57:23 mike Exp $ <%once> -use URI::Escape; - sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -25,7 +22,7 @@ sub navlink { 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}; @@ -39,7 +36,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) { @@ -56,8 +53,10 @@ if ($sort) { my $tried_to_open = 0; if (!defined $conn) { OPEN: - $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); + my $db = ZOOM::IRSpy::connect_to_registry(); + $conn = new ZOOM::Connection($db); $conn->option(elementSetName => "zeerex"); + $conn->option(count => 20); } my $rs; @@ -79,10 +78,10 @@ my $first = $skip+1; my $last = $first+$count-1; $last = $n if $last > $n; -
+

-

+

% if ($n == 0) { No matches @@ -102,7 +101,8 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); # Title - Author + Host Connection Reliability <& /help/link.mc, help => "info/reliability" &> + Host Port DB @@ -110,35 +110,34 @@ 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_reliability_string($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) %> - <% xml_encode($author) %> - <% xml_encode($host) %> - <% xml_encode($port) %> - <% xml_encode($db) %> + <% xml_encode($reliability, "", { nbsp => 1 }) %> + <% xml_encode($host, "") %> + <% xml_encode($port, "") %> + <% xml_encode($db, "") %> - T E X + Test " title="Edit this target's record">Edit XML % } @@ -148,8 +147,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] +

% }