aboutsummaryrefslogtreecommitdiffstats
path: root/config/ladvd
diff options
context:
space:
mode:
authordoktornotor <notordoktor@gmail.com>2015-08-11 00:54:12 +0200
committerdoktornotor <notordoktor@gmail.com>2015-08-11 00:54:12 +0200
commit3887927328fbf89255000ef95c4d59ea1aa846b3 (patch)
treeee2a37d6ece2e19ca352fc37fe8fb2ad806f3a86 /config/ladvd
parent5a9556553fad6ca50010b226747418495bcade72 (diff)
downloadpfsense-packages-3887927328fbf89255000ef95c4d59ea1aa846b3.tar.gz
pfsense-packages-3887927328fbf89255000ef95c4d59ea1aa846b3.tar.bz2
pfsense-packages-3887927328fbf89255000ef95c4d59ea1aa846b3.zip
ladvd - code style fixes
- Fix copyright header - Fix indentation - XHTML valid code
Diffstat (limited to 'config/ladvd')
-rw-r--r--config/ladvd/status_ladvd.php81
1 files changed, 40 insertions, 41 deletions
diff --git a/config/ladvd/status_ladvd.php b/config/ladvd/status_ladvd.php
index 3333145a..86e7187c 100644
--- a/config/ladvd/status_ladvd.php
+++ b/config/ladvd/status_ladvd.php
@@ -1,7 +1,10 @@
<?php
/*
status_ladvd.php
- Copyright (C) 2006 Scott Ullrich
+ part of pfSense (https://www.pfSense.org/)
+ Copyright (C) 2014 Andrea Tuccia
+ Copyright (C) 2014 Ermal Luçi
+ Copyright (C) 2015 ESF, LLC
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -15,7 +18,7 @@
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
- INClUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
@@ -25,7 +28,6 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
-
require("guiconfig.inc");
$pgtitle = "LADVD: Status";
@@ -37,9 +39,9 @@ $control_script = "/usr/local/sbin/ladvdc";
function listCmds() {
global $commands;
echo "<br/>This status page includes the following information:\n";
- echo "<ul width=\"100%\">\n";
+ echo "<ul>\n";
for ($i = 0; isset($commands[$i]); $i++ ) {
- echo "<li><strong><a href=\"#" . $commands[$i][0] . "\">" . $commands[$i][0] . "</a></strong></li>\n";
+ echo "<li><strong><a href=\"#" . str_replace(' ', '_', $commands[$i][0]) . "\">" . $commands[$i][0] . "</a></strong></li>\n";
}
echo "</ul>\n";
}
@@ -59,11 +61,12 @@ function defCmdT($title, $command) {
}
function doCmdT($title, $command) {
- echo "<p>\n";
- echo "<a name=\"" . $title . "\">\n";
+ echo "<div>\n";
+ echo "<a name=\"" . str_replace(' ', '_', $title) . "\" />\n";
echo "<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n";
echo "<tr><td class=\"listtopic\">" . $title . "</td></tr>\n";
- echo "<tr><td class=\"listlr\"><pre>"; /* no newline after pre */
+ /* no newline after pre */
+ echo "<tr><td class=\"listlr\"><pre>";
$execOutput = "";
$execStatus = "";
@@ -72,47 +75,43 @@ function doCmdT($title, $command) {
echo htmlspecialchars($line, ENT_NOQUOTES);
}
pclose($fd);
- echo "</pre></tr>\n";
+ echo "</pre></td></tr>\n";
echo "</table>\n";
+ echo "</div>\n";
}
?>
-<html>
- <body link="#0000CC" vlink="#0000CC" alink="#0000CC">
- <?php include("fbegin.inc"); ?>
- <?php if ($savemsg) print_info_box($savemsg); ?>
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+<?php if ($savemsg) print_info_box($savemsg); ?>
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr><td class="tabnavtbl">
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr><td class="tabnavtbl">
<?php
- $tab_array = array();
- $tab_array[] = array(gettext("General"), false, "/pkg_edit.php?xml=ladvd.xml&id=0");
- $tab_array[] = array(gettext("Status"), true, "/status_ladvd.php");
- display_top_tabs($tab_array);
- ?>
- </td></tr>
- <tr>
- <td>
- <div id="mainarea">
- <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
- <tr>
- <td>
+ $tab_array = array();
+ $tab_array[] = array(gettext("General"), false, "/pkg_edit.php?xml=ladvd.xml&amp;id=0");
+ $tab_array[] = array(gettext("Status"), true, "/status_ladvd.php");
+ display_top_tabs($tab_array);
+?>
+ </td></tr>
+ <tr><td>
+ <div id="mainarea">
+ <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
+ <tr><td>
<?php
- defCmdT("LADVD Devices", "{$control_script}");
- defCmdT("LADVD Detailed decode", "{$control_script} -f");
+ defCmdT("LADVD Devices", "{$control_script}");
+ defCmdT("LADVD Detailed decode", "{$control_script} -f");
?>
- <div id="cmdspace" style="width:100%">
- <?php listCmds(); ?>
- <?php execCmds(); ?>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
+ <div id="cmdspace" style="width:100%">
+ <?php listCmds(); ?>
+ <?php execCmds(); ?>
+ </div>
+ </td></tr>
</table>
- <?php include("fend.inc"); ?>
- </body>
+ </div>
+ </td></tr>
+</table>
+<?php include("fend.inc"); ?>
+</body>
</html>