By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 803
Collapse All | Expand All

(-)tdesdk/kbugbuster/backend/bugcommand.cpp (-5 / +5 lines)
Lines 67-73 Link Here
67
    if (m_message.isEmpty()) {
67
    if (m_message.isEmpty()) {
68
        return TQString();
68
        return TQString();
69
    } else {
69
    } else {
70
        return m_bug.number() + "-done@bugs.kde.org";
70
        return m_bug.number() + "-done@bugs.trinitydesktop.org";
71
    }
71
    }
72
}
72
}
73
73
Lines 194-208 Link Here
194
194
195
TQString BugCommandReply::mailAddress() const
195
TQString BugCommandReply::mailAddress() const
196
{
196
{
197
    return m_bug.number() + "@bugs.kde.org";
197
    return m_bug.number() + "@bugs.trinitydesktop.org";
198
#if 0
198
#if 0
199
    switch ( m_recipient ) {
199
    switch ( m_recipient ) {
200
      case Normal:
200
      case Normal:
201
        return m_bug.number() + "@bugs.kde.org";
201
        return m_bug.number() + "@bugs.trinitydesktop.org";
202
      case Maintonly:
202
      case Maintonly:
203
        return m_bug.number() + "-maintonly@bugs.kde.org";
203
        return m_bug.number() + "-maintonly@bugs.trinitydesktop.org";
204
      case Quiet:
204
      case Quiet:
205
        return m_bug.number() + "-quiet@bugs.kde.org";
205
        return m_bug.number() + "-quiet@bugs.trinitydesktop.org";
206
    }
206
    }
207
    return TQString();
207
    return TQString();
208
#endif
208
#endif
(-)tdesdk/kbugbuster/backend/bugserver.cpp (-6 / +7 lines)
Lines 54-60 Link Here
54
54
55
  TQString bugzilla = mServerConfig.bugzillaVersion();
55
  TQString bugzilla = mServerConfig.bugzillaVersion();
56
56
57
  if ( bugzilla == "KDE" ) mProcessor = new DomProcessor( this );
57
  if ( bugzilla == "TDE" ) mProcessor = new DomProcessor( this );
58
  else if ( bugzilla == "KDE" ) mProcessor = new DomProcessor( this );
58
  else if ( bugzilla == "2.10" ) mProcessor = new HtmlParser_2_10( this );
59
  else if ( bugzilla == "2.10" ) mProcessor = new HtmlParser_2_10( this );
59
  else if ( bugzilla == "2.14.2" ) mProcessor = new HtmlParser_2_14_2( this );
60
  else if ( bugzilla == "2.14.2" ) mProcessor = new HtmlParser_2_14_2( this );
60
  else if ( bugzilla == "2.17.1" ) mProcessor = new HtmlParser_2_17_1( this );
61
  else if ( bugzilla == "2.17.1" ) mProcessor = new HtmlParser_2_17_1( this );
Lines 231-238 Link Here
231
                              const TQString &senderEmail, bool sendBCC,
232
                              const TQString &senderEmail, bool sendBCC,
232
                              const TQString &recipient )
233
                              const TQString &recipient )
