Fix branding, default server, and update server list.

pull/1/head
Darrell Anderson 12 years ago
parent 7c7632c1a5
commit 8d38062cbc

@ -67,7 +67,7 @@ TQString BugCommandClose::mailAddress() const
if (m_message.isEmpty()) { if (m_message.isEmpty()) {
return TQString(); return TQString();
} else { } else {
return m_bug.number() + "-done@bugs.kde.org"; return m_bug.number() + "-done@bugs.trinitydesktop.org";
} }
} }
@ -194,15 +194,15 @@ void BugCommandUnmerge::save( KConfig *config )
TQString BugCommandReply::mailAddress() const TQString BugCommandReply::mailAddress() const
{ {
return m_bug.number() + "@bugs.kde.org"; return m_bug.number() + "@bugs.trinitydesktop.org";
#if 0 #if 0
switch ( m_recipient ) { switch ( m_recipient ) {
case Normal: case Normal:
return m_bug.number() + "@bugs.kde.org"; return m_bug.number() + "@bugs.trinitydesktop.org";
case Maintonly: case Maintonly:
return m_bug.number() + "-maintonly@bugs.kde.org"; return m_bug.number() + "-maintonly@bugs.trinitydesktop.org";
case Quiet: case Quiet:
return m_bug.number() + "-quiet@bugs.kde.org"; return m_bug.number() + "-quiet@bugs.trinitydesktop.org";
} }
return TQString(); return TQString();
#endif #endif

@ -54,7 +54,8 @@ void BugServer::init()
TQString bugzilla = mServerConfig.bugzillaVersion(); TQString bugzilla = mServerConfig.bugzillaVersion();
if ( bugzilla == "KDE" ) mProcessor = new DomProcessor( this ); if ( bugzilla == "TDE" ) mProcessor = new DomProcessor( this );
else if ( bugzilla == "KDE" ) mProcessor = new DomProcessor( this );
else if ( bugzilla == "2.10" ) mProcessor = new HtmlParser_2_10( this ); else if ( bugzilla == "2.10" ) mProcessor = new HtmlParser_2_10( this );
else if ( bugzilla == "2.14.2" ) mProcessor = new HtmlParser_2_14_2( this ); else if ( bugzilla == "2.14.2" ) mProcessor = new HtmlParser_2_14_2( this );
else if ( bugzilla == "2.17.1" ) mProcessor = new HtmlParser_2_17_1( this ); else if ( bugzilla == "2.17.1" ) mProcessor = new HtmlParser_2_17_1( this );
@ -231,8 +232,8 @@ void BugServer::sendCommands( MailSender *mailer, const TQString &senderName,
const TQString &senderEmail, bool sendBCC, const TQString &senderEmail, bool sendBCC,
const TQString &recipient ) const TQString &recipient )
{ {
// Disable mail commands for non-KDE servers // Disable mail commands for non-TDE servers
if ( mServerConfig.baseUrl() != KURL( "http://bugs.kde.org" ) ) return; if ( mServerConfig.baseUrl() != KURL( "http://bugs.trinitydesktop.org" ) ) return;
TQString controlText; TQString controlText;
@ -249,7 +250,7 @@ void BugServer::sendCommands( MailSender *mailer, const TQString &senderName,
if (!cmd->package().isNull()) if (!cmd->package().isNull())
pkg = cmd->package(); pkg = cmd->package();
if (!cmd->controlString().isNull()) { if (!cmd->controlString().isNull()) {
kdDebug() << "control@bugs.kde.org: " << cmd->controlString() << endl; kdDebug() << "control@bugs.trinitydesktop.org: " << cmd->controlString() << endl;
controlText += cmd->controlString() + "\n"; controlText += cmd->controlString() + "\n";
} else { } else {
kdDebug() << cmd->mailAddress() << ": " << cmd->mailText() << endl; kdDebug() << cmd->mailAddress() << ": " << cmd->mailText() << endl;
@ -283,9 +284,9 @@ void BugServer::sendCommands( MailSender *mailer, const TQString &senderName,
} }
if (!controlText.isEmpty()) { if (!controlText.isEmpty()) {
kdDebug() << "control@bugs.kde.org doesn't work anymore" << endl; kdDebug() << "control@bugs.trinitydesktop.org doesn't work anymore" << endl;
#if 0 #if 0
if ( !mailer->send( senderName, senderEmail, "control@bugs.kde.org", if ( !mailer->send( senderName, senderEmail, "control@bugs.trinitydesktop.org",
i18n("Mail generated by KBugBuster"), controlText, i18n("Mail generated by KBugBuster"), controlText,
sendBCC, recipient )) sendBCC, recipient ))
return; return;

@ -31,14 +31,14 @@
BugServerConfig::BugServerConfig() BugServerConfig::BugServerConfig()
{ {
mName = "KDE"; mName = "Trinity";
mBaseUrl = "http://bugs.kde.org"; mBaseUrl = "http://bugs.trinitydesktop.org";
mUser = "bugzilla@kde.org"; mUser = "bugzilla@trinitydesktop.org";
mBugzillaVersion = "KDE"; mBugzillaVersion = "TDE";
} }
BugServerConfig::BugServerConfig( const TQString &name, const KURL &baseUrl ) BugServerConfig::BugServerConfig( const TQString &name, const KURL &baseUrl )
: mName( name ), mBaseUrl( baseUrl ), mBugzillaVersion( "KDE" ) : mName( name ), mBaseUrl( baseUrl ), mBugzillaVersion( "TDE" )
{ {
} }
@ -104,6 +104,7 @@ TQStringList BugServerConfig::bugzillaVersions()
v << "2.14.2"; v << "2.14.2";
v << "2.16.2"; v << "2.16.2";
v << "2.17.1"; v << "2.17.1";
v << "TDE";
v << "KDE"; v << "KDE";
v << "Bugworld"; v << "Bugworld";
@ -120,7 +121,7 @@ void BugServerConfig::readConfig( KConfig *cfg, const TQString &name )
mUser = cfg->readEntry( "User" ); mUser = cfg->readEntry( "User" );
mPassword = cfg->readEntry( "Password" ); mPassword = cfg->readEntry( "Password" );
mBugzillaVersion = cfg->readEntry( "BugzillaVersion", "KDE" ); mBugzillaVersion = cfg->readEntry( "BugzillaVersion", "TDE" );
mRecentPackages = cfg->readListEntry( "RecentPackages" ); mRecentPackages = cfg->readListEntry( "RecentPackages" );
mCurrentPackage = cfg->readEntry( "CurrentPackage" ); mCurrentPackage = cfg->readEntry( "CurrentPackage" );

@ -134,21 +134,21 @@ void KBBPrefs::usrWriteConfig()
void KBBPrefs::setMessageButtonsDefault() void KBBPrefs::setMessageButtonsDefault()
{ {
mMessageButtons.clear(); mMessageButtons.clear();
mMessageButtons.insert(i18n("Bug Fixed in CVS"),"Thank you for your bug report.\n" mMessageButtons.insert(i18n("Bug Fixed in GIT"),"Thank you for your bug report.\n"
"The bug that you reported has been identified and has been fixed in the\n" "The bug that you reported has been identified and has been fixed in the\n"
"latest development (CVS) version of KDE. The bug report will be closed.\n"); "latest development version of TDE. The bug report will be closed.\n");
mMessageButtons.insert(i18n("Duplicate Report"),"Thank you for your bug report.\n" mMessageButtons.insert(i18n("Duplicate Report"),"Thank you for your bug report.\n"
"This bug/feature request has already been reported and this report will\n" "This bug/feature request has already been reported and this report will\n"
"be marked as a duplicate.\n"); "be marked as a duplicate.\n");
mMessageButtons.insert(i18n("Packaging Bug"),"Thank you for your bug report.\n" mMessageButtons.insert(i18n("Packaging Bug"),"Thank you for your bug report.\n"
"The bug that you reported appears to be a packaging bug, due to a\n" "The bug that you reported appears to be a packaging bug, due to a\n"
"problem in the way in which your distribution/vendor has packaged\n" "problem in the way in which your distribution/vendor has packaged\n"
"KDE for distribution.\n" "TDE for distribution.\n"
"The bug report will be closed since it is not a KDE problem.\n" "The bug report will be closed since it is not a TDE problem.\n"
"Please send the bug report to your distribution/vendor instead.\n"); "Please send the bug report to your distribution/vendor instead.\n");
mMessageButtons.insert(i18n("Feature Implemented in CVS"),"Thank you for your bug report.\n" mMessageButtons.insert(i18n("Feature Implemented in GIT"),"Thank you for your bug report.\n"
"The feature that you requested has been implemented in the latest\n" "The feature that you requested has been implemented in the latest\n"
"development (CVS) version of KDE. The feature request will be closed.\n"); "development version of TDE. The feature request will be closed.\n");
mMessageButtons.insert(i18n("More Information Required"),"Thank you for your bug report.\n" mMessageButtons.insert(i18n("More Information Required"),"Thank you for your bug report.\n"
"You have not provided enough information for us to be able to reproduce\n" "You have not provided enough information for us to be able to reproduce\n"
"the bug. Please provide a detailed account of the steps required to\n" "the bug. Please provide a detailed account of the steps required to\n"
@ -156,15 +156,15 @@ void KBBPrefs::setMessageButtonsDefault()
"able to reproduce, identify and fix the bug.\n"); "able to reproduce, identify and fix the bug.\n");
mMessageButtons.insert(i18n("No Longer Applicable"),"Thank you for your bug report.\n" mMessageButtons.insert(i18n("No Longer Applicable"),"Thank you for your bug report.\n"
"The bug that your reported no longer applies to the latest development\n" "The bug that your reported no longer applies to the latest development\n"
"(CVS) version of KDE. This is most probably because it has been fixed,\n" "version of TDE. This is most probably because it has been fixed,\n"
"the application has been substantially modified or the application no\n" "the application has been substantially modified or the application no\n"
"longer exists. The bug report will be closed.\n"); "longer exists. The bug report will be closed.\n");
mMessageButtons.insert(i18n("Won't Fix Bug"),"Thank you for your bug report/feature request.\n" mMessageButtons.insert(i18n("Won't Fix Bug"),"Thank you for your bug report/feature request.\n"
"Unfortunately, this bug will never be fixed or the feature never\n" "Unfortunately, this bug will never be fixed or the feature never\n"
"implemented. The bug report/feature request will be closed.\n"); "implemented. The bug report/feature request will be closed.\n");
mMessageButtons.insert(i18n("Cannot Reproduce Bug"),"Thank you for your bug report.\n" mMessageButtons.insert(i18n("Cannot Reproduce Bug"),"Thank you for your bug report.\n"
"This bug can not be reproduced using the current development (CVS)\n" "This bug can not be reproduced using the current development (GIT)\n"
"version of KDE. This suggests that the bug has already been fixed.\n" "version of TDE. This suggests that the bug has already been fixed.\n"
"The bug report will be closed.\n"); "The bug report will be closed.\n");
} }

@ -107,7 +107,7 @@ bool MailSender::send(const TQString &fromName,const TQString &fromEmail,const T
return false; return false;
} }
emit status( i18n( "Passing mail to KDE email program..." ) ); emit status( i18n( "Passing mail to TDE email program..." ) );
if (!kMailOpenComposer(to,"", (bcc ? from : ""), subject,body,0,KURL())) { if (!kMailOpenComposer(to,"", (bcc ? from : ""), subject,body,0,KURL())) {
TQTimer::singleShot( 0, this, TQT_SLOT( deleteLater() ) ); TQTimer::singleShot( 0, this, TQT_SLOT( deleteLater() ) );
return false; return false;

@ -147,8 +147,8 @@ void CWLoadingWidget::updatePixmap()
// Draw intro text // Draw intro text
TQString desc = i18n( "Welcome to KBugBuster, a tool to manage the " TQString desc = i18n( "Welcome to KBugBuster, a tool to manage the "
"KDE Bug Report System. With KBugBuster you can " "TDE Bug Report System. With KBugBuster you can "
"manage outstanding bug reports for KDE from a " "manage outstanding bug reports for TDE from a "
"convenient front end." ); "convenient front end." );
p.setPen( black ); p.setPen( black );
p.drawText( 28, 128, cr.width() - 28, 184 - 128, p.drawText( 28, 128, cr.width() - 28, 184 - 128,

@ -173,7 +173,7 @@ void KBBMainWindow::initActions()
new KAction( i18n("Search by Bug &Number..."), "filefind", CTRL+TQt::Key_N, TQT_TQOBJECT(this), new KAction( i18n("Search by Bug &Number..."), "filefind", CTRL+TQt::Key_N, TQT_TQOBJECT(this),
TQT_SLOT( searchBugNumber() ), actionCollection(), "search_bugnumber" ); TQT_SLOT( searchBugNumber() ), actionCollection(), "search_bugnumber" );
// For now "Description" searches by title. Maybe later we can have a // For now "Description" searches by title. Maybe later we can have a
// full-text search interfacing bugs.kde.org and rename the current one to "By Title". // full-text search interfacing bugs.trinitydesktop.org and rename the current one to "By Title".
new KAction( i18n("Search by &Description...") ,"find", CTRL+TQt::Key_D, TQT_TQOBJECT(this), new KAction( i18n("Search by &Description...") ,"find", CTRL+TQt::Key_D, TQT_TQOBJECT(this),
TQT_SLOT( searchDescription() ), actionCollection(), "search_description" ); TQT_SLOT( searchDescription() ), actionCollection(), "search_description" );

@ -51,7 +51,7 @@ void LoadAllBugsDlg::slotBugDetailsAvailable( const Bug &bug, const BugDetails &
void LoadAllBugsDlg::slotBugDetailsLoadingError() void LoadAllBugsDlg::slotBugDetailsLoadingError()
{ {
// Abort at the first error. Otherwise we get spammed with "no host bugs.kde.org" msg boxes.... // Abort at the first error. Otherwise we get spammed with "no host bugs.trinitydesktop.org" msg boxes....
reject(); reject();
} }

@ -60,9 +60,9 @@ MsgInputDialog::MsgInputDialog(MsgInputDialog::MessageType type, const Bug &bug,
rlayout->add( rlabel ); rlayout->add( rlabel );
mRecipient = new TQComboBox( r ); mRecipient = new TQComboBox( r );
mRecipient->insertItem( i18n("Normal (bugs.kde.org & Maintainer & kde-bugs-dist)"), BugCommand::Normal ); mRecipient->insertItem( i18n("Normal (bugs.trinitydesktop.org & Maintainer & tde-bugs-dist)"), BugCommand::Normal );
mRecipient->insertItem( i18n("Maintonly (bugs.kde.org & Maintainer)"), BugCommand::Maintonly ); mRecipient->insertItem( i18n("Maintonly (bugs.trinitydesktop.org & Maintainer)"), BugCommand::Maintonly );
mRecipient->insertItem( i18n("Quiet (bugs.kde.org only)"), BugCommand::Quiet ); mRecipient->insertItem( i18n("Quiet (bugs.trinitydesktop.org only)"), BugCommand::Quiet );
rlabel->setBuddy( mRecipient ); rlabel->setBuddy( mRecipient );
rlayout->add( mRecipient ); rlayout->add( mRecipient );

@ -281,14 +281,14 @@ SelectServerDlg::SelectServerDlg(PreferencesDialog *parent, const char */*name*/
list = new ServerListView(this ); list = new ServerListView(this );
setMainWidget( list ); setMainWidget( list );
parent->createServerItem( list, "KDE", "http://bugs.kde.org", "KDE" ); parent->createServerItem( list, "Trinity", "http://bugs.trinitydesktop.org", "TDE" );
parent->createServerItem( list, "GNOME", "http://bugzilla.gnome.org", "2.10" ); parent->createServerItem( list, "KDE", "http://bugs.kde.org", "KDE" );
parent->createServerItem( list, "Mozilla", "http://bugzilla.mozilla.org", "2.17.1" ); parent->createServerItem( list, "GNOME", "http://bugzilla.gnome.org", "3.4.13" );
parent->createServerItem( list, "Apache", "http://nagoya.apache.org/bugzilla/", "2.14.2" ); parent->createServerItem( list, "Mozilla", "http://bugzilla.mozilla.org", "4.0.7" );
parent->createServerItem( list, "XFree86", "http://bugs.xfree86.org/cgi-bin/bugzilla/", "2.14.2" ); parent->createServerItem( list, "Apache", "http://issues.apache.org/bugzilla/", "4.2.1" );
parent->createServerItem( list, "Ximian", "http://bugzilla.ximian.com", "2.10" ); parent->createServerItem( list, "Xorg", "http://bugs.freedesktop.org/", "4.0.7" );
parent->createServerItem( list, "RedHat", "http://bugzilla.redhat.com/bugzilla/", "2.17.1" ); parent->createServerItem( list, "RedHat", "http://bugzilla.redhat.com/bugzilla/", "4.2.2" );
parent->createServerItem( list, "Mandriva", "http://qa.mandriva.com/", "2.17.4" ); parent->createServerItem( list, "Mandriva", "http://qa.mandriva.com/", "4.0.6" );
connect( list, TQT_SIGNAL( doubleClicked ( TQListViewItem *)), this, TQT_SLOT( slotDoubleClicked( TQListViewItem *))); connect( list, TQT_SIGNAL( doubleClicked ( TQListViewItem *)), this, TQT_SLOT( slotDoubleClicked( TQListViewItem *)));
} }

@ -211,7 +211,7 @@ void KCalResource::slotBugListAvailable( const Package &, const TQString &,
if ( !todo ) { if ( !todo ) {
newTodo = new KCal::Todo; newTodo = new KCal::Todo;
newTodo->setUid( uid ); newTodo->setUid( uid );
TQString uri = "http://bugs.kde.org/show_bug.cgi?id=%1"; TQString uri = "http://bugs.trinitydesktop.org/show_bug.cgi?id=%1";
newTodo->addAttachment( new KCal::Attachment( uri.arg( bug.number() ) ) ); newTodo->addAttachment( new KCal::Attachment( uri.arg( bug.number() ) ) );
todo = newTodo; todo = newTodo;
} }

Loading…
Cancel
Save