thanks. that´s exactly what I was looking for.

patrick.

Am 20.02.2007 um 21:06 schrieb [EMAIL PROTECTED]:

>
> I did it, but not using the syndication. I just use a generic list
> view and point to a template to build the xml. Not hard at all. Here's
> my template:
>
> <?xml version="1.0"?>
>         <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd";
> version="2.0">
> <channel>
>         <title>Gretsch Pages Radio</title>
>         <link>http://gretschpages.com/radio/</link>
>         <description>Music from the Gretsch Pages Community</
> description>
>         <copyright>&#x2117; &amp; &#xA9; 2007 The Gretsch Pages</
> copyright>
>         <language>en</language>
>
>         {% for i in object_list|dictsortreversed:"pub_date" %}
>         <item>
>                 <title>{{i.song_title|escape}} -
> {{i.artist.preferred_name}}</title>
>                 <enclosure url="http://gretschpages.com/media/
> {{i.song_file}}" type="audio/mpeg" />
>                 <pubDate>{{i.pub_date}}</pubDate>
>                 <itunes:image href="http://gretschpages.com/media/
> {{i.artist.avatar }}" />
>         </item>
> {% endfor %}
> </channel>
> </rss>
>
>
> On Feb 20, 7:46 am, "va:patrick.kranzlmueller"
> <[EMAIL PROTECTED]> wrote:
>> has anyone done a podcast-feed (iTunes) using django syndication?
>>
>> I know that it´s possible by changing feedgenerator.py.
>> if somebody has already done it, it´d be great to share the code and/
>> or give some advice.
>>
>> thanks,
>> patrick
>
>
> >


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

Reply via email to