Ticket #209 (closed defect: invalid)

Opened 3 years ago

Last modified 3 years ago

XML entities in blog titles are not rendered in Feeds view

Reported by: artemfrolov Owned by: mbonetti
Priority: normal Milestone: Gregarius 0.5.5
Component: BUGS Version:
Severity: normal Keywords:
Cc:

Description

I am subscribe to my own blog via RSS (who is not? :)

The title of my blog contains substring "<sstream>". And in Feeds view it is displayed as &lt;sstream&gt;

It is interesting that in admin panel title is rendered correctly.

RSS XML for my feed is http://www.artemfrolov.com/node/feed

Change History

Changed 3 years ago by sdcosta

  • status changed from new to closed
  • resolution set to invalid

artemfrolov, I think this is the correct implementation. Your feed title has

 &amp;lt; 

and this renders in Gregarius to the literal string

 &lt;

(How else could you get a feed title of &lt; and not the < symbol.) To get the < symbol in the feed title, I would think that you would have to put the correct xml entity for the < symbol in your feed title

 &lt;

Then it should (and probably would :) ) render as

 <

See the warning and the help for line 5 at http://feedvalidator.org/check.cgi?url=http%3A//www.artemfrolov.com/node/feed

I am closing this ticket for now, but if feel free to re-open if you disagree.

Changed 3 years ago by artemfrolov

sdcosta, you are right. Now I either have to report problem in Drupal or in my broken DNA :)

Note: See TracTickets for help on using tickets.