%# $Id: full.mc,v 1.7 2006-11-06 16:22:17 mike Exp $ <%args> $id <%once> use ZOOM; <%perl> my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); $conn->option(elementSetName => "zeerex"); my $qid = $id; $qid =~ s/"/\\"/g; my $query = qq[rec.id="$qid"]; my $rs = $conn->search(new ZOOM::Query::CQL($query)); my $n = $rs->size(); if ($n == 0) { $m->comp("/details/error.mc", title => "Error", message => "No such ID '$id'"); } else { my $rec = $rs->record(0); my $xc = irspy_xpath_context($rec); my @fields = ( [ "Last Checked" => "i:status/i:probe[last()]" ], [ Protocol => "e:serverInfo/\@protocol" ], [ Host => "e:serverInfo/e:host" ], [ Port => "e:serverInfo/e:port" ], [ "Database Name" => "e:serverInfo/e:database" ], [ "Username (if needed)" => "e:serverInfo/e:authentication/e:user" ], [ "Password (if needed)" => "e:serverInfo/e:authentication/e:password" ], [ Title => "e:databaseInfo/e:title", lang => "en", primary => "true" ], [ Description => "e:databaseInfo/e:description", lang => "en", primary => "true" ], [ Author => "e:databaseInfo/e:author" ], [ Contact => "e:databaseInfo/e:contact" ], [ Extent => "e:databaseInfo/e:extent" ], [ History => "e:databaseInfo/e:history" ], [ "Language of Records" => "e:databaseInfo/e:langUsage" ], [ Restrictions => "e:databaseInfo/e:restrictions" ], [ Subjects => "e:databaseInfo/e:subjects" ], [ "Implementation ID" => "i:status/i:implementationId" ], [ "Implementation Name" => "i:status/i:implementationName" ], [ "Implementation Version" => "i:status/i:implementationVersion" ], [ "Reliability" => \&calc_reliability, $xc ], [ "Services" => sub { "### search, present, delSet, concurrentOperations, namedResultSets" } ], [ "Bib-1 Use attributes" => sub { "### 4-5, 7-8, 12, 21, 31, 54, 58, 63, 1003-1005, 1009, 1011-1012, 1016, 1031" } ], [ "Operators" => sub { "### and, or, not" } ], [ "Record syntaxes" => sub { "### SUTRS, USmarc, Danmarc" } ], [ "Explain" => sub { "### CategoryList, TargetInfo, DatabaseInfo, RecordSyntaxInfo, AttributeSetInfo, AttributeDetails" } ], );

<% xml_encode($xc->find("e:databaseInfo/e:title")) %>

<%perl> foreach my $ref (@fields) { my($caption, $xpath, @args) = @$ref; my $data; if (ref $xpath && ref($xpath) eq "CODE") { $data = &$xpath(@args); } else { $data = $xc->find($xpath); } if ($data) { % } % }
<% xml_encode($caption) %> <% xml_encode($data) %>
% } <%perl> sub calc_reliability { my($xc) = @_; my @allpings = $xc->findnodes("i:status/i:probe"); my $nall = @allpings; return "[untested]" if @allpings == 0; my @okpings = $xc->findnodes('i:status/i:probe[@ok = "1"]'); my $nok = @okpings; return "$nok/$nall = " . int(100*$nok/$nall) . "%"; }