summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/interfaces.php
Commit message (Collapse)AuthorAgeFilesLines
* Miscellaneous Textual Correction - InterfacesNOYB2016-05-041-5/+5
| | | | (cherry picked from commit a6a344d8dfad5f2b8199a0cef6c8f401f5e06db8)
* Interfaces - PunctuationNOYB2016-04-191-5/+5
| | | | (cherry picked from commit b48f9816cd34bfee40825612a33f16215989a937)
* Correct input type to 'text' for RADIUS shared secret used by wireless ↵jim-p2016-04-041-2/+2
| | | | hostap interfaces. Fixes #6067
* Further text refinements for PR 2790jim-p2016-03-281-10/+10
|
* Merge pull request #2790 from NOYB/Interfaces_-_Word_Smithingjim-p2016-03-281-30/+30
|\
| * Remove "we" personalizations.NOYB2016-03-261-3/+3
| |
| * Remove errant line.NOYB2016-03-251-1/+0
| |
| * Interfaces - Word SmithingNOYB2016-03-251-29/+30
| | | | | | | | Word smithing to remove a bunch of personalization ("You").
* | Interfaces - Section Title - Reserved NetworksNOYB2016-03-261-1/+1
|/ | | | More accurate section title.
* Reengineer Form_Button setAttributePhil Davis2016-03-201-16/+10
| | | | | | As per what was done for https://github.com/pfsense/pfsense/pull/2765 - do it to the rest of them. Seems to work OK.
* Merge pull request #2737 from NOYB/HTML_Compliance_-_InterfacesStephen Beaver2016-03-151-3/+3
|\
| * HTML Compliance - InterfacesNOYB2016-03-151-3/+3
| | | | | | | | | | Error: Duplicate ID btnadvppp. <a class=btn btn-default btn-info href=interfaces_ppps_edit.php id=btnadvppp>
* | Revert "Merge pull request #2728 from phil-davis/form_button"Renato Botelho2016-03-151-10/+10
|/ | | | | This reverts commit a32bed49516f3df3d104a5026a5b2c74451f348f, reversing changes made to 9ec9978267a5d1985d6da8ba35d52b7174239d2f.
* Internationalize Form_Button textPhil Davis2016-03-111-10/+10
| | | | | | The text of a Form_Button is not translated internally. Some Form_Button calls already had the button text enclosed in gettext(), this does it for the remaining ones.
* More icon/button inconsistencies. Ticket #5965jim-p2016-03-101-30/+23
|
* More icon and button consistency fixes. Ticket #5965jim-p2016-03-101-4/+1
|
* Fix some more stragglers for icon/button consistency. Ticket #5965jim-p2016-03-091-12/+24
|
* Correct reference for 6rd. Ticket #5967Chris Buechler2016-03-081-1/+1
|
* Merge pull request #2716 from phil-davis/patch-6Stephen Beaver2016-03-081-1/+1
|\
| * Change invalid use of $iface in interfaces.phpPhil Davis2016-03-081-1/+1
| | | | | | | | | | | | | | | | | | At this point $iface is an undefined var. So the last test of this "if" statement is useless. That code fragment was introduced in commit https://github.com/pfsense/pfsense/commit/e4d40f41aafe00353c0069b457a0b1b0d6c20987 I think that code fragment came from a similar thing that is inside a "foreach $iface" loop in interfaces_pps_edit.php https://github.com/pfsense/pfsense/blob/master/src/usr/local/www/interfaces_ppps_edit.php#L300 and was pasted into the condition here back in 2011 without being changed. What I have done to the test here seems what would have been intended. Any better ideas are welcome.
* | Improve track6-prefix-id handlingPhil Davis2016-03-081-2/+6
|/ | | | | | | 1) The var $iface is not set at lines 2457 or 2464. It is a var that was used higher up local to build_ipv6interface_list() - it is not relevant to the single fields track6-prefix-id--hex and track6-prefix-id-max 2) When the user selects a different track6-interface then trigger update_track6_prefix() which will update the help text track6-prefix-id-range. Related to forum https://forum.pfsense.org/index.php?topic=107962.msg601309#msg601309 This pull request does not directly address the reported issue of the track6-prefix-id not "taking". It just fixes up some code issues that I noticed.
* Add track6 DHCP6 IPs back to interface when applying changes. Ticket #5945Chris Buechler2016-03-051-0/+9
|
* Fix DHCPv6 server check to allow track6. Ticket #3029Chris Buechler2016-03-011-1/+1
|
* Properly check the parent's MTU when changing a VLAN MTU.Luiz Otavio O Souza2016-02-211-6/+8
|
* Review alert wording.k-paulius2016-02-141-1/+2
|
* Interfaces - DHCP Advanced Options Checkbox VarsNOYB2016-02-141-9/+9
| | | | Correct the Enable Checkbox Var Names
* Interfaces - DHCP Advanced Options TweaksNOYB2016-02-141-31/+36
| | | | | | Lease requirements and requests typically contain large lists of options. Set the field width to use the available section space. Apply a few tweaks for better clarity and consistency between DHCP and DHCPv6. Include a more information link specific to each advanced panel.
* Convert section titles to title casek-paulius2016-02-101-13/+13
|
* Cleanup some text in wireless options and fix a description.jim-p2016-02-091-14/+14
|
* Adding ability to run dhcp6c in debug mode.k-paulius2016-02-041-0/+12
|
* Now that the fields on interfaces.php aren't hidden upon disabling the ↵Chris Buechler2016-02-041-18/+0
| | | | interface, we don't want to handle disable separately from everything else, as that discards all the changes other than disabling the interface. Everything else with handling bringing down of interfaces is still handled correctly. semi-related to Ticket #2453
* Select an interface to track is mandatoryRenato Botelho2016-01-271-0/+4
|
* Internationalize interfaces UI codePhil Davis2016-01-251-16/+16
|
* Fix #5794 remove print_info_box_np chackes for gettext("apply")Phil Davis2016-01-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | 1) Get rid of the stristr() checks to "guess" if an apply button should be used. 2) Change print_info_box() so it can take a button name of "close" , "apply" or none to decide which button to show. 3) Delete function print_info_box_np_undo() - nothing calls it. 4) Add new function print_apply_box() to provide an easy wrapper for print_info_box() with the parameters to be 'warning' level and 'apply' button. 5) Change print_info_box_np() calls to just print_info_box() or print_apply_box() as appropriate. There is 1 direct call to print_info_box_np() from vpn_ipsec_mobile.php remaining. That tries to make a "create" button. It was not working before this change. It needs to be sorted out and fixed separately. After this change there is no dependency on a string containing text like "apply" to make the apply button appear. Then we can work on re-engineering the internal code of print_info_box_np() print_info_box() and print_apply_box() to fit together however we like. It should be easy to preserving the current API to print_info_box() and print_apply_box().
* Remove redundant alias check and move group check to proper place, fixes #5795Renato Botelho2016-01-221-16/+9
|
* Do not let interface description to have same name of an interface group. ↵Renato Botelho2016-01-221-0/+8
| | | | Fixes #5795
* Add gettext to select option names where requiredStephen Beaver2016-01-211-1/+1
|
* Clarify input validation output. Ticket #5778Chris Buechler2016-01-181-1/+1
|
* Use current interface description for breadcrumbPhil Davis2016-01-181-1/+1
| | | | If you enter invalid stuff in the interface description - e.g. "123" - and press save, then you get a warning about it, but the breadcrumb changes to "Interfaces: 123" - the wrongly entered description (that was not applied). If you enter a valid string for 'descr' then by this point $wancfg has the new value anyway and so the breadcrumb will change correctly if you make a valid entry in 'descr' and save.
* Fix #5778 do not save changes if interface description matches an alias namePhil Davis2016-01-181-0/+10
| | | | | | | See https://redmine.pfsense.org/issues/5778 for details of how to reproduce the problem. Note that similar code to make the "Sorry, an alias with the name XXX already exists" message is also at the top of interfaces.inc - it compares the current interface descr from the config with the currently existing alias names. That check would help warn the user if someone managed to add an alias name that matched the interface name. I guess it was there from some time in the past when the alias edit code did not cross-validate the alias name with the interface descriptions. I have left that check there - it does no harm to have it "just in case". The new code that I added checks the proposed interface description in $_POST against the existing alias names and will give an input_error if there is a match.
* Reverting #5771 - No longer requiredStephen Beaver2016-01-151-20/+7
|
* Fixed #5771Stephen Beaver2016-01-151-7/+20
| | | | EXCEPT that the link in the help text does not point to the correct place (yet)
* Save adv_dhcp6_config_advanced value instread of just using it to un-hide ↵Stephen Beaver2016-01-081-4/+5
| | | | section
* Set checkboxes value to "Selected" (not "yes")Stephen Beaver2016-01-081-4/+8
|
* Fix typo password confirmheper2015-12-301-1/+1
| | | https://forum.pfsense.org/index.php?topic=104629.0
* FInished password hiding logic by ensuring $_POST['password'] != DMYPWD ↵Stephen Beaver2015-12-281-3/+9
| | | | before updating
* Added new addPassword method and password == password_confirm validation ↵Stephen Beaver2015-12-281-3/+16
| | | | where required.
* Remove $closehead variableColin Fleming2015-12-191-2/+0
| | | | Remove unused variable $closehead
* Merge pull request #2287 from NOYB/Interfaces_-_DHCP_Config_File_OverrideStephen Beaver2015-12-171-1/+1
|\
| * Interfaces - DHCP Config File OverrideNOYB2015-12-171-1/+1
| | | | | | | | Correct section label.
OpenPOWER on IntegriCloud