X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffull.mc;h=d706a6272136b6ddf52ed853d3018804e1d36899;hp=7e75f4dd0a89d75f1bca09976fd27cbb78904a5a;hb=085f4a7c5d42a0f3720e0684cda4f8c737143da9;hpb=55abcce681bbfbc5379610efb0cb44f377ea805d diff --git a/web/htdocs/details/full.mc b/web/htdocs/details/full.mc index 7e75f4d..d706a62 100644 --- a/web/htdocs/details/full.mc +++ b/web/htdocs/details/full.mc @@ -1,4 +1,4 @@ -%# $Id: full.mc,v 1.1 2006-10-20 16:57:40 mike Exp $ +%# $Id: full.mc,v 1.2 2006-10-26 17:23:13 mike Exp $ <%args> $id @@ -39,15 +39,26 @@ if ($n == 0) { [ "Language of Records" => "e:databaseInfo/e:langUsage" ], [ Restrictions => "e:databaseInfo/e:restrictions" ], [ Subjects => "e:databaseInfo/e:subjects" ], - ### Remember to set e:metaInfo/e:dateModified + [ "Server ID" => sub { "CNIDR zserver v2.07g" } ], + [ "Reliability" => sub { "97%" } ], + [ "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($id) %>

- +
<%perl> foreach my $ref (@fields) { my($caption, $xpath, %attrs) = @$ref; - my $data = $xc->find($xpath); + my $data; + if (ref $xpath && ref($xpath) eq "CODE") { + $data = &$xpath(); + } else { + $data = $xc->find($xpath); + } if ($data) { @@ -57,4 +68,8 @@ if ($n == 0) { % } % }
+

+ Raw XML record +

% }