feedgen: rss elements
This commit is contained in:
parent
471ea2b5a3
commit
1b15d37160
1 changed files with 11 additions and 14 deletions
|
@ -672,25 +672,22 @@ class FeedEntry:
|
||||||
__atom_source = None
|
__atom_source = None
|
||||||
__atom_rights = None
|
__atom_rights = None
|
||||||
|
|
||||||
'''
|
|
||||||
# RSS
|
# RSS
|
||||||
author
|
__rss_author = None
|
||||||
category
|
__rss_category = None
|
||||||
#@domain
|
__rss_comments = None
|
||||||
comments
|
__rss_description = None
|
||||||
description
|
__rss_enclosure = None
|
||||||
enclosure
|
|
||||||
#@length
|
#@length
|
||||||
#@type
|
#@type
|
||||||
#@url
|
#@url
|
||||||
guid
|
__rss_guid = None
|
||||||
#@isPermaLink
|
#@isPermaLink
|
||||||
link
|
__rss_link = None
|
||||||
pubDate
|
__rss_pubDate = None
|
||||||
source
|
__rss_source = None
|
||||||
@url
|
__rss_@url = None
|
||||||
title
|
__rss_title = None
|
||||||
'''
|
|
||||||
|
|
||||||
|
|
||||||
def __ensure_format(self, val, allowed, required, allowed_values={}):
|
def __ensure_format(self, val, allowed, required, allowed_values={}):
|
||||||
|
|
Loading…
Reference in a new issue