From 63802aff6bc2a6ac01da02bc1434668f822f0e94 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 20 Sep 2006 11:25:42 +0000 Subject: [PATCH] Omit empty parameters from prev/next URLs. Support relation-modifiers in sorting specifications. Display author. --- web/htdocs/details/found.mc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index e957091..eb9fe8f 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,10 +1,10 @@ -%# $Id: found.mc,v 1.5 2006-09-19 16:35:25 mike Exp $ +%# $Id: found.mc,v 1.6 2006-09-20 11:25:42 mike Exp $ <%once> use XML::LibXML; use XML::LibXML::XPathContext; <%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 =~ /^_/; @@ -17,8 +17,13 @@ $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"; } @@ -71,6 +76,7 @@ if ($last < $n) { # Title + Author Host Port DB @@ -86,6 +92,7 @@ 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"); @@ -96,6 +103,7 @@ my $id = $xc->find("concat(e:serverInfo/e:host, ':', <% $i %> <% $title %> + <% $author %> <% $host %> <% $port %> <% $db %> -- 1.7.10.4