This is a namespace module implementing RSS 0.91.
class DocType(ll.xist.xsc.DocType):
Document type for RSS 0.91
def __init__(self):
class channel(ll.xist.xsc.Element):
Information about a particular channel. Everything pertaining to an individual channel is contained within this tag.
class copyright(ll.xist.xsc.Element):
Copyright string.
class day(ll.xist.xsc.Element):
The day of the week, spelled out in English.
class description(ll.xist.xsc.Element):
A plain text description of an item, channel,
image, or textinput.
class docs(ll.xist.xsc.Element):
This tag should contain a URL that references a description of the channel.
class height(ll.xist.xsc.Element):
Specifies the height of an image. Should be an integer value.
class hour(ll.xist.xsc.Element):
Specifies an hour of the day. Should be an integer value between 0 and 23.
See skipHours.
class image(ll.xist.xsc.Element):
Specifies an image associated with a channel
class item(ll.xist.xsc.Element):
An item that is associated with a channel. The item should
represent a web-page, or subsection within a web page. It should have a
unique URL associated with it. Each item must contain a title and a
link. A description is optional.
class language(ll.xist.xsc.Element):
Specifies the language of a channel.
class lastBuildDate(ll.xist.xsc.Element):
The last time the channel was modified.
class link(ll.xist.xsc.Element):
This is a url that a user is expected to click on, as opposed to a
url that is for loading a resource, such as an image.
class managingEditor(ll.xist.xsc.Element):
The email address of the managing editor of the site, the person to contact for editorial inquiries.
class name(ll.xist.xsc.Element):
The name of an object, corresponding to the name attribute of an
HTML input element. Currently, this only applies to
textinput.
class pubDate(ll.xist.xsc.Element):
Date when channel was published.
class rating(ll.xist.xsc.Element):
PICS rating of the channel.
class rss(ll.xist.xsc.Element):
Root element.
class Attrs(ll.xist.xsc.Attrs):
class version(ll.xist.xsc.TextAttr):
class skipDays(ll.xist.xsc.Element):
A list of days of the week, in English, indicating the days of
the week when your channel will not be updated. As with activeHours,
if you know your channel will never be updated on Saturday or Sunday, for
example.
class skipHours(ll.xist.xsc.Element):
A list of hours indicating the hours in the day, GMT, when the
channel is unlikely to be updated. If this sub-item is omitted, the channel
is assumed to be updated hourly.
class textinput(ll.xist.xsc.Element):
An input field for the purpose of allowing users to submit queries back to the publisher's site.
class title(ll.xist.xsc.Element):
An identifying string for a resource. When used in an item, this is
the name of the item's link. When used in an image, this is the
"alt" text for the image. When used in a channel, this is the
channel's title. When used in a textinput, this is the textinput's
title.
class url(ll.xist.xsc.Element):
Location to load a resource from. Note that this is slightly different from
the link tag, which specifies where a user should be re-directed to
if a resource is selected.
class webMaster(ll.xist.xsc.Element):
The email address of the webmaster for the site, the person to contact if there are technical problems with the channel.
class width(ll.xist.xsc.Element):
Specifies the width of an image. Should be an integer value.