Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the public variable auth, replaced by get_subauth function | Ted Trask | 2012-10-26 | 1 | -6/+1 |
| | |||||
* | Modified authenticator to add get_subauth function | Ted Trask | 2012-10-02 | 2 | -10/+29 |
| | | | | Once this function is used everywhere (instead of the auth public variable) we can remove the dependency on APP | ||||
* | Proper fix for bug 1131 | Ted Trask | 2012-05-08 | 1 | -20/+14 |
| | |||||
* | Fix bug 1131 where session data invalid after updating logged in user | Ted Trask | 2012-05-08 | 1 | -4/+20 |
| | |||||
* | Require modelfunctions setfiledetails and write_file_with_audit to take self ↵ | Ted Trask | 2012-04-24 | 1 | -17/+2 |
| | | | | parameter | ||||
* | Modified htmlviewfunctions to allow disabled options for multi-select boxes | Ted Trask | 2012-04-23 | 1 | -0/+1 |
| | |||||
* | Removed controllerfunction.lua and moved handle_form and handle_clientdata ↵ | Ted Trask | 2012-02-23 | 3 | -101/+0 |
| | | | | | | into mvc.lua mvc.lua has generic versions of the functions, overridden in acf_www and acf_cli with customizations | ||||
* | Made modelfunctions capitalize the startstop options, and now no need for a ↵ | Ted Trask | 2012-02-23 | 1 | -0/+4 |
| | | | | custom view | ||||
* | Changed startstop to be a standard form by creating two model functions and ↵ | Ted Trask | 2012-02-22 | 2 | -20/+20 |
| | | | | deleting the special controller function | ||||
* | Make handle_form a little smarter about overriding form options from the model | Ted Trask | 2012-02-22 | 1 | -2/+2 |
| | |||||
* | Changed forms to always use 'submit' as name of submit button, plus allow ↵ | Ted Trask | 2012-02-22 | 2 | -4/+13 |
| | | | | multiple submit buttons | ||||
* | Changed viewfunctions.lua to htmlviewfunctions.lua and made it an actual module | Ted Trask | 2012-02-02 | 3 | -21/+13 |
| | | | | | It should have been a module all along, but wasn't Unfortunately, this means changes to pretty much every view file | ||||
* | Fixed roles to only take the first roles file for a prefix/name combination | Ted Trask | 2012-02-01 | 1 | -37/+50 |
| | |||||
* | Fixed menubuilder to only take the first menu file for a prefix/controller ↵ | Ted Trask | 2012-01-24 | 1 | -44/+48 |
| | | | | combination | ||||
* | Modified require statements for acf.x | Ted Trask | 2012-01-21 | 5 | -8/+8 |
| | |||||
* | Must allow roles to have '-' character | Ted Trask | 2012-01-19 | 1 | -2/+2 |
| | |||||
* | Fixed bug in roles where last matching controller used, rather than first | Ted Trask | 2012-01-19 | 1 | -1/+3 |
| | |||||
* | Fixed bug in display of boolean default | Ted Trask | 2011-12-08 | 1 | -1/+1 |
| | |||||
* | Fixed mksalt to use correct characters | Ted Trask | 2011-10-27 | 1 | -3/+10 |
| | |||||
* | authenticator: use salt and sha-512 encryption | Natanael Copa | 2011-10-27 | 1 | -2/+43 |
| | |||||
* | Added logrotate script for acf.log | Ted Trask | 2011-10-17 | 1 | -0/+40 |
| | |||||
* | Fix viewfunctions to not modify values | Ted Trask | 2011-09-12 | 1 | -0/+4 |
| | |||||
* | Removed duplicates from determine_perms arrays | Ted Trask | 2011-06-27 | 1 | -5/+11 |
| | |||||
* | Fix parameter names with .'s to not assume clientdata converted to a table - ↵ | Ted Trask | 2010-12-10 | 1 | -1/+1 |
| | | | | bug fix for cli. | ||||
* | Fix viewfunctions for select/multi to display the label of the default, not ↵ | Ted Trask | 2010-12-08 | 1 | -1/+20 |
| | | | | the value. | ||||
* | Fixed bug in loading controllers to determine available actions. | Ted Trask | 2010-11-15 | 1 | -0/+3 |
| | |||||
* | In displaying a form, after sorting by seq, further sort params by name ↵ | Ted Trask | 2010-11-09 | 1 | -1/+1 |
| | | | | alphabetically. | ||||
* | Fix two bugs related to session lockout. | Ted Trask | 2010-10-29 | 1 | -2/+3 |
| | | | | | Parse the lockevent filename, was seeing user locked out because username was substring of another username. All active sessions were killed whenever anyone got locked out because of error with username processing. | ||||
* | Added output of default value for form items. | Ted Trask | 2010-10-29 | 1 | -0/+1 |
| | |||||
* | Update modelfunctions and viewfunctions to allow specifying option value and ↵ | Ted Trask | 2010-10-28 | 2 | -6/+20 |
| | | | | label. | ||||
* | Modifed displayform and handle_clientdata to allow cfe groups in forms, ↵ | Ted Trask | 2010-10-15 | 2 | -13/+29 |
| | | | | displayed under header tag. | ||||
* | Modified displayform to look for 'seq' field if order is not specified | Ted Trask | 2010-10-13 | 1 | -0/+15 |
| | |||||
* | Added home page (action) to user parameters and redirect there after login | Ted Trask | 2010-10-06 | 2 | -4/+37 |
| | | | | Moved get_all_permissions function from acf-util/roles-model to lib/roles | ||||
* | Made major changes to authenticator and roles to improve efficiency. | Ted Trask | 2010-09-28 | 2 | -252/+127 |
| | | | | | | | | | | Changed authenticator.lua to request individual users, rather than always loading everyone. Modified get_userinfo and removed get_userinfo_roles and get_userinfo_skin to remove unnecessary cfe processing. This was especially bad when retrieving the cfe options for skins and roles. This does break the interface used by other modules like acf-tinydns. Validation and cfe processing were moved into password-model, where they belong. Added global variables to authenticator and roles libraries so they can reuse data that was already generated. Modified logon-controller to only check for zero users if logon fails. | ||||
* | Allow authenticator library to be specified in the config file. | Ted Trask | 2010-09-03 | 1 | -1/+5 |
| | |||||
* | Fixed bug that caused exception when encountered invalid passwd line. | Ted Trask | 2010-08-10 | 1 | -1/+3 |
| | |||||
* | Fix minor exception when called from console client | Ted Trask | 2010-08-05 | 1 | -1/+1 |
| | |||||
* | Modified handling of boolean fields to allow them to be hidden. | Ted Trask | 2010-07-15 | 1 | -1/+1 |
| | |||||
* | Fixed typo in pagination code. | Ted Trask | 2010-07-06 | 1 | -1/+1 |
| | |||||
* | Fixed bug where single character entries in list were dropped. | Ted Trask | 2010-07-06 | 1 | -1/+1 |
| | |||||
* | Fixed typo bug and sort user skins. | Ted Trask | 2010-03-15 | 1 | -1/+2 |
| | |||||
* | Added sessiontimeout, lockouttime, and lockouteventlimit parameters to acf.conf. | Ted Trask | 2010-03-10 | 1 | -5/+5 |
| | |||||
* | Modified pagination to add display all link. | Ted Trask | 2010-03-10 | 1 | -8/+25 |
| | |||||
* | Fixed graphical error with pagination | Ted Trask | 2010-03-10 | 1 | -2/+2 |
| | |||||
* | Fix modelfunctions.write_file_with_audit to keep file permissions and ownership. | Ted Trask | 2010-02-23 | 1 | -0/+1 |
| | |||||
* | Changes to skins to allow user skins to be added | Ted Trask | 2010-01-21 | 1 | -2/+2 |
| | | | | page_info.skindir is no longer available to views, but staticdir is. | ||||
* | Added a skin to user options so users can choose own skin with user management. | Ted Trask | 2010-01-13 | 1 | -21/+46 |
| | |||||
* | Moved non-ACF-specific libraries to acf-lib package, moved cfe_unpack ↵ | Ted Trask | 2009-12-31 | 9 | -1782/+12 |
| | | | | function to viewfunctions library. | ||||
* | Allow appdir and libdir to be comma-separated lists of directories. | Ted Trask | 2009-12-31 | 2 | -56/+67 |
| | |||||
* | Cleaned up acf.conf, removed hardcoded /usr/share/acf paths. | Ted Trask | 2009-12-30 | 1 | -2/+2 |
| |