beautifying and correcting docs, adding todo list

World Wide Web Server 2012-07-04 16:04:08 -07:00
parent 3d3771d7ed
commit 137ab6d361

@ -1,13 +1,21 @@
Feel free to improve it here, but PLEASE fill the 'notes' field below to explain your contribution.
[h3]documentation[/h3]
An url like [code]http://www.your-site.com/index.php/browser/virtual_root/path[/code] will allow people to browse directories and files with a the 'path' from 'absolute_path' where you defined these values with:
An url like http://www.your-site.com/index.php/browser/[b]virtual_root[/b]/[b]path[/b] will allow people to browse directories and files that are under [b]path[/b] from [b]absolute_path[/b]. You define an [b]absolute_path[/b] (in the file system of the server) for a [b]virtual_root[/b] with this array
[code]
var $roots = array(
'virtual_root' => 'absolute_path'
);
'virtual_root' => 'absolute_path',
//...
);
[/code]
This may allow us to browse files that are outside your web root, protecting them strongly.
This may allow us to browse files that are outside your web root, forcing the browsing via CI, and allowing us full control on accesses (not provided for the moment).
[h3]todo[/h3]
* stats for directories and files
* clever css markup
* several examples of stylesheets
* bells and hooks and whistles and filters to check accesses
* ...
[h3]the controller[/h3]
[code]