summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_dhcpv6.php
Commit message (Collapse)AuthorAgeFilesLines
* Miscellanous Textual Corrections - Add missing dots, normalize caseNewEraCracker2016-05-161-1/+1
| | | | (cherry picked from commit cb6c20a997eeb77b3529e157cd512fabb4ff69f0)
* Miscellanous Textual Corrections - Add missing dots to phrasesNewEraCracker2016-05-111-2/+2
| | | | (cherry picked from commit e4c7d45fc7a294817325354e13f4d5bc4987739e)
* Merge pull request #2814 from NOYB/Services_/_DHCP_-_Remove_PersonalizationsStephen Beaver2016-04-041-5/+5
| | | | (cherry picked from commit b68e48f20c6ae99786e67372f802d16aacf22de3)
* Allow configuring RAs when DHCPv6 Relay is enabled. Ticket #6063Chris Buechler2016-04-021-3/+6
|
* Reengineer Form_Button setAttributePhil Davis2016-03-201-15/+5
| | | | | | As per what was done for https://github.com/pfsense/pfsense/pull/2765 - do it to the rest of them. Seems to work OK.
* Redmine #5972 Display Advanced settings on page loadPhil Davis2016-03-151-78/+205
| | | | If there are non-default advanced settings, then the relevant fields are displayed on page load. Advanced button behavior is standardized as described in redmine #5994
* Revert "Merge pull request #2728 from phil-davis/form_button"Renato Botelho2016-03-151-7/+7
| | | | | This reverts commit a32bed49516f3df3d104a5026a5b2c74451f348f, reversing changes made to 9ec9978267a5d1985d6da8ba35d52b7174239d2f.
* Resolve conflicts with masterPhil Davis2016-03-111-2/+2
|\
| * Fix $POST checks so they do not depend on string SavePhil Davis2016-03-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | This prevents problems when Save is translated to other languages. Note: This is the only remaining place I could find with this issue. There are other pieces of code that do: ``` if ($_POST['save'] == gettext("Save")) ``` which also works, but looks a bit ugly. I left those alone, since they do work OK in any language.
* | Internationalize Form_Button textPhil Davis2016-03-111-7/+7
|/ | | | | | 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.
* Fix some Save button quirks. Ticket #5965jim-p2016-03-101-1/+1
|
* Advanced button consistency. Ticket #5965jim-p2016-03-101-15/+25
|
* More icon and button consistency fixes. Ticket #5965jim-p2016-03-101-4/+1
|
* Fixed 5971Stephen Beaver2016-03-091-0/+2
|
* Icon consistency in Repeatable blocks. Ticket #5965jim-p2016-03-091-3/+7
|
* A PD-obtained subnet is always a /64 on the interface, so should be shown as ↵Chris Buechler2016-03-031-1/+1
| | | | such here in DHCPv6 server. Ticket #3029
* Hide additional bootp options when it's disabled, fixes #5914Renato Botelho2016-02-251-2/+7
|
* Fix indentRenato Botelho2016-02-251-10/+10
|
* Move the DHCPv6 apply action into a function. Capture the apply and save ↵jim-p2016-02-241-34/+40
| | | | actions separately and only perform the required task. Fixes #5910
* Fixed #5914Stephen Beaver2016-02-211-6/+21
| | | | COntrol panels via jQuery for more control
* clean up textChris Buechler2016-02-201-1/+1
|
* DHCPv6 clean ups for PD. Ticket #3029Chris Buechler2016-02-201-2/+7
|
* Ticket #3029Renato Botelho2016-02-191-5/+13
| | | | Fix DHCPv6 GUI to work with PD length != 64
* Ticket #3029Renato Botelho2016-02-191-10/+27
| | | | | | | Import patch from @Robert-Nelson to enable DHCPv6 Server/RA to interfaces configured to track DHCP-PD This patch only works for PD with length 64
* Make prefix delegation range check case insensitiveRenato Botelho2016-02-181-2/+4
|
* Unbreak services_dhcpv6.phpRenato Botelho2016-02-181-4/+12
|
* Validate Prefix Delegation range to make sure addresses match first network ↵Renato Botelho2016-02-181-0/+24
| | | | address, otherwise DHCPd will silently fail
* Fix range and prefix delegation range help text to match From/To in correct ↵Renato Botelho2016-02-181-11/+4
| | | | order
* Simplify logicRenato Botelho2016-02-181-3/+5
|
* Simplify logicRenato Botelho2016-02-181-2/+5
|
* Fix #4675Renato Botelho2016-02-171-0/+26
| | | | | | | | | | Following bugs and improvements on DHCPv6 DDNS area, obtained from PR #1638 from @Robert-Nelson: - Use correct domain (ddnsdomain) instead of (domain) - The option "deny client-updates" wasn't being set so forward entries weren't being added. Allow user to chose between allow, deny or ignore - Implement reverse DNZ zone information (PTR)
* Fix DHCPv6 Relay detection on DHCPv6 Server page. It broke due to dhcrelay6 ↵k-paulius2016-02-141-6/+9
| | | | config format changes.
* Rename 'DHCPv6 Server/RA' to 'DHCPv6 Server & RA' so it does not clash with ↵k-paulius2016-02-141-1/+1
| | | | breadcrumb separator.
* Show interface name in the breadcrumb on DHCPv6 Server pagek-paulius2016-02-131-1/+6
|
* Synchronize page titles with tab titles. Rename some titles in order to be ↵k-paulius2016-02-131-1/+1
| | | | more consistent.
* Convert section titles to title casek-paulius2016-02-101-1/+1
|
* Standardize print_apply_box usagePhil Davis2016-01-271-1/+1
| | | | | | | | | | 1) For the translators, it should be better to do it consistently. Then they only need to have 1 translation of "You must apply the changes in order for them to take effect" and can translate each of the other custom sentences individually. 2) The full-stop should always go at the end of the sentence, inside the gettext(). There are some languages where the full-stop is not the same as European. e.g. In Nepal we use the vertical bar for end of sentence.
* Internationalize services_d*Phil Davis2016-01-261-8/+14
|
* add call gettext function in the services menubruno2016-01-251-1/+1
|
* Fix #5794 remove print_info_box_np chackes for gettext("apply")Phil Davis2016-01-221-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | 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().
* Fix typoStephen Beaver2016-01-151-1/+1
|
* Display additional ooptions if value not emptyStephen Beaver2016-01-151-3/+7
|
* Fixed #5772Stephen Beaver2016-01-151-58/+42
|
* Encode DHCP/DHCPv6 server additional BOOTP text options before save to XML ↵Renato Botelho2016-01-151-2/+2
| | | | to preserve data. It fixes #5623
* Improved infoblock system no longer needs sufficies if more than one per pageStephen Beaver2016-01-121-1/+1
| | | | Removed long commented out script
* Redmine #5759 print_info_box stylePhil Davis2016-01-111-3/+6
| | | | Define the 'success' 'info' etc style of calls to print_info_box()
* Remove $closehead variableColin Fleming2015-12-191-1/+0
| | | | Remove unused variable $closehead
* Code style services dhcp dnsmasq dyndnsPhil Davis2015-12-161-32/+39
|
* Remove all pfSense_MODULE and pfSense_BUILDER_BINARIES definitions, whatever ↵Renato Botelho2015-12-151-4/+0
| | | | was the reason they were added, it was never finished and it's not being used
* Fixed #5637Stephen Beaver2015-12-141-4/+4
|
OpenPOWER on IntegriCloud