summaryrefslogtreecommitdiffstats
path: root/usr/local/www/widgets/widgets
Commit message (Collapse)AuthorAgeFilesLines
* standardize on https://www.pfsense.orgChris Buechler2014-03-1413-13/+13
|
* XHTML ComplianceN0YB2014-02-131-1/+8
| | | | Create an empty row in tbody when there are no firewall log entries displayed.
* Also make the dialog_output query string option XHTML compliant.N0YB2014-01-271-2/+2
|
* Make select option XHTML compliant for "Number of lines to display".N0YB2014-01-271-1/+1
| | | | | | | | | | | | | http://validator.w3.org/check "SELECTED" is not a member of a group specified for any attribute <option value="7" SELECTED >7</option> The name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified <option value="7" selected >7</option> "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance. How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...
* The service status icon (get_service_status_icon) is not always in a table.N0YB2014-01-261-0/+2
| | | | | | | So the caller should apply table td element, rather than the function. Document type does not allow element "td" here <td class="listr" align="center"> The element named above was found in a context where it is not allowed.
* added missing quotesdwayne voelker2013-12-051-1/+1
| | | | thx rbgarga
* Allow setting a default scale type preference for the traffic graphs widgetdwayne voelker2013-12-051-0/+25
| | | | | | | | | | | | | | I originally submitted this at https://redmine.pfsense.org/issues/2994 but it seems that is not used for commits now so I am adding it here. It works great on my box, and I can't see these changes causing any issues on other types. I like to have Autoscale (follow) set for the traffic graphs widget and hate having to click on Autoscale (up) to change it to follow every time I enter the dashboard page. This preference is written to the traffic graph widget section in config.xml
* Fix display of pools in the LB status widget and on the LB Virtual Server ↵jim-p2013-10-031-1/+1
| | | | status.
* Patch applied manually. Fixes bug #3245 and old interface namesWarren Baker2013-09-301-1/+1
|
* Show a count of the CPUs if more than one is detected, and show how those ↵jim-p2013-08-301-0/+5
| | | | CPUs are supplied by the hardware.
* Add patch from the ticket to fix #3149jim-p2013-08-201-3/+15
|
* typosCharlie Marshall2013-08-051-2/+2
|
* tighten overly broad regexes for SMART monitoringDaniel Becker2013-07-301-1/+1
|
* Catch adaX here toojim-p2013-07-301-2/+2
|
* revert part of commit 4cfcbd3 - removes blank option on firewall log widget ↵Charlie Marshall2013-07-261-2/+2
| | | | drop down menu
* Remove remaining hardcoded theme namesRenato Botelho2013-07-171-2/+2
|
* Some more tweaks to state and mbuf update/output on dashboard widget.jim-p2013-07-161-4/+3
|
* Add a meter for states, toojim-p2013-07-161-1/+5
|
* Fix idsjim-p2013-07-161-1/+1
|
* Make mbuf usage a meter, too.jim-p2013-07-161-2/+4
|
* Show totals for memory, swap, and disk usage.jim-p2013-07-161-3/+3
|
* Make dashboard update check respect nanobsd-vga, probably fixes #3078jim-p2013-07-071-1/+5
|
* Widget Firewall Logs FieldsN0YB2013-05-211-10/+10
| | | | | | In the Firewall Log Widget view time field is of more use than source port and protocol. Add time field and remove source port and protocol fields. Fields: Action, Time, Interface, Source IP, Destination IP & Port
* Add a way to hide the uname easily.jim-p2013-04-231-0/+2
|
* Tidy up "thermal_sonsors.widget.php" XHTMLColin Fleming2013-04-161-41/+6
| | | | | | | | Add CDATA section to SCRIPT tag Move the STYLE block into the "all.css" theme files Close INPUT tag Remove name statement from DIV tag Add summary statement to TABLE tag
* Tidy up "ipsec.widget.php" XHTML.Michele Di Maria2013-04-081-1/+1
|
* Do not display disabled services on services status widgetphildd2013-04-011-1/+1
|
* No need for nocsrf here tooErmal2013-03-211-2/+0
|
* Merge pull request #486 from 01101001c/masterErmal Luçi2013-03-211-0/+316
|\ | | | | Thermal Sensors Widget (for pfSense v2.1-BETA1 and up).
| * Thermal Sensors Widget (for pfSense v2.1-BETA1 and up).01101001c2013-03-181-0/+316
| | | | | | | | Original post: http://forum.pfsense.org/index.php/topic,59193.0.html
* | No need to set it for the system information widgetErmal2013-03-211-2/+0
| |
* | DynDNS status widget add 5 minute refreshPhil Davis2013-03-211-1/+4
| | | | | | It was easy to add the code to refresh the status every 5 minutes. I think 5 minutes is a reasonable refresh time for dynamic DNS.
* | DynDNS status widget async updatePhil Davis2013-03-201-18/+56
|/ | | | The Dynamic DNS status widget performs remote operations to the www to check the cached dynamic DNS IP against the actual current public-facing IP. When an external link is slow, or particularly when the cable is plugged in (it seems up) but actually the internet is down, it takes a long time for a response from http://checkip.dyndns.com/ to time out. The dashboard page hangs in a half-drawn state (up to drawing the DynDNS status table) for up to 30 seconds. This change puts the code that does these external operations into some ajax/Java script that runs after the dashboard has drawn up. Code concept unashamedly stolen from the system information widget.
* Diag DNS Lookup Dialog OutputN0YB2013-03-161-2/+6
| | | | | Display DNS lookup results in a dialog box rather than browsing away from the current page (Dashboard Firewall Widget or Status: System logs: Firewall) to the diag DNS page. Especially useful when filtering so that filter does not have to be reposted to return to the current page.
* Services Status Widget remove leftover >Phil Davis2013-03-091-1/+1
|
* Merge pull request #461 from ExolonDX/branch_32Jim P2013-03-051-13/+13
|\ | | | | Tidy up "wol" widget XHTML
| * Tidy up "wol" widget XHTMLColin Fleming2013-03-051-13/+13
| | | | | | | | | | | | | | | | Added summary to table tag Added ALT to img tag Closed IMG tag Moved nowrap to class definition Deprecated the ampersand in HREF
* | Merge pull request #460 from ExolonDX/branch_31Jim P2013-03-051-6/+6
|\ \ | | | | | | Tidy up "smart" widget XHTML
| * | Tidy up "smart" widget XHTMLColin Fleming2013-03-051-6/+6
| |/ | | | | | | | | Added a new include file. Added summart to table tag
* | Merge pull request #459 from ExolonDX/branch_30Jim P2013-03-051-13/+15
|\ \ | | | | | | Tidy up "services" widget XHTML
| * | Tidy up "services" widget XHTMLColin Fleming2013-03-051-13/+15
| |/ | | | | | | | | | | | | | | | | Added ALT to img tags Closed off IMG tags Deprecated the ampersand in HREF tag Added summary to table tags Moved nowrap to class definition Tidied up the CDATA section in scripts.
* | Merge pull request #458 from ExolonDX/branch_28Jim P2013-03-052-17/+19
|\ \ | | | | | | Tidy up "picture" and "rss" widget XHTML
| * | Tidy up widget XHTMLColin Fleming2013-03-052-17/+19
| |/ | | | | | | | | | | | | | | | | Close input tags Change target _NEW to _BLANK Add ALT to img tags Add CDATA sections to scipts. Changed name in FORM tag to be different, not allowed to have the same "name" in XHMTL
* | Merge pull request #457 from ExolonDX/branch_27Jim P2013-03-051-20/+26
|\ \ | | | | | | Tidy up "log" widget XHTML
| * | Tidy up "log" widget XHTMLColin Fleming2013-03-051-20/+26
| |/ | | | | | | | | | | | | | | | | Add CDATA section to scripts Close INPUT tag Deprecate HTML boolean operators SELECTED and CHECKED Removed duplicate class Added summary to table Moved norwap to class definition
* | Merge pull request #456 from ExolonDX/branch_26Jim P2013-03-052-13/+11
|\ \ | | | | | | Tidy up "ipsec" and "load balancer" widgets XHTML
| * | Tidy up widgets XHTMLColin Fleming2013-03-052-13/+11
| |/ | | | | | | | | Add summary to TABLE tags Moved nowrap to class definition
* | Merge pull request #455 from ExolonDX/branch_25Jim P2013-03-052-10/+12
|\ \ | | | | | | Tidy up "gmirror" and "installed packages" widgets XHTML
| * | Tidy up widgets XHTMLColin Fleming2013-03-052-10/+12
| |/ | | | | | | | | | | | | Added summary to TABLE tags Closed BR tags Added alt to IMG tags Tidied up CDATA section in scritps.
* | Merge pull request #454 from ExolonDX/branch_23Jim P2013-03-051-5/+6
|\ \ | | | | | | Tidy up "gateways" widgets XHTML
OpenPOWER on IntegriCloud