%# $Id: raw.html,v 1.9 2007-05-11 13:53:40 mike Exp $ <%args> $id <%once> use ZOOM; use ZOOM::IRSpy::Utils qw(cql_target); <%perl> my $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1"); $conn->option(elementSetName => "zeerexNoAuth"); my $rs = $conn->search(new ZOOM::Query::CQL(cql_target($id))); my $n = $rs->size(); if ($n == 0) { $m->comp("/chrome/layout.mc", component => "/details/error.mc", title => "Error", message => xml_encode("No such ID '$id'")); } else { my $xml = $rs->record(0)->render(); $r->content_type("text/xml"); print $xml; }