X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffull.mc;h=dd48c28e50532e80279d6722d4b2bcacd27b2c8d;hb=08e11c0116f3a7d6277c3641ec9a962d8bedff06;hp=1e19a8b6e41672fac8b902c6a68eef6069eaf573;hpb=25e217feb6b3c709ab51acac74827443342fc823;p=irspy-moved-to-github.git diff --git a/web/htdocs/details/full.mc b/web/htdocs/details/full.mc index 1e19a8b..dd48c28 100644 --- a/web/htdocs/details/full.mc +++ b/web/htdocs/details/full.mc @@ -1,9 +1,9 @@ -%# $Id: full.mc,v 1.19 2006-12-06 13:00:40 mike Exp $ +%# $Id: full.mc,v 1.22 2007-02-02 11:31:30 mike Exp $ <%args> $id <%perl> -my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); +my $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1"); $conn->option(elementSetName => "zeerex"); my $qid = $id; $qid =~ s/"/\\"/g; @@ -29,6 +29,9 @@ if ($n == 0) { "e:serverInfo/e:authentication/e:user" ], [ "Password (if needed)" => "e:serverInfo/e:authentication/e:password" ], + [ "Server ID" => 'i:status/i:serverImplementationId/@value' ], + [ "Server Name" => 'i:status/i:serverImplementationName/@value' ], + [ "Server Version" => 'i:status/i:serverImplementationVersion/@value' ], [ Description => "e:databaseInfo/e:description", lang => "en", primary => "true" ], [ Author => "e:databaseInfo/e:author" ], @@ -104,28 +107,27 @@ sub calc_init_options { sub calc_ap { my($xc, $set) = @_; - my $expr = 'e:indexInfo/e:index/e:map/e:attr[ + my $expr = 'e:indexInfo/e:index[@search = "true"]/e:map/e:attr[ @set = "'.$set.'" and @type = "1"]'; - my @bib1nodes = $xc->findnodes($expr); - my $nbib1 = @bib1nodes; - return "[none]" if $nbib1 == 0; + my @nodes = $xc->findnodes($expr); + my $n = @nodes; + return "[none]" if $n == 0; my $res = ""; my($first, $last); - @bib1nodes = sort { $a->findvalue(".") <=> $b->findvalue(".") } @bib1nodes; - foreach my $node (@bib1nodes) { + @nodes = sort { $a->findvalue(".") <=> $b->findvalue(".") } @nodes; + foreach my $node (@nodes) { my $ap .= $node->findvalue("."); if (!defined $first) { - $first = $ap; - } elsif (!defined $last || $last == $ap-1) { - $last = $ap; + $first = $last = $ap; + } elsif ($ap == $last+1) { + $last++; } else { # Got a complete range $res .= ", " if $res ne ""; $res .= "$first"; - $res .= "-$last" if defined $last; - $first = $ap; - $last = undef; + $res .= "-$last" if $last > $first; + $first = $last = $ap; } } @@ -133,10 +135,10 @@ sub calc_ap { if (defined $first) { $res .= ", " if $res ne ""; $res .= "$first"; - $res .= "-$last" if defined $last; + $res .= "-$last" if $last > $first; } - return "$nbib1 access points: $res"; + return "$n access points: $res"; } sub calc_boolean {