Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-06-08 | Create blank view for groups | Malf Furious | 1 | -0/+27 | |
Finish initializing the Obj MVC by writing an empty view/action for groups. | |||||
2016-06-01 | Update newgroup modal | Malf Furious | 1 | -1/+1 | |
Made the name field (the only field) on this form as required. | |||||
2016-06-01 | Add modal view to create a new user group | Malf Furious | 2 | -0/+61 | |
2016-05-29 | Add copyright notice to application view files | Malf Furious | 18 | -0/+304 | |
2016-05-22 | Add delete account button to all users panels | Malf Furious | 1 | -0/+11 | |
Added button for admins to remove any user account | |||||
2016-05-22 | Create view for delete account MVC | Malf Furious | 1 | -0/+24 | |
This page prompts for user password before actually deleteing their account. | |||||
2016-05-21 | Add MVC Deleteacct | Malf Furious | 1 | -0/+13 | |
This will prompt the user for their password if they opt to delete their own account. This is to prevent malicious attempt by others to trick users into having there accounts deleted by way of a XSS attack. | |||||
2016-05-21 | Add 'Delete Account' button to user settings form | Malf Furious | 1 | -0/+5 | |
Links to a confirmation page which will require the user's current password to succeed. | |||||
2016-05-01 | Update setting modal to allow admins to remove other users' head images | Malf Furious | 1 | -1/+1 | |
2016-05-01 | Update setting modal to allow user to remove their own head image | Malf Furious | 1 | -1/+1 | |
2016-05-01 | Add global javascript file scrott.js | Malf Furious | 1 | -0/+1 | |
Included initial function assertConfirm(), function to present user an "Are you sure?" prompt before submitting a web form. | |||||
2016-05-01 | Update form handler for common/setting-modal, all users tab | Malf Furious | 1 | -2/+2 | |
Now supports file upload to replace the user's head image | |||||
2016-05-01 | Update form handler for common/setting-modal, user tab | Malf Furious | 1 | -2/+2 | |
Now supports file upload to replace the user's head image | |||||
2016-05-01 | Add view markup for showing user head images to the all users collapse panes | Malf Furious | 1 | -7/+31 | |
2016-05-01 | Update setting modal, user tab to display user head image | Malf Furious | 1 | -11/+36 | |
Also restructured the web form a little and added the form-group to select a new image to upload | |||||
2016-03-27 | Add collapsable panel for editing each user's settings to admin setting tab | Malf Furious | 1 | -0/+62 | |
Also, added relevant initialization code to common model | |||||
2016-03-27 | Fix maxlengths for fields on user objects | Malf Furious | 1 | -5/+5 | |
Usernames, aliai, and email addresses are capped at 50 chars in the backend | |||||
2016-03-27 | Fix <label>s and <input>s that use unnecessary DOM IDs | Malf Furious | 3 | -36/+36 | |
I dont need to give these elements IDs, so I'm not going to | |||||
2016-03-27 | Add view for setting modal, all users admin tab | Malf Furious | 1 | -1/+53 | |
2016-03-27 | Move getUserGlyphicon function from common model into user class | Malf Furious | 1 | -1/+1 | |
2016-03-27 | Alter representation of form boolean values | Malf Furious | 1 | -2/+2 | |
Changed how Form() objects model true and false for boolean fields. Was "true" and "false", is now "1" and "0", respectivly. This is to address how Mysql handles these values as they are pushed to the db. | |||||
2016-03-27 | Populate admin setting fields on page load | Malf Furious | 1 | -4/+4 | |
Added logic to set initial state of fields on the setting modal's admin tab | |||||
2016-03-27 | Add view for Setting modal, admin tab | Malf Furious | 1 | -1/+39 | |
2016-03-27 | Add User settings tab for Setting modal | Malf Furious | 1 | -5/+82 | |
This commit adds the basic structure to the Setting modal in Common MVC. The meat of this commit is the content for the webform for the modal's form for user account settings. The next commit should implement form submission handling. | |||||
2016-03-27 | Only include the Setting modal if currently logged in | Malf Furious | 1 | -1/+3 | |
This prevents sending un-necessary HTML to the client on login/signup pages and allows code on the setting modal to assume that getCurrentUser() will always return an object. | |||||
2016-03-27 | Add settings modal to Common MVC | Malf Furious | 2 | -0/+27 | |
This modal dialog will be used to change app and object settings from any page in the app. The link to open it is added to the user button menu. | |||||
2016-03-27 | Update application navbar | Malf Furious | 1 | -1/+14 | |
The navbar now has a different view when logged in. I added the 'user button' which shows alert info and has a menu. Currently, the only menu item is 'Log out'. | |||||
2016-03-27 | Add Dashboard MVC default view | Malf Furious | 1 | -0/+13 | |
2016-02-20 | Finish initial exception reporting page | Malf Furious | 1 | -1/+6 | |
2016-02-17 | Add 'Except' MVC -- Used to show application exception messages to user | Malf Furious | 1 | -0/+24 | |
This MVC should be triggered by the root controller if normal routines throw an exception and should pass the exception message to the Except controller. | |||||
2016-02-06 | Merge the two auth views together | Malf Furious | 2 | -84/+90 | |
For design reasons and to simplify flow of control throughout the app login/signup sequence, these two views are being merged together. This will autimately make the auth MVC less stateful, which I think is good. NOTE: This breaks the Auth MVC, the model and controller will need updated to support this new, single default view | |||||
2016-01-27 | + Added view for account registration | Malf Furious | 1 | -0/+60 | |
2016-01-26 | + Added a basic login page design | Malf Furious | 1 | -0/+34 | |
2016-01-03 | * Start of application navbar | Malf Furious | 2 | -0/+27 | |
* Digested some example code | |||||
2016-01-03 | + Adding default view for Auth MVC | Malf Furious | 1 | -0/+13 | |
2016-01-02 | + Adding initial view files for common MVC | Malf Furious | 3 | -0/+3 | |
2015-12-24 | * Added required=true to form fields on bootstrap views | Malf Furious | 1 | -3/+3 | |
2015-12-06 | + Implemented the "noticeModal" -- an object in the master MVC topp view for ↵ | M | 1 | -8/+35 | |
displaying error / warning / and notice messages + Added two helper functions to Master MVC model for retruning values to the noticeModal | |||||
2015-12-06 | + Adding master page modal for displaying page errors/warnings/and notices ↵ | M | 3 | -0/+27 | |
(shell only, content coming soon) | |||||
2015-12-05 | + Added framework function for getting current app path | M | 1 | -1/+2 | |
* Changed sysconf view to use new function ($mod->ar()/sysconf -> $mod->ap) | |||||
2015-12-03 | * Fixed the sources in the master head and foot views (wasn't accounting for ↵ | M | 2 | -3/+3 | |
app-root) | |||||
2015-12-03 | * Finished form for sysconf default view | M | 1 | -1/+34 | |
2015-12-02 | * Formatted DB portion of the sysconf page form | M | 1 | -17/+19 | |
2015-11-29 | * Updated sysconf default view to include new modal content | M | 1 | -13/+10 | |
2015-11-29 | + Adding sysconf message modal view | M | 1 | -0/+37 | |
2015-11-29 | + Added sysconf issue modal view | M | 1 | -0/+34 | |
2015-11-29 | + Added sysconf stage modal view | M | 1 | -0/+34 | |
2015-11-29 | + Added sysconf pad modal view | M | 1 | -0/+50 | |
2015-11-29 | + Created sysconf group modal | M | 2 | -3/+33 | |
2015-11-29 | * Moved sysconf default view modal content out to diffent view file | M | 2 | -20/+33 | |