From 3a4bf42c4385863ea83423b279b39ff6e650f79d Mon Sep 17 00:00:00 2001 From: levinse Date: Sat, 5 Feb 2011 06:32:36 +0000 Subject: torrus, add router UI, RT10574 --- httemplate/misc/nms-add_router.html | 17 +++++++++++++++++ httemplate/misc/process/nms-add_iface.html | 3 --- httemplate/misc/process/nms-add_router.html | 13 +++++++++++++ 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 httemplate/misc/nms-add_router.html create mode 100644 httemplate/misc/process/nms-add_router.html (limited to 'httemplate/misc') diff --git a/httemplate/misc/nms-add_router.html b/httemplate/misc/nms-add_router.html new file mode 100644 index 000000000..35ef7bf72 --- /dev/null +++ b/httemplate/misc/nms-add_router.html @@ -0,0 +1,17 @@ +<% header('Add Router') %> + +
+Router Hostname/IP +<% include('/elements/input-text.html', + 'field' => 'host', + ) +%> +
+ +
+ +<%init> + +# XXX: access rights, disable/enable submit button, something's wrong with style + + diff --git a/httemplate/misc/process/nms-add_iface.html b/httemplate/misc/process/nms-add_iface.html index ffc70d9cc..04d6095d0 100644 --- a/httemplate/misc/process/nms-add_iface.html +++ b/httemplate/misc/process/nms-add_iface.html @@ -13,9 +13,6 @@ die 'invalid iface' unless $iface =~ /^[0-9A-Za-z_\-.\\\/ ]+$/; my $serviceid = $cgi->param('serviceid'); die 'invalid serviceid' unless $serviceid =~ /^[0-9A-Za-z_\-.\\\/ ]+$/; -my $conf = new FS::Conf; -my $system = $conf->config('network_monitoring_system'); - my $nms = new FS::NetworkMonitoringSystem; $nms->add_interface($host,$iface,$serviceid); diff --git a/httemplate/misc/process/nms-add_router.html b/httemplate/misc/process/nms-add_router.html new file mode 100644 index 000000000..bc437d2b3 --- /dev/null +++ b/httemplate/misc/process/nms-add_router.html @@ -0,0 +1,13 @@ +<% header('Router added') %> + +<%init> + +# XXX: access rights + +my $host = $cgi->param('host'); +die 'invalid host' unless $host =~ /^[0-9.a-zA-Z\-]+$/; + +my $nms = new FS::NetworkMonitoringSystem; +$nms->add_router($host); + + -- cgit v1.2.1