2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2009-04-20 16:38:10 +02:00
|
|
|
#include "qt4projectconfigwidget.h"
|
2008-12-02 16:19:05 +01:00
|
|
|
|
|
|
|
|
#include "makestep.h"
|
|
|
|
|
#include "qmakestep.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "qt4project.h"
|
2009-01-20 11:52:04 +01:00
|
|
|
#include "qt4projectmanagerconstants.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "qt4projectmanager.h"
|
2009-11-25 18:50:20 +01:00
|
|
|
#include "qt4buildconfiguration.h"
|
2009-04-20 16:38:10 +02:00
|
|
|
#include "ui_qt4projectconfigwidget.h"
|
2009-01-20 11:52:04 +01:00
|
|
|
|
2009-01-23 13:03:36 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2012-02-14 16:43:51 +01:00
|
|
|
#include <coreplugin/idocument.h>
|
2010-11-01 16:29:45 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2011-08-18 13:46:52 +02:00
|
|
|
#include <projectexplorer/toolchain.h>
|
|
|
|
|
#include <projectexplorer/task.h>
|
2009-04-22 14:52:35 +02:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2009-09-21 17:54:02 +02:00
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
2011-05-20 21:40:53 +02:00
|
|
|
#include <qtsupport/qtversionfactory.h>
|
|
|
|
|
#include <qtsupport/baseqtversion.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <qtsupport/qtprofileinformation.h>
|
2011-05-20 21:40:53 +02:00
|
|
|
#include <qtsupport/qtsupportconstants.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <qtsupport/qtversionmanager.h>
|
2010-02-08 15:50:06 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2010-10-19 11:14:03 +02:00
|
|
|
#include <utils/qtcprocess.h>
|
2009-04-22 16:51:38 +02:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QPushButton>
|
2010-03-17 17:45:33 +01:00
|
|
|
#include <utils/detailswidget.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
bool debug = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using namespace Qt4ProjectManager;
|
|
|
|
|
using namespace Qt4ProjectManager::Internal;
|
2011-02-01 18:36:00 +01:00
|
|
|
using namespace ProjectExplorer;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
Qt4ProjectConfigWidget::Qt4ProjectConfigWidget(ProjectExplorer::Target *target)
|
2009-08-06 15:31:32 +02:00
|
|
|
: BuildConfigWidget(),
|
2009-12-03 18:37:27 +01:00
|
|
|
m_buildConfiguration(0),
|
|
|
|
|
m_ignoreChange(false)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-10-01 14:24:44 +02:00
|
|
|
QVBoxLayout *vbox = new QVBoxLayout(this);
|
|
|
|
|
vbox->setMargin(0);
|
|
|
|
|
m_detailsContainer = new Utils::DetailsWidget(this);
|
2010-02-01 17:22:05 +01:00
|
|
|
m_detailsContainer->setState(Utils::DetailsWidget::NoSummary);
|
2009-10-01 14:24:44 +02:00
|
|
|
vbox->addWidget(m_detailsContainer);
|
|
|
|
|
QWidget *details = new QWidget(m_detailsContainer);
|
|
|
|
|
m_detailsContainer->setWidget(details);
|
2009-04-20 16:38:10 +02:00
|
|
|
m_ui = new Ui::Qt4ProjectConfigWidget();
|
2009-10-01 14:24:44 +02:00
|
|
|
m_ui->setupUi(details);
|
|
|
|
|
|
2009-08-05 12:50:15 +02:00
|
|
|
m_browseButton = m_ui->shadowBuildDirEdit->buttonAtIndex(0);
|
2009-07-22 15:18:42 +02:00
|
|
|
|
2008-12-19 18:25:20 +01:00
|
|
|
m_ui->shadowBuildDirEdit->setPromptDialogTitle(tr("Shadow Build Directory"));
|
2011-02-21 12:42:20 +01:00
|
|
|
m_ui->shadowBuildDirEdit->setExpectedKind(Utils::PathChooser::ExistingDirectory);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
connect(m_ui->shadowBuildCheckBox, SIGNAL(clicked(bool)),
|
2009-12-03 18:37:27 +01:00
|
|
|
this, SLOT(shadowBuildClicked(bool)));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-19 18:25:20 +01:00
|
|
|
connect(m_ui->shadowBuildDirEdit, SIGNAL(beforeBrowsing()),
|
|
|
|
|
this, SLOT(onBeforeBeforeShadowBuildDirBrowsed()));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-06-19 17:55:47 +02:00
|
|
|
connect(m_ui->shadowBuildDirEdit, SIGNAL(changed(QString)),
|
2009-12-03 18:37:27 +01:00
|
|
|
this, SLOT(shadowBuildEdited()));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-08-02 16:11:18 +02:00
|
|
|
Project *project = target->project();
|
2012-04-24 15:49:09 +02:00
|
|
|
if (project) {
|
|
|
|
|
connect(project, SIGNAL(environmentChanged()), this, SLOT(environmentChanged()));
|
|
|
|
|
connect(project, SIGNAL(buildDirectoryInitialized()), this, SLOT(updateProblemLabel()));
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-04-20 16:38:10 +02:00
|
|
|
Qt4ProjectConfigWidget::~Qt4ProjectConfigWidget()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
void Qt4ProjectConfigWidget::updateDetails()
|
|
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
m_detailsContainer->setSummaryText(
|
2012-07-26 16:08:41 +02:00
|
|
|
tr("building in <b>%1</b>")
|
2012-04-24 15:49:09 +02:00
|
|
|
.arg(QDir::toNativeSeparators(m_buildConfiguration->buildDirectory())));
|
2009-08-06 15:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
2010-10-06 13:47:01 +02:00
|
|
|
void Qt4ProjectConfigWidget::environmentChanged()
|
|
|
|
|
{
|
|
|
|
|
m_ui->shadowBuildDirEdit->setEnvironment(m_buildConfiguration->environment());
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-20 16:38:10 +02:00
|
|
|
QString Qt4ProjectConfigWidget::displayName() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return tr("General");
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-24 15:36:31 +01:00
|
|
|
void Qt4ProjectConfigWidget::init(ProjectExplorer::BuildConfiguration *bc)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
QTC_ASSERT(bc, return);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
if (debug)
|
2010-07-16 14:00:41 +02:00
|
|
|
qDebug() << "Qt4ProjectConfigWidget::init() for" << bc->displayName();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-12-03 18:37:27 +01:00
|
|
|
if (m_buildConfiguration) {
|
2010-04-14 13:37:08 +02:00
|
|
|
disconnect(m_buildConfiguration, SIGNAL(buildDirectoryChanged()),
|
|
|
|
|
this, SLOT(buildDirectoryChanged()));
|
2009-12-08 14:07:01 +01:00
|
|
|
disconnect(m_buildConfiguration, SIGNAL(qmakeBuildConfigurationChanged()),
|
2012-04-24 15:49:09 +02:00
|
|
|
this, SLOT(updateProblemLabel()));
|
2009-12-03 18:37:27 +01:00
|
|
|
}
|
2009-11-25 18:50:20 +01:00
|
|
|
m_buildConfiguration = static_cast<Qt4BuildConfiguration *>(bc);
|
2010-10-06 13:47:01 +02:00
|
|
|
m_ui->shadowBuildDirEdit->setEnvironment(m_buildConfiguration->environment());
|
2009-12-03 18:37:27 +01:00
|
|
|
|
|
|
|
|
connect(m_buildConfiguration, SIGNAL(buildDirectoryChanged()),
|
|
|
|
|
this, SLOT(buildDirectoryChanged()));
|
2009-12-08 14:07:01 +01:00
|
|
|
connect(m_buildConfiguration, SIGNAL(qmakeBuildConfigurationChanged()),
|
2012-04-24 15:49:09 +02:00
|
|
|
this, SLOT(updateProblemLabel()));
|
2009-12-03 18:37:27 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
m_ui->shadowBuildDirEdit->setBaseDirectory(m_buildConfiguration->target()->project()->projectDirectory());
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
buildDirectoryChanged();
|
2009-12-03 18:37:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Qt4ProjectConfigWidget::buildDirectoryChanged()
|
|
|
|
|
{
|
2009-12-10 19:21:34 +01:00
|
|
|
if (m_ignoreChange)
|
|
|
|
|
return;
|
2009-12-07 15:55:00 +01:00
|
|
|
m_ui->shadowBuildDirEdit->setPath(m_buildConfiguration->shadowBuildDirectory());
|
2012-04-24 15:49:09 +02:00
|
|
|
bool shadowBuild = m_buildConfiguration->shadowBuild();
|
|
|
|
|
m_ui->shadowBuildCheckBox->setChecked(shadowBuild);
|
|
|
|
|
m_ui->shadowBuildDirEdit->setEnabled(shadowBuild);
|
|
|
|
|
m_browseButton->setEnabled(shadowBuild);
|
|
|
|
|
|
2009-12-03 18:37:27 +01:00
|
|
|
updateDetails();
|
2012-04-24 15:49:09 +02:00
|
|
|
updateProblemLabel();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-04-20 16:38:10 +02:00
|
|
|
void Qt4ProjectConfigWidget::onBeforeBeforeShadowBuildDirBrowsed()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-03-25 13:19:27 +01:00
|
|
|
QString initialDirectory = m_buildConfiguration->target()->project()->projectDirectory();
|
2008-12-19 18:25:20 +01:00
|
|
|
if (!initialDirectory.isEmpty())
|
|
|
|
|
m_ui->shadowBuildDirEdit->setInitialBrowsePathBackup(initialDirectory);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-12-03 18:37:27 +01:00
|
|
|
void Qt4ProjectConfigWidget::shadowBuildClicked(bool checked)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2008-12-19 18:25:20 +01:00
|
|
|
m_ui->shadowBuildDirEdit->setEnabled(checked);
|
2009-08-05 12:50:15 +02:00
|
|
|
m_browseButton->setEnabled(checked);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool b = m_ui->shadowBuildCheckBox->isChecked();
|
2009-12-03 18:37:27 +01:00
|
|
|
|
|
|
|
|
m_ignoreChange = true;
|
2010-10-06 13:47:01 +02:00
|
|
|
m_buildConfiguration->setShadowBuildAndDirectory(b, m_ui->shadowBuildDirEdit->rawPath());
|
2009-12-03 18:37:27 +01:00
|
|
|
m_ignoreChange = false;
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
updateDetails();
|
2012-04-24 15:49:09 +02:00
|
|
|
updateProblemLabel();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-12-03 18:37:27 +01:00
|
|
|
void Qt4ProjectConfigWidget::shadowBuildEdited()
|
|
|
|
|
{
|
2010-10-06 13:47:01 +02:00
|
|
|
if (m_buildConfiguration->shadowBuildDirectory() == m_ui->shadowBuildDirEdit->rawPath())
|
2009-12-03 18:37:27 +01:00
|
|
|
return;
|
|
|
|
|
m_ignoreChange = true;
|
2010-10-06 13:47:01 +02:00
|
|
|
m_buildConfiguration->setShadowBuildAndDirectory(m_buildConfiguration->shadowBuild(), m_ui->shadowBuildDirEdit->rawPath());
|
2009-12-03 18:37:27 +01:00
|
|
|
m_ignoreChange = false;
|
|
|
|
|
|
|
|
|
|
// if the directory already exists
|
|
|
|
|
// check if we have a build in there and
|
|
|
|
|
// offer to import it
|
2012-04-24 15:49:09 +02:00
|
|
|
updateProblemLabel();
|
2009-12-03 18:37:27 +01:00
|
|
|
updateDetails();
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
void Qt4ProjectConfigWidget::updateProblemLabel()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
bool targetMismatch = false;
|
2010-10-07 12:08:46 +02:00
|
|
|
bool incompatibleBuild = false;
|
2012-04-24 15:49:09 +02:00
|
|
|
bool allGood = false;
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::Profile *p = m_buildConfiguration->target()->profile();
|
|
|
|
|
const QString proFileName = m_buildConfiguration->target()->project()->document()->fileName();
|
|
|
|
|
|
|
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtProfileInformation::qtVersion(p);
|
|
|
|
|
if (!version) {
|
|
|
|
|
m_ui->problemLabel->setVisible(true);
|
|
|
|
|
m_ui->warningLabel->setVisible(true);
|
2012-07-24 16:39:13 +02:00
|
|
|
m_ui->problemLabel->setText(tr("This target cannot build this project since it does not define a "
|
2012-04-24 15:49:09 +02:00
|
|
|
"Qt version."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-07-24 16:27:29 +02:00
|
|
|
|
2009-07-27 15:02:34 +02:00
|
|
|
// we only show if we actually have a qmake and makestep
|
2009-11-25 18:50:20 +01:00
|
|
|
if (m_buildConfiguration->qmakeStep() && m_buildConfiguration->makeStep()) {
|
2012-04-24 15:49:09 +02:00
|
|
|
QString makefile = m_buildConfiguration->buildDirectory() + QLatin1Char('/');
|
2010-10-05 17:38:45 +02:00
|
|
|
if (m_buildConfiguration->makefile().isEmpty())
|
2012-04-24 15:49:09 +02:00
|
|
|
makefile.append(QLatin1String("Makefile"));
|
2010-10-05 17:38:45 +02:00
|
|
|
else
|
|
|
|
|
makefile.append(m_buildConfiguration->makefile());
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
switch (m_buildConfiguration->compareToImportFrom(makefile)) {
|
|
|
|
|
case Qt4BuildConfiguration::MakefileMatches:
|
|
|
|
|
allGood = true;
|
|
|
|
|
break;
|
|
|
|
|
case Qt4BuildConfiguration::MakefileMissing:
|
|
|
|
|
allGood = true;
|
|
|
|
|
break;
|
|
|
|
|
case Qt4BuildConfiguration::MakefileIncompatible:
|
|
|
|
|
incompatibleBuild = true;
|
|
|
|
|
break;
|
|
|
|
|
case Qt4BuildConfiguration::MakefileForWrongProject:
|
|
|
|
|
targetMismatch = true;
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2009-07-24 16:27:29 +02:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QString shadowBuildWarning;
|
|
|
|
|
if (!version->supportsShadowBuilds() && m_buildConfiguration->shadowBuild()) {
|
2012-07-26 16:08:41 +02:00
|
|
|
shadowBuildWarning =tr("The Qt version %1 does not support shadow builds, building might fail.")
|
2012-04-24 15:49:09 +02:00
|
|
|
.arg(version->displayName())
|
|
|
|
|
+ QLatin1String("<br>");
|
|
|
|
|
}
|
2011-05-20 21:40:53 +02:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
if (allGood) {
|
|
|
|
|
QString buildDirectory = m_buildConfiguration->target()->project()->projectDirectory();;
|
|
|
|
|
if (m_buildConfiguration->shadowBuild())
|
|
|
|
|
buildDirectory = m_buildConfiguration->buildDirectory();
|
|
|
|
|
QList<ProjectExplorer::Task> issues;
|
|
|
|
|
issues = version->reportIssues(proFileName, buildDirectory);
|
2011-05-25 09:25:04 +02:00
|
|
|
qSort(issues);
|
2010-08-19 14:45:21 +02:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
if (issues.isEmpty() && shadowBuildWarning.isEmpty()) {
|
|
|
|
|
m_ui->problemLabel->setVisible(false);
|
|
|
|
|
m_ui->warningLabel->setVisible(false);
|
|
|
|
|
} else {
|
|
|
|
|
m_ui->problemLabel->setVisible(true);
|
|
|
|
|
m_ui->warningLabel->setVisible(true);
|
|
|
|
|
QString text = QLatin1String("<nobr>") + shadowBuildWarning;
|
|
|
|
|
foreach (const ProjectExplorer::Task &task, issues) {
|
|
|
|
|
QString type;
|
|
|
|
|
switch (task.type) {
|
|
|
|
|
case ProjectExplorer::Task::Error:
|
|
|
|
|
type = tr("Error:");
|
|
|
|
|
type += QLatin1Char(' ');
|
|
|
|
|
break;
|
|
|
|
|
case ProjectExplorer::Task::Warning:
|
|
|
|
|
type = tr("Warning:");
|
|
|
|
|
type += QLatin1Char(' ');
|
|
|
|
|
break;
|
|
|
|
|
case ProjectExplorer::Task::Unknown:
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (!text.endsWith(QLatin1String("br>")))
|
|
|
|
|
text.append(QLatin1String("<br>"));
|
|
|
|
|
text.append(type + task.description);
|
|
|
|
|
}
|
|
|
|
|
m_ui->problemLabel->setText(text);
|
|
|
|
|
}
|
|
|
|
|
} else if (targetMismatch) {
|
2010-10-07 12:08:46 +02:00
|
|
|
m_ui->problemLabel->setVisible(true);
|
|
|
|
|
m_ui->warningLabel->setVisible(true);
|
2012-04-24 15:49:09 +02:00
|
|
|
m_ui->problemLabel->setText(shadowBuildWarning + tr("A build for a different project exists in %1, which will be overwritten.",
|
|
|
|
|
"%1 build directory")
|
|
|
|
|
.arg(m_ui->shadowBuildDirEdit->path()));
|
|
|
|
|
} else if (incompatibleBuild) {
|
|
|
|
|
m_ui->warningLabel->setVisible(true);
|
2010-03-23 16:02:59 +01:00
|
|
|
m_ui->problemLabel->setVisible(true);
|
2012-04-24 15:49:09 +02:00
|
|
|
m_ui->problemLabel->setText(shadowBuildWarning +tr("An incompatible build exists in %1, which will be overwritten.",
|
|
|
|
|
"%1 build directory")
|
|
|
|
|
.arg(m_ui->shadowBuildDirEdit->path()));
|
|
|
|
|
} else if (shadowBuildWarning.isEmpty()) {
|
2010-03-23 16:02:59 +01:00
|
|
|
m_ui->warningLabel->setVisible(true);
|
2012-04-24 15:49:09 +02:00
|
|
|
m_ui->problemLabel->setVisible(true);
|
|
|
|
|
m_ui->problemLabel->setText(shadowBuildWarning);
|
2011-04-14 14:48:14 +02:00
|
|
|
}
|
2010-04-14 13:37:08 +02:00
|
|
|
}
|