generic: remove unused KBugReport

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2016-04-06 06:52:45 +00:00
parent b0c494acaa
commit aceeceb7e4
16 changed files with 6 additions and 1891 deletions

View file

@ -37,7 +37,6 @@ install(
KBookmarkMenu
KBookmarkOwner
KBreadcrumbSelectionModel
KBugReport
KBuildSycocaProgressDialog
KButtonGroup
KCapacityBar

View file

@ -1 +0,0 @@
#include "../kbugreport.h"

View file

@ -407,7 +407,6 @@ public:
QList<KAboutLicense> _licenseList;
KLocalizedString translatorName;
KLocalizedString translatorEmail;
QString productName;
QString programIconName;
QVariant programLogo;
KLocalizedString customAuthorPlainText, customAuthorRichText;
@ -669,24 +668,11 @@ KAboutData &KAboutData::setOrganizationDomain( const QByteArray &domain )
return *this;
}
KAboutData &KAboutData::setProductName( const QByteArray &_productName )
{
d->productName = QString::fromUtf8(_productName);
return *this;
}
QString KAboutData::appName() const
{
return QString::fromUtf8(d->_appName);
}
QString KAboutData::productName() const
{
if (!d->productName.isEmpty())
return d->productName;
return appName();
}
QString KAboutData::programName() const
{
if (!d->_programName.isEmpty())

View file

@ -173,9 +173,8 @@ class KAboutLicense;
* for bug reporting, multiple authors and contributors
* (using KAboutPerson), license and copyright information.
*
* Currently, the values set here are shown by the "About" box
* (see KAboutDialog), used by the bug report dialog (see KBugReport),
* and by the help shown on command line (see KCmdLineArgs).
* Currently, the values set here are shown by the "About" box (see
* KAboutDialog), and by the help shown on command line (see KCmdLineArgs).
* They are also used for the icon and the name of the program's windows.
*
* @note Instead of the more usual i18n calls, for translatable text the ki18n
@ -631,31 +630,12 @@ class KDECORE_EXPORT KAboutData
*/
KAboutData &setOrganizationDomain( const QByteArray &domain );
/**
* Defines the product name which will be used in the KBugReport dialog.
* By default it's the appName, but you can overwrite it here to provide
* support for special components e.g. in the form 'product/component',
* such as 'kontact/summary'.
*
* @param name The name of product
*/
KAboutData &setProductName( const QByteArray &name );
/**
* Returns the application's internal name.
* @return the internal program name.
*/
QString appName() const;
/**
* Returns the application's product name, which will be used in KBugReport
* dialog. By default it returns appName(), otherwise the one which is set
* with setProductName()
*
* @return the product name.
*/
QString productName() const;
/**
* Returns the translated program name.
* @return the program name (translated).

View file

@ -473,13 +473,13 @@ namespace KGlobal
/**
* The component currently active (useful in a multi-component
* application, such as a KParts application).
* Don't use this - it's mainly for KAboutDialog and KBugReport.
* Don't use this - it's mainly for KAboutDialog
* @internal
*/
KDECORE_EXPORT KComponentData activeComponent();
/**
* Set the active component for use by KAboutDialog and KBugReport.
* Set the active component for use by KAboutDialog.
* To be used only by a multi-component (KParts) application.
*
* @see activeComponent()

View file

@ -49,7 +49,6 @@ void KAboutDataTest::testConstructorWithDefaults()
KAboutData aboutData(AppName, CatalogName, ki18n(ProgramName), Version );
QCOMPARE( aboutData.appName(), QLatin1String(AppName) );
QCOMPARE( aboutData.productName(), QLatin1String(AppName) );
QCOMPARE( aboutData.programName(), ki18n(ProgramName).toString() );
QCOMPARE( aboutData.programIconName(), QLatin1String(AppName) );
QCOMPARE( aboutData.programLogo(), QVariant() );
@ -93,7 +92,6 @@ void KAboutDataTest::testConstructor()
HomePageAddress, BugsEmailAddress );
QCOMPARE( aboutData.appName(), QLatin1String(AppName) );
QCOMPARE( aboutData.productName(), QLatin1String(AppName) );
QCOMPARE( aboutData.programName(), ki18n(ProgramName).toString() );
QCOMPARE( aboutData.programIconName(), QLatin1String(AppName) );
QCOMPARE( aboutData.programLogo(), QVariant() );

View file

@ -86,7 +86,6 @@ set(kdeui_LIB_SRCS
dialogs/kassistantdialog.cpp
dialogs/kconfigdialog.cpp
dialogs/kconfigdialogmanager.cpp
dialogs/kbugreport.cpp
dialogs/kdialog.cpp
dialogs/kedittoolbar.cpp
dialogs/kinputdialog.cpp
@ -480,7 +479,6 @@ install(
config/kconfigskeleton.h
dialogs/kaboutapplicationdialog.h
dialogs/kassistantdialog.h
dialogs/kbugreport.h
dialogs/kconfigdialog.h
dialogs/kconfigdialogmanager.h
dialogs/kdeprintdialog.h

View file

@ -1,570 +0,0 @@
/* This file is part of the KDE project
Copyright (C) 1999 David Faure <faure@kde.org>
This library 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 library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "kbugreport.h"
#include <QtCore/QProcess>
#include <QtCore/QCoreApplication>
#include <QtGui/QPushButton>
#include <QtGui/QLayout>
#include <QtGui/QRadioButton>
#include <QtGui/QGroupBox>
#include <QtGui/qevent.h>
#include <kaboutdata.h>
#include <kcombobox.h>
#include <ktoolinvocation.h>
#include <kdebug.h>
#include <klineedit.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kstandarddirs.h>
#include <kcomponentdata.h>
#include <kurllabel.h>
#include <ktextedit.h>
#include <ktitlewidget.h>
#include <kurl.h>
#include <stdio.h>
#include <pwd.h>
#include <unistd.h>
#include <sys/utsname.h>
#include "kdepackages.h"
#include "kdeversion.h"
#include <config-compiler.h>
class KBugReportPrivate {
public:
KBugReportPrivate(KBugReport *q): q(q) {}
void _k_slotConfigureEmail();
void _k_slotSetFrom();
void _k_appChanged(int);
void _k_updateUrl();
KBugReport *q;
QProcess * m_process;
const KAboutData * m_aboutData;
KTextEdit * m_lineedit;
KLineEdit * m_subject;
QLabel * m_from;
QLabel * m_version;
QString m_strVersion;
QGroupBox * m_bgSeverity;
QPushButton * m_configureEmail;
KComboBox *appcombo;
QString lastError;
QString kde_version;
QString appname;
QString os;
KUrl url;
QList<QRadioButton*> severityButtons;
int currentSeverity() {
for (int i=0;i<severityButtons.count();i++)
if (severityButtons[i]->isChecked()) return i;
return -1;
}
bool submitBugWeb;
};
KBugReport::KBugReport( QWidget * _parent, bool modal, const KAboutData *aboutData )
: KDialog( _parent ), d( new KBugReportPrivate(this) )
{
setCaption( i18n("Submit Bug Report") );
setButtons( Ok | Cancel );
setModal(modal);
// Use supplied aboutdata, otherwise the one from the active componentData
// otherwise the KGlobal one. _activeInstance should neved be 0L in theory.
d->m_aboutData = aboutData ? aboutData
: (KGlobal::activeComponent().isValid() ? KGlobal::activeComponent().aboutData()
: KGlobal::mainComponent().aboutData());
d->m_process = 0;
QWidget * parent = new QWidget(this);
d->submitBugWeb = false;
if ( d->m_aboutData->bugAddress() == QLatin1String("submit@bugs.kde.org") )
{
// This is a core KDE application -> redirect to the web form
d->submitBugWeb = true;
setButtonGuiItem( Cancel, KStandardGuiItem::close() );
}
QLabel * tmpLabel;
QVBoxLayout * lay = new QVBoxLayout( parent);
KTitleWidget *title = new KTitleWidget( this );
title->setText(i18n( "Submit Bug Report" ) );
title->setPixmap( KIcon( "tools-report-bug" ).pixmap( 32 ) );
lay->addWidget( title );
QGridLayout *glay = new QGridLayout();
lay->addLayout(glay);
int row = 0;
if ( !d->submitBugWeb )
{
// From
QString qwtstr = i18n( "Your email address. If incorrect, use the Configure Email button to change it" );
tmpLabel = new QLabel( i18nc("Email sender address", "From:"), parent );
glay->addWidget( tmpLabel, row,0 );
tmpLabel->setWhatsThis(qwtstr );
d->m_from = new QLabel( parent );
glay->addWidget( d->m_from, row, 1 );
d->m_from->setWhatsThis(qwtstr );
// Configure email button
d->m_configureEmail = new QPushButton( i18n("Configure Email..."),
parent );
connect( d->m_configureEmail, SIGNAL(clicked()), this,
SLOT(_k_slotConfigureEmail()) );
glay->addWidget( d->m_configureEmail, 0, 2, 3, 1, Qt::AlignTop|Qt::AlignRight );
// To
qwtstr = i18n( "The email address this bug report is sent to." );
tmpLabel = new QLabel( i18nc("Email receiver address", "To:"), parent );
glay->addWidget( tmpLabel, ++row,0 );
tmpLabel->setWhatsThis(qwtstr );
tmpLabel = new QLabel( d->m_aboutData->bugAddress(), parent );
tmpLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
glay->addWidget( tmpLabel, row, 1 );
tmpLabel->setWhatsThis(qwtstr );
setButtonGuiItem( Ok, KGuiItem( i18n("&Send"), "mail-send", i18n( "Send bug report." ),
i18n( "Send this bug report to %1." , d->m_aboutData->bugAddress() ) ) );
row++;
}
else
{
d->m_configureEmail = 0;
d->m_from = 0;
}
// Program name
QString qwtstr = i18n( "The application for which you wish to submit a bug report - if incorrect, please use the Report Bug menu item of the correct application" );
tmpLabel = new QLabel( i18n("Application: "), parent );
glay->addWidget( tmpLabel, row, 0 );
tmpLabel->setWhatsThis(qwtstr );
d->appcombo = new KComboBox( false, parent );
d->appcombo->setWhatsThis(qwtstr );
QStringList packageList;
for (int c = 0; packages[c]; ++c)
packageList << QString::fromLatin1(packages[c]);
d->appcombo->addItems(packageList);
connect(d->appcombo, SIGNAL(activated(int)), SLOT(_k_appChanged(int)));
d->appname = d->m_aboutData
? d->m_aboutData->productName()
: qApp->applicationName() ;
glay->addWidget( d->appcombo, row, 1 );
int index = 0;
for (; index < d->appcombo->count(); index++) {
if (d->appcombo->itemText(index) == d->appname) {
break;
}
}
if (index == d->appcombo->count()) { // not present
d->appcombo->addItem(d->appname);
}
d->appcombo->setCurrentIndex(index);
tmpLabel->setWhatsThis(qwtstr );
// Version
qwtstr = i18n( "The version of this application - please make sure that no newer version is available before sending a bug report" );
tmpLabel = new QLabel( i18n("Version:"), parent );
glay->addWidget( tmpLabel, ++row, 0 );
tmpLabel->setWhatsThis(qwtstr );
if (d->m_aboutData)
d->m_strVersion = d->m_aboutData->version();
else
d->m_strVersion = i18n("no version set (programmer error)");
d->kde_version = QString::fromLatin1( KDE_VERSION_STRING );
d->kde_version += ", " + QString::fromLatin1( KDE_DISTRIBUTION_TEXT );
if ( !d->submitBugWeb )
d->m_strVersion += ' ' + d->kde_version;
d->m_version = new QLabel( d->m_strVersion, parent );
d->m_version->setTextInteractionFlags(Qt::TextBrowserInteraction);
//glay->addWidget( d->m_version, row, 1 );
glay->addWidget( d->m_version, row, 1, 1, 2 );
d->m_version->setWhatsThis(qwtstr );
tmpLabel = new QLabel(i18n("OS:"), parent);
glay->addWidget( tmpLabel, ++row, 0 );
struct utsname unameBuf;
uname( &unameBuf );
d->os = QString::fromLatin1( unameBuf.sysname ) +
" (" + QString::fromLatin1( unameBuf.machine ) + ") "
"release " + QString::fromLatin1( unameBuf.release );
tmpLabel = new QLabel(d->os, parent);
tmpLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
glay->addWidget( tmpLabel, row, 1, 1, 2 );
tmpLabel = new QLabel(i18n("Compiler:"), parent);
glay->addWidget( tmpLabel, ++row, 0 );
tmpLabel = new QLabel(QString::fromLatin1(KDE_COMPILER_VERSION), parent);
tmpLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
glay->addWidget( tmpLabel, row, 1, 1, 2 );
if ( !d->submitBugWeb )
{
// Severity
d->m_bgSeverity = new QGroupBox( i18n("Se&verity"), parent );
static const char * const sevNames[5] = { "critical", "grave", "normal", "wishlist", "i18n" };
const QString sevTexts[5] = { i18n("Critical"), i18n("Grave"), i18nc("normal severity","Normal"), i18n("Wishlist"), i18n("Translation") };
QHBoxLayout *severityLayout=new QHBoxLayout(d->m_bgSeverity);
for (int i = 0 ; i < 5 ; i++ )
{
// Store the severity string as the name
QRadioButton *rb = new QRadioButton( sevTexts[i], d->m_bgSeverity);
rb->setObjectName(sevNames[i] );
d->severityButtons.append(rb);
severityLayout->addWidget(rb);
if (i==2) rb->setChecked(true); // default : "normal"
}
lay->addWidget( d->m_bgSeverity );
// Subject
QHBoxLayout * hlay = new QHBoxLayout();
lay->addItem(hlay);
tmpLabel = new QLabel( i18n("S&ubject: "), parent );
hlay->addWidget( tmpLabel );
d->m_subject = new KLineEdit( parent );
d->m_subject->setClearButtonShown(true);
d->m_subject->setFocus();
tmpLabel->setBuddy( d->m_subject );
hlay->addWidget( d->m_subject );
QString text = i18n("Enter the text (in English if possible) that you wish to submit for the "
"bug report.\n"
"If you press \"Send\", a mail message will be sent to the maintainer of "
"this program.\n");
QLabel * label = new QLabel( parent);
label->setText( text );
lay->addWidget( label );
// The multiline-edit
d->m_lineedit = new KTextEdit( parent);
d->m_lineedit->setMinimumHeight( 180 ); // make it big
d->m_lineedit->setWordWrapMode(QTextOption::WrapAtWordBoundaryOrAnywhere);
d->m_lineedit->setLineWrapMode(QTextEdit::WidgetWidth);
d->m_lineedit->setCheckSpellingEnabled(true);
d->m_lineedit->setSpellCheckingLanguage("en");
lay->addWidget( d->m_lineedit, 10 /*stretch*/ );
d->_k_slotSetFrom();
} else {
// Point to the web form
lay->addSpacing(10);
QString text = i18n("<qt>To submit a bug report, click on the button below. This will open a web browser "
"window on <a href=\"http://bugs.kde.org\">http://bugs.kde.org</a> where you will find "
"a form to fill in. The information displayed above will be transferred to that server.</qt>");
QLabel * label = new QLabel( text, parent);
label->setOpenExternalLinks( true );
label->setTextInteractionFlags( Qt::LinksAccessibleByMouse | Qt::LinksAccessibleByKeyboard );
label->setWordWrap( true );
lay->addWidget( label );
lay->addSpacing(10);
d->appcombo->setFocus();
d->_k_updateUrl();
setButtonText(Ok, i18n("&Launch Bug Report Wizard"));
setButtonIcon(Ok, KIcon("tools-report-bug"));
}
parent->setMinimumHeight( parent->sizeHint().height() + 20 ); // WORKAROUND: prevent "cropped" kcombobox
setMainWidget(parent);
}
KBugReport::~KBugReport()
{
delete d;
}
QString KBugReport::messageBody() const
{
if ( !d->submitBugWeb )
return d->m_lineedit->toPlainText();
else
return QString();
}
void KBugReport::setMessageBody(const QString &messageBody)
{
if ( !d->submitBugWeb )
d->m_lineedit->setPlainText(messageBody);
}
void KBugReportPrivate::_k_updateUrl()
{
url = KUrl( "https://bugs.kde.org/enter_bug.cgi" );
url.addQueryItem( "format", "guided" ); // use the guided form
// the string format is product/component, where component is optional
QStringList list = appcombo->currentText().split('/');
url.addQueryItem( "product", list[0] );
if (list.size() == 2) {
url.addQueryItem( "component", list[1] );
}
url.addQueryItem( "version", m_strVersion );
// TODO: guess and fill OS(sys_os) and Platform(rep_platform) fields
}
void KBugReportPrivate::_k_appChanged(int i)
{
QString appName = appcombo->itemText(i);
int index = appName.indexOf( '/' );
if ( index > 0 )
appName = appName.left( index );
kDebug() << "appName " << appName;
QString strDisplayVersion; //Version string to show in the UI
if (appname == appName && m_aboutData) {
m_strVersion = m_aboutData->version();
strDisplayVersion = m_strVersion;
} else {
m_strVersion = QLatin1String("unknown"); //English string to put in the bug report
strDisplayVersion = i18nc("unknown program name", "unknown");
}
if ( !submitBugWeb ) {
m_strVersion += ' ' + kde_version;
strDisplayVersion += ' ' + kde_version;
}
m_version->setText(strDisplayVersion);
if ( submitBugWeb )
_k_updateUrl();
}
void KBugReportPrivate::_k_slotConfigureEmail()
{
if (m_process) return;
m_process = new QProcess;
QObject::connect( m_process, SIGNAL(finished(int,QProcess::ExitStatus)), q, SLOT(_k_slotSetFrom()) );
m_process->start( QString::fromLatin1("kcmshell4"), QStringList() << QString::fromLatin1("kcm_useraccount") );
if ( !m_process->waitForStarted() )
{
kDebug() << "Couldn't start kcmshell4..";
delete m_process;
m_process = 0;
return;
}
m_configureEmail->setEnabled(false);
}
void KBugReportPrivate::_k_slotSetFrom()
{
delete m_process;
m_process = 0;
m_configureEmail->setEnabled(true);
// ### KDE4: why oh why is KEMailSettings in kio?
KConfig emailConf( QString::fromLatin1("emaildefaults") );
KConfigGroup cg(&emailConf, "Defaults");
// find out the default profile
QString profile = QString::fromLatin1("PROFILE_");
profile += cg.readEntry( QString::fromLatin1("Profile"),
QString::fromLatin1("Default") );
KConfigGroup profileGrp(&emailConf, profile );
QString fromaddr = profileGrp.readEntry( "EmailAddress" );
if (fromaddr.isEmpty()) {
struct passwd *p;
p = getpwuid(getuid());
fromaddr = QString::fromLatin1(p->pw_name);
} else {
QString name = profileGrp.readEntry( "FullName" );
if (!name.isEmpty())
fromaddr = name + QString::fromLatin1(" <") + fromaddr + QString::fromLatin1(">");
}
m_from->setText( fromaddr );
}
void KBugReport::accept()
{
if ( d->submitBugWeb ) {
KToolInvocation::invokeBrowser( d->url.url() );
return;
}
if( d->m_lineedit->toPlainText().isEmpty() ||
d->m_subject->text().isEmpty() )
{
QString msg = i18n("You must specify both a subject and a description "
"before the report can be sent.");
KMessageBox::error(this,msg);
return;
}
switch ( d->currentSeverity())
{
case 0: // critical
if ( KMessageBox::questionYesNo( this, i18n(
"<p>You chose the severity <b>Critical</b>. "
"Please note that this severity is intended only for bugs that:</p>"
"<ul><li>break unrelated software on the system (or the whole system)</li>"
"<li>cause serious data loss</li>"
"<li>introduce a security hole on the system where the affected package is installed</li></ul>\n"
"<p>Does the bug you are reporting cause any of the above damage? "
"If it does not, please select a lower severity. Thank you.</p>" ),QString(),KStandardGuiItem::cont(),KStandardGuiItem::cancel() ) == KMessageBox::No )
return;
break;
case 1: // grave
if ( KMessageBox::questionYesNo( this, i18n(
"<p>You chose the severity <b>Grave</b>. "
"Please note that this severity is intended only for bugs that:</p>"
"<ul><li>make the package in question unusable or mostly so</li>"
"<li>cause data loss</li>"
"<li>introduce a security hole allowing access to the accounts of users who use the affected package</li></ul>\n"
"<p>Does the bug you are reporting cause any of the above damage? "
"If it does not, please select a lower severity. Thank you.</p>" ),QString(),KStandardGuiItem::cont(),KStandardGuiItem::cancel() ) == KMessageBox::No )
return;
break;
default:
break;
}
if( !sendBugReport() )
{
QString msg = i18n("Unable to send the bug report.\n"
"Please submit a bug report manually....\n"
"See http://bugs.kde.org/ for instructions.");
KMessageBox::error(this, msg + "\n\n" + d->lastError);
return;
}
KMessageBox::information(this,
i18n("Bug report sent, thank you for your input."));
KDialog::accept();
}
void KBugReport::closeEvent( QCloseEvent * e)
{
if( !d->submitBugWeb && ( (d->m_lineedit->toPlainText().length()>0) || d->m_subject->isModified() ) )
{
int rc = KMessageBox::warningYesNo( this,
i18n( "Close and discard\nedited message?" ),
i18n( "Close Message" ), KStandardGuiItem::discard(), KStandardGuiItem::cont() );
if( rc == KMessageBox::No )
{
e->ignore();
return;
}
}
KDialog::closeEvent(e);
}
QString KBugReport::text() const
{
kDebug() << d->severityButtons[d->currentSeverity()]->objectName();
// Prepend the pseudo-headers to the contents of the mail
QString severity = d->severityButtons[d->currentSeverity()]->objectName();
QString appname = d->appcombo->currentText();
QString os = QString::fromLatin1("OS: %1 (%2)\n").
arg(KDE_COMPILING_OS).
arg(KDE_DISTRIBUTION_TEXT);
QString bodyText;
/* for(int i = 0; i < m_lineedit->numLines(); i++)
{
QString line = m_lineedit->textLine(i);
if (!line.endsWith("\n"))
line += '\n';
bodyText += line;
}
*/
bodyText=d->m_lineedit->toPlainText();
if (bodyText.length()>0)
if (bodyText[bodyText.length()-1]!='\n') bodyText+='\n';
if (severity == QLatin1String("i18n") && KGlobal::locale()->language() != KLocale::defaultLanguage()) {
// Case 1 : i18n bug
QString package = QString::fromLatin1("i18n_%1").arg(KGlobal::locale()->language());
package = package.replace('_', '-');
return QString::fromLatin1("Package: %1").arg(package) +
QString::fromLatin1("\n"
"Application: %1\n"
// not really i18n's version, so better here IMHO
"Version: %2\n").arg(appname).arg(d->m_strVersion)+
os+QString::fromLatin1("\n")+bodyText;
} else {
appname = appname.replace('_', '-');
// Case 2 : normal bug
return QString::fromLatin1("Package: %1\n"
"Version: %2\n"
"Severity: %3\n")
.arg(appname).arg(d->m_strVersion).arg(severity)+
QString::fromLatin1("Compiler: %1\n").arg(KDE_COMPILER_VERSION)+
os+QString::fromLatin1("\n")+bodyText;
}
}
bool KBugReport::sendBugReport()
{
QString recipient ( d->m_aboutData ?
d->m_aboutData->bugAddress() :
QString::fromLatin1("submit@bugs.kde.org") );
QString command;
command = KStandardDirs::locate("exe", "ksendbugmail");
if (command.isEmpty())
command = KStandardDirs::findExe( QString::fromLatin1("ksendbugmail") );
QProcess proc;
QStringList args;
args << "--subject" << d->m_subject->text() << "--recipient" << recipient;
proc.start( command, args );
//kDebug() << command << args;
if (!proc.waitForStarted())
{
kError() << "Unable to open a pipe to " << command << endl;
return false;
}
proc.write( text().toUtf8() );
proc.closeWriteChannel();
proc.waitForFinished();
kDebug() << "kbugreport: sendbugmail exit, status " << proc.exitStatus() << " code " << proc.exitCode();
QByteArray line;
if (proc.exitStatus() == QProcess::NormalExit && proc.exitCode() != 0) {
// XXX not stderr?
while (!proc.atEnd())
line = proc.readLine();
d->lastError = QString::fromUtf8( line );
return false;
}
return true;
}
#include "moc_kbugreport.cpp"

