├── .gitignore ├── .gitmodules ├── 3rdparty └── build_android_openssl.sh ├── CHANGELOG ├── CMakeLists.txt ├── LICENSE.GPL ├── LICENSE.LGPL ├── README.md ├── TODO ├── click ├── click.pro ├── ghostcloud.png ├── harbour-owncloud.accounts ├── harbour-owncloud.apparmor ├── harbour-owncloud.desktop ├── manifest.json.in ├── run-daemon.sh └── run.sh ├── clickable-ut-photo-backup.json ├── clickable.json ├── harbour-owncloud.pro ├── misc ├── notes │ └── multi_account_transfer.txt └── readme │ ├── cover.png │ ├── filebrowser.png │ ├── filedetails.png │ ├── mediapreview.png │ └── userinfo.png ├── rpm ├── harbour-owncloud.changes.in ├── harbour-owncloud.spec └── harbour-owncloud.yaml ├── snap ├── gui │ ├── harbour-owncloud.desktop │ └── harbour-owncloud.png └── snapcraft.yaml ├── src ├── CMakeLists.txt ├── app │ ├── CMakeLists.txt │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── res │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── values │ │ │ │ └── libs.xml │ │ └── src │ │ │ └── me │ │ │ └── fredl │ │ │ └── ghostcloud │ │ │ └── ShareUtil.java │ ├── app.pro │ ├── harbour-owncloud.desktop │ ├── icons.qrc │ ├── icons │ │ ├── 108x108 │ │ │ └── harbour-owncloud.png │ │ ├── 128x128 │ │ │ └── harbour-owncloud.png │ │ ├── 172x172 │ │ │ └── harbour-owncloud.png │ │ ├── 86x86 │ │ │ └── harbour-owncloud.png │ │ ├── banner.png │ │ ├── harbour-owncloud.svg │ │ ├── harbour-owncloud_512.png │ │ ├── icon_gray.svg │ │ └── theme │ ├── ios │ │ └── Info.plist │ ├── macos │ │ └── Info.plist │ ├── qml-sfos.qrc │ ├── qml.qrc │ ├── qml │ │ ├── dummy │ │ │ └── FileSelectionDialog.qml │ │ ├── qqc │ │ │ ├── BrowserCommandPageFlow.qml │ │ │ ├── CommandPageFlow.qml │ │ │ ├── controls │ │ │ │ └── GCButton.qml │ │ │ ├── dialogs │ │ │ │ ├── RemoteDirSelectDialog.qml │ │ │ │ ├── SSLErrorDialog.qml │ │ │ │ ├── WebDavAccountDialog.qml │ │ │ │ └── fileselect │ │ │ │ │ ├── QQDFilePicker.qml │ │ │ │ │ ├── UbuntuContentHubOpener.qml │ │ │ │ │ └── UbuntuContentPicker.qml │ │ │ ├── main.qml │ │ │ └── pages │ │ │ │ ├── About.qml │ │ │ │ ├── AccountSelection.qml │ │ │ │ ├── SettingsPage.qml │ │ │ │ ├── TransferPage.qml │ │ │ │ └── browser │ │ │ │ ├── FileBrowser.qml │ │ │ │ └── FileDetails.qml │ │ └── sfos │ │ │ ├── OcsUserInfo.qml │ │ │ ├── cover │ │ │ ├── CoverDetailItem.qml │ │ │ └── CoverPage.qml │ │ │ ├── harbour-owncloud.qml │ │ │ ├── js │ │ │ └── TransferUtil.js │ │ │ ├── navigation │ │ │ ├── BrowserCommandPageFlow.qml │ │ │ └── CommandPageFlow.qml │ │ │ └── pages │ │ │ ├── About.qml │ │ │ ├── AccountEntrance.qml │ │ │ ├── SettingsPage.qml │ │ │ ├── TransferPage.qml │ │ │ ├── browser │ │ │ ├── FileBrowser.qml │ │ │ ├── FileDetails.qml │ │ │ ├── RemoteDirSelectDialog.qml │ │ │ └── controls │ │ │ │ └── FileOperationsContextMenu.qml │ │ │ └── login │ │ │ ├── AccountSelection.qml │ │ │ ├── BasicAuthentication.qml │ │ │ ├── Entrance.qml │ │ │ ├── FlowAuthentication.qml │ │ │ └── SSLErrorDialog.qml │ ├── qtquickcontrols2.conf │ ├── src │ │ ├── daemonctrl │ │ │ ├── daemoncontrol.cpp │ │ │ ├── daemoncontrol.h │ │ │ ├── dummydaemonctrl.cpp │ │ │ └── dummydaemonctrl.h │ │ ├── directorycontentmodel.cpp │ │ ├── directorycontentmodel.h │ │ ├── main.cpp │ │ ├── ocsnetaccessfactory.cpp │ │ ├── ocsnetaccessfactory.h │ │ ├── os │ │ │ ├── android │ │ │ │ ├── intentfileselector.cpp │ │ │ │ ├── intentfileselector.h │ │ │ │ ├── intentfileselectorreceiver.cpp │ │ │ │ └── intentfileselectorreceiver.h │ │ │ └── dummy │ │ │ │ ├── dummyintentfileselector.cpp │ │ │ │ └── dummyintentfileselector.h │ │ ├── webdavmediafeeder.cpp │ │ └── webdavmediafeeder.h │ ├── theme.qrc │ └── translations │ │ ├── harbour-owncloud-de.ts │ │ ├── harbour-owncloud-fi.ts │ │ ├── harbour-owncloud-fr.ts │ │ ├── harbour-owncloud-nl.ts │ │ ├── harbour-owncloud-sl.ts │ │ ├── harbour-owncloud-sv.ts │ │ ├── harbour-owncloud-zh_CN.ts │ │ └── harbour-owncloud.ts ├── common │ ├── CMakeLists.txt │ ├── common.pri │ ├── common.pro │ └── src │ │ ├── accountworkergenerator.cpp │ │ ├── accountworkergenerator.h │ │ ├── accountworkers.cpp │ │ ├── accountworkers.h │ │ ├── auth │ │ ├── authenticationexaminer.cpp │ │ ├── authenticationexaminer.h │ │ ├── authenticator.cpp │ │ ├── authenticator.h │ │ ├── flowloginauthenticator.cpp │ │ ├── flowloginauthenticator.h │ │ ├── qwebdavauthenticator.cpp │ │ └── qwebdavauthenticator.h │ │ ├── cacheprovider.cpp │ │ ├── cacheprovider.h │ │ ├── commands │ │ ├── http │ │ │ ├── httpcommandentity.cpp │ │ │ ├── httpcommandentity.h │ │ │ ├── httpgetcommandentity.cpp │ │ │ └── httpgetcommandentity.h │ │ ├── nopcommandentity.cpp │ │ ├── nopcommandentity.h │ │ ├── ocs │ │ │ ├── ocscommandentity.cpp │ │ │ ├── ocscommandentity.h │ │ │ ├── ocssharelistcommandentity.cpp │ │ │ ├── ocssharelistcommandentity.h │ │ │ ├── ocsuserinfocommandentity.cpp │ │ │ └── ocsuserinfocommandentity.h │ │ ├── sync │ │ │ ├── ncdirtreecommandunit.cpp │ │ │ ├── ncdirtreecommandunit.h │ │ │ ├── ncsynccommandunit.cpp │ │ │ └── ncsynccommandunit.h │ │ ├── ubuntutouch │ │ │ ├── utfiledownloadcommandentity.cpp │ │ │ ├── utfiledownloadcommandentity.h │ │ │ ├── utfileuploadcommandentity.cpp │ │ │ └── utfileuploadcommandentity.h │ │ └── webdav │ │ │ ├── davcopycommandentity.cpp │ │ │ ├── davcopycommandentity.h │ │ │ ├── davlistcommandentity.cpp │ │ │ ├── davlistcommandentity.h │ │ │ ├── davmovecommandentity.cpp │ │ │ ├── davmovecommandentity.h │ │ │ ├── davproppatchcommandentity.cpp │ │ │ ├── davproppatchcommandentity.h │ │ │ ├── davrmcommandentity.cpp │ │ │ ├── davrmcommandentity.h │ │ │ ├── filedownloadcommandentity.cpp │ │ │ ├── filedownloadcommandentity.h │ │ │ ├── fileuploadcommandentity.cpp │ │ │ ├── fileuploadcommandentity.h │ │ │ ├── mkdavdircommandentity.cpp │ │ │ ├── mkdavdircommandentity.h │ │ │ ├── webdavcommandentity.cpp │ │ │ └── webdavcommandentity.h │ │ ├── net │ │ ├── abstractfetcher.cpp │ │ ├── abstractfetcher.h │ │ ├── avatarfetcher.cpp │ │ ├── avatarfetcher.h │ │ ├── thumbnailfetcher.cpp │ │ └── thumbnailfetcher.h │ │ ├── nextcloudendpointconsts.h │ │ ├── ownclouddbusconsts.h │ │ ├── provider │ │ ├── accountinfo │ │ │ ├── accountinfoprovider.cpp │ │ │ ├── accountinfoprovider.h │ │ │ ├── ocscommandqueue.cpp │ │ │ └── ocscommandqueue.h │ │ ├── settingsbackedcommandqueue.cpp │ │ ├── settingsbackedcommandqueue.h │ │ ├── sharing │ │ │ ├── ocssharingcommandqueue.cpp │ │ │ ├── ocssharingcommandqueue.h │ │ │ ├── sharingprovider.cpp │ │ │ └── sharingprovider.h │ │ └── storage │ │ │ ├── cloudstorageprovider.cpp │ │ │ ├── cloudstorageprovider.h │ │ │ ├── webdavcommandqueue.cpp │ │ │ └── webdavcommandqueue.h │ │ ├── settings │ │ ├── db │ │ │ ├── accountdb.cpp │ │ │ ├── accountdb.h │ │ │ ├── accountsdbinterface.h │ │ │ ├── syncdb.cpp │ │ │ ├── syncdb.h │ │ │ ├── utaccountsdb.cpp │ │ │ └── utaccountsdb.h │ │ ├── inifilesettings.cpp │ │ ├── inifilesettings.h │ │ ├── nextcloudsettingsbase.cpp │ │ ├── nextcloudsettingsbase.h │ │ ├── permittedsettings.cpp │ │ └── permittedsettings.h │ │ ├── sharedstatecontroller.cpp │ │ ├── sharedstatecontroller.h │ │ └── util │ │ ├── commandutil.cpp │ │ ├── commandutil.h │ │ ├── filepathutil.cpp │ │ ├── filepathutil.h │ │ ├── providerutils.cpp │ │ ├── providerutils.h │ │ ├── qappprepareutil.h │ │ ├── shellcommand.cpp │ │ ├── shellcommand.h │ │ ├── webdav_utils.cpp │ │ └── webdav_utils.h ├── daemon │ ├── daemon.pro │ ├── dbushandler.cpp │ ├── dbushandler.h │ ├── filesystem.cpp │ ├── filesystem.h │ ├── harbour-owncloud-daemon.service │ ├── main.cpp │ ├── networkmonitor.cpp │ ├── networkmonitor.h │ ├── uploader.cpp │ └── uploader.h ├── permission-agent │ ├── PermissionsDialog.qml │ ├── dbushandler.cpp │ ├── dbushandler.h │ ├── dialogview.cpp │ ├── dialogview.h │ ├── harbour-owncloud-permission-agent.service │ ├── main.cpp │ ├── permission-agent.pro │ ├── permissionrequestqueue.cpp │ ├── permissionrequestqueue.h │ └── qml.qrc ├── qmlcommon │ ├── qmlcommon.pri │ └── src │ │ ├── qmlmap.cpp │ │ └── qmlmap.h ├── qmlextension │ ├── harbourowncloudqmlplugin.cpp │ ├── harbourowncloudqmlplugin.h │ ├── qmldir │ └── qmlextension.pro ├── sharing │ ├── GhostCloudShareUI.qml │ ├── ghostcloudconsts.h │ ├── ghostcloudplugininfo.cpp │ ├── ghostcloudplugininfo.h │ ├── ghostcloudshareplugin.cpp │ ├── ghostcloudshareplugin.h │ ├── ghostclouduploader.cpp │ ├── ghostclouduploader.h │ ├── icons │ │ ├── z1.0 │ │ │ └── icon-m-share-harbour-owncloud.png │ │ ├── z1.25 │ │ │ └── icon-m-share-harbour-owncloud.png │ │ ├── z1.5-large │ │ │ └── icon-m-share-harbour-owncloud.png │ │ └── z1.75 │ │ │ └── icon-m-share-harbour-owncloud.png │ └── sharing.pro ├── src.pro └── ut-photobackup │ ├── icons.qrc │ ├── icons │ └── icon_gray.svg │ ├── qml.qrc │ ├── qml │ └── main.qml │ ├── src │ ├── daemoncontrol.cpp │ ├── daemoncontrol.h │ ├── main.cpp │ ├── servicecreator.cpp │ └── servicecreator.h │ └── ut-photobackup.pro └── utphotobackup ├── ghostcloud.png ├── harbour-owncloud-photobackup.accounts ├── harbour-owncloud-photobackup.apparmor ├── harbour-owncloud-photobackup.desktop ├── manifest.json.in ├── run.sh └── utphotobackup.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/build_android_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/3rdparty/build_android_openssl.sh -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/TODO -------------------------------------------------------------------------------- /click/click.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/click.pro -------------------------------------------------------------------------------- /click/ghostcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/ghostcloud.png -------------------------------------------------------------------------------- /click/harbour-owncloud.accounts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/harbour-owncloud.accounts -------------------------------------------------------------------------------- /click/harbour-owncloud.apparmor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/harbour-owncloud.apparmor -------------------------------------------------------------------------------- /click/harbour-owncloud.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/harbour-owncloud.desktop -------------------------------------------------------------------------------- /click/manifest.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/manifest.json.in -------------------------------------------------------------------------------- /click/run-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/run-daemon.sh -------------------------------------------------------------------------------- /click/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/click/run.sh -------------------------------------------------------------------------------- /clickable-ut-photo-backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/clickable-ut-photo-backup.json -------------------------------------------------------------------------------- /clickable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/clickable.json -------------------------------------------------------------------------------- /harbour-owncloud.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/harbour-owncloud.pro -------------------------------------------------------------------------------- /misc/notes/multi_account_transfer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/misc/notes/multi_account_transfer.txt -------------------------------------------------------------------------------- /misc/readme/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/misc/readme/cover.png -------------------------------------------------------------------------------- /misc/readme/filebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/misc/readme/filebrowser.png -------------------------------------------------------------------------------- /misc/readme/filedetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/misc/readme/filedetails.png -------------------------------------------------------------------------------- /misc/readme/mediapreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/misc/readme/mediapreview.png -------------------------------------------------------------------------------- /misc/readme/userinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/misc/readme/userinfo.png -------------------------------------------------------------------------------- /rpm/harbour-owncloud.changes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/rpm/harbour-owncloud.changes.in -------------------------------------------------------------------------------- /rpm/harbour-owncloud.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/rpm/harbour-owncloud.spec -------------------------------------------------------------------------------- /rpm/harbour-owncloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/rpm/harbour-owncloud.yaml -------------------------------------------------------------------------------- /snap/gui/harbour-owncloud.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/snap/gui/harbour-owncloud.desktop -------------------------------------------------------------------------------- /snap/gui/harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/snap/gui/harbour-owncloud.png -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/build.gradle -------------------------------------------------------------------------------- /src/app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/app/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/gradlew -------------------------------------------------------------------------------- /src/app/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/gradlew.bat -------------------------------------------------------------------------------- /src/app/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /src/app/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /src/app/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/res/values/libs.xml -------------------------------------------------------------------------------- /src/app/android/src/me/fredl/ghostcloud/ShareUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/android/src/me/fredl/ghostcloud/ShareUtil.java -------------------------------------------------------------------------------- /src/app/app.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/app.pro -------------------------------------------------------------------------------- /src/app/harbour-owncloud.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/harbour-owncloud.desktop -------------------------------------------------------------------------------- /src/app/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons.qrc -------------------------------------------------------------------------------- /src/app/icons/108x108/harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/108x108/harbour-owncloud.png -------------------------------------------------------------------------------- /src/app/icons/128x128/harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/128x128/harbour-owncloud.png -------------------------------------------------------------------------------- /src/app/icons/172x172/harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/172x172/harbour-owncloud.png -------------------------------------------------------------------------------- /src/app/icons/86x86/harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/86x86/harbour-owncloud.png -------------------------------------------------------------------------------- /src/app/icons/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/banner.png -------------------------------------------------------------------------------- /src/app/icons/harbour-owncloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/harbour-owncloud.svg -------------------------------------------------------------------------------- /src/app/icons/harbour-owncloud_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/harbour-owncloud_512.png -------------------------------------------------------------------------------- /src/app/icons/icon_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/icons/icon_gray.svg -------------------------------------------------------------------------------- /src/app/icons/theme: -------------------------------------------------------------------------------- 1 | breeze-icons/icons -------------------------------------------------------------------------------- /src/app/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/ios/Info.plist -------------------------------------------------------------------------------- /src/app/macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/macos/Info.plist -------------------------------------------------------------------------------- /src/app/qml-sfos.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml-sfos.qrc -------------------------------------------------------------------------------- /src/app/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml.qrc -------------------------------------------------------------------------------- /src/app/qml/dummy/FileSelectionDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/dummy/FileSelectionDialog.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/BrowserCommandPageFlow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/BrowserCommandPageFlow.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/CommandPageFlow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/CommandPageFlow.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/controls/GCButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/controls/GCButton.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/dialogs/RemoteDirSelectDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/dialogs/RemoteDirSelectDialog.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/dialogs/SSLErrorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/dialogs/SSLErrorDialog.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/dialogs/WebDavAccountDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/dialogs/WebDavAccountDialog.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/dialogs/fileselect/QQDFilePicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/dialogs/fileselect/QQDFilePicker.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/dialogs/fileselect/UbuntuContentHubOpener.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/dialogs/fileselect/UbuntuContentHubOpener.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/dialogs/fileselect/UbuntuContentPicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/dialogs/fileselect/UbuntuContentPicker.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/main.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/pages/About.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/pages/About.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/pages/AccountSelection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/pages/AccountSelection.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/pages/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/pages/SettingsPage.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/pages/TransferPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/pages/TransferPage.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/pages/browser/FileBrowser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/pages/browser/FileBrowser.qml -------------------------------------------------------------------------------- /src/app/qml/qqc/pages/browser/FileDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/qqc/pages/browser/FileDetails.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/OcsUserInfo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/OcsUserInfo.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/cover/CoverDetailItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/cover/CoverDetailItem.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/cover/CoverPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/cover/CoverPage.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/harbour-owncloud.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/harbour-owncloud.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/js/TransferUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/js/TransferUtil.js -------------------------------------------------------------------------------- /src/app/qml/sfos/navigation/BrowserCommandPageFlow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/navigation/BrowserCommandPageFlow.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/navigation/CommandPageFlow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/navigation/CommandPageFlow.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/About.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/About.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/AccountEntrance.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/AccountEntrance.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/SettingsPage.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/TransferPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/TransferPage.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/browser/FileBrowser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/browser/FileBrowser.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/browser/FileDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/browser/FileDetails.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/browser/RemoteDirSelectDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/browser/RemoteDirSelectDialog.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/browser/controls/FileOperationsContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/browser/controls/FileOperationsContextMenu.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/login/AccountSelection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/login/AccountSelection.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/login/BasicAuthentication.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/login/BasicAuthentication.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/login/Entrance.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/login/Entrance.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/login/FlowAuthentication.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/login/FlowAuthentication.qml -------------------------------------------------------------------------------- /src/app/qml/sfos/pages/login/SSLErrorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qml/sfos/pages/login/SSLErrorDialog.qml -------------------------------------------------------------------------------- /src/app/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/qtquickcontrols2.conf -------------------------------------------------------------------------------- /src/app/src/daemonctrl/daemoncontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/daemonctrl/daemoncontrol.cpp -------------------------------------------------------------------------------- /src/app/src/daemonctrl/daemoncontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/daemonctrl/daemoncontrol.h -------------------------------------------------------------------------------- /src/app/src/daemonctrl/dummydaemonctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/daemonctrl/dummydaemonctrl.cpp -------------------------------------------------------------------------------- /src/app/src/daemonctrl/dummydaemonctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/daemonctrl/dummydaemonctrl.h -------------------------------------------------------------------------------- /src/app/src/directorycontentmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/directorycontentmodel.cpp -------------------------------------------------------------------------------- /src/app/src/directorycontentmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/directorycontentmodel.h -------------------------------------------------------------------------------- /src/app/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/main.cpp -------------------------------------------------------------------------------- /src/app/src/ocsnetaccessfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/ocsnetaccessfactory.cpp -------------------------------------------------------------------------------- /src/app/src/ocsnetaccessfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/ocsnetaccessfactory.h -------------------------------------------------------------------------------- /src/app/src/os/android/intentfileselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/os/android/intentfileselector.cpp -------------------------------------------------------------------------------- /src/app/src/os/android/intentfileselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/os/android/intentfileselector.h -------------------------------------------------------------------------------- /src/app/src/os/android/intentfileselectorreceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/os/android/intentfileselectorreceiver.cpp -------------------------------------------------------------------------------- /src/app/src/os/android/intentfileselectorreceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/os/android/intentfileselectorreceiver.h -------------------------------------------------------------------------------- /src/app/src/os/dummy/dummyintentfileselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/os/dummy/dummyintentfileselector.cpp -------------------------------------------------------------------------------- /src/app/src/os/dummy/dummyintentfileselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/os/dummy/dummyintentfileselector.h -------------------------------------------------------------------------------- /src/app/src/webdavmediafeeder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/webdavmediafeeder.cpp -------------------------------------------------------------------------------- /src/app/src/webdavmediafeeder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/src/webdavmediafeeder.h -------------------------------------------------------------------------------- /src/app/theme.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/theme.qrc -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud-de.ts -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud-fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud-fi.ts -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud-fr.ts -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud-nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud-nl.ts -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud-sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud-sl.ts -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud-sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud-sv.ts -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud-zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud-zh_CN.ts -------------------------------------------------------------------------------- /src/app/translations/harbour-owncloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/app/translations/harbour-owncloud.ts -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/common.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/common.pri -------------------------------------------------------------------------------- /src/common/common.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/common.pro -------------------------------------------------------------------------------- /src/common/src/accountworkergenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/accountworkergenerator.cpp -------------------------------------------------------------------------------- /src/common/src/accountworkergenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/accountworkergenerator.h -------------------------------------------------------------------------------- /src/common/src/accountworkers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/accountworkers.cpp -------------------------------------------------------------------------------- /src/common/src/accountworkers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/accountworkers.h -------------------------------------------------------------------------------- /src/common/src/auth/authenticationexaminer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/authenticationexaminer.cpp -------------------------------------------------------------------------------- /src/common/src/auth/authenticationexaminer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/authenticationexaminer.h -------------------------------------------------------------------------------- /src/common/src/auth/authenticator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/authenticator.cpp -------------------------------------------------------------------------------- /src/common/src/auth/authenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/authenticator.h -------------------------------------------------------------------------------- /src/common/src/auth/flowloginauthenticator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/flowloginauthenticator.cpp -------------------------------------------------------------------------------- /src/common/src/auth/flowloginauthenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/flowloginauthenticator.h -------------------------------------------------------------------------------- /src/common/src/auth/qwebdavauthenticator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/qwebdavauthenticator.cpp -------------------------------------------------------------------------------- /src/common/src/auth/qwebdavauthenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/auth/qwebdavauthenticator.h -------------------------------------------------------------------------------- /src/common/src/cacheprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/cacheprovider.cpp -------------------------------------------------------------------------------- /src/common/src/cacheprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/cacheprovider.h -------------------------------------------------------------------------------- /src/common/src/commands/http/httpcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/http/httpcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/http/httpcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/http/httpcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/http/httpgetcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/http/httpgetcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/http/httpgetcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/http/httpgetcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/nopcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/nopcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/nopcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/nopcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/ocs/ocscommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ocs/ocscommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/ocs/ocscommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ocs/ocscommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/ocs/ocssharelistcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ocs/ocssharelistcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/ocs/ocssharelistcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ocs/ocssharelistcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/ocs/ocsuserinfocommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ocs/ocsuserinfocommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/ocs/ocsuserinfocommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ocs/ocsuserinfocommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/sync/ncdirtreecommandunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/sync/ncdirtreecommandunit.cpp -------------------------------------------------------------------------------- /src/common/src/commands/sync/ncdirtreecommandunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/sync/ncdirtreecommandunit.h -------------------------------------------------------------------------------- /src/common/src/commands/sync/ncsynccommandunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/sync/ncsynccommandunit.cpp -------------------------------------------------------------------------------- /src/common/src/commands/sync/ncsynccommandunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/sync/ncsynccommandunit.h -------------------------------------------------------------------------------- /src/common/src/commands/ubuntutouch/utfiledownloadcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ubuntutouch/utfiledownloadcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/ubuntutouch/utfiledownloadcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ubuntutouch/utfiledownloadcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/ubuntutouch/utfileuploadcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ubuntutouch/utfileuploadcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/ubuntutouch/utfileuploadcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/ubuntutouch/utfileuploadcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davcopycommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davcopycommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davcopycommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davcopycommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davlistcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davlistcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davlistcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davlistcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davmovecommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davmovecommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davmovecommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davmovecommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davproppatchcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davproppatchcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davproppatchcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davproppatchcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davrmcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davrmcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/davrmcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/davrmcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/filedownloadcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/filedownloadcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/filedownloadcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/filedownloadcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/fileuploadcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/fileuploadcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/fileuploadcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/fileuploadcommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/mkdavdircommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/mkdavdircommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/mkdavdircommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/mkdavdircommandentity.h -------------------------------------------------------------------------------- /src/common/src/commands/webdav/webdavcommandentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/webdavcommandentity.cpp -------------------------------------------------------------------------------- /src/common/src/commands/webdav/webdavcommandentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/commands/webdav/webdavcommandentity.h -------------------------------------------------------------------------------- /src/common/src/net/abstractfetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/net/abstractfetcher.cpp -------------------------------------------------------------------------------- /src/common/src/net/abstractfetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/net/abstractfetcher.h -------------------------------------------------------------------------------- /src/common/src/net/avatarfetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/net/avatarfetcher.cpp -------------------------------------------------------------------------------- /src/common/src/net/avatarfetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/net/avatarfetcher.h -------------------------------------------------------------------------------- /src/common/src/net/thumbnailfetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/net/thumbnailfetcher.cpp -------------------------------------------------------------------------------- /src/common/src/net/thumbnailfetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/net/thumbnailfetcher.h -------------------------------------------------------------------------------- /src/common/src/nextcloudendpointconsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/nextcloudendpointconsts.h -------------------------------------------------------------------------------- /src/common/src/ownclouddbusconsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/ownclouddbusconsts.h -------------------------------------------------------------------------------- /src/common/src/provider/accountinfo/accountinfoprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/accountinfo/accountinfoprovider.cpp -------------------------------------------------------------------------------- /src/common/src/provider/accountinfo/accountinfoprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/accountinfo/accountinfoprovider.h -------------------------------------------------------------------------------- /src/common/src/provider/accountinfo/ocscommandqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/accountinfo/ocscommandqueue.cpp -------------------------------------------------------------------------------- /src/common/src/provider/accountinfo/ocscommandqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/accountinfo/ocscommandqueue.h -------------------------------------------------------------------------------- /src/common/src/provider/settingsbackedcommandqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/settingsbackedcommandqueue.cpp -------------------------------------------------------------------------------- /src/common/src/provider/settingsbackedcommandqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/settingsbackedcommandqueue.h -------------------------------------------------------------------------------- /src/common/src/provider/sharing/ocssharingcommandqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/sharing/ocssharingcommandqueue.cpp -------------------------------------------------------------------------------- /src/common/src/provider/sharing/ocssharingcommandqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/sharing/ocssharingcommandqueue.h -------------------------------------------------------------------------------- /src/common/src/provider/sharing/sharingprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/sharing/sharingprovider.cpp -------------------------------------------------------------------------------- /src/common/src/provider/sharing/sharingprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/sharing/sharingprovider.h -------------------------------------------------------------------------------- /src/common/src/provider/storage/cloudstorageprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/storage/cloudstorageprovider.cpp -------------------------------------------------------------------------------- /src/common/src/provider/storage/cloudstorageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/storage/cloudstorageprovider.h -------------------------------------------------------------------------------- /src/common/src/provider/storage/webdavcommandqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/storage/webdavcommandqueue.cpp -------------------------------------------------------------------------------- /src/common/src/provider/storage/webdavcommandqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/provider/storage/webdavcommandqueue.h -------------------------------------------------------------------------------- /src/common/src/settings/db/accountdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/db/accountdb.cpp -------------------------------------------------------------------------------- /src/common/src/settings/db/accountdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/db/accountdb.h -------------------------------------------------------------------------------- /src/common/src/settings/db/accountsdbinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/db/accountsdbinterface.h -------------------------------------------------------------------------------- /src/common/src/settings/db/syncdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/db/syncdb.cpp -------------------------------------------------------------------------------- /src/common/src/settings/db/syncdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/db/syncdb.h -------------------------------------------------------------------------------- /src/common/src/settings/db/utaccountsdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/db/utaccountsdb.cpp -------------------------------------------------------------------------------- /src/common/src/settings/db/utaccountsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/db/utaccountsdb.h -------------------------------------------------------------------------------- /src/common/src/settings/inifilesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/inifilesettings.cpp -------------------------------------------------------------------------------- /src/common/src/settings/inifilesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/inifilesettings.h -------------------------------------------------------------------------------- /src/common/src/settings/nextcloudsettingsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/nextcloudsettingsbase.cpp -------------------------------------------------------------------------------- /src/common/src/settings/nextcloudsettingsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/nextcloudsettingsbase.h -------------------------------------------------------------------------------- /src/common/src/settings/permittedsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/permittedsettings.cpp -------------------------------------------------------------------------------- /src/common/src/settings/permittedsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/settings/permittedsettings.h -------------------------------------------------------------------------------- /src/common/src/sharedstatecontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/sharedstatecontroller.cpp -------------------------------------------------------------------------------- /src/common/src/sharedstatecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/sharedstatecontroller.h -------------------------------------------------------------------------------- /src/common/src/util/commandutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/commandutil.cpp -------------------------------------------------------------------------------- /src/common/src/util/commandutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/commandutil.h -------------------------------------------------------------------------------- /src/common/src/util/filepathutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/filepathutil.cpp -------------------------------------------------------------------------------- /src/common/src/util/filepathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/filepathutil.h -------------------------------------------------------------------------------- /src/common/src/util/providerutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/providerutils.cpp -------------------------------------------------------------------------------- /src/common/src/util/providerutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/providerutils.h -------------------------------------------------------------------------------- /src/common/src/util/qappprepareutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/qappprepareutil.h -------------------------------------------------------------------------------- /src/common/src/util/shellcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/shellcommand.cpp -------------------------------------------------------------------------------- /src/common/src/util/shellcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/shellcommand.h -------------------------------------------------------------------------------- /src/common/src/util/webdav_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/webdav_utils.cpp -------------------------------------------------------------------------------- /src/common/src/util/webdav_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/common/src/util/webdav_utils.h -------------------------------------------------------------------------------- /src/daemon/daemon.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/daemon.pro -------------------------------------------------------------------------------- /src/daemon/dbushandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/dbushandler.cpp -------------------------------------------------------------------------------- /src/daemon/dbushandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/dbushandler.h -------------------------------------------------------------------------------- /src/daemon/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/filesystem.cpp -------------------------------------------------------------------------------- /src/daemon/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/filesystem.h -------------------------------------------------------------------------------- /src/daemon/harbour-owncloud-daemon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/harbour-owncloud-daemon.service -------------------------------------------------------------------------------- /src/daemon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/main.cpp -------------------------------------------------------------------------------- /src/daemon/networkmonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/networkmonitor.cpp -------------------------------------------------------------------------------- /src/daemon/networkmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/networkmonitor.h -------------------------------------------------------------------------------- /src/daemon/uploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/uploader.cpp -------------------------------------------------------------------------------- /src/daemon/uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/daemon/uploader.h -------------------------------------------------------------------------------- /src/permission-agent/PermissionsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/PermissionsDialog.qml -------------------------------------------------------------------------------- /src/permission-agent/dbushandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/dbushandler.cpp -------------------------------------------------------------------------------- /src/permission-agent/dbushandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/dbushandler.h -------------------------------------------------------------------------------- /src/permission-agent/dialogview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/dialogview.cpp -------------------------------------------------------------------------------- /src/permission-agent/dialogview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/dialogview.h -------------------------------------------------------------------------------- /src/permission-agent/harbour-owncloud-permission-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/harbour-owncloud-permission-agent.service -------------------------------------------------------------------------------- /src/permission-agent/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/main.cpp -------------------------------------------------------------------------------- /src/permission-agent/permission-agent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/permission-agent.pro -------------------------------------------------------------------------------- /src/permission-agent/permissionrequestqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/permissionrequestqueue.cpp -------------------------------------------------------------------------------- /src/permission-agent/permissionrequestqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/permissionrequestqueue.h -------------------------------------------------------------------------------- /src/permission-agent/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/permission-agent/qml.qrc -------------------------------------------------------------------------------- /src/qmlcommon/qmlcommon.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/qmlcommon/qmlcommon.pri -------------------------------------------------------------------------------- /src/qmlcommon/src/qmlmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/qmlcommon/src/qmlmap.cpp -------------------------------------------------------------------------------- /src/qmlcommon/src/qmlmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/qmlcommon/src/qmlmap.h -------------------------------------------------------------------------------- /src/qmlextension/harbourowncloudqmlplugin.cpp: -------------------------------------------------------------------------------- 1 | #include "harbourowncloudqmlplugin.h" 2 | -------------------------------------------------------------------------------- /src/qmlextension/harbourowncloudqmlplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/qmlextension/harbourowncloudqmlplugin.h -------------------------------------------------------------------------------- /src/qmlextension/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/qmlextension/qmldir -------------------------------------------------------------------------------- /src/qmlextension/qmlextension.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/qmlextension/qmlextension.pro -------------------------------------------------------------------------------- /src/sharing/GhostCloudShareUI.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/GhostCloudShareUI.qml -------------------------------------------------------------------------------- /src/sharing/ghostcloudconsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/ghostcloudconsts.h -------------------------------------------------------------------------------- /src/sharing/ghostcloudplugininfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/ghostcloudplugininfo.cpp -------------------------------------------------------------------------------- /src/sharing/ghostcloudplugininfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/ghostcloudplugininfo.h -------------------------------------------------------------------------------- /src/sharing/ghostcloudshareplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/ghostcloudshareplugin.cpp -------------------------------------------------------------------------------- /src/sharing/ghostcloudshareplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/ghostcloudshareplugin.h -------------------------------------------------------------------------------- /src/sharing/ghostclouduploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/ghostclouduploader.cpp -------------------------------------------------------------------------------- /src/sharing/ghostclouduploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/ghostclouduploader.h -------------------------------------------------------------------------------- /src/sharing/icons/z1.0/icon-m-share-harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/icons/z1.0/icon-m-share-harbour-owncloud.png -------------------------------------------------------------------------------- /src/sharing/icons/z1.25/icon-m-share-harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/icons/z1.25/icon-m-share-harbour-owncloud.png -------------------------------------------------------------------------------- /src/sharing/icons/z1.5-large/icon-m-share-harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/icons/z1.5-large/icon-m-share-harbour-owncloud.png -------------------------------------------------------------------------------- /src/sharing/icons/z1.75/icon-m-share-harbour-owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/icons/z1.75/icon-m-share-harbour-owncloud.png -------------------------------------------------------------------------------- /src/sharing/sharing.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/sharing/sharing.pro -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/src.pro -------------------------------------------------------------------------------- /src/ut-photobackup/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/icons.qrc -------------------------------------------------------------------------------- /src/ut-photobackup/icons/icon_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/icons/icon_gray.svg -------------------------------------------------------------------------------- /src/ut-photobackup/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/qml.qrc -------------------------------------------------------------------------------- /src/ut-photobackup/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/qml/main.qml -------------------------------------------------------------------------------- /src/ut-photobackup/src/daemoncontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/src/daemoncontrol.cpp -------------------------------------------------------------------------------- /src/ut-photobackup/src/daemoncontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/src/daemoncontrol.h -------------------------------------------------------------------------------- /src/ut-photobackup/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/src/main.cpp -------------------------------------------------------------------------------- /src/ut-photobackup/src/servicecreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/src/servicecreator.cpp -------------------------------------------------------------------------------- /src/ut-photobackup/src/servicecreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/src/servicecreator.h -------------------------------------------------------------------------------- /src/ut-photobackup/ut-photobackup.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/src/ut-photobackup/ut-photobackup.pro -------------------------------------------------------------------------------- /utphotobackup/ghostcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/utphotobackup/ghostcloud.png -------------------------------------------------------------------------------- /utphotobackup/harbour-owncloud-photobackup.accounts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/utphotobackup/harbour-owncloud-photobackup.accounts -------------------------------------------------------------------------------- /utphotobackup/harbour-owncloud-photobackup.apparmor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/utphotobackup/harbour-owncloud-photobackup.apparmor -------------------------------------------------------------------------------- /utphotobackup/harbour-owncloud-photobackup.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/utphotobackup/harbour-owncloud-photobackup.desktop -------------------------------------------------------------------------------- /utphotobackup/manifest.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/utphotobackup/manifest.json.in -------------------------------------------------------------------------------- /utphotobackup/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/utphotobackup/run.sh -------------------------------------------------------------------------------- /utphotobackup/utphotobackup.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredldotme/harbour-owncloud/HEAD/utphotobackup/utphotobackup.pro --------------------------------------------------------------------------------