Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-09-25 | group: Add group page view | Malf Furious | 1 | -0/+9 | |
2018-09-23 | admin: Add empty admin panel | Malf Furious | 1 | -0/+9 | |
2018-09-21 | deleteaccount: Add view | Malf Furious | 1 | -0/+5 | |
2018-09-20 | index: Enforce access permission when viewing object by URL | Malf Furious | 1 | -0/+8 | |
The controller now (again) prevents browsing to objects the user is not allowed to access. | |||||
2018-09-20 | Add start of single-pad view | Malf Furious | 1 | -0/+15 | |
2018-09-15 | Add 'my pads' page | Malf Furious | 1 | -0/+5 | |
2018-07-26 | Remove TODO and placeholder | Malf Furious | 1 | -3/+0 | |
2018-07-26 | Add "My Groups" page | Malf Furious | 1 | -0/+5 | |
2018-07-24 | Move $user page object scope | Malf Furious | 1 | -1/+2 | |
Since several routes will use the current $user as the PAGE_OBJECT, I'm just setting it once above most of the logic. Any route that needs something else can change it. There's a condition in the setPageObj() function that throws if we attempt to call it more than once. I'm thinking this can be removed it's not protecting from much. | |||||
2018-07-24 | Add call to setPageName() | Malf Furious | 1 | -0/+1 | |
2018-07-21 | Update index.php to set appropriate page objects | Malf Furious | 1 | -1/+2 | |
2018-07-19 | Fix bug in index.php | Malf Furious | 1 | -1/+2 | |
Perform minor sanitization on the input $_SERVER['PATH_INFO']. This commit adds logic that strips empty strings from main's $argv array. The pass to array_values() is to discard original $tokens array keys and re-number them starting from zero. | |||||
2018-07-19 | Define /logout route | Malf Furious | 1 | -0/+9 | |
2018-07-19 | Add basic dashboard page | Malf Furious | 1 | -0/+7 | |
2018-02-10 | Add exception view to index.php | Malf Furious | 1 | -1/+1 | |
2018-02-07 | Add login view to controller | Malf Furious | 1 | -1/+9 | |
2018-02-06 | Add index.php | Malf Furious | 1 | -0/+49 | |
2016-10-22 | Deprecate application code | Malf Furious | 1 | -30/+0 | |
Setup to perform an iteration of development focused on a simpler implementation and eliminating redundancy in design. | |||||
2016-05-27 | Add copyright notice to Scrott entry-point files | Malf Furious | 1 | -0/+14 | |
2015-11-21 | + Added app root controller | M | 1 | -2/+2 | |
* Finished implementing app main function to instanciate root and delegate to it | |||||
2015-11-21 | * Now using require in favor of include throughout PHP in the app | M | 1 | -1/+1 | |
2015-11-21 | * Changing the mechanism by which the requested path is passed to the app | M | 1 | -1/+1 | |
! It has been observed that on server nginx, some of the assumptions from doing similar work on apache have broken down and a more general mechanism must be used to handle paths in the clean-url app. ! New scheme is this: app is invoked with `index.php?path=<absolute path on virtual server>` The app will be configured with its own root location on the virt. server and use logic to dedue the relative path requested from that. Also app will use the configured path to predend to urls linked/directed to during use of the app | |||||
2015-11-21 | + Adding main source file which invokes the master controller | M | 1 | -0/+16 | |