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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-11Split into three separate projects: library, gui and cmdDaniel Molkentin
2014-07-10Add Q_DECL_OVERRIDE for all function that are overriding somethingOlivier Goffart
This was made automatically with clang-modernize -override-macros -add-override
2014-06-23Merge remote-tracking branch 'origin/1.6' into ilOlivier Goffart
Conflicts: VERSION.cmake csync/src/csync_statedb.c src/mirall/syncengine.cpp src/mirall/syncfileitem.h
2014-06-20Fix use-after-free in QNAM propagatorDaniel Molkentin
This fixes Coverity CID 12929
2014-06-16Merge remote-tracking branch 'origin/1.6' into 'il'Olivier Goffart
2014-06-16Propagator: Handle file open error properly and log error message.Klaas Freitag
2014-06-16Propagator: Give a more specific error message on file remove.Klaas Freitag
If the file is removed during it is synced up, there is now a correct error message saying that, rather than "the file has changed during upload."
2014-06-03Merge branch '1.6'Olivier Goffart
2014-06-03Propagator: Recover from 'precondition failed' errorOlivier Goffart
When we detect a precondition failed, it is possible that it is because the etag in the database is wrong. We must therefore not read from the database on the next sync. In order to avoid that, we reset the etag of parent directories to invalid values Fixes #1767
2014-06-03CSync & Propagator: Support a direct download URLMarkus Goetz
This is for server file backends that support sending a direct URL.
2014-05-26No need to check for case preserving filesystem here.Klaas Freitag
That is done in the utility function instead.
2014-05-24fix typoVolkan Gezer
2014-05-23Check for case clash on downloads.Klaas Freitag
2014-05-06Super useful source comment.Klaas Freitag
2014-05-02Fix reporting the right error in a GETOlivier Goffart
We always reported the lack of e-tag instead of the real error
2014-05-02Have only one place where we read the timeoutOlivier Goffart
2014-04-30Add a timeout when using the QNAM propagationOlivier Goffart
2014-04-30Removed unused Q_OBJECTKlaas Freitag
2014-04-30Propagator: Dont show silly string for non-errorMarkus Goetz
2014-04-30Fix updating mtimev1.6.0-beta2Olivier Goffart
Fixup commit 9193286fc11a6a135d6f6891906ffe1ae764032e Use the right URL for the PROPPATCH and HEAD, do not let other jobs start when we wait for the UpdateMTimeAndETagJob Update the etag and the fileid of the real item.
2014-04-29Support old server which do not have the x-oc-mtime supportOlivier Goffart
Owncloud 4.5 Or owncloud 5 with chunking Fixes https://github.com/owncloud/core/issues/8392
2014-04-22Fix function signature: pass argument by const referenceOlivier Goffart
2014-04-22Propagator: Add support for CSYNC_CONFLICT_FILE_USERNAMEMarkus Goetz
2014-04-22Propagator: Add makeConflictFileName functionMarkus Goetz
2014-04-22In case of error, report the right error instead of missing etagOlivier Goffart
also, missing etag is not a fatal error
2014-04-07Fix content-length calculation for sizes multiple of the chunk size.Klaas Freitag
2014-04-05Propagator: Fix chunking for realMarkus Goetz
The reset() (using seek()) didn't work.
2014-04-04Propagator: Fix chunkingMarkus Goetz
2014-03-28Make the chunk size configurable via an environement variableOlivier Goffart
OWNCLOUD_CHUNK_SIZE
2014-03-26Add a duration and the repsonse timestamp to the jobs.Klaas Freitag
2014-03-26Change data type for fileId to QByteArray.Klaas Freitag
2014-03-26Exxtract the exception message from reply to PUTOlivier Goffart
Might be usefull to debug Internal Server Error Fixes #1366
2014-03-20QNAM jobs: Make sure there is an etag is proper and not changed when one resumeOlivier Goffart
Those tests are existing on the legacy jobs. We check there is an etag so we make sure a proxy is not in between. (We have seen user complaining because their proxy is replacing the pages with one that says they need to enter their login and password) Also it is important to check that the etag has not changed if we resume (this may happen if the file is changed on the server between the update phase and the propagate phase, and that we resume this file)
2014-03-20Detect the error that may happen when downloading a fileOlivier Goffart
2014-03-14Refactor the progressOlivier Goffart
Consider that there might be several files processed at the same time
2014-03-06Saner defaultsOlivier Goffart
2014-03-06Better error classificationOlivier Goffart
2014-03-06Do not sent more chunk and cancel the upload when the file change while ↵Olivier Goffart
uploading chunks
2014-02-27Make the parrallel uploaded also check for problem in SharedOlivier Goffart
2014-02-18Refactor the renameReplace in its own functionOlivier Goffart
Share a bit more code between legacy and qnam download job
2014-02-18move the file system helpers in their own fileOlivier Goffart
2014-02-18Move the jobs around between filesOlivier Goffart
Renamed owncloudpropagator_qnam to propagator_qnam Move the jobs in propagatorjobs.cpp Move the neon jobs that have a qnam equivalent into propagator_legacy.cpp and rename the jobs accordingly