Version: (using KDE KDE 3.2.1) Installed from: Gentoo Packages Compiler: gcc 3.3.2 OS: Linux I just received a ticket from Bugzilla so I could login in to close another bug! The url was http://bugs.kde.org/token.cgi?a=cfmpw&t=Ukn1E_o- But click to open lost the trailing ´-´
Seems like a problem in KHTML, Konqueror shows the same problem when looking at this report.
KDE-PIM bugs day: confirmed. Forward the URL above and view in kmail -> final character is missing.
*** Bug 104749 has been marked as a duplicate of this bug. ***
SVN commit 600917 by marten: Correctly detect a URL that ends with '-' or '_' BUG: 81281 CCMAIL: kmail-devel@kde.org M +2 -2 branches/work/kdepim-3.5.5+/libkdepim/linklocator.cpp --- branches/work/kdepim-3.5.5+/libkdepim/linklocator.cpp #600916:600917 @@ -96,8 +96,8 @@ { ++mPos; } - /* some URLs really end with: # / & */ - const QString allowedSpecialChars = QString("#/&"); + /* some URLs really end with: # / & - _ */ + const QString allowedSpecialChars = QString("#/&-_"); while(mPos > start && mText[mPos-1].isPunct() && allowedSpecialChars.find(mText[mPos-1]) == -1 ) {
SVN commit 600981 by winterz: merge SVN commit 600917 by marten: Correctly detect a URL that ends with '-' or '_' CCBUGS: 81281 M +2 -2 linklocator.cpp --- branches/KDE/3.5/kdepim/libkdepim/linklocator.cpp #600980:600981 @@ -96,8 +96,8 @@ { ++mPos; } - /* some URLs really end with: # / & */ - const QString allowedSpecialChars = QString("#/&"); + /* some URLs really end with: # / & - _ */ + const QString allowedSpecialChars = QString("#/&-_"); while(mPos > start && mText[mPos-1].isPunct() && allowedSpecialChars.find(mText[mPos-1]) == -1 ) {