| Summary: | url is truncated by click-to-open | ||
|---|---|---|---|
| Product: | [Unmaintained] kmail | Reporter: | brian |
| Component: | messageviewer | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | jjm, luizluca |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
brian
2004-05-10 21:15:23 UTC
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 )
{
|