Summary: | < and > in contact nicknames aren't well supported | ||
---|---|---|---|
Product: | [Unmaintained] kopete | Reporter: | Yann LE HIR <yann.lehir> |
Component: | general | Assignee: | Kopete Developers <kopete-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | SVN | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Screenshot of the balloon window |
Description
Yann LE HIR
2006-08-29 15:46:29 UTC
Created attachment 17552 [details]
Screenshot of the balloon window
The nickname should be © >†<ØñÐiñê>†<Mi§§ Chøµpïññette
What is your ckopete version ? Can you try with Kopete 0.12.2 ? I remember having fixed that issue already been fixed in the past. But maybe it's a new one. I have kopete SVN (the installation is 3 days old) And it's with msn protocol, I did'nt try with other protocols. SVN commit 673127 by mattr: fix bug 133186 by escaping the nickname text when passing it to the balloon. For the kOne chat style, that would be a bug in the style since it works here with the default Kopete style. BUG: 133186 M +1 -1 systemtray.cpp --- branches/KDE/3.5/kdenetwork/kopete/kopete/systemtray.cpp #673126:673127 @@ -302,7 +302,7 @@ m_balloon = new KopeteBalloon( i18n( "<qt><nobr><b>New Message from %1:</b></nobr><br><nobr>\"%2\"</nobr></qt>" ) - .arg( msgFrom, msgText ), QString::null ); + .arg( QStyleSheet::escape( msgFrom ), msgText ), QString::null ); connect(m_balloon, SIGNAL(signalBalloonClicked()), mBalloonEventList.first() , SLOT(apply())); connect(m_balloon, SIGNAL(signalButtonClicked()), mBalloonEventList.first() , SLOT(apply())); connect(m_balloon, SIGNAL(signalIgnoreButtonClicked()), mBalloonEventList.first() , SLOT(ignore())); |