View file

@ -1,120 +0,0 @@
/* This file is part of the KDE project
Copyright (C) 1999 David Faure <faure@kde.org>
This library 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 library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KBUGREPORT_H
#define KBUGREPORT_H
#include <kdialog.h>
class KAboutData;
class KBugReportPrivate;
/**
* @short A dialog box for sending bug reports.
*
* All the information needed by the dialog box
* (program name, version, bug-report address, etc.)
* comes from the KAboutData class.
* Make sure you create an instance of KAboutData and pass it
* to KCmdLineArgs.
*
* \image html kbugreport.png "KDE Bug Report Dialog"
*
* @author David Faure <faure@kde.org>
*/
class KDEUI_EXPORT KBugReport : public KDialog
{
Q_OBJECT
public:
/**
* Creates a bug-report dialog.
* Note that you shouldn't have to do this manually,
* since KHelpMenu takes care of the menu item
* for "Report Bug..." and of creating a KBugReport dialog.
*/
// ###KDE5: remove modal argument
explicit KBugReport(QWidget *parent = 0L, bool modal=true, const KAboutData *aboutData = 0L);
/**
* Destructor
*/
virtual ~KBugReport();
/**
* The message body of the bug report
* @return The message body of the bug report.
*/
QString messageBody() const;
/**
* Sets the message body of the bug report.
*/
void setMessageBody(const QString &messageBody);
/**
* OK has been clicked
*/
virtual void accept();
private:
/**
* "Configure email" has been clicked - this calls kcmshell4 System/email
*/
Q_PRIVATE_SLOT(d, void _k_slotConfigureEmail())
/**
* Sets the "From" field from the e-mail configuration
* Called at creation time, but also after "Configure email" is closed.
*/
Q_PRIVATE_SLOT(d, void _k_slotSetFrom())
/**
* Application combo selection changed (and was activated)
*/
Q_PRIVATE_SLOT(d, void _k_appChanged(int))
/**
* Update the url to match the current os, compiler, selected app, etc
*/
Q_PRIVATE_SLOT(d, void _k_updateUrl())
protected:
/**
* A complete copy of the bug report
* @return QString copy of the bug report.
*/
QString text() const;
/**
* Attempt to e-mail the bug report.
* @return true on success
*/
bool sendBugReport();
virtual void closeEvent(QCloseEvent *e);
private:
friend class KBugReportPrivate;
KBugReportPrivate *const d;
Q_DISABLE_COPY(KBugReport)
};
#endif

