summaryrefslogtreecommitdiffstats
path: root/app/index.php (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-07-19Fix bug in index.phpMalf Furious1-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-19Define /logout routeMalf Furious1-0/+9
2018-07-19Add basic dashboard pageMalf Furious1-0/+7
2018-02-10Add exception view to index.phpMalf Furious1-1/+1
2018-02-07Add login view to controllerMalf Furious1-1/+9
2018-02-06Add index.phpMalf Furious1-0/+49
2016-10-22Deprecate application codeMalf Furious1-30/+0
Setup to perform an iteration of development focused on a simpler implementation and eliminating redundancy in design.
2016-05-27Add copyright notice to Scrott entry-point filesMalf Furious1-0/+14
2015-11-21+ Added app root controllerM1-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 appM1-1/+1
2015-11-21* Changing the mechanism by which the requested path is passed to the appM1-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 controllerM1-0/+16