summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_usermanager.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix typojim-p2016-04-061-1/+1
|
* System / User Manager - Remove PersonalizationsNOYB2016-03-291-1/+1
| | | | Remove "you" personalizations.
* Reengineer Form_Button setAttributePhil Davis2016-03-201-6/+2
| | | | | | As per what was done for https://github.com/pfsense/pfsense/pull/2765 - do it to the rest of them. Seems to work OK.
* Revert "Merge pull request #2728 from phil-davis/form_button"Renato Botelho2016-03-151-2/+2
| | | | | This reverts commit a32bed49516f3df3d104a5026a5b2c74451f348f, reversing changes made to 9ec9978267a5d1985d6da8ba35d52b7174239d2f.
* Internationalize Form_Button textPhil Davis2016-03-111-2/+2
| | | | | | 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.
* Bring some consistency to the way most buttons are displayed (color, icons, ↵jim-p2016-03-091-6/+10
| | | | | | etc). Ticket #5965 Still need to review Advanced buttons and Repeatable block buttons.
* System / User Manager / Users / EditNOYB2016-03-071-1/+2
| | | | | | Warning: A table row was 4 columns wide and exceeded the column count established by the first row (3). Error: Stray end tag td.
* Fixed #5911Stephen Beaver2016-02-191-24/+0
|
* Restore infoblock functionality for nowStephen Beaver2016-02-191-1/+2
|
* Replace alert with callout. Removed mention about greyed out icon - that is ↵k-paulius2016-02-161-10/+6
| | | | no longer applicable.
* Bring all calls of print_info_box to same standardNewEraCracker2016-02-151-2/+2
| | | | The call itself to print_info_box already echoes the content. There is no need of additionally using the short-open-echo tag on those calls to echo return value. The previous implementation shouldn't yell any visible issues as return is 'NULL' (undefined) which casts to an empty string when printing. But, just for the sake of conformity, this changes are advisable in my opinion.
* Merge pull request #2637 from k-paulius/patch-6Stephen Beaver2016-02-141-2/+5
|\
| * Indicate in the breadcrumb if we are editing list item.k-paulius2016-02-141-2/+5
| |
* | Review alert wording. End sentence with period, remove redundant 'Warning', ↵k-paulius2016-02-141-2/+2
|/ | | | 'Error', etc. prefixes, since alerts are now color coded. Remove <b> tags.
* Synchronize page title with tab titlek-paulius2016-02-121-1/+1
|
* Convert section titles to title casek-paulius2016-02-101-2/+2
|
* Fix description disappering when editing admin userNewEraCracker2016-02-101-2/+5
|
* Internationalize system user and group codePhil Davis2016-02-081-5/+4
|
* UI ConsistencyPhil Davis2016-01-141-1/+1
| | | | | | | | | 1) Put the heading "Actions" at the top of all the "Actions" columns - it was on some and not others. 2) Some more consistent capitalization of panel titles etc. 3) Most interfaces section edit pages had a section titled like "GIF Configuration", "GRE Configuration". Make them all consistent, e.g. "QinQ Configuration" rather than "Interface QinQ Edit"...
* Fixed #5566Stephen Beaver2016-01-131-31/+36
|
* Allow thee use of multiple infoblock on a pageStephen Beaver2016-01-111-1/+1
|
* Change the automatic information block to look for <div class="infoblock" ↵Stephen Beaver2016-01-071-1/+1
| | | | | | instrad of <div id="infoblock" Just makes more sense to use a class for this
* Adjust more calls to print_info_box with unquoted stringsNewEraCracker2016-01-071-1/+1
|
* HTML Compliance - System / User Manager / UsersNOYB2015-12-281-1/+3
| | | | | | | A table row was 6 columns wide and exceeded the column count established by the first row (5). End tag div seen, but there were open elements. Unclosed element form. Close php tag.
* Remove $closehead variableColin Fleming2015-12-191-1/+0
| | | | Remove unused variable $closehead
* system_usermanager remove unused codePhil Davis2015-12-171-69/+45
| | | | | | | | | | | | | 1) Line 448 "Remove this certificate association? (Certificate will not be deleted)" there was the text "Delete" being displayed and not looking good, in addition to the trash bin icon. Just the trash bin icon seems to be all that is needed. 2) Old line 757 there was a weird-looking "else;" - that seemed to be effectively an empty "else" clause hanging off the end of the "if" block above it. In that case it does nothing and I have removed it. 3) Remove the extra indent of a whole lot of code below old line 757 that actually was not in any "else" clause. This lines it up the way it actually works. 4) Old line 758 $section = new Form_Section('User Certificates'); That made a new $section and chunks of code below it added stuff to the section and then it was thrown away - there was nothing that actually added the section tp the form. That code is similar to what was already above that uses build_cert_table() to make a new Form_StaticText(). So I deleted the code from old line 758 that was functionally useless. I think it all still works :) Please review this carefully and make sure I have done good things. The code seemed a bit of a mess to me - maybe it was, or maybe I have no idea!
* Code style system_*Phil Davis2015-12-171-28/+36
|
* 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
* Standardize breadcrumbs for User Manager tabsPhil Davis2015-12-071-1/+1
| | | | | | I think this is the way it should be to make it like everywhere else. Even when in the "Groups" pages, it is still reached by "System" "User Manager".
* Fixed #5389Stephen Beaver2015-11-301-11/+25
|
* Merge pull request #2134 from ExolonDX/branch_04Stephen Beaver2015-11-291-1/+1
|\
| * Type up SCRIPT tagsColin Fleming2015-11-291-1/+1
| |
* | Tidy up Boolean operators for HTML5Colin Fleming2015-11-291-2/+2
|/ | | | | Remove the XHTML standard Boolean operators (makes reading HTML much simpler).
* Calling all of these "Page" in the privilege name is redundant since they ↵jim-p2015-11-251-1/+1
| | | | are all pages and the "WebCfg" prefix implies they are pages.
* Added use of class autoloading (GUI stuff only)Doug Wollison2015-11-231-1/+0
| | | | | Any GUI script that loads the guiconfig.inc file will have access to the autoloader.
* fix moveOption functionbruno2015-11-191-1/+2
|
* Ticket #5471 another convert batch to font-awesome iconsJared Dillard2015-11-181-1/+1
|
* Fixed #5416Stephen Beaver2015-11-111-9/+14
|
* undo earlier commitheper2015-11-111-2/+2
|
* Merge pull request #2047 from heper/patch-2Stephen Beaver2015-11-101-8/+21
|\
| * fix submit & move back to seperate ACT==delprividheper2015-11-101-12/+13
| | | | | | the code for delprivid was inside ACT==save / when hitting 'save' the post-data for delprivid was already gone
| * partial fix Bug #5389heper2015-11-091-1/+13
| |
* | Fixed #5405Stephen Beaver2015-11-101-2/+0
| |
* | Completes #5400, #3999, #5405Stephen Beaver2015-11-101-1/+1
| | | | | | | | Mote: New ticket will be opened to provide IP address sorting
* | Fixed #5388Stephen Beaver2015-11-091-2/+2
|/
* Copyright and license cleanupRenato Botelho2015-11-091-2/+2
| | | | | | - Remove personal copyright from people who assigned it to employer (ESF) - Remove $Id$ - Remove extra spaces
* EOL whitespace and header consistency for wwwPhil Davis2015-11-091-1/+0
|
* Copyright updates Batch 2 of 3Stephen Beaver2015-11-061-2/+3
|
* Delete confirmation vi fa-trash automated via pfSense.jsStephen Beaver2015-11-051-1/+1
|
* Moved action-buttons in-line styling to pfSense.cssStephen Beaver2015-11-051-1/+1
|
OpenPOWER on IntegriCloud