summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Cleaning and refining the HTML.HEADmasterZach LeBar1980-02-234-30/+30
|
* Cleaned up HTML in 'status-html.lsp' and 'displayitem()'.Zach LeBar1980-02-122-19/+23
| | | | Began removing the use of <dl>, <dd>, and <dt> tags for more semantic choices.
* Cleaned up HTML being output by 'displaycommandresults()'.Zach LeBar1980-02-121-5/+5
|
* Cleaned up index.html and template-html.lspZach LeBar1980-02-092-150/+100
| | | | Refined the HTML in both to remove extraneous elements, and adjust ids and classnames for more succinct code.
* Force IE to use Standards Mode when rendering the page.Zach LeBar2012-07-171-0/+1
|
* Shoot the engineer and bump version to 0.15.0v0.15.0Ted Trask2012-07-011-1/+1
|
* Fixed form for creating new userTed Trask2012-05-081-1/+1
|
* Proper fix for bug 1131Ted Trask2012-05-081-20/+14
|
* Fix bug 1131 where session data invalid after updating logged in userTed Trask2012-05-081-4/+20
|
* Require modelfunctions setfiledetails and write_file_with_audit to take self ↵Ted Trask2012-04-241-17/+2
| | | | parameter
* Removed password-html.lsp from MakefileTed Trask2012-04-241-5/+4
|
* Modified roles controller to use new handle_form functionTed Trask2012-04-2310-94/+62
|
* Modified htmlviewfunctions to allow disabled options for multi-select boxesTed Trask2012-04-231-0/+1
|
* Updated password and skins for latest handle_form changesTed Trask2012-04-225-31/+28
|
* Change handle_form to pass self into get_function and set_functionTed Trask2012-04-222-4/+4
|
* Updated password to remove redirect_to_referrer and password-html viewTed Trask2012-04-193-30/+25
|
* Fixed status Install button to new form styleTed Trask2012-04-181-1/+1
|
* Not all special characters needed to be escaped because within quotesTed Trask2012-04-132-7/+3
|
* Fixed mvc logevent to escape special charactersTed Trask2012-04-131-1/+2
|
* Removed unnecessary functions from acf_cli-controllerTed Trask2012-03-071-14/+0
|
* Modify acf_www and acf_cli handle_clientdata to separate out functionality ↵Ted Trask2012-02-233-79/+34
| | | | for the two apps
* Removed controllerfunction.lua and moved handle_form and handle_clientdata ↵Ted Trask2012-02-238-108/+197
| | | | | | 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 Trask2012-02-232-10/+4
| | | | custom view
* Changed startstop to be a standard form by creating two model functions and ↵Ted Trask2012-02-223-39/+27
| | | | deleting the special controller function
* Make handle_form a little smarter about overriding form options from the modelTed Trask2012-02-221-2/+2
|
* Changed forms to always use 'submit' as name of submit button, plus allow ↵Ted Trask2012-02-223-5/+14
| | | | multiple submit buttons
* Modified html template to set focus to first useable fieldTed Trask2012-02-062-1/+7
|
* Changed acf-util/logon controller to use standard viewTed Trask2012-02-035-42/+3
|
* Allow viewtype override in clientdata in mvcTed Trask2012-02-031-0/+5
|
* Changed mvc and www view_resolvers to make auto_view workTed Trask2012-02-027-47/+35
| | | | | | Templates (for www) now receive a viewfunc, rather than using viewfile. Actions without views with viewtype of html, ajax, stream, or serialized will now be displayed using standard code. Fixed bug in acf-cli parameters messing up action
* Changed viewfunctions.lua to htmlviewfunctions.lua and made it an actual moduleTed Trask2012-02-0216-60/+51
| | | | | It should have been a module all along, but wasn't Unfortunately, this means changes to pretty much every view file
* Fixed acf-cli to work with new mvc.lua changesTed Trask2012-02-023-15/+13
|
* Fixed roles to only take the first roles file for a prefix/name combinationTed Trask2012-02-011-37/+50
|
* Fixed menubuilder to only take the first menu file for a prefix/controller ↵Ted Trask2012-01-241-44/+48
| | | | combination
* Modified require statements for acf.xTed Trask2012-01-2111-19/+16
|
* Must allow roles to have '-' characterTed Trask2012-01-191-2/+2
|
* Fixed bug in roles where last matching controller used, rather than firstTed Trask2012-01-191-1/+3
|
* Starting to reorganize mvc.lua and acf_www controllers to move www-specific ↵Ted Trask2012-01-194-84/+116
| | | | | | | things from mvc to acf_www, and visa versa Goal is to have mvc.lua more usable from a lua app Also affects acf-cli and acf_cli controller
* Fix the old method for requireing mvc.luaTed Trask2012-01-181-1/+2
|
* Fixed acf-cli usage to use new nameTed Trask2012-01-131-2/+2
|
* Bump version to 0.14.1v0.14.1Ted Trask2012-01-131-1/+1
|
* add compat scripts for acf-cli and mvc.luaNatanael Copa2012-01-123-1/+16
| | | | they log and forward to new location
* renamed acf_cli to acf-cliNatanael Copa2012-01-122-2/+2
| | | | better do it now. later it will be impossible
* acfpasswd: new tool to set passwords from comman lineNatanael Copa2012-01-122-3/+81
| | | | | | | | This tool allows users to set/reset an ACF password from command line. It also allows user to syncronize the ACF password with the system password so the ACF password becomes same as shell login password. This requires that the username exists in both /etc/acf/passwd and /etc/shadow
* Fixed bug in display of boolean defaultTed Trask2011-12-081-1/+1
|
* Bump version to 0.14.0Ted Trask2011-10-271-1/+1
|
* Fixed mksalt to use correct charactersTed Trask2011-10-271-3/+10
|
* authenticator: use salt and sha-512 encryptionNatanael Copa2011-10-271-2/+43
|
* Added logrotate script for acf.logTed Trask2011-10-173-1/+54
|
* Fix viewfunctions to not modify valuesTed Trask2011-09-121-0/+4
|