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-10-27options are required at the beginning of owncloudcmd.Brandon Coleman
Conflicts: src/owncloudcmd/owncloudcmd.cpp
2014-10-17owncloudcmd: Always need exclude listMarkus Goetz
Try to load the system list or the user supplied list. For #2322
2014-10-12unreachable --version code made reachable.Jürgen Weigert
error message improved.
2014-10-11owncloudcmd: Handle trust ssl switch correctly by overwriting trustsslKlaas Freitag
method in a subclass of HTTPCredentials.
2014-10-11owncloudcmd: Add a custom ssl verification callback for neon.Klaas Freitag
That fixes the SSL related problems we had with ci.owncloud.org
2014-10-11owncloudcmd: Fix some slash screwup, to make the split succeed bug #2211Klaas Freitag
2014-10-11owncloudcmd: Fix url handling with csync, make owncloudcmd sync again.Klaas Freitag
This fixes mirall issue #2211
2014-10-10owncloudcmd: don't prompt for password if it was providedDaniel Molkentin
2014-10-10owncloudcmd: Fix crashDaniel Molkentin
2014-10-10owncloudcmd: Implement --version, fix stringsDaniel Molkentin
Part of #2211
2014-10-07Fix order in which credentials are getting fetchedDaniel Molkentin
2014-09-22Win32: Define HANDLE variable, make win compile again.Klaas Freitag
2014-09-18Remove unused confdir optionDaniel Molkentin
2014-09-17Implement --non-interactive as per Juergens' requestDaniel Molkentin
2014-09-17Fix passing URLs not ending in /remote.php/webdavDaniel Molkentin
2014-09-17Allow passing user/pass explicitly or via netrcDaniel Molkentin
#2211
2014-09-15owncloudcmd: ask for the login and password and put it in the url (if it's ↵Olivier Goffart
not there already) Because we cannot rely on HTTPCredentials to open windows in a command line tool Fixes #1860
2014-09-12owncloudcmd: restart the sync if requiredOlivier Goffart
Fixes #2038
2014-08-28t4.pl: add a test to test that ignored file are not deletedOlivier Goffart
2014-07-10owncloudcmd: fix the --trust optionOlivier Goffart
We can't call csync_set_userdata in owncloudcmd because it is going to be overwritten later in the SyncEngine. So we had an object of type SyncEngine* that we cast to CmdOptions* and the trust flag was in the padding, so was some random data. Therefore we must use global variables in that case in order to know if we should ignore the certificate.
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-07-10Engine: Do not reset the csync log callback in the engineOlivier Goffart
It is already set in Folder and we don't want to use the Logger in command line clients
2014-06-26Revert "ownCloudcmd: Use Account object and ConnectionValidator."Klaas Freitag
We decided that owncloudcmd should not share the config with mirall. This reverts commit 5f96de32bb602d51d5ea30084f05c62c12637dc2.
2014-06-24ownCloudcmd: Use Account object and ConnectionValidator.Klaas Freitag
That reads the credentials from the mirall config file if it was not defined on the command line. Moreover, the connection is validated before, which sets up the credentials properly.
2014-06-20owncloudcmd: Fix structurally dead code.Klaas Freitag
This fixes Coverity CID 12928
2014-05-22Remove useless global varialbe for auth callback.Klaas Freitag
2014-04-30Add a header file for owncloudcmd.cpp to avoid (auto)moc problems.Klaas Freitag
2014-04-29Add missing line breakOlivier Goffart
2014-04-02Remove undeeded includesOlivier Goffart
And don't use 'using namespace' in headers
2014-04-02Fix compilation with Qt5Olivier Goffart
We don't need QtWidgets, and we don't need Uility::escape
2014-04-01Add a trust ssl certificate switchKlaas Freitag
2014-04-01Add an simple SSL error handler for owncloudcmd.Klaas Freitag
2014-03-22Fix compile after changing Account::davPath()Markus Goetz
2014-03-21Merge branch '1.5'Olivier Goffart
Conflicts: src/owncloudcmd/owncloudcmd.cpp
2014-03-21owncloudcmd: Fix an error during update phase would not terminateOlivier Goffart
the QApplication::quit() would be run before the exec() and would be a noop, and then exec would just wait forever.
2014-03-20Proper initialization to avoid build warnings.Klaas Freitag
2014-03-17Rename CSyncThread to SyncEngineOlivier Goffart
CSyncThread has not been a thread for a long time now
2014-03-14Remove Progress::KindOlivier Goffart
It's not really used, one need to look at the instruction of the items being processed to see what happens
2014-03-14Refactor the progressOlivier Goffart
Consider that there might be several files processed at the same time
2014-02-27csync: Remove more unused stuffMarkus Goetz
2014-02-19OwncloudCmd: Struct needs to be zeroedMarkus Goetz
Else the --silent was always true on Windows where memory did not get zeroed.
2014-02-19Register metatype at better placeMarkus Goetz
2014-02-19OwncloudCmd: Register a meta typeMarkus Goetz
2014-02-19Use AUTOMOCOlivier Goffart
This should also fix the compilation of owncloudcmd.cpp Since we have a Q_OBJECT in a .cpp file and qt_wrap_cpp would not generate the moc file.
2014-02-19Merge remote-tracking branch 'origin/master'Olivier Goffart
Conflicts: src/owncloudcmd/owncloudcmd.cpp
2014-02-19OwncloudCmd: Fixup URLMarkus Goetz
Allow users to specify owncloud(s) or http(s)
2014-02-19OwncloudCmd: Print update phase duration valuesMarkus Goetz
2014-02-17Make owncloudcmd work with the parallel upload/downloadOlivier Goffart
Also make it work when there syncing a remote subfolder
2014-01-16Use ClientProxy that reads the client config in commandline client.Klaas Freitag
Fixes mirall#1347
2013-12-19Added proxy support to owncloudcmd.Klaas Freitag