X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=c502dd11827be3ba157a2feb6efde8fd513dffac;hb=620e754e785adcc579cc5374f3bb67c8509727db;hp=677bb6852fe44ad075b11962ddf26387fb8e5f38;hpb=3af6b32f5eeadb0ce5a2835550ea60195766cdef;p=irspy-moved-to-github.git diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index 677bb68..c502dd1 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,10 +1,32 @@ -%# $Id: found.mc,v 1.3 2006-09-18 19:26:37 mike Exp $ +%# $Id: found.mc,v 1.10 2006-09-25 14:58:20 mike Exp $ <%once> use XML::LibXML; use XML::LibXML::XPathContext; +use ZOOM::IRSpy::Record qw(xml_encode); +use URI::Escape; + +sub print_navlink { + my($params, $cond, $caption, $skip) = @_; + + if ($cond) { + print(' $caption\n"); + } else { + print qq[ $caption\n]; + } +} + +sub navlink { + my($params, $caption, $skip) = @_; + local $params->{_skip} = $skip; + my $url = "?" . join("&", map { "$_=" . $params->{$_} } sort keys %$params); + $url = xml_encode($url); + return $url; +} + <%perl> -my %params = map { ( $_, $r->param($_)) } $r->param(); +my %params = map { ( $_, $r->param($_)) } grep { $r->param($_) } $r->param(); my $query = ""; foreach my $key (keys %params) { next if $key =~ /^_/; @@ -15,10 +37,22 @@ foreach my $key (keys %params) { } $query = 'cql.allRecords=x' if $query eq ""; +my $sort = $params{"_sort"}; +if ($sort) { + my $modifiers = ""; + if ($sort =~ s/(\/.*)//) { + $modifiers = $1; + } + $query .= " or $sort=/sort"; + $query .= "-desc" if $params{_desc}; + $query .= $modifiers; + $query .= " 0"; +} + ### We can think about keeping the Connection object open to re-use # for multiple requests, but that may not get us much. Same applies # for the XML parser. -my $conn = new ZOOM::Connection("localhost:1313/IR-Explain---1"); +my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); $conn->option(elementSetName => "zeerex"); my $parser = new XML::LibXML(); @@ -32,9 +66,8 @@ my $first = $skip+1; my $last = $first+$count-1; $last = $n if $last > $n; +

<% xml_encode($query) %>

- <% $query %> -
% if ($n == 0) { No matches % } elsif ($first > $n) { @@ -43,20 +76,8 @@ $last = $n if $last > $n; % } else { Records <% $first %> to <% $last %> of <% $n %>
<%perl> -if ($skip > 0) { - $params{_skip} = $count < $skip ? $skip-$count : 0; - my $prev = "?" . join("&", map { "$_=" . $params{$_} } sort keys %params); - print qq[ Prev\n]; -} else { - print qq[ Prev\n]; -} -if ($last < $n) { - $params{_skip} = $skip+$count; - my $next = "?" . join("&", map { "$_=" . $params{$_} } sort keys %params); - print qq[ Next\n]; -} else { - print qq[ Next\n]; -} +print_navlink(\%params, $skip > 0, "Prev", $count < $skip ? $skip-$count : 0); +print_navlink(\%params, $last < $n, "Next", $skip+$count); % }

@@ -64,11 +85,15 @@ if ($last < $n) { + + + +% my @ids; % foreach my $i ($first .. $last) { <%perl> my $rec = $rs->record($i-1); @@ -77,20 +102,37 @@ 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 $title = $xc->find("e:databaseInfo/e:title"); +my $author = $xc->find("e:databaseInfo/e:author"); 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)"); +push @ids, $id; - - - - + + + + + + + -%} +% }
#TitleAuthor Host Port DB
<% $i %><% $host %><% $port %><% $db %>">[Check]<% xml_encode($title) %><% xml_encode($author) %><% xml_encode($host) %><% xml_encode($port) %><% xml_encode($db) %>[Test][Raw]
+<%perl> +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] +

% }