File diff suppressed because it is too large Load diff

View file

@ -1,61 +0,0 @@
# -*- coding: utf-8 -*-
#
# Script to automatically update the "kdepackages.h" file
# FIXME - This is a slow script. Rewrite me using a smart logic. Thanks!
#
import string
import urllib
def unescape(text):
text = text.replace("&nbsp;"," ")
text = text.replace("&#8209;","-")
text = text.replace("&amp;","&")
return text
print "Fetching products and components from bugs.kde.org..."
pkg = open("kdepackages.h","w")
pkg.write("// DO NOT EDIT - EDIT bugs/Maintainers instead\n")
pkg.write("const char * const packages[] = {\n")
data = urllib.urlopen('http://bugs.kde.org/describecomponents.cgi').read()
for line in string.split(data,' '):
if line.count("describecomponents.cgi") > 0:
index1 = line.index("\">")+2
product = line[index1:len(line)]
index2 = product.index("<")
product = product[0:index2]
link = "describecomponents.cgi?product="
index1 = line.index(link)
link = line[index1:len(line)]
index2 = link.index("\"")
link = link[0:index2]
link = 'http://bugs.kde.org/' + link
data2 = urllib.urlopen(link).read()
productname = unescape(product)
print productname
pkg.write("\"" + productname + "\",\n")
data2 = string.split(data2,'\n')
iter = 0
end = len(data2)
while( iter < end-1 ):
iter = iter+1
line = data2[iter]
if line.count("<td rowspan=\"2\">")>0:
iter = iter+1
line = data2[iter]
index1 = line.index("\">")+2
product = line[index1:len(line)]
index2 = product.index("<")
product = unescape(product[0:index2])
if product!="general":
pkg.write("\"" + productname + "/" + product + "\",\n")
print productname + "/" + product
pkg.write("0 };\n")
pkg.close()

