You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi,
I wrote a rss custom feed class and I add an item element with 'handler.addQuickElement(u"city", item['city'])' this function. It's ok I can see the city tags in xml but mozilla's rss reader can't read my city tags. What can I do to fix the problem?
Thank you for your advice.
creecode
unread,
Jun 14, 2012, 12:36:39 PM6/14/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hello armagan,
A quick guess. Mozilla's RSS reader doesn't understand your <city> tag and so passes over it and doesn't display it? If the <city> tag isn't part of the RSS specification then a "standard" reader isn't going to do anything with your tag. You would need either a custom reader or one with an extension.
On Thursday, June 14, 2012 7:44:59 AM UTC-7, armagan wrote:
I wrote a rss custom feed class and I add an item element with 'handler.addQuickElement(u"city", item['city'])' this function. It's ok I can see the city tags in xml but mozilla's rss reader can't read my city tags. What can I do to fix the problem?