Moved here from non-protected parent directory
authorMike Taylor <mike@indexdata.com>
Tue, 20 Feb 2007 19:17:14 +0000 (19:17 +0000)
committerMike Taylor <mike@indexdata.com>
Tue, 20 Feb 2007 19:17:14 +0000 (19:17 +0000)
web/htdocs/admin/all.html [new file with mode: 0644]
web/htdocs/admin/check.html [new file with mode: 0644]
web/htdocs/admin/delete.html [new file with mode: 0644]
web/htdocs/admin/edit.html [new file with mode: 0644]

diff --git a/web/htdocs/admin/all.html b/web/htdocs/admin/all.html
new file mode 100644 (file)
index 0000000..2fd1516
--- /dev/null
@@ -0,0 +1,3 @@
+%# $Id: all.html,v 1.1 2007-02-20 19:17:14 mike Exp $
+<& /chrome/layout.mc, %ARGS, title => "Test all targets",
+    component => "/details/check.mc", id => "" &>
diff --git a/web/htdocs/admin/check.html b/web/htdocs/admin/check.html
new file mode 100644 (file)
index 0000000..8925856
--- /dev/null
@@ -0,0 +1,8 @@
+%# $Id: check.html,v 1.1 2007-02-20 19:17:14 mike Exp $
+<%args>
+@id
+$test => undef
+</%args>
+<& /chrome/layout.mc, %ARGS, component => "/details/check.mc",
+    title => ((@id > 1 ? "Test targets" : "Test a target") .
+              (defined $test ? ": $test" : "")) &>
diff --git a/web/htdocs/admin/delete.html b/web/htdocs/admin/delete.html
new file mode 100644 (file)
index 0000000..8206bf0
--- /dev/null
@@ -0,0 +1,7 @@
+%# $Id: delete.html,v 1.1 2007-02-20 19:17:14 mike Exp $
+<%args>
+$id => undef
+</%args>
+<& /chrome/layout.mc, %ARGS,
+    title => "Delete target record",
+    component => "/details/delete.mc" &>
diff --git a/web/htdocs/admin/edit.html b/web/htdocs/admin/edit.html
new file mode 100644 (file)
index 0000000..70915a4
--- /dev/null
@@ -0,0 +1,8 @@
+%# $Id: edit.html,v 1.1 2007-02-20 19:17:14 mike Exp $
+<%args>
+$op
+$id => undef
+</%args>
+<& /chrome/layout.mc, %ARGS,
+    title => ucfirst($op) . " target record",
+    component => "/details/edit.mc" &>