! Please note that this is a snapshot of our old Bugzilla server, which is read only since May 29, 2020. Please go to gitlab.xfce.org for our new server !
handling unsupported markup
Status:
RESOLVED: FIXED
Product:
Xfce4-notifyd
Component:
general

Comments

Description finswimmer77 2011-06-26 10:53:15 CEST
I send a notification via:

notify-send Test "<span style=\"color:red;\">test</span>"

What I receive in the notification-pop-up is this:

Test
<span style="color:red">test>/span>

As you can see the closing span-Tag has a typo (>/span> instead of </span>)

I'm using xfce4.8 with xfce-notifyd 0.2.1 under ArchLinux.

Other users reported they cannot confirm the behavior under gnome. So it seems to be a problem with xfce and not libnotify.
Comment 1 finswimmer77 2011-06-26 13:27:34 CEST
I found a hint. In xfce-notify-window.c there is a function called xfce_notify_window_validate_escape_markup

First I don't understand why this function is neccessary.

It seems to look whether a string contains markup. 

In the part where it checkes whether it's a closing tag, it seems that a "<" is replaced by "&gt;" if the markup-tag is not b,i,u or a. (Line 867)

1. Should'nt it be "&lt;".
2. Why is it neccessary to make a markup check? Isn't this done by libnotify?

(Sry, if I write something completly stupid. I'm a beginner in solving bugs ;) )
Comment 2 finswimmer77 2011-06-28 15:04:12 CEST
I noticed now that notifyd just handle <b>,<i>,<u>,<img> and <a> tags.

So I would suggest, that in the future notifyd extract unhandled markups. So programmer have still the possibility to uses e.g. <span> for those notification-daemons which can handle it, but users who uses xfce are not confronted with the markup.
Comment 3 Jérôme Guelfucci editbugs 2011-06-30 22:53:21 CEST
Hello,

First, I would like to thank you for your very accurate bug report. I just fixed the invalid markup escaping in the git branch (commit f7b96e45e18e794ea834858e2290af7aafec6b21).

According to the Freedesktop specification which describes what a notification should implement and what clients can expect, the only valid tags are b, i, u, a and img. "span" and other friends are not to be used by clients.

Unfortunately, notification-daemon implements the markup parsing with using pango markup which allows much more possibilities and a lot of clients tend to abuse this.

I personally prefer to stick to the specification in this case as the allowed tags already offer a fine degree of customization. Though, I agree that our markup escaping code could use some simplification and would be pleased to provide help and to review patches if you are willing to work on that.

Ignoring unexpected markup could be a could idea but still showing it is a way to have clients respect the specification.

I'll leave this bug open for discussion but the bug seems fixed as far as I'm concerned.

Cheers,

Jérôme
Comment 4 Jérôme Guelfucci editbugs 2012-12-08 18:06:30 CET
The code now uses g_markup_escape_text which fixes the issue you had and reduces maintaince. Marking this as fixed.

Bug #7773

Reported by:
finswimmer77
Reported on: 2011-06-26
Last modified on: 2012-12-08

People

Assignee:
Jérôme Guelfucci
CC List:
0 users

Version

Version:
unspecified

Attachments

Additional information