Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-21 | NETWORKING: Convert translation results to UTF-8 for local webserver pages | Thierry Crozat | |
2017-08-11 | NETWORKING: Fix data type cast in comparison. char is usually signed | Eugene Sandulenko | |
2017-01-16 | CLOUD: Fix Various Compiler Warnings By Adding Casts. | D G Turner | |
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-24 | CLOUD: Update handlers | Alexander Tkachev | |
Now if there is no "rootpath" specified, it's not even listed by FilesPageHandler and ListAjaxHandler. And, of course, not available to use anywhere else. | |||
2016-08-24 | CLOUD: Handle paths in marked places | Alexander Tkachev | |
Paths containing '../' are forbidden to use in Files Manager. There is also a special inner black list of paths which are not used and a check that specified path is under "savepath" or "rootpath" (from "cloud" domain). | |||
2016-08-24 | CLOUD: Mark places where path handling is needed | Alexander Tkachev | |
2016-08-24 | CLOUD: Use overriden handle() instead of ClientHandlerCallback in page handlers | Peter Bozsó | |
Using a dedicated callback object for this was an unnecessary overhead. | |||
2016-08-24 | CLOUD: JANITORIAL: Fix code formatting | Eugene Sandulenko | |
2016-08-24 | JANITORIAL: Remove spaces at the end of the line | Alexander Tkachev | |
I knew there were some, but I wanted to fix them once, instead of doing it all the time. | |||
2016-08-24 | CLOUD: Do some refactoring/cleanup in Networking | Alexander Tkachev | |
2016-08-24 | CLOUD: Add "Index of" label in server's "/files" | Alexander Tkachev | |
2016-08-24 | CLOUD: Add icons in "/files" list | Alexander Tkachev | |
2016-08-24 | CLOUD: Add "directory" form for webserver "/upload" | Alexander Tkachev | |
The attribute is Chrome-only. | |||
2016-08-24 | CLOUD: Update "/files" hardcoded response template | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix '\' encoding back | Alexander Tkachev | |
2016-08-24 | CLOUD: Cleanup in Handlers | Alexander Tkachev | |
Simplified some stuff here and there by using HandlerUtils static methods. | |||
2016-08-24 | CLOUD: Fix quotes encoding | Alexander Tkachev | |
2016-08-24 | CLOUD: Put "/upload" "path" parameter in the URL | Alexander Tkachev | |
2016-08-24 | CLOUD: Add query parameters URL encoding | Alexander Tkachev | |
In local webserver's links. Fixed URL decoding to understand '+', by the way. Firefox sends these instead of spaces and "%2B" instead of '+'. | |||
2016-08-24 | CLOUD: Move "/create" to separate Handler | Alexander Tkachev | |
It does redirect to "/files" on success, so user doesn't even see the strange "/create" URL at all. This commit is for keeping these handlers small, not making one (FilesPageHandler in this case) do everything. | |||
2016-08-24 | CLOUD: Make "/create" work | Alexander Tkachev | |
One can now create directories through browser. | |||
2016-08-24 | CLOUD: Refactor LocalWebserver | Alexander Tkachev | |
Its handlers are now more compact. This commit moves Handler classes in handlers\ directory. ResourceHandler ignores "hidden" files in the archive, and these are used as markup templates in IndexPageHandler and FilesPageHandler. |