Bug 72369 - Knode can't handle MID's
Summary: Knode can't handle MID's
Status: RESOLVED FIXED
Alias: None
Product: knode
Classification: Miscellaneous
Component: general (show other bugs)
Version: 0.7.6
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
: 69490 (view as bug list)
Depends on:
Blocks:
 
Reported: 2004-01-11 09:20 UTC by Andreas Hartmann
Modified: 2004-08-22 18:57 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andreas Hartmann 2004-01-11 09:20:43 UTC
Version:           0.7.6 (using KDE 3.1.94 (CVS >= 20031206), compiled sources)
Compiler:          gcc version 3.3.1
OS:          Linux (i686) release 2.4.24

Take a posting in a thread. Click on one of the MID's of the references. Knode tells, it couldn't find the message and wants to go to google. This doesn't work too, because knode always adds a "/" at the end of the MID, which is searched. E.g.:
http://groups.google.com/groups?q=msgid:<btpak1%249rl7i%241@ID-165191.news.uni-berlin.de/>&ic=1
instead of
http://groups.google.com/groups?q=msgid:<btpak1%249rl7i%241@ID-165191.news.uni-berlin.de>&ic=1

Actual CVS from yesterday.


Regards,
Andreas Hartmann
Comment 1 Roberto Teixeira 2004-01-11 11:35:35 UTC
Subject: kdepim/knode

CVS commit by maragato: 

Correctly strip ending '/' from msgId.

CCMAIL: 72369-done@bugs.kde.org
CCMAIL: helio@kde.org


  M +2 -0      knarticlewidget.cpp   1.163


--- kdepim/knode/knarticlewidget.cpp  #1.162:1.163
@@ -1527,4 +1527,6 @@ void KNArticleWidget::anchorClicked(cons
       break;
       case ATmsgid:
+        if (target.endsWith("/"))
+                          target.truncate(target.length()-1);
         kdDebug(5003) << "KNArticleWidget::anchorClicked() : message-id " << target << endl;
 


Comment 2 Andreas Hartmann 2004-01-11 16:04:34 UTC
Subject: Re:  Knode can't handle MID's

Works fine now!

Thank you very much,
kind regards,
Andreas Hartmann

Comment 3 Volker Krause 2004-08-22 18:57:45 UTC
*** Bug 69490 has been marked as a duplicate of this bug. ***