ucast/notes/Feed.md
2022-05-26 00:49:26 +02:00

34 lines
2.7 KiB
Markdown

Django-Klasse: `django.utils.feedgenerator.Rss201rev2Feed`
### Channel-Attribute
| Tag | Beschreibung | Django-Attribut |
|--------------------------------------|-----------------------------------------|----------------------|
| `\<atom:link href="" rel="self">` | Feed-URL | `feed_url` |
| `\<title>` | Kanalname | `title` |
| `\<language>` | Sprache | `language` |
| `\<lastBuildDate>` | Datum der letzten Veränderung des Feeds | `latest_post_date()` |
| `\<description>` | Kanalbeschreibung | `description` |
| `\<link>` | Link zum Kanal | `link` |
| `\<copyright>` | Autor | `feed_copyright` |
| `\<image><url><title><link></image>` | Cover-URL / Kanalname / Link | - |
| `\<itunes:image href="">` | Cover-URL | - |
| `\<itunes:author>` | Autor | - |
| `\<itunes:summary>` | Kanalbeschreibung | - |
### Item-Attribute
| Tag | Beschreibung | Django-Attribut |
|--------------------------------------------------|------------------------|-----------------|
| `\<title>` | Titel | `title` |
| `\<itunes:title>` | Titel | - |
| `\<description>` | Beschreibung | `description` |
| `\<pubDate>` | Veröffentlichungsdatum | `pubdate` |
| `\<link>` | Link | `link` |
| `\<guid>` | Eindeutige ID/ | `unique_id` |
| `\<itunes:summary>` | Bechreibung | - |
| `\<itunes:author>` | Autor | - |
| `\<enclosure url="" type="audio/mpeg" length=1>` | Audiodatei | `enclosures ` |
| `\<itunes:duration>00:40:35</itunes:duration>` | Dauer | - |
| `\<itunes:image href="">` | Cover-URL | - |