Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-25 | CLOUD: Make Network::ErrorResponse messages more verbose | Alexander Tkachev | |
This commit updates all usages of Network::ErrorResponse to specify at least method name if not precise reason why operation failed. | |||
2019-07-30 | CLOUD: Fix OneDriveStorage API interaction | Alexander Tkachev | |
Something changed and old API endpoint "api.onedrive.com" now does not work. The other one, "graph.microsoft.com", does, but there were some other changes in JSON it returns. These changes are also in this commit. | |||
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-24 | CLOUD: Update OneDriveUploadRequest | Alexander Tkachev | |
More JSON checks. | |||
2016-08-24 | ALL: Fix debug, warning and error usage | Alexander Tkachev | |
Added prefixes, used debug(9). | |||
2016-08-24 | CLOUD: #define all OAuth2/API-related URLs | Alexander Tkachev | |
2016-08-24 | CLOUD: JANITORIAL: Fix code formatting | Eugene Sandulenko | |
2016-08-24 | CLOUD: Fix code formatting | Peter Bozsó | |
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 | Alexander Tkachev | |
Nothing really major. | |||
2016-08-24 | CLOUD: Fix Cppcheck warnings | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix OneDriveUploadRequest | Alexander Tkachev | |
Segfault when given stream is nullptr. | |||
2016-08-24 | CLOUD: Fix OneDriveUploadRequest | Alexander Tkachev | |
OneDrive doesn't accept empty files, so UploadRequest just skips such. | |||
2016-08-24 | CLOUD: Fix finishSuccess() warning | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix "signed/unsigned integers" warning | Alexander Tkachev | |
The "comparison between signed and unsigned integer expressions" one. Note that in UploadRequests size() and pos() are acutally signed, because they could return -1. This commit implies that Requests are working with such Streams which doesn't. | |||
2016-08-24 | CLOUD: Add ConnMan::urlEncode() | Alexander Tkachev | |
Tried to use it everywhere I should've use it. | |||
2016-08-24 | CLOUD: Add OneDriveUploadRequest | Alexander Tkachev | |
Doesn't support server's requested ranges yet. Commit also adds some PUT-related code in NetworkReadStream and CurlRequest. |