Now included inline in layout.mc
authorMike Taylor <mike@indexdata.com>
Thu, 14 Dec 2006 15:39:48 +0000 (15:39 +0000)
committerMike Taylor <mike@indexdata.com>
Thu, 14 Dec 2006 15:39:48 +0000 (15:39 +0000)
web/htdocs/chrome/bannerrow.mc [deleted file]
web/htdocs/chrome/head.mc [deleted file]
web/htdocs/chrome/lmenu.mc [deleted file]
web/htdocs/chrome/menu.mc [deleted file]
web/htdocs/chrome/poweredby.mc [deleted file]
web/htdocs/chrome/tail.mc [deleted file]

diff --git a/web/htdocs/chrome/bannerrow.mc b/web/htdocs/chrome/bannerrow.mc
deleted file mode 100644 (file)
index 70bf849..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-%# $Id: bannerrow.mc,v 1.6 2006-09-25 19:52:20 mike Exp $
-<%args>
-$title
-</%args>
-   <tr class="banner">
-    <td align="left">
-     <br/>
-     <h1><a class="logo" href="/">IRSpy</a></h1>
-    </td>
-    <td align="right">
-     <br/>
-     <h1 class="title"><% xml_encode($title) %></h1>
-    </td>
-   </tr>
diff --git a/web/htdocs/chrome/head.mc b/web/htdocs/chrome/head.mc
deleted file mode 100644 (file)
index f4b133d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-%# $Id: head.mc,v 1.3 2006-09-25 19:53:02 mike Exp $
-<%args>
-$title
-</%args>
-% $r->content_type("text/html; charset=utf-8");
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html 
-     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
-  <title>IRSpy: <% xml_encode($title) %></title>
-  <style type="text/css">
-   <& style.mc &>
-  </style>
- </head>
- <body>
diff --git a/web/htdocs/chrome/lmenu.mc b/web/htdocs/chrome/lmenu.mc
deleted file mode 100644 (file)
index c2d2c16..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-%# $Id: lmenu.mc,v 1.2 2006-09-15 10:08:36 mike Exp $
-   <tr class="panel3">
-    <td align="left">
-     &nbsp; <!-- Force display -->
-     <!-- Lmenu left -->
-    </td>
-    <td>
-     <!-- Lmenu middle -->
-    </td>
-    <td align="right">
-     <!-- Lmenu right -->
-    </td>
-   </tr>
diff --git a/web/htdocs/chrome/menu.mc b/web/htdocs/chrome/menu.mc
deleted file mode 100644 (file)
index 623fb57..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-%# $Id: menu.mc,v 1.20 2006-12-04 16:47:27 mike Exp $
-     <p>
-      <a href="/"><b>Home</b></a><br/>
-      <a href="/all.html">Test&nbsp;all&nbsp;targets</a><br/>
-      <a href="/find.html">Find a target</a><br/>
-      <a href="/edit.html?op=new">Add a target</a><br/>
-     </p>
-     <p>
-      <b>Show targets</b>
-      <br/>
-% foreach my $i ('a' .. 'z') {
-      <a href="/find.html?dc.title=^<% $i %>*&amp;_sort=dc.title&amp;_count=9999&amp;_search=Search"><tt><% uc($i) %></tt></a>
-% }
-     </p>
-<%perl>
-my $id = $r->param("id");
-{
-    # Make up ID for newly created records.  It would be more
-    # rigorously correct, but insanely inefficient, to submit the
-    # record to Zebra and then search for it; but since we know the
-    # formula for IDs anyway, we just build one by hand.
-    my $id = $r->param("id");
-    my $host = $r->param("host");
-    my $port = $r->param("port");
-    my $dbname = $r->param("dbname");
-    #warn "id='$id', host='$host', port='$port', dbname='$dbname'";
-    #warn "%ARGS = {\n" . join("", map { "\t'$_' => '" . $ARGS{$_} . ",'\n" } sort keys %ARGS) . "}\n";
-    if ((!defined $id || $id eq "") &&
-       defined $host && defined $port && defined $dbname) {
-       $id = "$host:$port/$dbname";
-       #warn "id set to '$id'";
-    }
-}
-</%perl>
-% if (defined $id && $r->param("op") ne "copy") {
-     <div class="panel2">
-      <b>This Target</b>
-      <br/>
-      <a href="<% xml_encode("/full.html?id=" . uri_escape($id)) %>">Show details</a>
-      <br/>
-      <a href="<% xml_encode("/edit.html?op=edit&id=" . uri_escape($id)) %>">Edit details</a>
-      <br/>
-      <a href="<% xml_encode("/edit.html?op=copy&id=" . uri_escape($id)) %>">Copy target</a>
-      <p>
-       <a href="<% xml_encode("/check.html?id=" . uri_escape($id)) . "&amp;test=Quick" %>">Quick Test</a>
-       <br/>
-       <a href="<% xml_encode("/check.html?id=" . uri_escape($id)) . "&amp;test=Main" %>">Full Test</a>
-      </p>
-      <p>
-       <a href="<% xml_encode("/raw.html?id=" . uri_escape($id)) %>">XML</a>
-      </p>
-<%doc><!-- Maybe this would be too heavyweight -->
-      <br/>
-% my $host = "bagel.indexdata.dk";
-% my $port = 210;
-      <a href="/find.html?net.host=<% $host %>&net.port=<% $port %>&_search=Search"
-       >All databases on this server</a>
-</%doc>
-     </div>
-% }
-     <p>
-      <b>Documentation</b>
-      <br/>
-      <a href="/doc.html">Contents</a>
-     </p>
-     <p>&nbsp;</p>
-     <p>
-      <a href="http://validator.w3.org/check?uri=referer"><img
-        src="/valid-xhtml10.png"
-        alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
-      <br/>
-      <a href="http://jigsaw.w3.org/css-validator/"><img
-       src="/vcss.png"
-       alt="Valid CSS!" height="31" width="88" /></a>
-     </p>
diff --git a/web/htdocs/chrome/poweredby.mc b/web/htdocs/chrome/poweredby.mc
deleted file mode 100644 (file)
index b7cbf60..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-%# $Id: poweredby.mc,v 1.1 2006-09-14 15:17:48 mike Exp $
-  <p/>
-  <hr/>
-  <div class="right">
-   <small>
-    Powered by <a style="text-decoration: none"
-       href="http://indexdata.com/"
-       >Index&nbsp;Data</a>
-   </small>
-  </div>
diff --git a/web/htdocs/chrome/tail.mc b/web/htdocs/chrome/tail.mc
deleted file mode 100644 (file)
index 6b3d8ca..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-  <& poweredby.mc &>
- </body>
-</html>