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 2935
Collapse All | Expand All

(-)a/tdecore/tdecmdlineargs.cpp (-2 / +4 lines)
Lines 625-632 TDECmdLineArgs::parseAllArgs() Link Here
625
       {
625
       {
626
         if (!about->customAuthorTextEnabled ())
626
         if (!about->customAuthorTextEnabled ())
627
         {
627
         {
628
           if (about->bugAddress().isEmpty() || about->bugAddress() == "bugs.pearsoncomputing.net" )
628
           if (about->bugAddress().isEmpty()
629
             printQ( i18n( "Please use http://bugs.pearsoncomputing.net to report bugs.\n" ) );
629
                 || about->bugAddress() == "submit@bugs.trinitydesktop.org"
630
                 || about->bugAddress() == "http://bugs.trinitydesktop.org" )
631
             printQ( i18n( "Please use http://bugs.trinitydesktop.org to report bugs.\n" ) );
630
           else {
632
           else {
631
             if( about->authors().count() == 1 && about->authors().first().emailAddress() == about->bugAddress() )
633
             if( about->authors().count() == 1 && about->authors().first().emailAddress() == about->bugAddress() )
632
               printQ( i18n( "Please report bugs to %1.\n" ).arg( about->authors().first().emailAddress() ) );
634
               printQ( i18n( "Please report bugs to %1.\n" ).arg( about->authors().first().emailAddress() ) );
(-)a/tdeio/tdeio/global.cpp (-3 / +3 lines)
Lines 608-614 TDEIO_EXPORT TQByteArray TDEIO::rawErrorDetail(int errorCode, const TQString &er Link Here
608
    "high quality bug report. If the software is provided by a third party, "
608
    "high quality bug report. If the software is provided by a third party, "
609
    "please contact them directly. Otherwise, first look to see if "
609
    "please contact them directly. Otherwise, first look to see if "
610
    "the same bug has been submitted by someone else by searching at the "
610
    "the same bug has been submitted by someone else by searching at the "
611
    "<a href=\"http://bugs.pearsoncomputing.net//\">TDE bug reporting website</a>. If not, take "
611
    "<a href=\"http://bugs.trinitydesktop.org/\">TDE bug reporting website</a>. If not, take "
612
    "note of the details given above, and include them in your bug report, along "
612
    "note of the details given above, and include them in your bug report, along "
613
    "with as many other details as you think might help." );
613
    "with as many other details as you think might help." );
614
  TQString cNetwork = i18n( "There may have been a problem with your network "
614
  TQString cNetwork = i18n( "There may have been a problem with your network "
Lines 1118-1125 TDEIO_EXPORT TQByteArray TDEIO::rawErrorDetail(int errorCode, const TQString &er Link Here
1118
        "authentication details, the authentication failed because the "
1118
        "authentication details, the authentication failed because the "
1119
        "method that the server is using is not supported by the TDE "
1119
        "method that the server is using is not supported by the TDE "
1120
        "program implementing the protocol %1." ).arg( protocol );
1120
        "program implementing the protocol %1." ).arg( protocol );
1121
      solutions << i18n( "Please file a bug at <a href=\"http://bugs.kde.org/\">"
1121
      solutions << i18n( "Please file a bug at <a href=\"http://bugs.trinitydesktop.org/\">"
1122
        "http://bugs.pearsoncomputing.net/</a> to inform the TDE team of the unsupported "
1122
        "http://bugs.trinitydesktop.org/</a> to inform the TDE team of the unsupported "
1123
        "authentication method." ) << sSysadmin;
1123
        "authentication method." ) << sSysadmin;
1124
      break;
1124
      break;
1125
1125
(-)a/tdeio/tests/kurifiltertest.cpp (-1 / +1 lines)
Lines 343-349 int main(int argc, char **argv) Link Here
343
343
344
    TQCString sc;
344
    TQCString sc;
345
    filter( sc.sprintf("gg%cfoo bar",delimiter), "http://www.google.com/search?q=foo+bar&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
345
    filter( sc.sprintf("gg%cfoo bar",delimiter), "http://www.google.com/search?q=foo+bar&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
346
    filter( sc.sprintf("bug%c55798", delimiter), "http://bugs.pearsoncomputing.net/show_bug.cgi?id=55798", KURIFilterData::NET_PROTOCOL );
346
    filter( sc.sprintf("bug%c55798", delimiter), "http://bugs.trinitydesktop.org/show_bug.cgi?id=55798", KURIFilterData::NET_PROTOCOL );
347
347
348
    filter( sc.sprintf("gg%cC++", delimiter), "http://www.google.com/search?q=C%2B%2B&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
348
    filter( sc.sprintf("gg%cC++", delimiter), "http://www.google.com/search?q=C%2B%2B&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
349
    filter( sc.sprintf("ya%cfoo bar was here", delimiter), 0, -1 ); // this triggers default search, i.e. google
349
    filter( sc.sprintf("ya%cfoo bar was here", delimiter), 0, -1 ); // this triggers default search, i.e. google
(-)a/tdeui/kbugreport.cpp (-4 / +4 lines)
Lines 88-94 KBugReport::KBugReport( TQWidget * parentw, bool modal, const TDEAboutData *abou Link Here
88
  TQWidget * parent = plainPage();
88
  TQWidget * parent = plainPage();
89
  d->submitBugButton = 0;
89
  d->submitBugButton = 0;
90
90
91
  //if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.pearsoncomputing.net") )
91
  //if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.trinitydesktop.org") )
92
  //{
92
  //{
93
  //  // This is a core KDE application -> redirect to the web form
93
  //  // This is a core KDE application -> redirect to the web form
94
    // Always redirect to the Web form for Trinity
94
    // Always redirect to the Web form for Trinity
Lines 284-290 KBugReport::~KBugReport() Link Here
284
284
285
void KBugReport::updateURL()
285
void KBugReport::updateURL()
286
{
286
{
287
    KURL url ( "http://bugs.pearsoncomputing.net/enter_bug.cgi" );
287
    KURL url ( "http://bugs.trinitydesktop.org/enter_bug.cgi" );
288
    url.addQueryItem( "product", "TDE" );
288
    url.addQueryItem( "product", "TDE" );
289
    url.addQueryItem( "op_sys", d->os );
289
    url.addQueryItem( "op_sys", d->os );
290
    url.addQueryItem( "cf_kde_compiler", KDE_COMPILER_VERSION );
290
    url.addQueryItem( "cf_kde_compiler", KDE_COMPILER_VERSION );
Lines 419-425 void KBugReport::slotOk( void ) Link Here
419
    {
419
    {
420
        TQString msg = i18n("Unable to send the bug report.\n"
420
        TQString msg = i18n("Unable to send the bug report.\n"
421
                           "Please submit a bug report manually...\n"
421
                           "Please submit a bug report manually...\n"
422
                           "See http://bugs.pearsoncomputing.net/ for instructions.");
422
                           "See http://bugs.trinitydesktop.org/ for instructions.");
423
        KMessageBox::error(this, msg + "\n\n" + d->lastError);
423
        KMessageBox::error(this, msg + "\n\n" + d->lastError);
424
        return;
424
        return;
425
    }
425
    }
Lines 487-493 bool KBugReport::sendBugReport() Link Here
487
{
487
{
488
  TQString recipient ( m_aboutData ?
488
  TQString recipient ( m_aboutData ?
489
    m_aboutData->bugAddress() :
489
    m_aboutData->bugAddress() :
490
    TQString::fromLatin1("submit@bugs.pearsoncomputing.net") );
490
    TQString::fromLatin1("submit@bugs.trinitydesktop.org") );
491
491
492
  TQString command;
492
  TQString command;
493
  command = locate("exe", "tdesendbugmail");
493
  command = locate("exe", "tdesendbugmail");
(-)a/tdeui/kbugreport.h (-1 / +1 lines)
Lines 71-77 protected slots: Link Here
71
   */
71
   */
72
  virtual void slotSetFrom();
72
  virtual void slotSetFrom();
73
  /**
73
  /**
74
   * The URL-Label "http://bugs.pearsoncomputing.net/" was clicked.
74
   * The URL-Label "http://bugs.trinitydesktop.org/" was clicked.
75
   * @deprecated remove in KDE4.0
75
   * @deprecated remove in KDE4.0
76
   */
76
   */
77
  virtual void slotUrlClicked(const TQString &);
77
  virtual void slotUrlClicked(const TQString &);
(-)a/tdeui/tdeaboutapplication.cpp (-2 / +4 lines)
Lines 113-120 void TDEAboutApplication::buildDialog( const TDEAboutData *aboutData ) Link Here
113
      KActiveLabel* activeLabel = new KActiveLabel( authorPage );
113
      KActiveLabel* activeLabel = new KActiveLabel( authorPage );
114
      if (!aboutData->customAuthorTextEnabled())
114
      if (!aboutData->customAuthorTextEnabled())
115
      {
115
      {
116
        if ( aboutData->bugAddress().isEmpty() || aboutData->bugAddress() == "submit@bugs.pearsoncomputing.net")
116
        if ( aboutData->bugAddress().isEmpty()
117
          text = i18n( "Please use <a href=\"http://bugs.pearsoncomputing.net\">http://bugs.pearsoncomputing.net</a> to report bugs.\n" );
117
             || aboutData->bugAddress() == "submit@bugs.trinitydesktop.org"
118
             || aboutData->bugAddress() == "http://bugs.trinitydesktop.org")
119
          text = i18n( "Please use <a href=\"http://bugs.trinitydesktop.org\">http://bugs.trinitydesktop.org</a> to report bugs.\n" );
118
        else {
120
        else {
119
          if( aboutData->authors().count() == 1 && ( aboutData->authors().first().emailAddress() == aboutData->bugAddress() ) )
121
          if( aboutData->authors().count() == 1 && ( aboutData->authors().first().emailAddress() == aboutData->bugAddress() ) )
120
          {
122
          {
(-)a/tdeui/tdeabouttde.cpp (-1 / +1 lines)
Lines 52-58 TDEAboutKDE::TDEAboutKDE( TQWidget *parent, const char *name, bool modal ) Link Here
52
    "do so. However, you - the user - must tell us when "
52
    "do so. However, you - the user - must tell us when "
53
    "something does not work as expected or could be done better.<br><br>"
53
    "something does not work as expected or could be done better.<br><br>"
54
    "The Trinity Desktop Environment has a bug tracking system. Visit "
54
    "The Trinity Desktop Environment has a bug tracking system. Visit "
55
    "<A HREF=\"http://bugs.pearsoncomputing.net\">http://bugs.pearsoncomputing.net</A> or "
55
    "<a href=\"http://bugs.trinitydesktop.org\">http://bugs.trinitydesktop.org</a> or "
56
    "use the \"Report Bug...\" dialog from the \"Help\" menu to report bugs.<br><br>"
56
    "use the \"Report Bug...\" dialog from the \"Help\" menu to report bugs.<br><br>"
57
    "If you have a suggestion for improvement then you are welcome to use "
57
    "If you have a suggestion for improvement then you are welcome to use "
58
    "the bug tracking system to register your wish. Make sure you use the "
58
    "the bug tracking system to register your wish. Make sure you use the "

Return to bug 2935