summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www
Commit message (Collapse)AuthorAgeFilesLines
* Set language early on a common place included everywhere. This fix some tar ↵Renato Botelho2015-12-141-9/+0
| | | | warnings 'Failed to set locale'
* Fix remaining copy/paste message from last commitRenato Botelho2015-12-141-1/+1
|
* Add icon on retrieving gw widgetRenato Botelho2015-12-141-1/+1
|
* fix traffic shaper tree font colorJared Dillard2015-12-131-1/+1
|
* Merge pull request #2214 from BBcan177/patch-3Renato Botelho2015-12-131-2/+2
|\
| * Mod to Services Status WidgetBBcan1772015-12-121-2/+2
| |
* | Merge pull request #2209 from NOYB/Status-System_Logs-Sortable_TableRenato Botelho2015-12-131-24/+28
|\ \
| * | Put newest at top/bottom text with Forward/Reverse Display radio buttons for ↵NOYB2015-12-111-3/+3
| | | | | | | | | | | | better clarity and more concise section description.
| * | Correct tbody end tag.NOYB2015-12-111-1/+1
| | |
| * | Status - System Logs - Sortable TableNOYB2015-12-111-21/+25
| | |
* | | Merge pull request #2208 from ExolonDX/branch_01Renato Botelho2015-12-131-26/+23
|\ \ \
| * | | Tidy up "status_queues.php"Colin Fleming2015-12-111-26/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove duplicate BODY Tidy up BR tag correctly Add COLPSAN statement to "interface" row Wrap BGCOLOR in a STYLE statement (should really be defined as a CLASS statement) Remove FONT tag Remove NAME statement in DIV tag Use double quotes for consistency
* | | | be more conciseJared Dillard2015-12-121-1/+1
| | | |
* | | | clean up webGUI feature help textJared Dillard2015-12-121-2/+2
| | | |
* | | | remove icon- color classesJared Dillard2015-12-121-24/+0
| |_|/ |/| |
* | | remove icon colors and add text colorsJared Dillard2015-12-121-23/+7
| | |
* | | Fixed #5620 change css classes from icon- to text-Jared Dillard2015-12-124-16/+16
| | |
* | | Logs filename changesPhil Davis2015-12-127-7/+7
| |/ |/|
* | Rename of files to better match their position in the memory structureStephen Beaver2015-12-1130-210/+210
| |
* | Don't allow log specific setting to override grepreverse option.NOYB2015-12-111-2/+2
| |
* | Add few comments for clarityNOYB2015-12-111-18/+38
| | | | | | | | | | | | | | Include table header titles in raw mode (time and message). In raw mode give all horizontal space not being consumed by the time field to the message filed. Provides more space so fewer entires to consume multiple vertical line space. Change table message field header title form "Log Message" to "Message" Include a write_config description.
* | Spelling CorrectionNOYB2015-12-111-1/+1
| | | | | | | | | | s/formated/formatted/ Thanks Phil
* | Status - System Logs - Manage LogNOYB2015-12-112-26/+270
|/ | | | | | | Build up th manage log section with options to override the "General Logging Options" settings on an individual log basis. Remove over exuberant gettext's. Set/adjust filter form field widths to be better fitting for the field types. Open/Close filter form based on filtering state.
* Gateway advanced parameter validationPhil Davis2015-12-111-31/+89
| | | | | | | | | | | | | This does what I can think of so far: 1) Make sure low latency < high latency, low loss < high loss 2) Loss interval must be at least latencyhigh otherwise every packet that was high latency would be counted as lost before it came back. (see note below) 3) averaging time period must be at least 2 times probe interval - it is not much of an "average" if it averages less than 2 probes :) 4) alert interval must be at least probe interval - there is no point recalculating the average latency and loss more often than once every probe interval. 5) Criteria for showing or hiding the advanced options on page load fixed up to account for all the fields now in the advanced section. 6) Additional information - I have written some stuff that I think is now helpful. Note: Currently the default loss interval is 500 and latencyhigh is also 500. This makes no sense to me. If a probe comes back in > 500ms then the thread that is waiting for the reply will have given up (loss interval has expired). So any packets with an RTT > 500ms will be considered lost. Therefore there will be no packets recorded with an RTT > 500ms. Therefore the average latency can never exceed latencyhigh. It seems to me that "loss interval" needs to be reasonably higher than "latencyhigh" in any sensible configuration. Thoughts?
* Merge pull request #2201 from phil-davis/patch-10Renato Botelho2015-12-111-1/+1
|\
| * apinger loss_interval array key namePhil Davis2015-12-111-1/+1
| |
* | dpinger help textPhil Davis2015-12-111-4/+4
|/ | | | The packet loss thresholds must still be in % ? milliseconds does not look valid. Other things are minor formatting.
* Ticket #5624: Welcome dpinger!Renato Botelho2015-12-105-122/+66
|
* Fix indentRenato Botelho2015-12-101-3/+3
|
* Simplify logic and break some long lines, no functional changesRenato Botelho2015-12-101-99/+78
|
* Remove calculated optionsRenato Botelho2015-12-101-87/+0
|
* Change apinger_default to dpinger_defaultRenato Botelho2015-12-101-32/+32
|
* Fixed #5602 by dynamically updating hte help text based on the cert selected.Stephen Beaver2015-12-102-5/+23
|
* Fixed #5617Stephen Beaver2015-12-104-6/+11
| | | | Fixed #5612
* Use the _title var to make the widget titlePhil Davis2015-12-103-31/+42
| | | | | | | | | | Each widget has an include file that already has the required widget title in a var like $dyn_dns_status_title $carp_status_title etc. Use that var to set the displayed title of the widget, rather than the stuff that was capitalizing the file name and then having a list of special cases... This meant the loop that includes the widget include files had to be moved higher up in the code.
* fix input colorJared Dillard2015-12-091-1/+1
|
* Merge pull request #2190 from phil-davis/r1Stephen Beaver2015-12-0910-90/+121
|\
| * Widgets format and white spacePhil Davis2015-12-0910-90/+121
| |
* | Merge pull request #2189 from phil-davis/patch-3Stephen Beaver2015-12-091-1/+1
|\ \
| * | OpenVPN Widget fix column header textPhil Davis2015-12-091-1/+1
| |/
* | Merge pull request #2188 from phil-davis/log-breadcrumbsStephen Beaver2015-12-093-5/+4
|\ \
| * | Standardize Firewall Logs breadcrumbsPhil Davis2015-12-093-5/+4
| |/
* | Interface Stats Widget make rows standard sizePhil Davis2015-12-091-1/+1
|/ | | | | | | The rows of data were taller than expected, and the name "Packets In", "Packets Out" etc. in the left column did not line up exactly horizontally with the numbers in the other columns. Seems to be because the "name" column was a "th" tag. If it is just "td" like the numbers then everything lines up and the row height is less (it then looks the same as other widgets that have this style of table). I put in the bold tag to keep the "Packets In" "Packets Out"... names bold. Is there some other fancy way that should be done with styles... somewhere, or is hardcoding a "b" tag OK? Note: This would also resolve the comments in forum topic https://forum.pfsense.org/index.php?topic=103605.0 - that is talking about the Interface Statistics Widget row spacing in 2.2.5 - where the rows are also taller than those on other widgets. Of course the poster of that thread would have to go to 2.3 to get the benefit here.
* fix widget header linksJared Dillard2015-12-081-5/+4
|
* change alert colors to match paletteJared Dillard2015-12-082-6/+34
|
* Added status page links to widget titlesStephen Beaver2015-12-082-3/+19
|
* Fix field description/name display of select_source package fields.jim-p2015-12-081-3/+3
|
* Fixed #5540Stephen Beaver2015-12-081-11/+16
|
* Create the required number of rows for NTP time serversPhil Davis2015-12-081-2/+2
| | | | | | | depending on how many are already defined in the config, making sure to always have a minimum of 1. Also I used the constant NUMTIMESERVERS that was defined up the top of this file to control the loop that limits the number saved to 10. Note: There also needs to be a limit on the number of rows of time server data allowed to be added - at the moment you can keep pressing the Add button and enter loads of them, only the first 10 are saved.
* Fix css pathStephen Beaver2015-12-072-2/+2
|
OpenPOWER on IntegriCloud