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-21CMake: Fix RPATHMarkus Goetz
2014-10-20Revert "Remove references to qsqlite3"Daniel Molkentin
QtWebkit needs it This reverts commit b1c10c845404b050e7b5ab1dd39a47cad7c1c262.
2014-10-17Merge pull request #2319 from owncloud/sqlite_capiDaniel Molkentin
Introduce a common sqlite layer across csync and mirall. This avoids conflicts that both each load different and/or updated sqlite versions.
2014-10-16Remove references to qsqlite3Markus Goetz
2014-10-16Second part of #1661Daniel Molkentin
- QT_INSTALL_TRANSLATIONS was not defined in Qt5 - Some languages have been split up in multiple qm's. We only need qtbase for now
2014-10-14Sql: New implementation of ownSql class to go away from Qt's own SqlKlaas Freitag
2014-10-09OS X: Fix .app creation for non-system QtMarkus Goetz
2014-10-01cmake: Commented setting of the INSTALL_PREFIX var on MacKlaas Freitag
2014-10-01fix last commitDaniel Molkentin
2014-10-01fix install target for macdeployqtDaniel Molkentin
2014-10-01More removal of obsolete CMake codeDaniel Molkentin
2014-09-30OS X: Use a python script to fix for bundle fixup...Daniel Molkentin
...rather than relying on cmake magic
2014-09-17Allow passing user/pass explicitly or via netrcDaniel Molkentin
#2211
2014-08-31Sparkle: Keep permissions from bundleMarkus Goetz
2014-08-29Merge remote-tracking branch 'origin/reuse_oc_config' into 1.7Klaas Freitag
Conflicts: src/CMakeLists.txt src/mirall/folderman.cpp src/mirall/folderman.h src/mirall/owncloudtheme.h
2014-08-15Merge remote-tracking branch 'origin/master' into selective_syncOlivier Goffart
2014-08-12Always handle 401 requests, except for network jobsDaniel Molkentin
It is not enough to only implement it for the QNAM returned by the ShibbolethCredentials, because we sometimes need it when we have no valid credentials set (and are using dummy credentials in the course). The main use case is the Webview opened by Shibboleth for FBA. But as a side-effect, we can use it to handle auth requests from the updater and other places.
2014-08-12OS X: Finally(?) fix stay-on-top behaviour of settings dialogMarkus Goetz
Fixes #1795
2014-08-11Move the update job in a new file named discoveryphaseOlivier Goffart
"Discovery" is a better name than "update"
2014-08-11Selective sync: Add UI to select pathsOlivier Goffart
2014-07-11Fix windows compilationDaniel Molkentin
2014-07-10CMake: Remove accidentially added typo to fix build.Klaas Freitag
2014-07-10SocketAPI: Enhance SyncFileStatus to have share information.Klaas Freitag
Added a new class SyncFileStatus to reflect that properly.
2014-07-10cleanup the CMakeLists.txtOlivier Goffart
Headers need not to be added if they are not going to be installed The list was incomplete anyway, and most of the _HEADERS variables were even not used
2014-07-10Move Folder, FolderMan, and FolderWatcher outside of owncloudsyncOlivier Goffart
Those class are maintaining the folder for the mirall configuration They are not usefull in command line clients Also the FolderWatcher is only used by the folder and not used by the command line clients
2014-07-10Utility: Move showInFileManager in its own fileOlivier Goffart
And get rid of GUI in the Utility namespace
2014-06-25cfg migration: Add a account migrator class.Klaas Freitag
2014-05-14CookieJar refactoring required to overcome issues in Shibboleth supportDaniel Molkentin
The shibboleth implementation no longer maintains its own QNAM. Instead, MirallAccessManager now holds a custom QNAM implementation which saves cookies to a file on disk. This patch also reduces some complexity wrt the browser window, which used to be deleted via a roundtrip to its callee, which is not longer required. Fixes #1764 and Enterprise bug #165 Going forward, AbstractCredentials::getQNAM() could maybe removed entirely.
2014-04-30Auto generate the Export header.Klaas Freitag
This should fix oem builds.
2014-04-22Fix compilation on linux with BUILD_LIBRARIES_ONLYOlivier Goffart
2014-04-21WiP: Attempt to compile without UIMarkus Goetz
2014-04-11Install ocsync library to private lib directory, use rpath to find it.Klaas Freitag
2014-04-08Add Qt Keychain also when building with Qt5Daniel Molkentin
2014-04-01Add an simple SSL error handler for owncloudcmd.Klaas Freitag
2014-03-28Only build the static library when BUILD_LIBRARIES_ONLY is definedOlivier Goffart
2014-03-27Do not let user change it's login while using shibboletOlivier Goffart
Fixes #915
2014-03-26Add a class to write a machine readable sync log file.Klaas Freitag
2014-03-25Don't moc twiceDaniel Molkentin
2014-03-25Merge branch 'master' of github.com:shadone/mirall into shadone-masterDaniel Molkentin
Conflicts: cmake/modules/QtVersionAbstraction.cmake src/CMakeLists.txt src/mirall/owncloudgui.cpp
2014-03-17Remove unused libsync_HEADERSOlivier Goffart
This was unused and is redudent with owncloudsync_HEADERS
2014-03-17Rename CSyncThread to SyncEngineOlivier Goffart
CSyncThread has not been a thread for a long time now
2014-03-14Merge remote-tracking branch 'origin/1.5'Olivier Goffart
Conflicts: CMakeLists.txt VERSION.cmake src/CMakeLists.txt
2014-03-13Deploy with Qt5Daniel Molkentin
2014-03-12CMake: Do options one directory aboveMarkus Goetz
This fixes linking when keychain was not desired.
2014-03-11CMake: Fix elseMarkus Goetz
2014-03-11CMake: Fix warningMarkus Goetz
2014-03-11Improve libowncloudsyncMarkus Goetz
* Introduce TokenCredentials * Introduce static compiling * Have compile flags for smaller compile
2014-03-07Install include dirs app name aware.Klaas Freitag
2014-03-06Merge branch '1.5'Olivier Goffart
Conflicts: VERSION.cmake
2014-02-27Try to handle auth requests by a Shibboleth IdPDaniel Molkentin