Hi,

I like to generate a feed with text and image. My objective is the
communication between a client and the RSS feed django server.

Similar to text, you find at feedparser the following explanation for
a image in a RSS feed:

>>

This is a feed image:

<image>
  <title>Feed logo</title>
  <url>http://example.org/logo.png</url>
  <link>http://example.org/</link>
  <width>80</width>
  <height>15</height>
  <description>Visit my home page</description>
</image>

This feed image could be rendered in HTML as this:

<a href="http://example.org/";>
  <img src="http://example.org/logo.png";
       width="80"
       height="15"
       alt="Feed logo"
       title="Visit my home page">
</a>

I like to ask which part is what I need to include in the Django feed
template ?? The explanation of feed templates is somehow very short?
Should I have two templates, one for RSS(XML) and one for HTML?

Thank you for your help.

Peter

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to