Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-20Use auto to avoiding repeating type namesKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2018-05-07Adds 304 http status code as valid.Camila San
Signed-off-by: Camila San <hello@camila.codes>
2018-05-07Adds function to add raw header to the request.Camila San
Function added to be able to add If-None-Match to save the ETag. Signed-off-by: Camila San <hello@camila.codes>
2017-12-28Prepend "nextcloud" for all logging categoriesDaniel Nicoletti
Thus making easier to exclude logging from kio, qt and only enable "nextcloud.*"
2017-12-13Merge remote-tracking branch 'origin/2.4'Christian Kamm
2017-12-13Notifications: Propagate "Dismiss" as DELETE to server #5922Markus Goetz
(cherry picked from commit e86416fff7c74174e699802cec46da8ca3c3aad5)
2017-12-08OcsJob: Use QUrlQueryOlivier Goffart
Qurl::setEncodedQueryItems is deprecated.
2017-05-17Apply clang-formatChristian Kamm
2017-05-11Upgrade some qCDebug to qCInfo or qCWarningJocelyn Turcotte
Use qCInfo for anything that has general value for support and development. Use qCWarning for any recoverable error and qCCritical for anything that could result in data loss or would identify a serious issue with the code. Issue #5647
2017-05-11Use Qt logging categories for loggingJocelyn Turcotte
This gives more insight about the logs and allow setting fine-tuned logging rules. The categories are set to only output Info by default so this allows us to provide more concise logging while keeping the ability to extract more information for a specific category when developping or debugging customer issues. Issue #5647
2017-05-08Switch JsonApiJob to Qt5's QJson #5710Christian Kamm
2017-05-08Sharing: Switch from QtJson to Qt5's QJson #5710Christian Kamm
2017-03-07AbstractNetworkJob: Improve redirect handling #5555Christian Kamm
* For requests: - reuse the original QNetworkRequest, so headers and attributes are the same as in the original request - determine the original http method from the reply and the request attributes - keep the original request body around such that it can be sent again in case the request is redirected * Simplify the interface that is used for creating new requests in AbstractNetworkJob.
2016-11-18Merge pull request #5272 from owncloud/licensefix-pendingckamm
License: Adjust license of GPLv2 source files to GPLv2+
2016-10-25Move concatUrl and settingsWithGroup to UtilityChristian Kamm
There was little reason to keep them cluttering Account.
2016-10-25License: Adjust license of GPLv2 source files to GPLv2+Christian Kamm
See #5180
2016-07-12Sharing: Fix bug with file names containing percent encodes #5042 (#5043)ckamm
2016-03-14ocs jobs: Add a define for OCS job success.Klaas Freitag
2015-11-11Sharing: Fix crash with share deletion #4111Christian Kamm
The problem was that Share could be deleted *before* the OcsShareJob itself finished. Since Share was the parent of the network job, its object would be deleted too early. In general, it's unnecessary to assign parents to the OcsJobs because they delete themselves when finished.
2015-10-29Act properly if OCS endpoint returned an error (OCS error)Roeland Jago Douma
For now pass it on to the gui. So at least they know something is wrong.
2015-10-29Use QLatin1CharRoeland Jago Douma
2015-10-29Properly cleanup OCS jobsRoeland Jago Douma
2015-10-29Add share manager and the share objectsRoeland Jago Douma
2015-10-16Now only 1 constructor to ocssharejobRoeland Jago Douma
* Pass the share_id to the functions that need it
2015-10-15Now add parameters in a less crappy wayRoeland Jago Douma
2015-10-15OCSJob -> OcsJob and more docsRoeland Jago Douma
2015-10-15Split sharing codeRoeland Jago Douma
There is now a generic OCSJob which must be inherited by other jobs. This is in prepartion for the other OCS job that will come (for the Sharee API endpoint for example). More logic is moved from the sharedialog to the OcsShareJob. So in the GUI code we now only say what we want (a new share, set the password etc). And the code in libsync will make that happen. Error handling is for now still done in the GUI part. For now the ocsjob and ocssharejob live in gui but probabaly we should create a libshare or libocs at some point.