Home
last modified time | relevance | path

Searched refs:PropfindJob (Results 1 – 23 of 23) sorted by relevance

/dports/deskutils/nextcloudclient/desktop-3.4.1/src/gui/
H A Dinvalidfilenamedialog.cpp104 …const auto propfindJob = new PropfindJob(_account, QDir::cleanPath(_folder->remotePath() + _origin… in checkIfAllowedToRename()
106 …connect(propfindJob, &PropfindJob::result, this, &InvalidFilenameDialog::onPropfindPermissionSucce… in checkIfAllowedToRename()
128 …const auto propfindJob = new PropfindJob(_account, QDir::cleanPath(_folder->remotePath() + _newFil… in accept()
129 …connect(propfindJob, &PropfindJob::result, this, &InvalidFilenameDialog::onRemoteFileAlreadyExists… in accept()
130 …connect(propfindJob, &PropfindJob::finishedWithError, this, &InvalidFilenameDialog::onRemoteFileDo… in accept()
H A Dconnectionvalidator.cpp176 auto *job = new PropfindJob(_account, "/", this); in checkAuthentication()
179 connect(job, &PropfindJob::result, this, &ConnectionValidator::slotAuthSuccess); in checkAuthentication()
180 connect(job, &PropfindJob::finishedWithError, this, &ConnectionValidator::slotAuthFailed); in checkAuthentication()
186 auto job = qobject_cast<PropfindJob *>(sender()); in slotAuthFailed()
H A Dsharedialog.cpp127 auto job = new PropfindJob(accountState->account(), _sharePath); in ShareDialog()
134 connect(job, &PropfindJob::result, this, &ShareDialog::slotPropfindReceived); in ShareDialog()
135 connect(job, &PropfindJob::finishedWithError, this, &ShareDialog::slotPropfindError); in ShareDialog()
H A Downcloudsetupwizard.cpp355 auto *job = new PropfindJob(account, "/", this); in testOwnCloudConnect()
361 connect(job, &PropfindJob::result, _ocWizard, &OwncloudWizard::successfulStep); in testOwnCloudConnect()
362 connect(job, &PropfindJob::finishedWithError, this, &OwncloudSetupWizard::slotAuthError); in testOwnCloudConnect()
370 auto *job = qobject_cast<PropfindJob *>(sender()); in slotAuthError()
/dports/deskutils/owncloudclient/ownCloud-2.8.2.4246/src/gui/
H A Dconnectionvalidator.cpp172 PropfindJob *job = new PropfindJob(_account, "/", this); in checkAuthentication()
175 connect(job, &PropfindJob::result, this, &ConnectionValidator::slotAuthSuccess); in checkAuthentication()
176 connect(job, &PropfindJob::finishedWithError, this, &ConnectionValidator::slotAuthFailed); in checkAuthentication()
182 auto job = qobject_cast<PropfindJob *>(sender()); in slotAuthFailed()
H A Dquotainfo.h26 class PropfindJob; variable
85 QPointer<PropfindJob> _job; // the currently running job
H A Dquotainfo.cpp101 _job = new PropfindJob(account, quotaBaseFolder(), this); in slotCheckQuota()
104 connect(_job.data(), &PropfindJob::result, this, &QuotaInfo::slotUpdateLastQuota); in slotCheckQuota()
H A Dsharedialog.cpp134 auto job = new PropfindJob(accountState->account(), _sharePath); in ShareDialog()
141 connect(job, &PropfindJob::result, this, &ShareDialog::slotPropfindReceived); in ShareDialog()
142 connect(job, &PropfindJob::finishedWithError, this, &ShareDialog::slotPropfindError); in ShareDialog()
H A Downcloudsetupwizard.cpp296 auto *job = new PropfindJob(account, "/", this); in testOwnCloudConnect()
302 connect(job, &PropfindJob::result, _ocWizard, &OwncloudWizard::successfulStep); in testOwnCloudConnect()
303 connect(job, &PropfindJob::finishedWithError, this, &OwncloudSetupWizard::slotAuthError); in testOwnCloudConnect()
321 PropfindJob *job = qobject_cast<PropfindJob *>(sender()); in slotAuthError()
/dports/deskutils/owncloudclient/ownCloud-2.8.2.4246/src/libsync/
H A Dpropagateremotemkdir.cpp116 auto propfindJob = new PropfindJob(_job->account(), _job->path(), this); in slotMkcolJobFinished()
118 … QObject::connect(propfindJob, &PropfindJob::result, this, &PropagateRemoteMkdir::propfindResult); in slotMkcolJobFinished()
119 …QObject::connect(propfindJob, &PropfindJob::finishedWithError, this, &PropagateRemoteMkdir::propfi… in slotMkcolJobFinished()
H A Dnetworkjobs.cpp550 PropfindJob::PropfindJob(AccountPtr account, const QString &path, QObject *parent) in PropfindJob() function in OCC::PropfindJob
555 void PropfindJob::start() in start()
590 void PropfindJob::setProperties(QList<QByteArray> properties) in setProperties()
595 QList<QByteArray> PropfindJob::properties() const in properties()
600 bool PropfindJob::finished() in finished()
927 PropfindJob *job = new PropfindJob(account, remotePath, target); in fetchPrivateLinkUrl()
933 QObject::connect(job, &PropfindJob::result, target, [=](const QVariantMap &result) { in fetchPrivateLinkUrl()
944 QObject::connect(job, &PropfindJob::finishedWithError, target, [=](QNetworkReply *) { in fetchPrivateLinkUrl()
H A Ddiscoveryphase.cpp112 auto propfindJob = new PropfindJob(_account, _remoteFolder + path, this); in checkSelectiveSyncNewFolder()
115 QObject::connect(propfindJob, &PropfindJob::finishedWithError, in checkSelectiveSyncNewFolder()
117 QObject::connect(propfindJob, &PropfindJob::result, this, [=](const QVariantMap &values) { in checkSelectiveSyncNewFolder()
H A Dnetworkjobs.h122 class OWNCLOUDSYNC_EXPORT PropfindJob : public AbstractNetworkJob
126 explicit PropfindJob(AccountPtr account, const QString &path, QObject *parent = nullptr);
H A Dpropagateuploadtus.cpp229 … auto check = new PropfindJob(propagator()->account(), propagator()->fullRemotePath(_item->_file)); in slotChunkFinished()
232 connect(check, &PropfindJob::result, this, [this, check](const QVariantMap &map) { in slotChunkFinished()
H A Dpropagateupload.cpp658 …auto permCheck = new PropfindJob(propagator()->account(), propagator()->fullRemotePath(_item->_fil… in finalize()
661 connect(permCheck, &PropfindJob::result, this, [this, permCheck](const QVariantMap &map) { in finalize()
/dports/deskutils/owncloudclient/ownCloud-2.8.2.4246/src/gui/socketapi/
H A Dsocketuploadjob.cpp171 auto propfindJob = new PropfindJob(engine->account(), remotePath, this); in start()
174 … connect(propfindJob, &PropfindJob::result, this, [engine, this](const QVariantMap &data) { in start()
178 connect(propfindJob, &PropfindJob::finishedWithError, this, [this] { in start()
/dports/deskutils/nextcloudclient/desktop-3.4.1/src/libsync/
H A Dpropagateremotemkdir.cpp141 auto propfindJob = new PropfindJob(propagator()->account(), jobPath, this); in finalizeMkColJob()
143 connect(propfindJob, &PropfindJob::result, this, [this, jobPath](const QVariantMap &result){ in finalizeMkColJob()
162 connect(propfindJob, &PropfindJob::finishedWithError, this, [this]{ in finalizeMkColJob()
H A Dnetworkjobs.cpp564 PropfindJob::PropfindJob(AccountPtr account, const QString &path, QObject *parent) in PropfindJob() function in OCC::PropfindJob
569 void PropfindJob::start() in start()
605 void PropfindJob::setProperties(QList<QByteArray> properties) in setProperties()
610 QList<QByteArray> PropfindJob::properties() const in properties()
615 bool PropfindJob::finished() in finished()
1133 auto *job = new PropfindJob(account, remotePath, target); in fetchPrivateLinkUrl()
1139 QObject::connect(job, &PropfindJob::result, target, [=](const QVariantMap &result) { in fetchPrivateLinkUrl()
1150 QObject::connect(job, &PropfindJob::finishedWithError, target, [=](QNetworkReply *) { in fetchPrivateLinkUrl()
H A Dnetworkjobs.h154 class OWNCLOUDSYNC_EXPORT PropfindJob : public AbstractNetworkJob
158 explicit PropfindJob(AccountPtr account, const QString &path, QObject *parent = nullptr);
H A Ddiscoveryphase.cpp115 auto propfindJob = new PropfindJob(_account, _remoteFolder + path, this); in checkSelectiveSyncNewFolder()
118 QObject::connect(propfindJob, &PropfindJob::finishedWithError, in checkSelectiveSyncNewFolder()
120 QObject::connect(propfindJob, &PropfindJob::result, this, [=](const QVariantMap &values) { in checkSelectiveSyncNewFolder()
/dports/deskutils/owncloudclient/ownCloud-2.8.2.4246/src/gui/wizard/
H A Downcloudadvancedsetuppage.cpp168 auto quotaJob = new PropfindJob(acc, _remoteFolder, this); in initializePage()
171 connect(quotaJob, &PropfindJob::result, this, &OwncloudAdvancedSetupPage::slotQuotaRetrieved); in initializePage()
/dports/deskutils/nextcloudclient/desktop-3.4.1/src/gui/wizard/
H A Downcloudadvancedsetuppage.cpp157 auto quotaJob = new PropfindJob(acc, _remoteFolder, this); in initializePage()
160 connect(quotaJob, &PropfindJob::result, this, &OwncloudAdvancedSetupPage::slotQuotaRetrieved); in initializePage()
/dports/deskutils/nextcloudclient/desktop-3.4.1/
H A DChangeLog19 * Add UserInfo class and fetch quota via API instead of PropfindJob