diff --git a/plugins/subversion/CMakeLists.txt b/plugins/subversion/CMakeLists.txt --- a/plugins/subversion/CMakeLists.txt +++ b/plugins/subversion/CMakeLists.txt @@ -24,7 +24,6 @@ svnremovejob.cpp svninfojob.cpp svndiffjob.cpp - svncatjob.cpp svncopyjob.cpp svnmovejob.cpp svnlogjob.cpp @@ -37,7 +36,6 @@ kdevsvnplugin.cpp svnssldialog.cpp svnimportmetadatawidget.cpp - svncheckoutmetadatawidget.cpp svnclient.cpp svnlocationwidget.cpp ) @@ -51,7 +49,6 @@ set(kdevsubversion_PART_UI ui/ssltrustdialog.ui ui/importmetadatawidget.ui - ui/checkoutmetadatawidget.ui ) ki18n_wrap_ui(kdevsubversion_PART_SRCS ${kdevsubversion_PART_UI}) diff --git a/plugins/subversion/kdevsvnplugin.h b/plugins/subversion/kdevsvnplugin.h --- a/plugins/subversion/kdevsvnplugin.h +++ b/plugins/subversion/kdevsvnplugin.h @@ -137,13 +137,8 @@ public Q_SLOTS: // invoked by context-menu - void ctxInfo(); - void ctxStatus(); void ctxCopy(); void ctxMove(); - void ctxCat(); - void ctxImport(); - void ctxCheckout(); private: QScopedPointer m_common; QAction* copy_action; diff --git a/plugins/subversion/kdevsvnplugin.cpp b/plugins/subversion/kdevsvnplugin.cpp --- a/plugins/subversion/kdevsvnplugin.cpp +++ b/plugins/subversion/kdevsvnplugin.cpp @@ -56,7 +56,6 @@ #include "svncheckoutjob.h" #include "svnimportmetadatawidget.h" -#include "svncheckoutmetadatawidget.h" #include #include #include "svnlocationwidget.h" @@ -354,24 +353,6 @@ return menuExt; } -void KDevSvnPlugin::ctxInfo() -{ - QList const & ctxUrlList = m_common->contextUrlList(); - if (ctxUrlList.count() != 1) { - KMessageBox::error(nullptr, i18n("Please select only one item for this operation")); - return; - } -} - -void KDevSvnPlugin::ctxStatus() -{ - QList const & ctxUrlList = m_common->contextUrlList(); - if (ctxUrlList.count() > 1) { - KMessageBox::error(nullptr, i18n("Please select only one item for this operation")); - return; - } -} - void KDevSvnPlugin::ctxCopy() { QList const & ctxUrlList = m_common->contextUrlList(); @@ -443,15 +424,6 @@ } } -void KDevSvnPlugin::ctxCat() -{ - QList const & ctxUrlList = m_common->contextUrlList(); - if (ctxUrlList.count() != 1) { - KMessageBox::error(nullptr, i18n("Please select only one item for this operation")); - return; - } -} - QString KDevSvnPlugin::name() const { return i18n("Subversion"); @@ -462,60 +434,6 @@ return new SvnImportMetadataWidget(parent); } -void KDevSvnPlugin::ctxImport() -{ - QList const & ctxUrlList = m_common->contextUrlList(); - if (ctxUrlList.count() != 1) { - KMessageBox::error(nullptr, i18n("Please select only one item for this operation")); - return; - } - - QDialog dlg; - - dlg.setWindowTitle(i18n("Import into Subversion repository")); - SvnImportMetadataWidget* widget = new SvnImportMetadataWidget(&dlg); - widget->setSourceLocation(KDevelop::VcsLocation(ctxUrlList.first())); - widget->setSourceLocationEditable(false); - auto buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); - auto layout = new QVBoxLayout(); - dlg.setLayout(layout); - layout->addWidget(widget); - layout->addWidget(buttonBox); - connect(buttonBox, &QDialogButtonBox::accepted, &dlg, &QDialog::accept); - connect(buttonBox, &QDialogButtonBox::rejected, &dlg, &QDialog::reject); - - if (dlg.exec() == QDialog::Accepted) { - KDevelop::ICore::self()->runController()->registerJob(import(widget->message(), widget->source(), widget->destination())); - } -} - -void KDevSvnPlugin::ctxCheckout() -{ - QList const & ctxUrlList = m_common->contextUrlList(); - if (ctxUrlList.count() != 1) { - KMessageBox::error(nullptr, i18n("Please select only one item for this operation")); - return; - } - - QDialog dlg; - - dlg.setWindowTitle(i18n("Checkout from Subversion repository")); - SvnCheckoutMetadataWidget* widget = new SvnCheckoutMetadataWidget(&dlg); - QUrl tmp = KIO::upUrl(ctxUrlList.first()); - widget->setDestinationLocation(tmp); - auto buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); - auto layout = new QVBoxLayout(); - dlg.setLayout(layout); - layout->addWidget(widget); - layout->addWidget(buttonBox); - connect(buttonBox, &QDialogButtonBox::accepted, &dlg, &QDialog::accept); - connect(buttonBox, &QDialogButtonBox::rejected, &dlg, &QDialog::reject); - - if (dlg.exec() == QDialog::Accepted) { - KDevelop::ICore::self()->runController()->registerJob(createWorkingCopy(widget->source(), widget->destination(), widget->recursionMode())); - } -} - KDevelop::VcsLocationWidget* KDevSvnPlugin::vcsLocation(QWidget* parent) const { return new SvnLocationWidget(parent); diff --git a/plugins/subversion/svncatjob.h b/plugins/subversion/svncatjob.h deleted file mode 100644 --- a/plugins/subversion/svncatjob.h +++ /dev/null @@ -1,52 +0,0 @@ -/*************************************************************************** - * This file is part of KDevelop * - * Copyright 2007 Andreas Pakulat * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Library General Public License as * - * published by the Free Software Foundation; either version 2 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU Library General Public * - * License along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#ifndef KDEVPLATFORM_PLUGIN_SVNCATJOB_H -#define KDEVPLATFORM_PLUGIN_SVNCATJOB_H - -#include "svnjobbase.h" - -namespace KDevelop -{ - class VcsRevision; -} - -class SvnInternalCatJob; - -class SvnCatJob : public SvnJobBaseImpl -{ - Q_OBJECT -public: - explicit SvnCatJob( KDevSvnPlugin* parent ); - QVariant fetchResults() override; - void start() override; - void setSource( const KDevelop::VcsLocation& ); - void setPegRevision( const KDevelop::VcsRevision& ); - void setSrcRevision( const KDevelop::VcsRevision& ); - -public Q_SLOTS: - void setContent( const QString& ); -private: - QString m_content; -}; - - -#endif - diff --git a/plugins/subversion/svncatjob.cpp b/plugins/subversion/svncatjob.cpp deleted file mode 100644 --- a/plugins/subversion/svncatjob.cpp +++ /dev/null @@ -1,150 +0,0 @@ -/*************************************************************************** - * This file is part of KDevelop * - * Copyright 2007 Andreas Pakulat * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Library General Public License as * - * published by the Free Software Foundation; either version 2 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU Library General Public * - * License along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include "svncatjob.h" -#include "svncatjob_p.h" - -#include - -#include - -#include - -#include "kdevsvncpp/path.hpp" -#include "kdevsvncpp/revision.hpp" - -#include "svnclient.h" - -SvnInternalCatJob::SvnInternalCatJob( SvnJobBase* parent ) - : SvnInternalJobBase( parent ) -{ - m_pegRevision.setRevisionValue( KDevelop::VcsRevision::Head, - KDevelop::VcsRevision::Special ); -} - -void SvnInternalCatJob::run(ThreadWeaver::JobPointer /*self*/, ThreadWeaver::Thread* /*thread*/) -{ - initBeforeRun(); - - SvnClient cli(m_ctxt); - try - { - - QString content; - QByteArray srcba; - if( source().type() == KDevelop::VcsLocation::LocalLocation ) - { - QUrl url = source().localUrl(); - srcba = url.toString( QUrl::PreferLocalFile | QUrl::StripTrailingSlash ).toUtf8(); - }else - { - srcba = source().repositoryServer().toUtf8(); - } - svn::Revision srcRev = createSvnCppRevisionFromVcsRevision( srcRevision() ); - content = QString::fromUtf8( cli.cat( svn::Path( srcba.data() ), srcRev ).c_str() ); - emit gotContent( content ); - }catch( svn::ClientException ce ) - { - qCDebug(PLUGIN_SVN) << "Exception while doing a diff: " - << m_source.localUrl() << m_source.repositoryServer() << m_srcRevision.revisionValue() - << QString::fromUtf8( ce.message() ); - setErrorMessage( QString::fromUtf8( ce.message() ) ); - m_success = false; - } -} - - -void SvnInternalCatJob::setSource( const KDevelop::VcsLocation& src ) -{ - QMutexLocker l( &m_mutex ); - m_source = src; -} -void SvnInternalCatJob::setSrcRevision( const KDevelop::VcsRevision& srcRev ) -{ - QMutexLocker l( &m_mutex ); - m_srcRevision = srcRev; -} -void SvnInternalCatJob::setPegRevision( const KDevelop::VcsRevision& pegRev ) -{ - QMutexLocker l( &m_mutex ); - m_pegRevision = pegRev; -} -KDevelop::VcsLocation SvnInternalCatJob::source() const -{ - QMutexLocker l( &m_mutex ); - return m_source; -} -KDevelop::VcsRevision SvnInternalCatJob::srcRevision() const -{ - QMutexLocker l( &m_mutex ); - return m_srcRevision; -} -KDevelop::VcsRevision SvnInternalCatJob::pegRevision() const -{ - QMutexLocker l( &m_mutex ); - return m_pegRevision; -} - -SvnCatJob::SvnCatJob( KDevSvnPlugin* parent ) - : SvnJobBaseImpl( parent, KDevelop::OutputJob::Silent ) -{ - setType( KDevelop::VcsJob::Cat ); - connect(m_job, &SvnInternalCatJob::gotContent, - this, &SvnCatJob::setContent, Qt::QueuedConnection); - setObjectName(i18n("Subversion Cat")); -} - -QVariant SvnCatJob::fetchResults() -{ - return m_content; -} - -void SvnCatJob::start() -{ - if( !m_job->source().isValid() ) { - internalJobFailed(); - setErrorText( i18n( "Not enough information to execute cat" ) ); - } else { - startInternalJob(); - } -} - -void SvnCatJob::setSource( const KDevelop::VcsLocation& source ) -{ - if( status() == KDevelop::VcsJob::JobNotStarted ) - m_job->setSource( source ); -} -void SvnCatJob::setPegRevision( const KDevelop::VcsRevision& pegRevision ) -{ - if( status() == KDevelop::VcsJob::JobNotStarted ) - m_job->setPegRevision( pegRevision ); -} - -void SvnCatJob::setSrcRevision( const KDevelop::VcsRevision& srcRevision ) -{ - if( status() == KDevelop::VcsJob::JobNotStarted ) - m_job->setSrcRevision( srcRevision ); -} - -void SvnCatJob::setContent( const QString& content ) -{ - m_content = content; - emit resultsReady( this ); -} diff --git a/plugins/subversion/svncatjob_p.h b/plugins/subversion/svncatjob_p.h deleted file mode 100644 --- a/plugins/subversion/svncatjob_p.h +++ /dev/null @@ -1,52 +0,0 @@ -/*************************************************************************** - * This file is part of KDevelop * - * Copyright 2007 Andreas Pakulat * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Library General Public License as * - * published by the Free Software Foundation; either version 2 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU Library General Public * - * License along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#ifndef KDEVPLATFORM_PLUGIN_SVNCATJOB_P_H -#define KDEVPLATFORM_PLUGIN_SVNCATJOB_P_H - -#include "svninternaljobbase.h" -#include - -class SvnInternalCatJob : public SvnInternalJobBase -{ - Q_OBJECT -public: - explicit SvnInternalCatJob( SvnJobBase* parent = nullptr ); - void setSource( const KDevelop::VcsLocation& ); - void setSrcRevision( const KDevelop::VcsRevision& ); - void setPegRevision( const KDevelop::VcsRevision& ); - - KDevelop::VcsLocation source() const; - KDevelop::VcsRevision srcRevision() const; - KDevelop::VcsRevision pegRevision() const; - -Q_SIGNALS: - void gotContent( const QString& ); -protected: - void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread* thread) override; -private: - KDevelop::VcsLocation m_source; - KDevelop::VcsRevision m_srcRevision; - KDevelop::VcsRevision m_pegRevision; -}; - - -#endif - diff --git a/plugins/subversion/svncheckoutmetadatawidget.h b/plugins/subversion/svncheckoutmetadatawidget.h deleted file mode 100644 --- a/plugins/subversion/svncheckoutmetadatawidget.h +++ /dev/null @@ -1,37 +0,0 @@ -/*************************************************************************** - * Copyright 2007 Dukju Ahn * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ - -#ifndef KDEVPLATFORM_PLUGIN_SVN_CHECKOUTMETADATAWIDGET_H -#define KDEVPLATFORM_PLUGIN_SVN_CHECKOUTMETADATAWIDGET_H - -#include -#include - -namespace Ui -{ -class SvnCheckoutMetadataWidget; -} - -class SvnCheckoutMetadataWidget : public QWidget -{ - Q_OBJECT -public: - explicit SvnCheckoutMetadataWidget( QWidget *parent ); - ~SvnCheckoutMetadataWidget() override; - void setDestinationLocation( const QUrl& ); - virtual KDevelop::VcsLocation source() const; - virtual QUrl destination() const; - virtual KDevelop::IBasicVersionControl::RecursionMode recursionMode() const; - -private: - Ui::SvnCheckoutMetadataWidget* m_ui; -}; - -#endif diff --git a/plugins/subversion/svncheckoutmetadatawidget.cpp b/plugins/subversion/svncheckoutmetadatawidget.cpp deleted file mode 100644 --- a/plugins/subversion/svncheckoutmetadatawidget.cpp +++ /dev/null @@ -1,51 +0,0 @@ -/*************************************************************************** - * Copyright 2007 Dukju Ahn * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ - -#include "svncheckoutmetadatawidget.h" -#include "ui_checkoutmetadatawidget.h" - -#include - -#include - -SvnCheckoutMetadataWidget::SvnCheckoutMetadataWidget( QWidget *parent ) - : QWidget( parent ), m_ui( new Ui::SvnCheckoutMetadataWidget ) -{ - m_ui->setupUi( this ); -} - -SvnCheckoutMetadataWidget::~SvnCheckoutMetadataWidget() -{ - delete m_ui; -} - -KDevelop::VcsLocation SvnCheckoutMetadataWidget::source() const -{ - KDevelop::VcsLocation src; - src.setRepositoryServer( m_ui->src->url().url() ); - return src; -} - -QUrl SvnCheckoutMetadataWidget::destination() const -{ - return m_ui->dest->url(); -} - -void SvnCheckoutMetadataWidget::setDestinationLocation( const QUrl &url ) -{ - m_ui->dest->setUrl( url ); -} - -KDevelop::IBasicVersionControl::RecursionMode SvnCheckoutMetadataWidget::recursionMode() const -{ - return m_ui->recurse->isChecked() ? KDevelop::IBasicVersionControl::Recursive : KDevelop::IBasicVersionControl::NonRecursive ; -} - - diff --git a/plugins/subversion/svndiffjob.cpp b/plugins/subversion/svndiffjob.cpp --- a/plugins/subversion/svndiffjob.cpp +++ b/plugins/subversion/svndiffjob.cpp @@ -339,6 +339,5 @@ m_diff.setBaseDiff(QUrl::fromLocalFile(QStringLiteral("/"))); m_diff.setDiff( diff ); - internalJobDone(); emit resultsReady( this ); } diff --git a/plugins/subversion/svninternaljobbase.cpp b/plugins/subversion/svninternaljobbase.cpp --- a/plugins/subversion/svninternaljobbase.cpp +++ b/plugins/subversion/svninternaljobbase.cpp @@ -218,18 +218,19 @@ void SvnInternalJobBase::initBeforeRun() { - connect( this, SIGNAL(needCommitMessage()), - parent(), SLOT(askForCommitMessage()), Qt::QueuedConnection ); - connect( this, SIGNAL(needLogin(QString)), - parent(), SLOT(askForLogin(QString)), Qt::QueuedConnection ); - connect( this, SIGNAL(needSslServerTrust(QStringList,QString,QString,QString,QString,QString,QString)), - parent(), SLOT(askForSslServerTrust(QStringList,QString,QString,QString,QString,QString,QString)), Qt::QueuedConnection ); - connect( this, SIGNAL(showNotification(QString,QString)), - parent(), SLOT(showNotification(QString,QString)), Qt::QueuedConnection ); - connect( this, SIGNAL(needSslClientCert(QString)), - parent(), SLOT(askForSslClientCert(QString)), Qt::QueuedConnection ); - connect( this, SIGNAL(needSslClientCertPassword(QString)), - parent(), SLOT(askForSslClientCertPassword(QString)), Qt::QueuedConnection ); + auto parentJob = static_cast(parent()); + connect( this, &SvnInternalJobBase::needCommitMessage, + parentJob, &SvnJobBase::askForCommitMessage, Qt::QueuedConnection ); + connect( this, &SvnInternalJobBase::needLogin, + parentJob, &SvnJobBase::askForLogin, Qt::QueuedConnection ); + connect( this, &SvnInternalJobBase::needSslServerTrust, + parentJob, &SvnJobBase::askForSslServerTrust, Qt::QueuedConnection ); + connect( this, &SvnInternalJobBase::showNotification, + parentJob, &SvnJobBase::showNotification, Qt::QueuedConnection ); + connect( this, &SvnInternalJobBase::needSslClientCert, + parentJob, &SvnJobBase::askForSslClientCert, Qt::QueuedConnection ); + connect( this, &SvnInternalJobBase::needSslClientCertPassword, + parentJob, &SvnJobBase::askForSslClientCertPassword, Qt::QueuedConnection ); } svn::ContextListener::SslServerTrustAnswer SvnInternalJobBase::contextSslServerTrustPrompt( diff --git a/plugins/subversion/svnjobbase.cpp b/plugins/subversion/svnjobbase.cpp --- a/plugins/subversion/svnjobbase.cpp +++ b/plugins/subversion/svnjobbase.cpp @@ -159,9 +159,6 @@ } emitResult(); - if( m_status == VcsJob::JobCanceled ) { - deleteLater(); - } } void SvnJobBase::internalJobFailed() @@ -178,11 +175,8 @@ { m_status = KDevelop::VcsJob::JobFailed; } - emitResult(); - if( m_status == VcsJob::JobCanceled ) { - deleteLater(); - } + emitResult(); } KDevelop::IPlugin* SvnJobBase::vcsPlugin() const diff --git a/plugins/subversion/svnlogjob.cpp b/plugins/subversion/svnlogjob.cpp --- a/plugins/subversion/svnlogjob.cpp +++ b/plugins/subversion/svnlogjob.cpp @@ -114,7 +114,7 @@ { setType( KDevelop::VcsJob::Log ); connect( m_job, &SvnInternalLogJob::logEvent, - this, &SvnLogJob::logEventReceived, Qt::QueuedConnection ); + this, &SvnLogJob::logEventReceived ); setObjectName(i18n("Subversion Log")); } diff --git a/plugins/subversion/ui/blameoptiondlg.ui b/plugins/subversion/ui/blameoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/blameoptiondlg.ui +++ /dev/null @@ -1,55 +0,0 @@ - - SvnBlameOptionDlg - - - - 0 - 0 - 440 - 392 - - - - - - - Start Revision - - - - - - - - - - - - End Revision - - - - - - - - - - - - - SvnRevisionWidget - QWidget -
svnrevisionwidget.h
- 1 -
-
- - knuminput.h - knuminput.h - knuminput.h - knuminput.h - - - -
diff --git a/plugins/subversion/ui/catoptiondlg.ui b/plugins/subversion/ui/catoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/catoptiondlg.ui +++ /dev/null @@ -1,69 +0,0 @@ - - SvnCatOptionDlg - - - - 0 - 0 - 400 - 294 - - - - - - - - 0 - 0 - - - - TextLabel - - - - - - - - 0 - 0 - - - - - - - - - 0 - 0 - - - - TextLabel - - - - - - - - - - - KUrlRequester - QWidget -
kurlrequester.h
-
- - SvnRevisionWidget - QWidget -
svnrevisionwidget.h
- 1 -
-
- - -
diff --git a/plugins/subversion/ui/checkoutmetadatawidget.ui b/plugins/subversion/ui/checkoutmetadatawidget.ui deleted file mode 100644 --- a/plugins/subversion/ui/checkoutmetadatawidget.ui +++ /dev/null @@ -1,61 +0,0 @@ - - SvnCheckoutMetadataWidget - - - - 0 - 0 - 393 - 105 - - - - Checkout - - - - - - Repository Url: - - - - - - - - - - Destination Path: - - - - - - - - - - Recursive: - - - - - - - - - - - - - - - KUrlRequester - QWidget -
kurlrequester.h
-
-
- - -
diff --git a/plugins/subversion/ui/commitloginputdlg.ui b/plugins/subversion/ui/commitloginputdlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/commitloginputdlg.ui +++ /dev/null @@ -1,48 +0,0 @@ - - SvnCommitLogInputDlg - - - - 0 - 0 - 421 - 317 - - - - - 9 - - - 9 - - - 9 - - - 9 - - - 6 - - - 6 - - - - - - - - - - - - KTextEdit - QTextEdit -
ktextedit.h
-
-
- - -
diff --git a/plugins/subversion/ui/copyoptiondlg.ui b/plugins/subversion/ui/copyoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/copyoptiondlg.ui +++ /dev/null @@ -1,116 +0,0 @@ - - SvnCopyOptionDlg - - - - 0 - 0 - 444 - 469 - - - - - - - - 0 - 0 - - - - Requested local path: - - - - - - - - - - true - - - - - - - Source - - - - - - Specify by repository URL - - - - - - - Specify by local working copy - - - - - - - - - - - - - Source revision - - - - - - - - - - - - Destination - - - - - - - 0 - 0 - - - - Specify either the full repository URL or local working path - - - - - - - - - - - - - - KUrlRequester - QWidget -
kurlrequester.h
-
- - SvnRevisionWidget - QWidget -
svnrevisionwidget.h
- 1 -
-
- - -
diff --git a/plugins/subversion/ui/diffoptiondlg.ui b/plugins/subversion/ui/diffoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/diffoptiondlg.ui +++ /dev/null @@ -1,72 +0,0 @@ - - SvnPegDiffDialogWidget - - - - 0 - 0 - 431 - 328 - - - - - - - - 0 - 0 - - - - Target Url - - - - - - - true - - - - - - - Start Revision - - - - - - - End Revision - - - - - - - Non Recursive - - - - - - - No diff deleted - - - - - - - Ignore contents type - - - - - - - - diff --git a/plugins/subversion/ui/logviewoptiondlg.ui b/plugins/subversion/ui/logviewoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/logviewoptiondlg.ui +++ /dev/null @@ -1,107 +0,0 @@ - - SvnLogViewOptionDlg - - - - 0 - 0 - 401 - 402 - - - - Subversion Log View Options - - - - - - Start Revision - - - - - - - - - - - - End Revision - - - - - - - - - - - - 6 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - Maximum number of logs to be displayed - - - - - - - 0 - - - 99999 - - - 100 - - - - - - - - - Do not show logs before branching point - - - - - - - - - - - SvnRevisionWidget - QWidget -
svnrevisionwidget.h
- 1 -
-
- - knuminput.h - knuminput.h - knuminput.h - knuminput.h - - - -
diff --git a/plugins/subversion/ui/moveoptiondlg.ui b/plugins/subversion/ui/moveoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/moveoptiondlg.ui +++ /dev/null @@ -1,105 +0,0 @@ - - SvnMoveOptionDlg - - - - 0 - 0 - 469 - 339 - - - - - - - - 0 - 0 - - - - Requested local path: - - - - - - - - - - true - - - - - - - Source - - - - - - Specify by repository URL - - - - - - - Specify by local working copy - - - - - - - - - - - - - Destination - - - - - - - 0 - 0 - - - - Specify either the full repository URL or local working path - - - - - - - - - - - - - Forcefully delete locally modified and/or unversioned items - - - - - - - - KUrlRequester - QWidget -
kurlrequester.h
-
-
- - -
diff --git a/plugins/subversion/ui/revertoptiondlg.ui b/plugins/subversion/ui/revertoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/revertoptiondlg.ui +++ /dev/null @@ -1,61 +0,0 @@ - - SvnRevertOptionDlg - - - - 0 - 0 - 548 - 283 - - - - - - - Select working copies to be reverted: - - - - - - - false - - - true - - - - Select - - - - - Text Status - - - - - Prop Status - - - - - Working Copy - - - - - - - - Recursive - - - - - - - - diff --git a/plugins/subversion/ui/revisionwidget.ui b/plugins/subversion/ui/revisionwidget.ui deleted file mode 100644 --- a/plugins/subversion/ui/revisionwidget.ui +++ /dev/null @@ -1,225 +0,0 @@ - - SvnRevisionWidget - - - - 0 - 0 - 361 - 134 - - - - - 6 - - - 0 - - - 6 - - - 0 - - - - - Specify as number: - - - - - - - 0 - - - - - - - Specify as keyword: - - - - - - - - - - Specify as date: - - - - - - - - - - - KComboBox - QComboBox -
kcombobox.h
-
- - KDateTimeWidget - QWidget -
kdatetimewidget.h
-
- - KIntNumInput - QWidget -
knuminput.h
-
-
- - - - revnumRadio - toggled(bool) - kindCombo - setDisabled(bool) - - - 103 - 50 - - - 284 - 86 - - - - - revnumRadio - toggled(bool) - datetimeWidget - setDisabled(bool) - - - 103 - 50 - - - 194 - 157 - - - - - revnumRadio - toggled(bool) - numInput - setEnabled(bool) - - - 103 - 50 - - - 284 - 51 - - - - - revkindRadio - toggled(bool) - numInput - setDisabled(bool) - - - 103 - 85 - - - 284 - 51 - - - - - revkindRadio - toggled(bool) - kindCombo - setEnabled(bool) - - - 103 - 85 - - - 284 - 86 - - - - - revkindRadio - toggled(bool) - datetimeWidget - setDisabled(bool) - - - 103 - 85 - - - 194 - 157 - - - - - revdateRadio - toggled(bool) - numInput - setDisabled(bool) - - - 103 - 118 - - - 284 - 51 - - - - - revdateRadio - toggled(bool) - revkindRadio - setDisabled(bool) - - - 103 - 118 - - - 103 - 85 - - - - - revdateRadio - toggled(bool) - datetimeWidget - setEnabled(bool) - - - 103 - 118 - - - 194 - 157 - - - - -
diff --git a/plugins/subversion/ui/statusoptiondlg.ui b/plugins/subversion/ui/statusoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/statusoptiondlg.ui +++ /dev/null @@ -1,101 +0,0 @@ - - SvnStatusOptionDlg - - - - 0 - 0 - 474 - 415 - - - - - - - - 0 - 0 - - - - Status Requested for: - - - - - - - true - - - - - - - Specify revision - - - - - - - - - - - - Non recursive - - - - - - - Retrieve only "interesting" entries (such as local modifications) - - - true - - - - - - - - 0 - 0 - - - - Contact repository and augment with repository information - - - - - - - Do not ignore svn:ignore - - - - - - - Ignore external items - - - - - - - - SvnRevisionWidget - QWidget -
svnrevisionwidget.h
- 1 -
-
- - -
diff --git a/plugins/subversion/ui/updateoptiondlg.ui b/plugins/subversion/ui/updateoptiondlg.ui deleted file mode 100644 --- a/plugins/subversion/ui/updateoptiondlg.ui +++ /dev/null @@ -1,75 +0,0 @@ - - SvnUpdateOptionWidget - - - - 0 - 0 - 387 - 252 - - - - - 9 - - - 9 - - - 9 - - - 9 - - - 6 - - - 6 - - - - - Update immediate children only (non-recursive) - - - - - - - Ignore external entries - - - - - - - Select Revision - - - - - - - - - - - - - SvnRevisionWidget - QWidget -
svnrevisionwidget.h
- 1 -
-
- - knuminput.h - knuminput.h - knuminput.h - knuminput.h - - - -