Add body padding on pages without menu (wizards, login page, etc.)
Refs. #34
Merge pull request #34 from sbeaver-netgate/bootstrap
Allow top navbar to resize without overwriting the page
apply r/o state to name of system-groups
refs #18
Some bugfixes, converted addPrivs
Select - fix selected for multiple (again), correct order in js
Merge remote-tracking branch 'upstream/master' into origin/master
Button - fix title when not <a>, Input - no need for tempvar
Add copyright headers to Form classes
Convert System > Auth servers
Add option for wireless standard "auto", to omit "mode" entirely from ifconfig. This shouldn't be necessary, but specifying mode has proven to trigger driver problems that don't exist if it's left unspecified (such as FreeBSD PR 198680). Chosing "auto" fixes ath(4) BSS mode issues otherwise preventing it from connecting.
change the location of jquery-ui images in each theme's css file
Merge pull request #1571 from phil-davis/patch-2
Cleanup code path when adding a new user
1) Only attempt to delete the oldusername if it actually was non-empty - at the moment errors are logged in the system log when adding a new user, because the code was trying to delete the user name "".2) Call local_user_set() first to create (change, whatever) the user record. This makes the user record exist for a new user. Then call local_user_set_groups() to sort out what groups the user should be in or not in. The existing code would fail to add a new user to the specified group/s because local_user_set_groups() was called too early, before the user actually existed....
Do not allow VLAN tag zero
At the moment you can make a VLAN with tag 0. The input validation does not catch it because when $_POST['tag'] = "0" that evaluates to false by PHP.Always make the checks on 'tag' value whenever the 'tag' key is set at all. If the (required) 'tag' key is not set, then that is already checked for by do_input_validation().
Merge pull request #1562 from phil-davis/usr-review1
Initial commit for Interface > VLANs bootstrap convert
remove custom data-toggle=disable in favor of working but ugly collapse
fixes #24
pfSense - unbreak javascripts, correct split into methods
Convert main Usermanager
Minor fixes in forms, introduce Textarea
Button - make sure we correctly escape link & textSelect - with multiple selected values; look at keys instead of valuesStaticText - switch Input::__construct argsTextarea - introduce
Code Style sbin tmp usr
Bits and pieces from sbin tmp and usr but not yet usr/local/www
pfSsh.php readline function return value
This just looks wrong. But I guess the code path never comes through here because function readline() already exists in the environment of this script.
txpower was disabled for good reason it would appear, it triggers syntax errors in some configurations. Disable it again since it's been disabled for years, and comment out the user-facing config portion for now since it doesn't do anything. Ticket #4516
Apply WME input validation to all modes, not just hostap. Ticket #4516
Default to 11ng if an option hasn't been configured. Previously we let the browser pick the first in the list (the first the card reported as available), which ended up being 802.11b. Ticket #4516
Default to WPA2, AES for new wireless interface configs. Ticket #4516
Auto-size the interface box on the bridge edit page.
touch up interfaces.php text
Require WPA PSK where WPA-PSK is enabled. Clean up some other text. Ticket #4516
clean up input errors text
Fix up text, remove "only for Atheros" since the option is only shown if a compatible card exists.
"Auto" channel with hostap doesn't work correctly at the moment, force choosing a specific channel with hostap mode for now.
add more wireless validation. Ticket #4516
Add more validation for wireless config settings. Ticket #4516
Add more input validation for wireless parameters. Ticket #4516
Touch up wifi text
clean up unique IDs text a bit.
Proper fix #4443, do not unset carp entry when content differ, also set correct real interface and use subnet to check IP protocol
Save vip interface and subnet to use to delete old vips from secondary nodes. Fixes #4446
Revert "Use a consistent variable name here. related to Ticket #4446"
This reverts commit 309162b96d6ad0db09c132cc0aabc890bfe1909f.
add granular control of state timeouts. Ticket #4509
Conflicts: etc/inc/filter.inc
Remove BEAST protection option since default cipher is now good and works with hifn cards
Merge pull request #1549 from phil-davis/patch-2
Merge pull request #1550 from phil-davis/password-lock-symbol
Merge pull request #1548 from phil-davis/pencils
update description after adaptive start/end default change.
Use a consistent variable name here. related to Ticket #4446
Conflicts: usr/local/www/xmlrpc.php
Don't enable interfaces_use by default. Add checkbox to enable on Advancedtab, in case there are scenarios where it's desirable. Ticket #4341
Fixes #4427 Correct traffic shaper wizard to properly save and use Voip provided settings
Fix password box cursor position
Similar tohttps://github.com/pfsense/pfsense/commit/dedc40f7ded5f88aee4720aa8a3a57667b975254The password field shows the little lock icon, but the text input areastarts over the top of the icon and as I type in the field the password...
Return object after instantiation
Fix Form_Section so you can add classes
Make it possible to add multiple classes at once
Fix $title
Fix SNMP Bind Interface list in master
The format of the array returned by get_possible_listen_ips() was changed.This use of the returned array was not quite changed correctly. This fixes it so the drop-down list of SNMP Bind Interfaces is displayed correctly....
Comment missing function for now.
Refs. #22
Bind collapsable behaviour to options
Refs. #21
Revert "Fixes #4446 Correct ipalias removal on top of carp during configuration sync."
master works differently and get_real_interface() resolves vips as well.
This reverts commit 8896fe1cebdc97dcbeb59249f3bb2abd1601b979.
Fixes #4446 Correct ipalias removal on top of carp during configuration sync.
Pencil symbols
These are places in the GUI where the cursor sits not in the far leftside of the input box and there is odd-looking white space to the leftof the cursor. Normally there would be a little input graphic in thewhite space to the left of the cursor (a pencil, a computer screen, a...
Allow reassignment from PPP types to DHCP. From testing, it appears to work OK, this input validation appears to be outdated.If there is some edge case that this catches, perhaps it needs to be a more specific test.
Add missing 'break' statement that broke switching from a PPP type to 'none'.
Merge pull request #1544 from phil-davis/patch-4
Merge pull request #1542 from phil-davis/patch-2
Add missing opening bracket
Remove extra closing brackets
$ldescr variable is not assigned a value and all 'Outgoing Network Interfaces' show Localhost as a name on UI
Missing $
Merge branch 'bootstrap' of github.com:SjonHortensius/pfsense into bootstrap
converted usermanager_settings and setting_test
Convert to bootstrap
Revert "Convert to bootstrap"
This reverts commit 89544eb50215903d24f56c4f668c81962670817a.
Form - add setAction for adding custom _GET parameters
Multiple buttons in form need spacing
fixes #19
Button - renamed parameter, put $title into value attribute
refs #11
Update help to current config structure, touch up text while here. Fixes #4492
Check for console="comconsole* rather than just comconsole in loader.conf, so it doesn't match just having comconsole_speed in loader.conf. Ticket #4464
clarify Button, centralize A vs INPUT logic
refs b125fab2ba
Introduce Form_Button, which can morph into <a class=btn>
fixes #11
Merge pull request #13 from psophis/interface-interface-groups
migrated Interface > interface groups
Initial commit for Interface > Interface Groups bootstrap convert
correct a typo; addGlobal is a Form method, so don't do Section::
refs a97531c5e5e2f1f41
firewall_rules_edit - now properly converted
this file now contains all original names for inputs, fixes #16
After instantiation return object. Return object after setWidth.
Updated even more pages to new Form setup (include names)
refs #16
Major change: require caller to specify name of inputs
no longer do we automatically determine an input-name; it meant a lot ofbackend-changes (or forceName calls). This commit fixes all occurencesexcept for firewall_rules_edit
removed custom setSubmit, using new addGlobal for hidden input
refs #9
moved setSubmit to addGlobal, to be used for hidden inputs
fixes #10, #11
Replaced addSubmit by addGlobal, which will be used for hidden inputs
Group - add support for additional classes by using Element::getHtmlClassInput - if we have no columnClasses or help, don't wrap ourself in DIV
fix typos, pending actual layout
Merge pull request #15 from SanderVanLeeuwen/bootstrap
Pass checkbox value to parent constructor
Globally correct a few typos
Expand CARP demotion error, add button to reset demotion status.
Initial bootstrap rewrite for system_advanced_sysctl.php
TODO:- Hide id label on re-edit- Add cancel button to edit