summaryrefslogtreecommitdiffstats
path: root/usr/local
Commit message (Collapse)AuthorAgeFilesLines
* Update/correct wireless status flags and capabilities list.jim-p2015-05-221-2/+2
| | | | There are many more possible flags, documented on the wiki: https://doc.pfsense.org/index.php/Wireless_Status
* Merge pull request #1673 from phil-davis/patch-2Renato Botelho2015-05-221-10/+21
|\
| * Be smarter about combinations of combinedfields and usecolspan2Phil Davis2015-05-221-10/+21
| | | | | | | | | | | | | | | | | | | | a) When we are doing combined fields and usecolspan2 is in effect, then usecolspan2 is also a signal that we want to spread the combined fields horizontally in a single row. In that case we want the combined fields to all be in a single "tr" tag enclosing them all. That was already working in that way. b) But if usecolspan2 is NOT in effect, then we want the combined fields to still run "together" but vertically under each other. In this case we want each field to be in its own "tr" tag. This change makes (b) happen. If combinedfields is not set, then each of the "if" tests here still follows the same path it did previously, so there should be no effect on the HTML output for any ordinary package fields. These are changes for master that correspond to https://github.com/pfsense/pfsense/pull/1672 on RELENG_2_2.
* | Code style vpn_pppoePhil Davis2015-05-222-120/+170
|/
* Correct descriptions on Key Rotation and Master Key Regeneration for wireless.jim-p2015-05-211-2/+2
|
* More combinedfields and usecolspan2 fixesPhil Davis2015-05-201-4/+12
| | | | | | | Actually the "tr" tag needs to be a single tag-pair that encloses all of the set of fields with combinedfields specified - combinedfields=begin is where the "tr" tag starts and combinedfields=end is where the "tr" tag ends, enclosing a whole set of combined fields. That allows usecolspan2 to work. In the previous change I had made it enclose every field in its own "tr" tag-pair That caused usecolspan2 to be ineffective at spreading the combined fields across the display. Also colspan needs to be initialised each time around the loop - it was getting applied to all fields further down the page after the first one it was used in. This is the version for master.
* Fix tr use for combinedfields in pkg xmlPhil Davis2015-05-201-5/+8
| | | | | When specifying combinedfields begin and end in a package XML file, IE reports some unexpected start tag messages. This is because some "td" tags are not enclosed in "tr" tags in these cases, both at the begin and end of the combinedfields table that is generated. Firefox seems to be forgiving of this. This has been investigated because BBscan177 who is developing pfBlockerNG is trying to use the combinedfields feature and it was not working so well. I will ask him to try these changes for RELENG_2_2 and confirm that they work. When combinedfields is not set, then the code path with this change results in the same HTML being output as previously, so it should not change the HTML generated for packages that do not use combinedfields - i.e. I claim not to have broken anything else :)
* Too many left curlies in pkg_edit.phpPhil Davis2015-05-191-1/+1
| | | I broke the syntax!
* Merge pull request #1662 from phil-davis/www-pkgRenato Botelho2015-05-196-966/+1151
|\
| * Code style WWW pkgPhil Davis2015-05-156-966/+1151
| | | | | | | | | | | | | | | | | | The syntax of these all seems good. Because the 2.3-DEVELOPMENT master does not currently have get_pkg_info implemented, the available packages tab always says "Unable to retrieve package info...". But I don't think I broke any code. This is integrated with the little changes for startdisplayingat var in pkg.php
* | Merge pull request #1665 from phil-davis/www-vpn-l2tpRenato Botelho2015-05-183-281/+323
|\ \
| * | Code style vpn_l2tpPhil Davis2015-05-183-281/+323
| |/
* | Remove artifacts from latin1 to utf8 conversionsJose Luis Duran2015-05-168-8/+8
|/ | | | | | String replacement: s/Ermal L.../Ermal Luçi/g
* Merge pull request #1660 from phil-davis/www-status-rrdRenato Botelho2015-05-153-650/+778
|\
| * Remove excess tabs status_rrd_graphPhil Davis2015-05-151-2/+2
| |
| * Code style WWW Status RRDPhil Davis2015-05-153-650/+778
| |
* | Merge pull request #1659 from phil-davis/www-statusRenato Botelho2015-05-1521-1446/+1774
|\ \
| * | Code style WWW StatusPhil Davis2015-05-1521-1446/+1774
| |/
* | Use correct variable to fix paginationRenato Botelho2015-05-151-3/+2
| |
* | Fix startingat var name typo in pkp.phpPhil Davis2015-05-151-1/+1
|/ | | | | | | | Even with this fix, the code does not make sense. The first test is: if ($startingat > -1) if it gets into the else, then $startingat must be negative. But the test in the "else" tests for >1 ??? Someone who knows what it really is supposed to do could fix it!
* Remove the "insert my MAC" feature from interfaces.php. It hasn't worked in ↵Chris Buechler2015-05-141-9/+0
| | | | a while (credit sbeaver for noticing), and the only thing it tends to accomplish is breaking people's connectivity from the system where they end up duplicating the MAC of their local system.
* Move pt_BR translation from ISO to UTF-8Renato Botelho2015-05-142-3390/+3386
|
* Move pt_BR directory, it's moving from ISO to UTF-8Renato Botelho2015-05-142-0/+0
|
* Merge pull request #1658 from phil-davis/patch-4Renato Botelho2015-05-141-3/+5
|\
| * Add some curlies in status_rrd_graph_imgPhil Davis2015-05-141-3/+5
| | | | | | | | These "if data" tests look like they should apply to all 4 lines below them. After sorting out this real-looking issue, I can mess with the rest of the formatting...
* | Merge pull request #1657 from phil-davis/patch-3Renato Botelho2015-05-141-4/+8
|\ \
| * | Cleanup code logic status_upnpPhil Davis2015-05-141-4/+8
| |/ | | | | | | | | | | 1) Variable $i is was set, incremented and not used. 2) "if preg_match" at line 94 had no curlies after it, so it was only applying to the first line after it ($rdr_proto = ...) It really looks like "if preg_match"should apply to the whole code chunk - settings the various "rdr*" vars and then spitting out the "tr" with the various matches values in the row. Somebody with some various UPnP enabled and running should test this to see if the status page still works with this change. I think it only makes a difference if $rdr_entries has some lines in it that do not match the regex - in that case the old code might have displayed some rubbish or (almost?) duplicated rows.
* | Merge pull request #1656 from phil-davis/patch-2Renato Botelho2015-05-141-4/+0
|\ \
| * | Remove unused nentries from status_lb_poolPhil Davis2015-05-141-4/+0
| |/
* | Merge pull request #1655 from phil-davis/patch-1Renato Botelho2015-05-141-2/+0
|\ \
| * | Remove unused var from status_gateways.phpPhil Davis2015-05-141-2/+0
| |/ | | | | I cannot see where "counter" is used.
* | Fix alias rename and delete bug #4701Phil Davis2015-05-142-10/+10
|/ | | | The old advancedoutbound key in config.xml is now called outbound.
* Delete load_balancer_relay*.php, they are not being usedRenato Botelho2015-05-134-1185/+0
|
* Merge pull request #1653 from phil-davis/lb-workRenato Botelho2015-05-1311-688/+748
|\
| * Code style Load BalancerPhil Davis2015-05-1311-688/+748
| |
* | Merge pull request #1651 from phil-davis/interfaces-otherRenato Botelho2015-05-1319-1779/+2221
|\ \
| * | Code style interfaces miscellaneous filesPhil Davis2015-05-1319-1779/+2221
| |/
* | Merge pull request #1650 from phil-davis/interfaces-phpRenato Botelho2015-05-131-449/+681
|\ \
| * | Code style interfaces.phpPhil Davis2015-05-131-449/+681
| |/
* | Slash-select should be inside if in load_balancer_pool_editPhil Davis2015-05-131-1/+1
|/ | | otherwise there is an unbalanced slash-select when the else happens (if there are no load-balancer monitors defined)
* Handle extra column on floating rules tabPhil Davis2015-05-111-1/+8
| | | | | when there are no floating rules to display. The box needs to span 11 columns.
* Merge pull request #1646 from phil-davis/firewall-rulesRenato Botelho2015-05-112-713/+944
|\
| * Merge with masterPhil Davis2015-05-112-4/+69
| |\
| * | Code style Firewall RulesPhil Davis2015-05-112-681/+907
| | |
* | | Merge pull request #1647 from phil-davis/firewall-shaperRenato Botelho2015-05-115-748/+822
|\ \ \ | |_|/ |/| |
| * | Code style firewall shaperPhil Davis2015-05-115-748/+822
| |/
* | Merge pull request #1637 from alex-berger/dhcp-staticleases-unique-checkRenato Botelho2015-05-111-3/+7
|\ \
| * | fixed indent according to the style guide.Berger Alexander2015-05-111-12/+12
| | |
| * | Currently pfsense enforces unique unqualified hostnames for static dhcp ↵Berger Alexander2015-05-071-9/+13
| | | | | | | | | | | | | | | | | | leases, which is not correct as only the fully qualified hostname (hostname + domainname) must be unique. With this commit the old validation logic for uniqeness is modified such that hostnames no longer need to be unique and at the same time the fully qualified hostname hast to be unique. This change makes it possible to have host with identical hostnames in different (sub)domains. For example myhost.sales.acme.com and myhost.support.acme.com will now be possible.
* | | Merge pull request #1616 from Robert-Nelson/floating-interfacesRenato Botelho2015-05-111-1/+57
|\ \ \ | |_|/ |/| |
OpenPOWER on IntegriCloud