Link to "#"; previously the link was to "" which caused a reload --
[irspy-moved-to-github.git] / web / htdocs / raw.html
index 063f9b6..47bac0b 100644 (file)
@@ -1,4 +1,4 @@
-%# $Id: raw.html,v 1.3 2006-09-25 16:37:55 mike Exp $
+%# $Id: raw.html,v 1.7 2007-01-24 09:28:02 mike Exp $
 <%args>
 $id
 </%args>
@@ -6,7 +6,7 @@ $id
 use ZOOM;
 </%once>
 <%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;
@@ -17,8 +17,7 @@ if ($n == 0) {
     $m->comp("/chrome/layout.mc", component => "/details/error.mc",
             title => "Error", message => "No such ID '$id'");
 } else {
-    my $rec = $rs->record(0);
-    my $xml = $rec->render();
+    my $xml = $rs->record(0)->render();
     $r->content_type("text/xml");
     print $xml;
 }