New
authorMike Taylor <mike@indexdata.com>
Mon, 18 Sep 2006 19:27:21 +0000 (19:27 +0000)
committerMike Taylor <mike@indexdata.com>
Mon, 18 Sep 2006 19:27:21 +0000 (19:27 +0000)
web/htdocs/details/check.mc [new file with mode: 0644]
web/htdocs/favicon.ico [new file with mode: 0644]

diff --git a/web/htdocs/details/check.mc b/web/htdocs/details/check.mc
new file mode 100644 (file)
index 0000000..4b9d86b
--- /dev/null
@@ -0,0 +1,22 @@
+%# $Id: check.mc,v 1.1 2006-09-18 19:27:21 mike Exp $
+<%perl>
+my $id = $r->param("id");
+if (!$id) {
+    print "No 'id' specified!\n";
+} else {
+    print "<h2>'$id'</h2>\n";
+    my $spy = new ZOOM::IRSpy("localhost:1313/IR-Explain---1");
+    ZOOM::Log::mask_str("irspy,irspy_test"); # Do we need this?
+    ZOOM::Log::init_level(ZOOM::Log::module_level("irspy,irspy_test"));
+    ZOOM::Log::time_format("%F %T"); # ISO-8601 format
+    ### capture logging output ... somehow.
+    $spy->targets($id);
+    $spy->initialise();
+    my $res = 0;#$spy->check();
+    if ($res == 0) {
+       print "All tests were run\n";
+    } else {
+       print "Some tests were skipped\n";
+    }
+}
+</%perl>
diff --git a/web/htdocs/favicon.ico b/web/htdocs/favicon.ico
new file mode 100644 (file)
index 0000000..d21b4ac
Binary files /dev/null and b/web/htdocs/favicon.ico differ