2011-02-28 13:40:06 +01:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (c) 2013 Hugues Delorme
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-02-28 13:40:06 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-02-28 13:40:06 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-02-28 13:40:06 +01:00
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-02-28 13:40:06 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-02-28 13:40:06 +01:00
|
|
|
#include "bazaarplugin.h"
|
|
|
|
#include "constants.h"
|
|
|
|
#include "bazaarclient.h"
|
|
|
|
#include "bazaarcontrol.h"
|
|
|
|
#include "optionspage.h"
|
|
|
|
#include "bazaarcommitwidget.h"
|
|
|
|
#include "bazaareditor.h"
|
|
|
|
#include "pullorpushdialog.h"
|
|
|
|
#include "commiteditor.h"
|
|
|
|
#include "clonewizard.h"
|
|
|
|
|
|
|
|
#include "ui_revertdialog.h"
|
|
|
|
|
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
|
|
|
#include <coreplugin/actionmanager/command.h>
|
2011-09-05 16:10:37 +02:00
|
|
|
#include <coreplugin/id.h>
|
2011-02-28 13:40:06 +01:00
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
#include <coreplugin/icore.h>
|
2012-02-14 16:43:51 +01:00
|
|
|
#include <coreplugin/documentmanager.h>
|
2011-02-28 13:40:06 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
|
|
|
#include <locator/commandlocator.h>
|
|
|
|
|
|
|
|
#include <utils/parameteraction.h>
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
#include <vcsbase/basevcseditorfactory.h>
|
|
|
|
#include <vcsbase/basevcssubmiteditorfactory.h>
|
|
|
|
#include <vcsbase/vcsbasesubmiteditor.h>
|
|
|
|
#include <vcsbase/vcsbaseeditor.h>
|
|
|
|
#include <vcsbase/vcsbaseoutputwindow.h>
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include <QAction>
|
|
|
|
#include <QMenu>
|
2012-08-06 13:42:46 +02:00
|
|
|
#include <QDebug>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDir>
|
|
|
|
#include <QDialog>
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
using namespace Bazaar::Internal;
|
|
|
|
using namespace Bazaar;
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
static const VcsBase::VcsBaseEditorParameters editorParameters[] = {
|
2013-05-22 21:03:37 +03:00
|
|
|
{ VcsBase::LogOutput, // type
|
|
|
|
Constants::FILELOG_ID, // id
|
|
|
|
Constants::FILELOG_DISPLAY_NAME, // display name
|
|
|
|
Constants::FILELOG, // context
|
|
|
|
Constants::LOGAPP}, // mime type
|
2011-02-28 13:40:06 +01:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
{ VcsBase::AnnotateOutput,
|
2011-02-28 13:40:06 +01:00
|
|
|
Constants::ANNOTATELOG_ID,
|
|
|
|
Constants::ANNOTATELOG_DISPLAY_NAME,
|
|
|
|
Constants::ANNOTATELOG,
|
2013-05-21 20:54:26 +03:00
|
|
|
Constants::ANNOTATEAPP},
|
2011-02-28 13:40:06 +01:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
{ VcsBase::DiffOutput,
|
2011-02-28 13:40:06 +01:00
|
|
|
Constants::DIFFLOG_ID,
|
|
|
|
Constants::DIFFLOG_DISPLAY_NAME,
|
|
|
|
Constants::DIFFLOG,
|
2013-05-21 20:54:26 +03:00
|
|
|
Constants::DIFFAPP}
|
2011-02-28 13:40:06 +01:00
|
|
|
};
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
static const VcsBase::VcsBaseSubmitEditorParameters submitEditorParameters = {
|
2011-02-28 13:40:06 +01:00
|
|
|
Constants::COMMITMIMETYPE,
|
|
|
|
Constants::COMMIT_ID,
|
|
|
|
Constants::COMMIT_DISPLAY_NAME,
|
2013-01-11 10:45:00 +02:00
|
|
|
Constants::COMMIT_ID,
|
|
|
|
VcsBase::VcsBaseSubmitEditorParameters::DiffFiles
|
2011-02-28 13:40:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BazaarPlugin *BazaarPlugin::m_instance = 0;
|
|
|
|
|
2011-11-10 16:06:19 +01:00
|
|
|
BazaarPlugin::BazaarPlugin()
|
2013-04-19 17:54:05 +03:00
|
|
|
: m_optionsPage(0),
|
2011-11-10 16:06:19 +01:00
|
|
|
m_client(0),
|
|
|
|
m_commandLocator(0),
|
|
|
|
m_addAction(0),
|
|
|
|
m_deleteAction(0),
|
2012-09-26 15:18:44 +02:00
|
|
|
m_menuAction(0),
|
|
|
|
m_submitActionTriggered(false)
|
2011-02-28 13:40:06 +01:00
|
|
|
{
|
|
|
|
m_instance = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
BazaarPlugin::~BazaarPlugin()
|
|
|
|
{
|
|
|
|
if (m_client) {
|
|
|
|
delete m_client;
|
|
|
|
m_client = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_instance = 0;
|
|
|
|
}
|
|
|
|
|
2011-03-14 15:37:30 +01:00
|
|
|
bool BazaarPlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
2011-02-28 13:40:06 +01:00
|
|
|
{
|
2011-03-14 15:37:30 +01:00
|
|
|
Q_UNUSED(arguments);
|
|
|
|
Q_UNUSED(errorMessage);
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
typedef VcsBase::VcsEditorFactory<BazaarEditor> BazaarEditorFactory;
|
2011-02-28 13:40:06 +01:00
|
|
|
|
2011-06-10 14:02:46 +00:00
|
|
|
m_client = new BazaarClient(&m_bazaarSettings);
|
2011-06-04 21:07:34 +02:00
|
|
|
initializeVcs(new BazaarControl(m_client));
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
m_optionsPage = new OptionsPage();
|
|
|
|
addAutoReleasedObject(m_optionsPage);
|
2012-01-24 15:36:40 +01:00
|
|
|
m_bazaarSettings.readSettings(Core::ICore::settings());
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
connect(m_client, SIGNAL(changed(QVariant)), versionControl(), SLOT(changed(QVariant)));
|
|
|
|
|
|
|
|
static const char *describeSlot = SLOT(view(QString,QString));
|
2012-01-07 12:31:48 +01:00
|
|
|
const int editorCount = sizeof(editorParameters) / sizeof(VcsBase::VcsBaseEditorParameters);
|
2011-02-28 13:40:06 +01:00
|
|
|
for (int i = 0; i < editorCount; i++)
|
|
|
|
addAutoReleasedObject(new BazaarEditorFactory(editorParameters + i, m_client, describeSlot));
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
addAutoReleasedObject(new VcsBase::VcsSubmitEditorFactory<CommitEditor>(&submitEditorParameters));
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
addAutoReleasedObject(new CloneWizard);
|
|
|
|
|
|
|
|
const QString prefix = QLatin1String("bzr");
|
2013-01-18 11:35:38 +01:00
|
|
|
m_commandLocator = new Locator::CommandLocator("Bazaar", prefix, prefix);
|
2011-02-28 13:40:06 +01:00
|
|
|
addAutoReleasedObject(m_commandLocator);
|
|
|
|
|
|
|
|
createMenu();
|
|
|
|
|
|
|
|
createSubmitEditorActions();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
BazaarPlugin *BazaarPlugin::instance()
|
|
|
|
{
|
|
|
|
return m_instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
BazaarClient *BazaarPlugin::client() const
|
|
|
|
{
|
|
|
|
return m_client;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BazaarSettings &BazaarPlugin::settings() const
|
|
|
|
{
|
|
|
|
return m_bazaarSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::setSettings(const BazaarSettings &settings)
|
|
|
|
{
|
|
|
|
if (settings != m_bazaarSettings) {
|
2011-03-18 09:55:33 +01:00
|
|
|
const bool userIdChanged = !m_bazaarSettings.sameUserId(settings);
|
|
|
|
m_bazaarSettings = settings;
|
|
|
|
if (userIdChanged)
|
|
|
|
client()->synchronousSetUserId();
|
2011-04-15 17:43:44 +02:00
|
|
|
static_cast<BazaarControl *>(versionControl())->emitConfigurationChanged();
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::createMenu()
|
|
|
|
{
|
|
|
|
Core::Context context(Core::Constants::C_GLOBAL);
|
|
|
|
|
|
|
|
// Create menu item for Bazaar
|
2012-05-24 13:49:06 +02:00
|
|
|
m_bazaarContainer = Core::ActionManager::createMenu(Core::Id("Bazaar.BazaarMenu"));
|
2011-02-28 13:40:06 +01:00
|
|
|
QMenu *menu = m_bazaarContainer->menu();
|
|
|
|
menu->setTitle(tr("Bazaar"));
|
|
|
|
|
|
|
|
createFileActions(context);
|
2012-06-05 14:22:20 +02:00
|
|
|
m_bazaarContainer->addSeparator(context);
|
2011-02-28 13:40:06 +01:00
|
|
|
createDirectoryActions(context);
|
2012-06-05 14:22:20 +02:00
|
|
|
m_bazaarContainer->addSeparator(context);
|
2011-02-28 13:40:06 +01:00
|
|
|
createRepositoryActions(context);
|
2012-06-05 14:22:20 +02:00
|
|
|
m_bazaarContainer->addSeparator(context);
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
// Request the Tools menu and add the Bazaar menu to it
|
2012-05-24 13:49:06 +02:00
|
|
|
Core::ActionContainer *toolsMenu = Core::ActionManager::actionContainer(Core::Id(Core::Constants::M_TOOLS));
|
2011-02-28 13:40:06 +01:00
|
|
|
toolsMenu->addMenu(m_bazaarContainer);
|
|
|
|
m_menuAction = m_bazaarContainer->menu()->menuAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::createFileActions(const Core::Context &context)
|
|
|
|
{
|
|
|
|
Core::Command *command;
|
|
|
|
|
|
|
|
m_annotateFile = new Utils::ParameterAction(tr("Annotate Current File"), tr("Annotate \"%1\""), Utils::ParameterAction::EnabledWithParameter, this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_annotateFile, Core::Id(Constants::ANNOTATE), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
|
|
|
connect(m_annotateFile, SIGNAL(triggered()), this, SLOT(annotateCurrentFile()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
m_diffFile = new Utils::ParameterAction(tr("Diff Current File"), tr("Diff \"%1\""), Utils::ParameterAction::EnabledWithParameter, this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_diffFile, Core::Id(Constants::DIFF), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
2012-05-23 13:25:51 +02:00
|
|
|
command->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+Z,Meta+D") : tr("ALT+Z,Alt+D")));
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(m_diffFile, SIGNAL(triggered()), this, SLOT(diffCurrentFile()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
m_logFile = new Utils::ParameterAction(tr("Log Current File"), tr("Log \"%1\""), Utils::ParameterAction::EnabledWithParameter, this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_logFile, Core::Id(Constants::LOG), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
2012-05-23 13:25:51 +02:00
|
|
|
command->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+Z,Meta+L") : tr("ALT+Z,Alt+L")));
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(m_logFile, SIGNAL(triggered()), this, SLOT(logCurrentFile()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
m_statusFile = new Utils::ParameterAction(tr("Status Current File"), tr("Status \"%1\""), Utils::ParameterAction::EnabledWithParameter, this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_statusFile, Core::Id(Constants::STATUS), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
2012-05-23 13:25:51 +02:00
|
|
|
command->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+Z,Meta+S") : tr("ALT+Z,Alt+S")));
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(m_statusFile, SIGNAL(triggered()), this, SLOT(statusCurrentFile()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
2012-06-05 14:22:20 +02:00
|
|
|
m_bazaarContainer->addSeparator(context);
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
m_addAction = new Utils::ParameterAction(tr("Add"), tr("Add \"%1\""), Utils::ParameterAction::EnabledWithParameter, this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_addAction, Core::Id(Constants::ADD), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
|
|
|
connect(m_addAction, SIGNAL(triggered()), this, SLOT(addCurrentFile()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
m_deleteAction = new Utils::ParameterAction(tr("Delete..."), tr("Delete \"%1\"..."), Utils::ParameterAction::EnabledWithParameter, this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_deleteAction, Core::Id(Constants::DELETE), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
|
|
|
connect(m_deleteAction, SIGNAL(triggered()), this, SLOT(promptToDeleteCurrentFile()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
m_revertFile = new Utils::ParameterAction(tr("Revert Current File..."), tr("Revert \"%1\"..."), Utils::ParameterAction::EnabledWithParameter, this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_revertFile, Core::Id(Constants::REVERT), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
|
|
|
connect(m_revertFile, SIGNAL(triggered()), this, SLOT(revertCurrentFile()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::addCurrentFile()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 15:05:40 +01:00
|
|
|
QTC_ASSERT(state.hasFile(), return);
|
|
|
|
m_client->synchronousAdd(state.currentFileTopLevel(), state.relativeCurrentFile());
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::annotateCurrentFile()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 15:05:40 +01:00
|
|
|
QTC_ASSERT(state.hasFile(), return);
|
|
|
|
m_client->annotate(state.currentFileTopLevel(), state.relativeCurrentFile());
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::diffCurrentFile()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 15:05:40 +01:00
|
|
|
QTC_ASSERT(state.hasFile(), return);
|
|
|
|
m_client->diff(state.currentFileTopLevel(), QStringList(state.relativeCurrentFile()));
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::logCurrentFile()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 15:05:40 +01:00
|
|
|
QTC_ASSERT(state.hasFile(), return);
|
2011-05-03 14:44:38 +02:00
|
|
|
m_client->log(state.currentFileTopLevel(), QStringList(state.relativeCurrentFile()),
|
2011-05-12 14:48:10 +02:00
|
|
|
QStringList(), true);
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::revertCurrentFile()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 13:40:06 +01:00
|
|
|
QTC_ASSERT(state.hasFile(), return);
|
|
|
|
|
|
|
|
QDialog dialog;
|
|
|
|
Ui::RevertDialog revertUi;
|
|
|
|
revertUi.setupUi(&dialog);
|
|
|
|
if (dialog.exec() != QDialog::Accepted)
|
|
|
|
return;
|
|
|
|
m_client->revertFile(state.currentFileTopLevel(),
|
|
|
|
state.relativeCurrentFile(),
|
|
|
|
revertUi.revisionLineEdit->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::statusCurrentFile()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 15:05:40 +01:00
|
|
|
QTC_ASSERT(state.hasFile(), return);
|
|
|
|
m_client->status(state.currentFileTopLevel(), state.relativeCurrentFile());
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::createDirectoryActions(const Core::Context &context)
|
|
|
|
{
|
|
|
|
QAction *action;
|
|
|
|
Core::Command *command;
|
|
|
|
|
|
|
|
action = new QAction(tr("Diff"), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::DIFFMULTI), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(diffRepository()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
action = new QAction(tr("Log"), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::LOGMULTI), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(logRepository()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
action = new QAction(tr("Revert..."), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::REVERTMULTI), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(revertAll()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
action = new QAction(tr("Status"), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::STATUSMULTI), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(statusMulti()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BazaarPlugin::diffRepository()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 15:05:40 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
|
|
|
m_client->diff(state.topLevel());
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::logRepository()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 15:05:40 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
2011-05-12 16:37:20 +02:00
|
|
|
QStringList extraOptions;
|
2012-01-31 10:57:10 +01:00
|
|
|
extraOptions += QLatin1String("--limit=") + QString::number(settings().intValue(BazaarSettings::logCountKey));
|
2011-05-12 16:37:20 +02:00
|
|
|
m_client->log(state.topLevel(), QStringList(), extraOptions);
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::revertAll()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 13:40:06 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
|
|
|
|
|
|
|
QDialog dialog;
|
|
|
|
Ui::RevertDialog revertUi;
|
|
|
|
revertUi.setupUi(&dialog);
|
|
|
|
if (dialog.exec() != QDialog::Accepted)
|
|
|
|
return;
|
|
|
|
m_client->revertAll(state.topLevel(), revertUi.revisionLineEdit->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::statusMulti()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 13:40:06 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
|
|
|
m_client->status(state.topLevel());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::createRepositoryActions(const Core::Context &context)
|
|
|
|
{
|
|
|
|
QAction *action = 0;
|
|
|
|
Core::Command *command = 0;
|
|
|
|
|
|
|
|
action = new QAction(tr("Pull..."), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::PULL), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(pull()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
action = new QAction(tr("Push..."), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::PUSH), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(push()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
action = new QAction(tr("Update..."), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::UPDATE), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(update()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
|
|
|
action = new QAction(tr("Commit..."), this);
|
|
|
|
m_repositoryActionList.append(action);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(action, Core::Id(Constants::COMMIT), context);
|
2012-05-23 13:25:51 +02:00
|
|
|
command->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+Z,Meta+C") : tr("ALT+Z,Alt+C")));
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(commit()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
m_commandLocator->appendCommand(command);
|
|
|
|
|
2011-09-21 11:43:58 +02:00
|
|
|
QAction *createRepositoryAction = new QAction(tr("Create Repository..."), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(createRepositoryAction, Core::Id(Constants::CREATE_REPOSITORY), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
connect(createRepositoryAction, SIGNAL(triggered()), this, SLOT(createRepository()));
|
|
|
|
m_bazaarContainer->addAction(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::pull()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 13:40:06 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
|
|
|
|
|
|
|
PullOrPushDialog dialog(PullOrPushDialog::PullMode);
|
|
|
|
if (dialog.exec() != QDialog::Accepted)
|
|
|
|
return;
|
2011-05-12 14:48:10 +02:00
|
|
|
QStringList extraOptions;
|
|
|
|
if (dialog.isRememberOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--remember");
|
|
|
|
if (dialog.isOverwriteOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--overwrite");
|
|
|
|
if (dialog.isLocalOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--local");
|
|
|
|
if (!dialog.revision().isEmpty())
|
|
|
|
extraOptions << QLatin1String("-r") << dialog.revision();
|
2011-02-28 13:40:06 +01:00
|
|
|
m_client->synchronousPull(state.topLevel(), dialog.branchLocation(), extraOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::push()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 13:40:06 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
|
|
|
|
|
|
|
PullOrPushDialog dialog(PullOrPushDialog::PushMode);
|
|
|
|
if (dialog.exec() != QDialog::Accepted)
|
|
|
|
return;
|
2011-05-12 14:48:10 +02:00
|
|
|
QStringList extraOptions;
|
|
|
|
if (dialog.isRememberOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--remember");
|
|
|
|
if (dialog.isOverwriteOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--overwrite");
|
|
|
|
if (dialog.isUseExistingDirectoryOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--use-existing-dir");
|
|
|
|
if (dialog.isCreatePrefixOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--create-prefix");
|
|
|
|
if (!dialog.revision().isEmpty())
|
|
|
|
extraOptions << QLatin1String("-r") << dialog.revision();
|
2011-02-28 13:40:06 +01:00
|
|
|
m_client->synchronousPush(state.topLevel(), dialog.branchLocation(), extraOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::update()
|
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 13:40:06 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
|
|
|
|
|
|
|
QDialog dialog;
|
|
|
|
Ui::RevertDialog revertUi;
|
|
|
|
revertUi.setupUi(&dialog);
|
|
|
|
dialog.setWindowTitle(tr("Update"));
|
|
|
|
if (dialog.exec() != QDialog::Accepted)
|
|
|
|
return;
|
|
|
|
m_client->update(state.topLevel(), revertUi.revisionLineEdit->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::createSubmitEditorActions()
|
|
|
|
{
|
|
|
|
Core::Context context(Constants::COMMIT_ID);
|
|
|
|
Core::Command *command;
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
m_editorCommit = new QAction(VcsBase::VcsBaseSubmitEditor::submitIcon(), tr("Commit"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_editorCommit, Core::Id(Constants::COMMIT), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
|
|
|
connect(m_editorCommit, SIGNAL(triggered()), this, SLOT(commitFromEditor()));
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
m_editorDiff = new QAction(VcsBase::VcsBaseSubmitEditor::diffIcon(), tr("Diff &Selected Files"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_editorDiff, Core::Id(Constants::DIFFEDITOR), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
m_editorUndo = new QAction(tr("&Undo"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_editorUndo, Core::Id(Core::Constants::UNDO), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
m_editorRedo = new QAction(tr("&Redo"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
command = Core::ActionManager::registerAction(m_editorRedo, Core::Id(Core::Constants::REDO), context);
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::commit()
|
|
|
|
{
|
2013-04-18 12:06:43 +02:00
|
|
|
if (raiseSubmitEditor())
|
2011-02-28 13:40:06 +01:00
|
|
|
return;
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBasePluginState state = currentState();
|
2011-02-28 13:40:06 +01:00
|
|
|
QTC_ASSERT(state.hasTopLevel(), return);
|
|
|
|
|
|
|
|
m_submitRepository = state.topLevel();
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
connect(m_client, SIGNAL(parsedStatus(QList<VcsBase::VcsBaseClient::StatusItem>)),
|
|
|
|
this, SLOT(showCommitWidget(QList<VcsBase::VcsBaseClient::StatusItem>)));
|
2011-08-22 15:33:03 +00:00
|
|
|
// The "--short" option allows to easily parse status output
|
|
|
|
m_client->emitParsedStatus(m_submitRepository, QStringList(QLatin1String("--short")));
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
void BazaarPlugin::showCommitWidget(const QList<VcsBase::VcsBaseClient::StatusItem> &status)
|
2011-02-28 13:40:06 +01:00
|
|
|
{
|
2012-01-07 12:31:48 +01:00
|
|
|
VcsBase::VcsBaseOutputWindow *outputWindow = VcsBase::VcsBaseOutputWindow::instance();
|
2011-02-28 13:40:06 +01:00
|
|
|
//Once we receive our data release the connection so it can be reused elsewhere
|
2012-01-07 12:31:48 +01:00
|
|
|
disconnect(m_client, SIGNAL(parsedStatus(QList<VcsBase::VcsBaseClient::StatusItem>)),
|
|
|
|
this, SLOT(showCommitWidget(QList<VcsBase::VcsBaseClient::StatusItem>)));
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
if (status.isEmpty()) {
|
|
|
|
outputWindow->appendError(tr("There are no changes to commit."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-09-26 15:18:44 +02:00
|
|
|
// Start new temp file
|
|
|
|
Utils::TempFileSaver saver;
|
|
|
|
// Keep the file alive, else it removes self and forgets its name
|
|
|
|
saver.setAutoRemove(false);
|
|
|
|
if (!saver.finalize()) {
|
|
|
|
VcsBase::VcsBaseOutputWindow::instance()->append(saver.errorString());
|
2011-02-28 13:40:06 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-09-26 15:18:44 +02:00
|
|
|
Core::IEditor *editor = Core::EditorManager::openEditor(saver.fileName(),
|
2012-05-08 09:43:14 +02:00
|
|
|
Constants::COMMIT_ID,
|
|
|
|
Core::EditorManager::ModeSwitch);
|
2011-02-28 13:40:06 +01:00
|
|
|
if (!editor) {
|
|
|
|
outputWindow->appendError(tr("Unable to create an editor for the commit."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CommitEditor *commitEditor = qobject_cast<CommitEditor *>(editor);
|
|
|
|
|
|
|
|
if (!commitEditor) {
|
|
|
|
outputWindow->appendError(tr("Unable to create a commit editor."));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-18 12:06:43 +02:00
|
|
|
setSubmitEditor(commitEditor);
|
2011-02-28 13:40:06 +01:00
|
|
|
|
2011-11-22 15:11:58 +01:00
|
|
|
commitEditor->registerActions(m_editorUndo, m_editorRedo, m_editorCommit, m_editorDiff);
|
|
|
|
connect(commitEditor, SIGNAL(diffSelectedFiles(QStringList)),
|
|
|
|
this, SLOT(diffFromEditorSelected(QStringList)));
|
|
|
|
commitEditor->setCheckScriptWorkingDirectory(m_submitRepository);
|
|
|
|
|
2011-02-28 13:40:06 +01:00
|
|
|
const QString msg = tr("Commit changes for \"%1\".").
|
|
|
|
arg(QDir::toNativeSeparators(m_submitRepository));
|
|
|
|
commitEditor->setDisplayName(msg);
|
|
|
|
|
|
|
|
const BranchInfo branch = m_client->synchronousBranchQuery(m_submitRepository);
|
2011-12-05 15:37:19 +01:00
|
|
|
commitEditor->setFields(m_submitRepository, branch,
|
|
|
|
m_bazaarSettings.stringValue(BazaarSettings::userNameKey),
|
2011-09-14 09:13:44 +00:00
|
|
|
m_bazaarSettings.stringValue(BazaarSettings::userEmailKey), status);
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::diffFromEditorSelected(const QStringList &files)
|
|
|
|
{
|
|
|
|
m_client->diff(m_submitRepository, files);
|
|
|
|
}
|
|
|
|
|
2013-01-19 23:19:38 +02:00
|
|
|
#ifdef WITH_TESTS
|
|
|
|
#include <QTest>
|
|
|
|
|
|
|
|
void BazaarPlugin::testDiffFileResolving_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QByteArray>("header");
|
|
|
|
QTest::addColumn<QByteArray>("fileName");
|
|
|
|
|
|
|
|
QTest::newRow("New") << QByteArray(
|
|
|
|
"=== added file 'src/plugins/bazaar/bazaareditor.cpp'\n"
|
|
|
|
"--- src/plugins/bazaar/bazaareditor.cpp\t1970-01-01 00:00:00 +0000\n"
|
|
|
|
"+++ src/plugins/bazaar/bazaareditor.cpp\t2013-01-20 21:39:47 +0000\n"
|
|
|
|
"@@ -0,0 +1,121 @@\n\n")
|
|
|
|
<< QByteArray("src/plugins/bazaar/bazaareditor.cpp");
|
|
|
|
QTest::newRow("Deleted") << QByteArray(
|
|
|
|
"=== removed file 'src/plugins/bazaar/bazaareditor.cpp'\n"
|
|
|
|
"--- src/plugins/bazaar/bazaareditor.cpp\t2013-01-20 21:39:47 +0000\n"
|
|
|
|
"+++ src/plugins/bazaar/bazaareditor.cpp\t1970-01-01 00:00:00 +0000\n"
|
|
|
|
"@@ -1,121 +0,0 @@\n\n")
|
|
|
|
<< QByteArray("src/plugins/bazaar/bazaareditor.cpp");
|
|
|
|
QTest::newRow("Modified") << QByteArray(
|
|
|
|
"=== modified file 'src/plugins/bazaar/bazaareditor.cpp'\n"
|
|
|
|
"--- src/plugins/bazaar/bazaareditor.cpp\t2010-08-27 14:12:44 +0000\n"
|
|
|
|
"+++ src/plugins/bazaar/bazaareditor.cpp\t2011-02-28 21:24:19 +0000\n"
|
|
|
|
"@@ -727,6 +727,9 @@\n\n")
|
|
|
|
<< QByteArray("src/plugins/bazaar/bazaareditor.cpp");
|
|
|
|
}
|
|
|
|
|
|
|
|
void BazaarPlugin::testDiffFileResolving()
|
|
|
|
{
|
2013-05-27 18:34:02 +03:00
|
|
|
BazaarEditor editor(editorParameters + 2, 0);
|
2013-01-28 20:50:05 +02:00
|
|
|
editor.testDiffFileResolving();
|
2013-01-19 23:19:38 +02:00
|
|
|
}
|
2013-01-28 22:02:35 +02:00
|
|
|
|
|
|
|
void BazaarPlugin::testLogResolving()
|
|
|
|
{
|
|
|
|
QByteArray data(
|
|
|
|
"------------------------------------------------------------\n"
|
|
|
|
"revno: 6572 [merge]\n"
|
|
|
|
"committer: Patch Queue Manager <pqm@pqm.ubuntu.com>\n"
|
|
|
|
"branch nick: +trunk\n"
|
|
|
|
"timestamp: Mon 2012-12-10 10:18:33 +0000\n"
|
|
|
|
"message:\n"
|
|
|
|
" (vila) Fix LC_ALL=C test failures related to utf8 stderr encoding (Vincent\n"
|
|
|
|
" Ladeuil)\n"
|
|
|
|
"------------------------------------------------------------\n"
|
|
|
|
"revno: 6571 [merge]\n"
|
|
|
|
"committer: Patch Queue Manager <pqm@pqm.ubuntu.com>\n"
|
|
|
|
"branch nick: +trunk\n"
|
|
|
|
"timestamp: Thu 2012-10-25 11:13:27 +0000\n"
|
|
|
|
"message:\n"
|
|
|
|
" (gz) Set approved revision and vote \"Approve\" when using lp-propose\n"
|
|
|
|
" --approve (Jonathan Lange)\n"
|
|
|
|
);
|
2013-05-27 18:34:02 +03:00
|
|
|
BazaarEditor editor(editorParameters, 0);
|
2013-01-28 22:02:35 +02:00
|
|
|
editor.testLogResolving(data, "6572", "6571");
|
|
|
|
}
|
2013-01-19 23:19:38 +02:00
|
|
|
#endif
|
|
|
|
|
2011-02-28 13:40:06 +01:00
|
|
|
void BazaarPlugin::commitFromEditor()
|
|
|
|
{
|
2012-09-26 15:18:44 +02:00
|
|
|
// Close the submit editor
|
|
|
|
m_submitActionTriggered = true;
|
|
|
|
Core::ICore::editorManager()->closeEditor();
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
2013-04-18 12:06:43 +02:00
|
|
|
bool BazaarPlugin::submitEditorAboutToClose()
|
2011-02-28 13:40:06 +01:00
|
|
|
{
|
2013-04-18 12:06:43 +02:00
|
|
|
CommitEditor *commitEditor = qobject_cast<CommitEditor *>(submitEditor());
|
|
|
|
QTC_ASSERT(commitEditor, return true);
|
|
|
|
Core::IDocument *editorDocument = commitEditor->document();
|
|
|
|
QTC_ASSERT(editorDocument, return true);
|
2011-02-28 13:40:06 +01:00
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
bool dummyPrompt = m_bazaarSettings.boolValue(BazaarSettings::promptOnSubmitKey);
|
2012-01-07 12:31:48 +01:00
|
|
|
const VcsBase::VcsBaseSubmitEditor::PromptSubmitResult response =
|
2011-02-28 13:40:06 +01:00
|
|
|
commitEditor->promptSubmit(tr("Close Commit Editor"), tr("Do you want to commit the changes?"),
|
|
|
|
tr("Message check failed. Do you want to proceed?"),
|
2012-09-26 15:18:44 +02:00
|
|
|
&dummyPrompt, !m_submitActionTriggered);
|
|
|
|
m_submitActionTriggered = false;
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
switch (response) {
|
2012-01-07 12:31:48 +01:00
|
|
|
case VcsBase::VcsBaseSubmitEditor::SubmitCanceled:
|
2011-02-28 13:40:06 +01:00
|
|
|
return false;
|
2012-01-07 12:31:48 +01:00
|
|
|
case VcsBase::VcsBaseSubmitEditor::SubmitDiscarded:
|
2011-02-28 13:40:06 +01:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-03-18 09:55:36 +01:00
|
|
|
QStringList files = commitEditor->checkedFiles();
|
2011-02-28 13:40:06 +01:00
|
|
|
if (!files.empty()) {
|
|
|
|
//save the commit message
|
2012-02-14 16:43:51 +01:00
|
|
|
if (!Core::DocumentManager::saveDocument(editorDocument))
|
2011-03-30 12:43:17 +02:00
|
|
|
return false;
|
2011-02-28 13:40:06 +01:00
|
|
|
|
2011-03-18 09:55:36 +01:00
|
|
|
//rewrite entries of the form 'file => newfile' to 'newfile' because
|
|
|
|
//this would mess the commit command
|
|
|
|
for (QStringList::iterator iFile = files.begin(); iFile != files.end(); ++iFile) {
|
2012-01-31 10:57:10 +01:00
|
|
|
const QStringList parts = iFile->split(QLatin1String(" => "), QString::SkipEmptyParts);
|
2011-03-18 09:55:36 +01:00
|
|
|
if (!parts.isEmpty())
|
|
|
|
*iFile = parts.last();
|
|
|
|
}
|
|
|
|
|
2013-04-18 12:06:43 +02:00
|
|
|
BazaarCommitWidget *commitWidget = commitEditor->commitWidget();
|
2011-05-12 14:48:10 +02:00
|
|
|
QStringList extraOptions;
|
|
|
|
// Author
|
|
|
|
if (!commitWidget->committer().isEmpty())
|
|
|
|
extraOptions.append(QLatin1String("--author=") + commitWidget->committer());
|
|
|
|
// Fixed bugs
|
|
|
|
foreach (const QString &fix, commitWidget->fixedBugs()) {
|
|
|
|
if (!fix.isEmpty())
|
|
|
|
extraOptions << QLatin1String("--fixes") << fix;
|
|
|
|
}
|
|
|
|
// Whether local commit or not
|
|
|
|
if (commitWidget->isLocalOptionEnabled())
|
|
|
|
extraOptions += QLatin1String("--local");
|
2012-02-14 16:43:51 +01:00
|
|
|
m_client->commit(m_submitRepository, files, editorDocument->fileName(), extraOptions);
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
void BazaarPlugin::updateActions(VcsBase::VcsBasePlugin::ActionState as)
|
2011-02-28 13:40:06 +01:00
|
|
|
{
|
|
|
|
if (!enableMenuAction(as, m_menuAction)) {
|
|
|
|
m_commandLocator->setEnabled(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const QString filename = currentState().currentFileName();
|
|
|
|
const bool repoEnabled = currentState().hasTopLevel();
|
|
|
|
m_commandLocator->setEnabled(repoEnabled);
|
|
|
|
|
|
|
|
m_annotateFile->setParameter(filename);
|
|
|
|
m_diffFile->setParameter(filename);
|
|
|
|
m_logFile->setParameter(filename);
|
|
|
|
m_addAction->setParameter(filename);
|
|
|
|
m_deleteAction->setParameter(filename);
|
|
|
|
m_revertFile->setParameter(filename);
|
|
|
|
m_statusFile->setParameter(filename);
|
|
|
|
|
|
|
|
foreach (QAction *repoAction, m_repositoryActionList)
|
|
|
|
repoAction->setEnabled(repoEnabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN(BazaarPlugin)
|