Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-24 | CLOUD: Add "ajax" parameter for "/create" and "/upload" | Alexander Tkachev | |
If it's set, these redirect to "/filesAJAX" instead of "/files". | |||
2016-08-24 | CLOUD: Add messages in "/filesAJAX" | Alexander Tkachev | |
2016-08-24 | CLOUD: Minor "/filesAJAX" fix | Alexander Tkachev | |
2016-08-24 | CLOUD: Add "breadcrumbs" in "/filesAJAX" | Alexander Tkachev | |
2016-08-24 | CLOUD: Add "/filesAJAX" sketch | Alexander Tkachev | |
It works already, but still requires some polishing. | |||
2016-08-24 | CLOUD: Add ListAjaxHandler | Alexander Tkachev | |
"/list" now returns JSON with directory information. Would be used in AJAX-based Files Manager. | |||
2016-08-24 | GUI: Add Cloud-related dialogs in classic theme's stx | Alexander Tkachev | |
Looks fine. | |||
2016-08-24 | TESTBED: Add openUrl test in MiscTests | Alexander Tkachev | |
2016-08-24 | TESTBED: Add more Webserver tests | Alexander Tkachev | |
2016-08-24 | TESTBED: Add Webserver test suite | Alexander Tkachev | |
Two tests now: IP resolving and index page check. | |||
2016-08-24 | CLOUD: Fix indentation in openurl-osx.cpp | Peter Bozsó | |
2016-08-24 | TESTBED: Fix CloudTests | Alexander Tkachev | |
Now work with all available Storages. | |||
2016-08-24 | CLOUD: Add URL opening for OS X | Peter Bozsó | |
2016-08-24 | TESTBED: Add CloudTests::testSavesSync() | Alexander Tkachev | |
2016-08-24 | TESTBED: Add CloudTests::testFolderDownloading() | Alexander Tkachev | |
2016-08-24 | TESTBED: Add CloudTests::testDownloading() | Alexander Tkachev | |
2016-08-24 | TESTBED: Add CloudTests::testUploading() | Alexander Tkachev | |
2016-08-24 | TESTBED: Fix CloudTests to ask users whether to wait | Alexander Tkachev | |
Callbacks might be slow (like in SyncSaves), but they also could hang forever, so users now are being asked whether they want to wait or to skip the test. | |||
2016-08-24 | TESTBED: Add first Cloud tests | Alexander Tkachev | |
Adding tests for: * Storage::info(); * Storage::listDirectory(); * Storage::createDirectory(). | |||
2016-08-24 | GUI: Add Ctrl+V handling in EditableWidget | Alexander Tkachev | |
In SDL2 there is SDL_GetClipboardText(), so EditableWidget could support pasting into it. No copying yet, as there is no selecting. | |||
2016-08-24 | CLOUD: Add "Index of" label in server's "/files" | Alexander Tkachev | |
2016-08-24 | CLOUD: Add openurl-android.cpp | Alexander Tkachev | |
2016-08-24 | GUI: Fix Cloud-related dialogs a little | Alexander Tkachev | |
Minor mistakes which lead to build failure in some cases. | |||
2016-08-24 | CLOUD: Add icons in "/files" list | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix module.mk for openurl-default.o | Alexander Tkachev | |
It's now added to all the backends manually. | |||
2016-08-24 | GUI: Update DownloadDialog | Alexander Tkachev | |
It now has download size and speed labels. Commit also fixes minor mistake in ConnMan. | |||
2016-08-24 | CLOUD: Calculate FolderDownload download speed | Alexander Tkachev | |
2016-08-24 | CLOUD: Update FolderDownloadRequest::getProgress() | Alexander Tkachev | |
It now is based on downloaded size, not number of files. | |||
2016-08-24 | CLOUD: Fix IdDownloadRequest | Alexander Tkachev | |
Wrong value was returned in getProgress() on nullptr there. | |||
2016-08-24 | CLOUD: Update FolderDownloadRequest | Alexander Tkachev | |
It now keeps track of downloaded bytes. | |||
2016-08-24 | CLOUD: Fix FolderDownloadRequest | Alexander Tkachev | |
It now sends kDownloadEndedCmd on success without waiting to be destructed. | |||
2016-08-24 | CLOUD: Fix FolderDownloadRequest::getProgress() | Alexander Tkachev | |
Now it doesn't stop on 100 % on last file and it ignores the directories, so it doesn't "jump" suddenly as there are no directories to skip. | |||
2016-08-24 | GUI: Change 'OK' to 'Hide' on close button of DownloadDialog | Peter Bozsó | |
2016-08-24 | CLOUD: Rename _files to _pendingFiles in FolderDownloadRequest | Peter Bozsó | |
2016-08-24 | CLOUD: Add openUrl() for POSIX | Alexander Tkachev | |
2016-08-24 | GUI: Fix StorageWizardDialog | Alexander Tkachev | |
It now shows a MessageDialog (its message label is hidden in some cases). | |||
2016-08-24 | GUI: Add "Open URL" button in StorageWizardDialog | Alexander Tkachev | |
It uses Networking::Browser::openUrl(). | |||
2016-08-24 | CLOUD: Add Networking::Browser::openUrl() sketch | Alexander Tkachev | |
Only Windows' shellExecute() now. | |||
2016-08-24 | CLOUD: Upgrade FolderDownloadRequest::getProgress() | Alexander Tkachev | |
Now NetworkReadStream, which is used in DownloadRequest, which is used in FolderDownloadRequest, returns progress information provided by libcurl. | |||
2016-08-24 | CLOUD: Update CurlJsonRequest | Alexander Tkachev | |
Uses dynamically allocated buffer now. | |||
2016-08-24 | CLOUD: Update DownloadRequest | Alexander Tkachev | |
It now uses a dynamically allocated 1 MB buffer. | |||
2016-08-24 | CLOUD: Cleanup in Storages | Alexander Tkachev | |
2016-08-24 | CLOUD: Update GoogleDriveStorage | Alexander Tkachev | |
It now derives from IdStorage, so lots of GoogleDrive*Request classes are removed and replaced with generic IdStorage*Request ones. | |||
2016-08-24 | CLOUD: Add Storage::uploadStreamSupported() | Alexander Tkachev | |
Box uses POST multipart/form requests for uploading. Such requests could be sent with libcurl if we either have a file available or a buffer with this file's contents. SavesSyncRequest was using Storage::upload(ReadStream *), which couldn't be implemented in BoxStorage. Thus I've added a method to test whether such upload is supported and, if it's not, SavesSyncRequest uses the other. | |||
2016-08-24 | CLOUD: Add BoxUploadRequest | Alexander Tkachev | |
2016-08-24 | CLOUD: Update NetworkReadStream and CurlRequest | Alexander Tkachev | |
Now those support POST multipart/form upload. | |||
2016-08-24 | CLOUD: Remove BoxStorage::streamFileById debug() call | Alexander Tkachev | |
2016-08-24 | CLOUD: Add IdDownloadRequest and IdStreamFileRequest | Alexander Tkachev | |
Used for downloading files in Box. | |||
2016-08-24 | CLOUD: Fix Storage::streamFile() | Alexander Tkachev | |
2016-08-24 | CLOUD: Add IdCreateDirectoryRequest | Alexander Tkachev | |
Box gets createDirectoryWithParentId(), so now creating directories works there. |