Closed GoogleCodeExporter closed 9 years ago
I just realized, there is another problem with Psi. If I receive a message,
gTalkSMS says (German):
*SMS von Thomas:* Hallo!
First of all like explained above sadly this is not *bold* formatted and even
worse:
The ":*" is translated to a Kissing-Smiley.
I think these problems will occur in some other clients as well.
So maybe the best solution is to replace all spaces with underscores and
instead of the ":" you could start a new line, looks better i think.
My best ;)
Original comment by ThDietri...@gmail.com
on 8 Feb 2011 at 12:27
We are aware of the problem. The formatting with * and _ is only a workaround.
If you really want nice formatting: gtalksms adds a xhtml body to the xmpp
message. I do not often use psi (using gajim instead), but I think that psi
should be able to show xhtml messages right.
Original comment by fschm...@gmail.com
on 8 Feb 2011 at 2:17
There are many clients which do not support xhtml messages. This goes for the
two I tested: Psi and Miranda.
However, a way better way, even as workaround, is using BBcode. I now use
gTalkSMS like this and am happy with it.
XmppMsg.java:108
public String generateFmtTxt() {
return _message.toString()
.replaceAll(FontBegin, "")
.replaceAll(BoldBegin, " [b]")
.replaceAll(BoldEnd, "[/b] ")
.replaceAll(ItalicBegin, " [u]")
.replaceAll(ItalicEnd, "[/u] ");
}
Original comment by ThDietri...@gmail.com
on 10 Feb 2011 at 2:09
Original issue reported on code.google.com by
ThDietri...@gmail.com
on 7 Feb 2011 at 9:39