View file

@ -81,7 +81,6 @@ KDEUI_EXECUTABLE_TESTS(
kcharselecttest
kapptest
kassistantdialogtest
kbugreporttest
kcategorizedviewtest
kcodecactiontest
kcolorcollectiontest

View file

@ -1,46 +0,0 @@
/* This file is part of the KDE libraries
Copyright (C) 2005 Joseph Wenninger <jowenn@kde.org>
This library 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 library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <kapplication.h>
#include <kbugreport.h>
int main(int argc, char **argv) {
// First a bug report to bugs.kde.org
KAboutData about("kbugreporttest", 0, ki18n("kbugreporttest"), "version");
KCmdLineArgs::init(argc, argv, &about);
KApplication a;
a.setQuitOnLastWindowClosed(false);
KBugReport rep(0,true,&about);
rep.exec();
// Then a bug report by email.
// Change the email address to check if it worked :)
KAboutData about1("kbugreporttest", 0, ki18n("kbugreporttest"), "version",
ki18n("description"), KAboutData::License_Unknown,
ki18n("copyright"), ki18n("bug report tool"),
QByteArray(), "null@bugs.kde.org");
KBugReport rep1(0,true,&about1);
rep1.exec();
return 0;
}

View file

@ -146,7 +146,7 @@ public:
virtual QString quickHelp() const;
/**
* This is generally only called for the KBugReport.
* This is generally only called for the KBugReport (which is no more).
* If you override you should have it return a pointer to a constant.
*
*

View file

@ -97,7 +97,6 @@ KWebKitPart::KWebKitPart(QWidget *parentWidget, QObject *parent,
about.addAuthor(ki18n("Michael Howell"), ki18n("Developer"), "mhowell123@gmail.com");
about.addAuthor(ki18n("Laurent Montel"), ki18n("Developer"), "montel@kde.org");
about.addAuthor(ki18n("Dirk Mueller"), ki18n("Developer"), "mueller@kde.org");
about.setProductName("kwebkitpart/general");
KComponentData componentData(&about);
setComponentData(componentData, false /*don't load plugins yet*/);

View file

@ -246,7 +246,7 @@ Q_SIGNALS:
protected:
/**
* Changes the active instance when the active part changes.
* The active instance is used by KBugReport and KAboutDialog.
* The active instance is used by KAboutDialog.
* Override if you really need to - usually you don't need to.
*/
virtual void setActiveComponent(const KComponentData &instance);