summaryrefslogtreecommitdiff
path: root/menu.pl
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@wirdorange.org>2011-01-15 01:17:15 +0000
committerOthmar Gsenger <otti@wirdorange.org>2011-01-15 01:17:15 +0000
commit04894ee3ea2768e34c1086b0012a095c32225dcb (patch)
tree45f32bc23fa899092a0883a145ec97402674a2a9 /menu.pl
parentadded ajax & navigation (diff)
added cancel
Diffstat (limited to 'menu.pl')
-rwxr-xr-xmenu.pl10
1 files changed, 10 insertions, 0 deletions
diff --git a/menu.pl b/menu.pl
new file mode 100755
index 0000000..ebd777f
--- /dev/null
+++ b/menu.pl
@@ -0,0 +1,10 @@
+#!/usr/bin/perl
+use strict;
+use CGI qw(:standard);
+use CGI::Carp 'fatalsToBrowser';
+use local::menu;
+
+print header;
+my $menu= new local::menu(%ENV);
+print $menu->start_html('nzbget status');
+print $menu->end_html;