summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2015-12-16 22:18:31 -0800
committerNOYB <Al_Stu@Frontier.com>2015-12-16 22:18:31 -0800
commitc5bdca2d96bc2808ef1fbbfd308cd98b0161e9c4 (patch)
tree1a052c152cab321f1651c79e721284d4646c9d67
parent0cf1b4f4f29f2ad63691d598e83a9327ae9867ff (diff)
downloadpfsense-c5bdca2d96bc2808ef1fbbfd308cd98b0161e9c4.zip
pfsense-c5bdca2d96bc2808ef1fbbfd308cd98b0161e9c4.tar.gz
HTML Compliance - Dashboard - Widget Config Panel
Bad value #widget-system_information .panel-footer for attribute href on element a: Illegal character in fragment: not a URL code point. Fix the widget config/wrench icon href. Add matching widgetname id tag to widgets configuration panel div element. Note: Thermal Sensors widget config panel already had a different id tag. Couldn't find anything that referenced it though. If that is correct then it should be safe to change it to widgetname to be consistent with the other widgets.
-rw-r--r--src/usr/local/www/index.php2
-rw-r--r--src/usr/local/www/widgets/widgets/gateways.widget.php2
-rw-r--r--src/usr/local/www/widgets/widgets/log.widget.php2
-rw-r--r--src/usr/local/www/widgets/widgets/picture.widget.php2
-rw-r--r--src/usr/local/www/widgets/widgets/rss.widget.php2
-rw-r--r--src/usr/local/www/widgets/widgets/services_status.widget.php2
-rw-r--r--src/usr/local/www/widgets/widgets/thermal_sensors.widget.php2
-rw-r--r--src/usr/local/www/widgets/widgets/traffic_graphs.widget.php2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/usr/local/www/index.php b/src/usr/local/www/index.php
index 214f129..08c9e4f 100644
--- a/src/usr/local/www/index.php
+++ b/src/usr/local/www/index.php
@@ -403,7 +403,7 @@ foreach ($widgets as $widgetname => $widgetconfig) {
<div class="panel-heading">
<?=$wtitle?>
<span class="widget-heading-icon">
- <a data-toggle="collapse" href="#widget-<?=$widgetname?> .panel-footer" class="config hidden">
+ <a data-toggle="collapse" href="#widget-<?=$widgetname?>_panel-footer" class="config hidden">
<i class="fa fa-wrench"></i>
</a>
<a data-toggle="collapse" href="#widget-<?=$widgetname?>_panel-body">
diff --git a/src/usr/local/www/widgets/widgets/gateways.widget.php b/src/usr/local/www/widgets/widgets/gateways.widget.php
index cd86719..b11162b 100644
--- a/src/usr/local/www/widgets/widgets/gateways.widget.php
+++ b/src/usr/local/www/widgets/widgets/gateways.widget.php
@@ -220,7 +220,7 @@ if ($_POST) {
//]]>
</script>
-<div class="panel-footer collapse">
+<div id="widget-<?=$widgetname?>_panel-footer" class="panel-footer collapse">
<input type="hidden" id="gateways-config" name="gateways-config" value="" />
<div id="gateways-settings" class="widgetconfigdiv" >
diff --git a/src/usr/local/www/widgets/widgets/log.widget.php b/src/usr/local/www/widgets/widgets/log.widget.php
index 753e19d..62e5104 100644
--- a/src/usr/local/www/widgets/widgets/log.widget.php
+++ b/src/usr/local/www/widgets/widgets/log.widget.php
@@ -221,7 +221,7 @@ events.push(function(){
<!-- close the body we're wrapped in and add a configuration-panel -->
</div>
-<div class="panel-footer collapse">
+<div id="widget-<?=$widgetname?>_panel-footer" class="panel-footer collapse">
<form action="/widgets/widgets/log.widget.php" method="post"
class="form-horizontal">
diff --git a/src/usr/local/www/widgets/widgets/picture.widget.php b/src/usr/local/www/widgets/widgets/picture.widget.php
index 6b19ab6..ec7ded3 100644
--- a/src/usr/local/www/widgets/widgets/picture.widget.php
+++ b/src/usr/local/www/widgets/widgets/picture.widget.php
@@ -75,7 +75,7 @@ if ($_POST) {
</a>
<!-- close the body we're wrapped in and add a configuration-panel -->
-</div><div class="panel-footer collapse">
+</div><div id="widget-<?=$widgetname?>_panel-footer" class="panel-footer collapse">
<form action="/widgets/widgets/picture.widget.php" method="post" enctype="multipart/form-data" class="form-inline">
<label for="pictfile">New picture: </label>
diff --git a/src/usr/local/www/widgets/widgets/rss.widget.php b/src/usr/local/www/widgets/widgets/rss.widget.php
index b7d3f9d..346c9fc 100644
--- a/src/usr/local/www/widgets/widgets/rss.widget.php
+++ b/src/usr/local/www/widgets/widgets/rss.widget.php
@@ -154,7 +154,7 @@ if ($config['widgets']['rssfeed']) {
</div>
<!-- close the body we're wrapped in and add a configuration-panel -->
-</div><div class="panel-footer collapse">
+</div><div id="widget-<?=$widgetname?>_panel-footer" class="panel-footer collapse">
<form action="/widgets/widgets/rss.widget.php" method="post" class="form-horizontal">
<div class="form-group">
diff --git a/src/usr/local/www/widgets/widgets/services_status.widget.php b/src/usr/local/www/widgets/widgets/services_status.widget.php
index 173629e..8899886 100644
--- a/src/usr/local/www/widgets/widgets/services_status.widget.php
+++ b/src/usr/local/www/widgets/widgets/services_status.widget.php
@@ -123,7 +123,7 @@ if (count($services) > 0) {
</table>
<!-- close the body we're wrapped in and add a configuration-panel -->
-</div><div class="panel-footer collapse">
+</div><div id="widget-<?=$widgetname?>_panel-footer" class="panel-footer collapse">
<form action="/widgets/widgets/services_status.widget.php" method="post" class="form-horizontal">
<div class="form-group">
diff --git a/src/usr/local/www/widgets/widgets/thermal_sensors.widget.php b/src/usr/local/www/widgets/widgets/thermal_sensors.widget.php
index a274935..b91dba7 100644
--- a/src/usr/local/www/widgets/widgets/thermal_sensors.widget.php
+++ b/src/usr/local/www/widgets/widgets/thermal_sensors.widget.php
@@ -191,7 +191,7 @@ function getBoolValueFromConfig(&$configArray, $valueKey, $defaultValue) {
</div>
<input type="hidden" id="thermal_sensors-config" name="thermal_sensors-config" value="" />
-<div id="thermal_sensors-settings" class="widgetconfigdiv panel-footer collapse" >
+<div id="widget-<?=$widgetname?>_panel-footer" class="widgetconfigdiv panel-footer collapse" >
<form action="/widgets/widgets/thermal_sensors.widget.php" method="post" id="iform_thermal_sensors_settings" name="iform_thermal_sensors_settings">
<table>
<tr>
diff --git a/src/usr/local/www/widgets/widgets/traffic_graphs.widget.php b/src/usr/local/www/widgets/widgets/traffic_graphs.widget.php
index 11835c4..9293d9f 100644
--- a/src/usr/local/www/widgets/widgets/traffic_graphs.widget.php
+++ b/src/usr/local/www/widgets/widgets/traffic_graphs.widget.php
@@ -158,7 +158,7 @@ foreach ($ifdescrs as $ifname => $ifdescr):
<?php endforeach; ?>
<!-- close the body we're wrapped in and add a configuration-panel -->
-</div><div class="panel-footer collapse">
+</div><div id="widget-<?=$widgetname?>_panel-footer" class="panel-footer collapse">
<form action="/widgets/widgets/traffic_graphs.widget.php" method="post" class="form-horizontal">
<div class="form-group">
OpenPOWER on IntegriCloud