From a3eff8e76d8dda60c222cc08415d97e54265a6cd Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 20 Feb 2007 19:17:14 +0000 Subject: [PATCH] Moved here from non-protected parent directory --- web/htdocs/admin/all.html | 3 +++ web/htdocs/admin/check.html | 8 ++++++++ web/htdocs/admin/delete.html | 7 +++++++ web/htdocs/admin/edit.html | 8 ++++++++ 4 files changed, 26 insertions(+) create mode 100644 web/htdocs/admin/all.html create mode 100644 web/htdocs/admin/check.html create mode 100644 web/htdocs/admin/delete.html create mode 100644 web/htdocs/admin/edit.html diff --git a/web/htdocs/admin/all.html b/web/htdocs/admin/all.html new file mode 100644 index 0000000..2fd1516 --- /dev/null +++ b/web/htdocs/admin/all.html @@ -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 index 0000000..8925856 --- /dev/null +++ b/web/htdocs/admin/check.html @@ -0,0 +1,8 @@ +%# $Id: check.html,v 1.1 2007-02-20 19:17:14 mike Exp $ +<%args> +@id +$test => undef + +<& /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 index 0000000..8206bf0 --- /dev/null +++ b/web/htdocs/admin/delete.html @@ -0,0 +1,7 @@ +%# $Id: delete.html,v 1.1 2007-02-20 19:17:14 mike Exp $ +<%args> +$id => undef + +<& /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 index 0000000..70915a4 --- /dev/null +++ b/web/htdocs/admin/edit.html @@ -0,0 +1,8 @@ +%# $Id: edit.html,v 1.1 2007-02-20 19:17:14 mike Exp $ +<%args> +$op +$id => undef + +<& /chrome/layout.mc, %ARGS, + title => ucfirst($op) . " target record", + component => "/details/edit.mc" &> -- 1.7.10.4