233
{
234
{
234
    // Disable mail commands for non-KDE servers
235
    // Disable mail commands for non-TDE servers
235
    if ( mServerConfig.baseUrl() != KURL( "http://bugs.kde.org" ) ) return;
236
    if ( mServerConfig.baseUrl() != KURL( "http://bugs.trinitydesktop.org" ) ) return;
236
237
237
    TQString controlText;
238
    TQString controlText;
238
239
Lines 249-255 Link Here
249
            if (!cmd->package().isNull())
250
            if (!cmd->package().isNull())
250
                pkg = cmd->package();
251
                pkg = cmd->package();
251
            if (!cmd->controlString().isNull()) {
252
            if (!cmd->controlString().isNull()) {
252
                kdDebug() << "control@bugs.kde.org: " << cmd->controlString() << endl;
253
                kdDebug() << "control@bugs.trinitydesktop.org: " << cmd->controlString() << endl;
253
                controlText += cmd->controlString() + "\n";
254
                controlText += cmd->controlString() + "\n";
254
            } else {
255
            } else {
255
                kdDebug() << cmd->mailAddress() << ": " << cmd->mailText() << endl;
256
                kdDebug() << cmd->mailAddress() << ": " << cmd->mailText() << endl;
Lines 283-291 Link Here
283
    }
284
    }
284
285
285
    if (!controlText.isEmpty()) {
286
    if (!controlText.isEmpty()) {
286
        kdDebug() << "control@bugs.kde.org doesn't work anymore" << endl;
287
        kdDebug() << "control@bugs.trinitydesktop.org doesn't work anymore" << endl;
287
#if 0        
288
#if 0        
288
        if ( !mailer->send( senderName, senderEmail, "control@bugs.kde.org",
289
        if ( !mailer->send( senderName, senderEmail, "control@bugs.trinitydesktop.org",
289
                      i18n("Mail generated by KBugBuster"), controlText,
290
                      i18n("Mail generated by KBugBuster"), controlText,
290
                      sendBCC, recipient ))
291
                      sendBCC, recipient ))
291
            return;
292
            return;
(-)tdesdk/kbugbuster/backend/bugserverconfig.cpp (-6 / +7 lines)
Lines 31-44 Link Here
31
31
32
BugServerConfig::BugServerConfig()
32
BugServerConfig::BugServerConfig()
33
{
33
{
34
  mName = "KDE";
34
  mName = "Trinity";
35
  mBaseUrl = "http://bugs.kde.org";
35
  mBaseUrl = "http://bugs.trinitydesktop.org";
36
  mUser = "bugzilla@kde.org";
36
  mUser = "bugzilla@trinitydesktop.org";
37
  mBugzillaVersion = "KDE";
37
  mBugzillaVersion = "TDE";
38
}
38
}
39
39
40
BugServerConfig::BugServerConfig( const TQString &name, const KURL &baseUrl )
40
BugServerConfig::BugServerConfig( const TQString &name, const KURL &baseUrl )
41
  : mName( name ), mBaseUrl( baseUrl ), mBugzillaVersion( "KDE" )
41
  : mName( name ), mBaseUrl( baseUrl ), mBugzillaVersion( "TDE" )
42
{
42
{
43
}
43
}
44
44
Lines 104-109 Link Here
104
  v << "2.14.2";
104
  v << "2.14.2";
105
  v << "2.16.2";
105
  v << "2.16.2";
106
  v << "2.17.1";
106
  v << "2.17.1";
107
  v << "TDE";
107
  v << "KDE";
108
  v << "KDE";
108
  v << "Bugworld";
109
  v << "Bugworld";
109
110
Lines 120-126 Link Here
120
  mUser = cfg->readEntry( "User" );
121
  mUser = cfg->readEntry( "User" );
121
  mPassword = cfg->readEntry( "Password" );
122
  mPassword = cfg->readEntry( "Password" );
122
123
123
  mBugzillaVersion = cfg->readEntry( "BugzillaVersion", "KDE" );
124
  mBugzillaVersion = cfg->readEntry( "BugzillaVersion", "TDE" );
124
125
125
  mRecentPackages = cfg->readListEntry( "RecentPackages" );
126
  mRecentPackages = cfg->readListEntry( "RecentPackages" );
126
  mCurrentPackage = cfg->readEntry( "CurrentPackage" );
127
  mCurrentPackage = cfg->readEntry( "CurrentPackage" );
(-)tdesdk/kbugbuster/backend/kbbprefs.cpp (-9 / +9 lines)
Lines 134-154 Link Here
134
void KBBPrefs::setMessageButtonsDefault()
134
void KBBPrefs::setMessageButtonsDefault()
135
{
135
{
136
  mMessageButtons.clear();
136
  mMessageButtons.clear();
137
  mMessageButtons.insert(i18n("Bug Fixed in CVS"),"Thank you for your bug report.\n"
137
  mMessageButtons.insert(i18n("Bug Fixed in GIT"),"Thank you for your bug report.\n"
138
  "The bug that you reported has been identified and has been fixed in the\n"
138
  "The bug that you reported has been identified and has been fixed in the\n"
139
  "latest development (CVS) version of KDE. The bug report will be closed.\n");
139
  "latest development version of TDE. The bug report will be closed.\n");
140
  mMessageButtons.insert(i18n("Duplicate Report"),"Thank you for your bug report.\n"
140
  mMessageButtons.insert(i18n("Duplicate Report"),"Thank you for your bug report.\n"
141
  "This bug/feature request has already been reported and this report will\n"
141
  "This bug/feature request has already been reported and this report will\n"
142
  "be marked as a duplicate.\n");
142
  "be marked as a duplicate.\n");
143
  mMessageButtons.insert(i18n("Packaging Bug"),"Thank you for your bug report.\n"
143
  mMessageButtons.insert(i18n("Packaging Bug"),"Thank you for your bug report.\n"
144
  "The bug that you reported appears to be a packaging bug, due to a\n"
144
  "The bug that you reported appears to be a packaging bug, due to a\n"
145
  "problem in the way in which your distribution/vendor has packaged\n"
145
  "problem in the way in which your distribution/vendor has packaged\n"
146
  "KDE for distribution.\n"
146
  "TDE for distribution.\n"
147
  "The bug report will be closed since it is not a KDE problem.\n"
147
  "The bug report will be closed since it is not a TDE problem.\n"
148
  "Please send the bug report to your distribution/vendor instead.\n");
148
  "Please send the bug report to your distribution/vendor instead.\n");
149
  mMessageButtons.insert(i18n("Feature Implemented in CVS"),"Thank you for your bug report.\n"
149
  mMessageButtons.insert(i18n("Feature Implemented in GIT"),"Thank you for your bug report.\n"
150
  "The feature that you requested has been implemented in the latest\n"
150
  "The feature that you requested has been implemented in the latest\n"
151
  "development (CVS) version of KDE. The feature request will be closed.\n");
151
  "development version of TDE. The feature request will be closed.\n");
152
  mMessageButtons.insert(i18n("More Information Required"),"Thank you for your bug report.\n"
152
  mMessageButtons.insert(i18n("More Information Required"),"Thank you for your bug report.\n"
153
  "You have not provided enough information for us to be able to reproduce\n"
153
  "You have not provided enough information for us to be able to reproduce\n"
154
  "the bug. Please provide a detailed account of the steps required to\n"
154
  "the bug. Please provide a detailed account of the steps required to\n"
Lines 156-170 Link Here
156
  "able to reproduce, identify and fix the bug.\n");
156
  "able to reproduce, identify and fix the bug.\n");
157
  mMessageButtons.insert(i18n("No Longer Applicable"),"Thank you for your bug report.\n"
157
  mMessageButtons.insert(i18n("No Longer Applicable"),"Thank you for your bug report.\n"
158
  "The bug that your reported no longer applies to the latest development\n"
158
  "The bug that your reported no longer applies to the latest development\n"
159
  "(CVS) version of KDE. This is most probably because it has been fixed,\n"
159
  "version of TDE. This is most probably because it has been fixed,\n"
160
  "the application has been substantially modified or the application no\n"
160
  "the application has been substantially modified or the application no\n"
161
  "longer exists. The bug report will be closed.\n");
161
  "longer exists. The bug report will be closed.\n");
162
  mMessageButtons.insert(i18n("Won't Fix Bug"),"Thank you for your bug report/feature request.\n"
162
  mMessageButtons.insert(i18n("Won't Fix Bug"),"Thank you for your bug report/feature request.\n"
163
  "Unfortunately, this bug will never be fixed or the feature never\n"
163
  "Unfortunately, this bug will never be fixed or the feature never\n"
164
  "implemented. The bug report/feature request will be closed.\n");
164
  "implemented. The bug report/feature request will be closed.\n");
165
  mMessageButtons.insert(i18n("Cannot Reproduce Bug"),"Thank you for your bug report.\n"
165
  mMessageButtons.insert(i18n("Cannot Reproduce Bug"),"Thank you for your bug report.\n"
166
  "This bug can not be reproduced using the current development (CVS)\n"
166
  "This bug can not be reproduced using the current development (GIT)\n"
167
  "version of KDE. This suggests that the bug has already been fixed.\n"
167
  "version of TDE. This suggests that the bug has already been fixed.\n"
168
  "The bug report will be closed.\n");
168
  "The bug report will be closed.\n");
169
}
169
}
170
170
(-)tdesdk/kbugbuster/backend/mailsender.cpp (-1 / +1 lines)
Lines 107-113 Link Here
107
      return false;
107
      return false;
108
    }
108
    }
109
109
110
    emit status( i18n( "Passing mail to KDE email program..." ) );
110
    emit status( i18n( "Passing mail to TDE email program..." ) );
111
    if (!kMailOpenComposer(to,"", (bcc ? from : ""), subject,body,0,KURL())) {
111
    if (!kMailOpenComposer(to,"", (bcc ? from : ""), subject,body,0,KURL())) {
112
      TQTimer::singleShot( 0, this, TQT_SLOT( deleteLater() ) );
112
      TQTimer::singleShot( 0, this, TQT_SLOT( deleteLater() ) );
113
      return false;
113
      return false;
(-)tdesdk/kbugbuster/gui/cwloadingwidget.cpp (-2 / +2 lines)
Lines 147-154 Link Here
147
147
148
        // Draw intro text
148
        // Draw intro text
149
        TQString desc = i18n( "Welcome to KBugBuster, a tool to manage the "
149
        TQString desc = i18n( "Welcome to KBugBuster, a tool to manage the "
150
                             "KDE Bug Report System. With KBugBuster you can "
150
                             "TDE Bug Report System. With KBugBuster you can "
151
                             "manage outstanding bug reports for KDE from a "
151
                             "manage outstanding bug reports for TDE from a "
152
                             "convenient front end." );
152
                             "convenient front end." );
153
        p.setPen( black );
153
        p.setPen( black );
154
        p.drawText( 28, 128, cr.width() - 28, 184 - 128,
154
        p.drawText( 28, 128, cr.width() - 28, 184 - 128,
(-)tdesdk/kbugbuster/gui/kbbmainwindow.cpp (-1 / +1 lines)
Lines 173-179 Link Here
173
    new KAction( i18n("Search by Bug &Number..."), "filefind", CTRL+TQt::Key_N, TQT_TQOBJECT(this),
173
    new KAction( i18n("Search by Bug &Number..."), "filefind", CTRL+TQt::Key_N, TQT_TQOBJECT(this),
174
                 TQT_SLOT( searchBugNumber() ), actionCollection(), "search_bugnumber" );
174
                 TQT_SLOT( searchBugNumber() ), actionCollection(), "search_bugnumber" );
175
    // For now "Description" searches by title. Maybe later we can have a
175
    // For now "Description" searches by title. Maybe later we can have a
176
    // full-text search interfacing bugs.kde.org and rename the current one to "By Title".
176
    // full-text search interfacing bugs.trinitydesktop.org and rename the current one to "By Title".
177
    new KAction( i18n("Search by &Description...") ,"find", CTRL+TQt::Key_D, TQT_TQOBJECT(this),
177
    new KAction( i18n("Search by &Description...") ,"find", CTRL+TQt::Key_D, TQT_TQOBJECT(this),
178
                 TQT_SLOT( searchDescription() ), actionCollection(), "search_description" );
178
                 TQT_SLOT( searchDescription() ), actionCollection(), "search_description" );
179
179
(-)tdesdk/kbugbuster/gui/loadallbugsdlg.cpp (-1 / +1 lines)
Lines 51-57 Link Here
51
51
52
void LoadAllBugsDlg::slotBugDetailsLoadingError()
52
void LoadAllBugsDlg::slotBugDetailsLoadingError()
53
{
53
{
54
    // Abort at the first error. Otherwise we get spammed with "no host bugs.kde.org" msg boxes....
54
    // Abort at the first error. Otherwise we get spammed with "no host bugs.trinitydesktop.org" msg boxes....
55
    reject();
55
    reject();
56
}
56
}
57
57
(-)tdesdk/kbugbuster/gui/msginputdialog.cpp (-3 / +3 lines)
Lines 60-68 Link Here
60
    rlayout->add( rlabel );
60
    rlayout->add( rlabel );
61
61
62
    mRecipient = new TQComboBox( r );
62
    mRecipient = new TQComboBox( r );
63
    mRecipient->insertItem( i18n("Normal (bugs.kde.org & Maintainer & kde-bugs-dist)"), BugCommand::Normal );
63
    mRecipient->insertItem( i18n("Normal (bugs.trinitydesktop.org & Maintainer & tde-bugs-dist)"), BugCommand::Normal );
64
    mRecipient->insertItem( i18n("Maintonly (bugs.kde.org & Maintainer)"), BugCommand::Maintonly );
64
    mRecipient->insertItem( i18n("Maintonly (bugs.trinitydesktop.org & Maintainer)"), BugCommand::Maintonly );
65
    mRecipient->insertItem( i18n("Quiet (bugs.kde.org only)"), BugCommand::Quiet );
65
    mRecipient->insertItem( i18n("Quiet (bugs.trinitydesktop.org only)"), BugCommand::Quiet );
66
    rlabel->setBuddy( mRecipient );
66
    rlabel->setBuddy( mRecipient );
67
    rlayout->add( mRecipient );
67
    rlayout->add( mRecipient );
68
68
(-)tdesdk/kbugbuster/gui/preferencesdialog.cpp (-8 / +8 lines)
Lines 281-294 Link Here
281
  list = new ServerListView(this );
281
  list = new ServerListView(this );
282
  setMainWidget( list );
282
  setMainWidget( list );
283
283
284
  parent->createServerItem( list, "KDE",     "http://bugs.kde.org",                       "KDE" );
284
  parent->createServerItem( list, "Trinity", "http://bugs.trinitydesktop.org", "TDE" );
285
  parent->createServerItem( list, "GNOME",   "http://bugzilla.gnome.org",                 "2.10" );
285
  parent->createServerItem( list, "KDE", "http://bugs.kde.org", "KDE" );
286
  parent->createServerItem( list, "Mozilla", "http://bugzilla.mozilla.org",               "2.17.1" );
286
  parent->createServerItem( list, "GNOME", "http://bugzilla.gnome.org", "3.4.13" );
287
  parent->createServerItem( list, "Apache",  "http://nagoya.apache.org/bugzilla/",        "2.14.2" );
287
  parent->createServerItem( list, "Mozilla", "http://bugzilla.mozilla.org", "4.0.7" );
288
  parent->createServerItem( list, "XFree86", "http://bugs.xfree86.org/cgi-bin/bugzilla/", "2.14.2" );
288
  parent->createServerItem( list, "Apache", "http://issues.apache.org/bugzilla/", "4.2.1" );
289
  parent->createServerItem( list, "Ximian",  "http://bugzilla.ximian.com",                "2.10" );
289
  parent->createServerItem( list, "Xorg", "http://bugs.freedesktop.org/", "4.0.7" );
290
  parent->createServerItem( list, "RedHat",  "http://bugzilla.redhat.com/bugzilla/",      "2.17.1" );
290
  parent->createServerItem( list, "RedHat", "http://bugzilla.redhat.com/bugzilla/", "4.2.2" );
291
  parent->createServerItem( list, "Mandriva",  "http://qa.mandriva.com/",      "2.17.4" );
291
  parent->createServerItem( list, "Mandriva", "http://qa.mandriva.com/", "4.0.6" );
292
  connect( list, TQT_SIGNAL( doubleClicked ( TQListViewItem *)), this, TQT_SLOT( slotDoubleClicked( TQListViewItem *)));
292
  connect( list, TQT_SIGNAL( doubleClicked ( TQListViewItem *)), this, TQT_SLOT( slotDoubleClicked( TQListViewItem *)));
293
}
293
}
294
294
(-)tdesdk/kbugbuster/kresources/kcalresource.cpp (-1 / +1 lines)
Lines 211-217 Link Here
211
    if ( !todo ) {
211
    if ( !todo ) {
212
      newTodo = new KCal::Todo;
212
      newTodo = new KCal::Todo;
213
      newTodo->setUid( uid );
213
      newTodo->setUid( uid );
214
      TQString uri = "http://bugs.kde.org/show_bug.cgi?id=%1";
214
      TQString uri = "http://bugs.trinitydesktop.org/show_bug.cgi?id=%1";
215
      newTodo->addAttachment( new KCal::Attachment( uri.arg( bug.number() ) ) );
215
      newTodo->addAttachment( new KCal::Attachment( uri.arg( bug.number() ) ) );
216
      todo = newTodo;
216
      todo = newTodo;
217
    }
217
    }

Return to bug 803