diff options
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/diag_backup.php | 18 | ||||
-rwxr-xr-x | usr/local/www/diag_confbak.php | 20 | ||||
-rwxr-xr-x | usr/local/www/diag_ipsec_sad.php | 8 | ||||
-rwxr-xr-x | usr/local/www/diag_ipsec_spd.php | 8 | ||||
-rwxr-xr-x | usr/local/www/diag_logs.php | 9 | ||||
-rwxr-xr-x | usr/local/www/diag_logs_auth.php | 9 | ||||
-rwxr-xr-x | usr/local/www/diag_logs_filter.php | 9 | ||||
-rwxr-xr-x | usr/local/www/diag_logs_ipsec.php | 8 | ||||
-rwxr-xr-x | usr/local/www/diag_logs_settings.php | 8 | ||||
-rwxr-xr-x | usr/local/www/diag_logs_vpn.php | 8 | ||||
-rwxr-xr-x | usr/local/www/status_services.php | 9 |
11 files changed, 106 insertions, 8 deletions
diff --git a/usr/local/www/diag_backup.php b/usr/local/www/diag_backup.php index 6c44507..c9121d6 100755 --- a/usr/local/www/diag_backup.php +++ b/usr/local/www/diag_backup.php @@ -187,10 +187,15 @@ include("head.inc"); <form action="diag_backup.php" method="post" enctype="multipart/form-data" onSubmit="window.open('progress.php?conffile=<?=$id?>','UploadMeter','width=370,height=115', true); return true; "> <?php if ($input_errors) print_input_errors($input_errors); ?> <?php if ($savemsg) print_info_box($savemsg); ?> + <div id="mainarea"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> - <tr><td><ul id="tabnav"> - <li class="tabact">Remote</a></li> - <li class="tabinact"><a href="diag_confbak.php">Local</a></li> + <tr><td> +<?php + $tab_array = array(); + $tab_array[0] = array("Remote", true, "diag_backup.php"); + $tab_array[1] = array("Local", false, "diag_confbak.php"); + display_top_tabs($tab_array); +?> </ul></td></tr> <tr><td class="tabcont"><table align="center" width="100%" border="0" cellpadding="6" cellspacing="0"> <tr> @@ -248,7 +253,14 @@ include("head.inc"); </td> </tr> </table> + </div> </form> <?php include("fend.inc"); ?> + +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> diff --git a/usr/local/www/diag_confbak.php b/usr/local/www/diag_confbak.php index e56f2fd..586fdc5 100755 --- a/usr/local/www/diag_confbak.php +++ b/usr/local/www/diag_confbak.php @@ -58,11 +58,14 @@ include("head.inc"); <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: Configuration History</p> <?php if($savemsg) print_info_box($savemsg); ?> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> - <ul id="tabnav"> - <li class="tabinact"><a href="diag_backup.php">Remote</a></li> - <li class="tabact">Local</a></li> - </ul> +<?php + $tab_array = array(); + $tab_array[0] = array("Remote", false, "diag_backup.php"); + $tab_array[1] = array("Local", true, "diag_confbak.php"); + display_top_tabs($tab_array); +?> </td></tr> <tr> <td class="tabcont"> @@ -109,6 +112,15 @@ if(is_array($confvers)) { </td> </tr> </table> +</div> </body> </html> <?php include("fend.inc"); ?> + +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + +</body> +</html>
\ No newline at end of file diff --git a/usr/local/www/diag_ipsec_sad.php b/usr/local/www/diag_ipsec_sad.php index 872242c..67a7412 100755 --- a/usr/local/www/diag_ipsec_sad.php +++ b/usr/local/www/diag_ipsec_sad.php @@ -42,6 +42,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: IPsec</p> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -136,6 +137,13 @@ foreach ($sad as $sa): ?> <p><strong>No IPsec security associations.</strong></p> <?php endif; ?> </td></tr></table> +</div> <?php include("fend.inc"); ?> + +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> diff --git a/usr/local/www/diag_ipsec_spd.php b/usr/local/www/diag_ipsec_spd.php index c346ac3..a58c17e 100755 --- a/usr/local/www/diag_ipsec_spd.php +++ b/usr/local/www/diag_ipsec_spd.php @@ -42,6 +42,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: IPsec</p> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -152,6 +153,13 @@ foreach ($spd as $sp): ?> <p><strong>No IPsec security policies.</strong></p> <?php endif; ?> </td></tr></table> +</div> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + diff --git a/usr/local/www/diag_logs.php b/usr/local/www/diag_logs.php index 2ff5a81..cdd2a79 100755 --- a/usr/local/www/diag_logs.php +++ b/usr/local/www/diag_logs.php @@ -52,6 +52,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: System logs: System</p> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -81,6 +82,14 @@ include("head.inc"); </td> </tr> </table> +</div> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + + diff --git a/usr/local/www/diag_logs_auth.php b/usr/local/www/diag_logs_auth.php index e5c21af..0a2ae55 100755 --- a/usr/local/www/diag_logs_auth.php +++ b/usr/local/www/diag_logs_auth.php @@ -50,6 +50,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: System logs: Portal Auth</p> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -80,6 +81,14 @@ include("head.inc"); </td> </tr> </table> +</div> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + + diff --git a/usr/local/www/diag_logs_filter.php b/usr/local/www/diag_logs_filter.php index 587d031..f06df77 100755 --- a/usr/local/www/diag_logs_filter.php +++ b/usr/local/www/diag_logs_filter.php @@ -120,6 +120,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: System logs: Firewall</p> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -182,6 +183,14 @@ include("head.inc"); </td> </tr> </table> +</div> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + + diff --git a/usr/local/www/diag_logs_ipsec.php b/usr/local/www/diag_logs_ipsec.php index f01ae08..bc25e19 100755 --- a/usr/local/www/diag_logs_ipsec.php +++ b/usr/local/www/diag_logs_ipsec.php @@ -51,6 +51,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: System logs: IPSEC VPN</p> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -79,6 +80,13 @@ include("head.inc"); </td> </tr> </table> +</div> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + diff --git a/usr/local/www/diag_logs_settings.php b/usr/local/www/diag_logs_settings.php index c8b2bc3..abf27cd 100755 --- a/usr/local/www/diag_logs_settings.php +++ b/usr/local/www/diag_logs_settings.php @@ -124,6 +124,7 @@ function enable_change(enable_over) { <form action="diag_logs_settings.php" method="post" name="iform" id="iform"> <?php if ($input_errors) print_input_errors($input_errors); ?> <?php if ($savemsg) print_info_box($savemsg); ?> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -200,6 +201,7 @@ function enable_change(enable_over) { </td> </tr> </table> +</div> </form> <script language="JavaScript"> <!-- @@ -207,5 +209,11 @@ enable_change(false); //--> </script> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + diff --git a/usr/local/www/diag_logs_vpn.php b/usr/local/www/diag_logs_vpn.php index 4f8df5c..0ad307b 100755 --- a/usr/local/www/diag_logs_vpn.php +++ b/usr/local/www/diag_logs_vpn.php @@ -77,6 +77,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <p class="pgtitle">Diagnostics: System logs: PPTP VPN</p> +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -110,6 +111,13 @@ include("head.inc"); </td> </tr> </table> +</div> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php index 16a010e..3b66c9a 100755 --- a/usr/local/www/status_services.php +++ b/usr/local/www/status_services.php @@ -67,7 +67,7 @@ include("fbegin.inc"); <p> - +<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="tabcont"> @@ -121,7 +121,14 @@ if($config['installedpackages']['service']) { </td> </tr></table> +</div> <?php include("fend.inc"); ?> +<script type="text/javascript"> +NiftyCheck(); +Rounded("div#mainarea","all","#FFF","#eeeeee","smooth"); +</script> + </body> </html> + |