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
2013-11-25Refresh the Protocol widget when the dialog is raised.Klaas Freitag
2013-11-22Handle changing source file in upload correctly.Klaas Freitag
Delete the file on the server if the source file is new, but the source did not arrive completely within a timespan.
2013-11-22Make sure all queries are initialized on our database object.Klaas Freitag
Since we use a database with the non default name, we need to do that, otherwise the query is initialized on the default db which is not open in our case.
2013-11-21Enable the overall file count in progress again.Klaas Freitag
2013-11-21Made transaction management a bit more transparent. Some fixes.Klaas Freitag
2013-11-20Some database code cleanups.Klaas Freitag
2013-11-20CleanupsKlaas Freitag
2013-11-20Minor cleanups.Klaas Freitag
2013-11-20Add blacklisting for files with error conditions.Klaas Freitag
2013-11-20Add a http status code varialbe to the sync item object.Klaas Freitag
2013-11-20The IGNORE statement is handled further down the code.Klaas Freitag
2013-11-20Fixed some header wording.Klaas Freitag
2013-11-20Changed wording: Replaced Protocol against Status.Klaas Freitag
2013-11-19Downloads: Ignore file if no ETag was sentMarkus Goetz
Fixes part of #970
2013-11-19SyncJournalDb: Fix warningsMarkus Goetz
I got those warnings for the latter sync runs: 11-19 10:58:15:997 QSqlDatabasePrivate::removeDatabase: connection 'qt_sql_default_connection' is still in use, all queries will cease to work. 11-19 10:58:15:997 QSqlDatabasePrivate::addDatabase: duplicate connection name 'qt_sql_default_connection', old connection removed.
2013-11-18Cached more queries, used safe QSqlQuery patternKlaas Freitag
2013-11-18Database initialize code cleanup.Klaas Freitag
If the QSqlQuery class is called with a query in the constructor, the query is executed immediately. In fact, we executed each query twice before. Later on we might want to implement a wrapper clas around the query.
2013-11-18Use transactions to speed up database access.Klaas Freitag
2013-11-18Close database after retrieval of file record count.Klaas Freitag
As the csync updater opens the database itself, it is cleaner to close the db before and open it again after csync has finished. Added a close method to the journal class.
2013-11-18Set PRAGMA synchronous to NORMALKlaas Freitag
2013-11-18Moved implementation of start() to cpp file.Klaas Freitag
2013-11-18Add some useful logging.Klaas Freitag
2013-11-18Cleanup in foldermanDaniel Molkentin
2013-11-18Folders need to be setup before initializing the GUIDaniel Molkentin
This fixes the incomplete context menu
2013-11-18Settings: Don't specify encodingMarkus Goetz
QSettings automatically does escaping. When UTF-8 was set, I got all kind of problems with the QByteArray for the geometry and the umlaut in my name for the proxy user.
2013-11-15Revert "set utf8 for the central settings file"Markus Goetz
This reverts commit 6758c89130ddf0df6700e6c402d82752e0323a16.
2013-11-15set utf8 for the central settings fileDaniel Molkentin
2013-11-15Only update the db for ETAG if the etag has changed for directoriesOlivier Goffart
2013-11-15Prepare the queries after the database was migrated.Klaas Freitag
2013-11-15Initialise values properly, avoid warning.Klaas Freitag
2013-11-15Use precompiled database statements.Klaas Freitag
2013-11-15Do not fetch the file id in the propagator with a HEADOlivier Goffart
Normally, the fileid comes with the PUT or the GET. If it did not comes with the PUT, it means the server do not support fileid, we should not query it with a useless HEAD. Also, in case the fileid changes (which it should not) update anyway to the new fileid in the db
2013-11-14Change all Network Jobs to use start()Daniel Molkentin
2013-11-14Wizard: Support redirects againMarkus Goetz
2013-11-14Wizard: Also reset timeout on forwardsMarkus Goetz
2013-11-14Wizard: Timeout handling for CheckServerJobMarkus Goetz
2013-11-14Fix changing URL in wizardMarkus Goetz
2013-11-14Tray menu: Populate at startMarkus Goetz
2013-11-14Revert the changes that fetch the file id in the propagator.Olivier Goffart
We don't want to fetch the file id in the propagator. Revert "Put item member variable to base class." This reverts commit f7aa2aa348c098eb36929d5100f3364851c1e969. Revert "Add isValidFileId and getFileIdPropget methods." This reverts commit ccd254abba320d971f297f71f3158b37ac6071af.
2013-11-14Put item member variable to base class.Klaas Freitag
2013-11-14Add isValidFileId and getFileIdPropget methods.Klaas Freitag
2013-11-13Hint the OS to not show [?] in Wizards and DialogsDaniel Molkentin
Fixes #1156
2013-11-13CleanupDaniel Molkentin
2013-11-13Remember paused state throughout application restartsDaniel Molkentin
Fixes #823
2013-11-13Adapt to csync 'md5'->'etag' changeOlivier Goffart
2013-11-13Compile fixDaniel Molkentin
2013-11-13Partial revert "Compile with Qt5"Daniel Molkentin
This reverts commit 878ae56a7186aac2d43901c262939bdbc26e3536.
2013-11-13Fix compiler warningDaniel Molkentin
2013-11-13Compile with Qt5Daniel Molkentin
2013-11-13Merge remote-tracking branch 'origin/master' into account_refactoringDaniel Molkentin