Module: RSS

Defined in:
lib/rss.rb,
lib/rss/0.9.rb,
lib/rss/1.0.rb,
lib/rss/2.0.rb,
lib/rss/rss.rb,
lib/rss/xml.rb,
lib/rss/atom.rb,
lib/rss/image.rb,
lib/rss/maker.rb,
lib/rss/slash.rb,
lib/rss/utils.rb,
lib/rss/itunes.rb,
lib/rss/parser.rb,
lib/rss/content.rb,
lib/rss/version.rb,
lib/rss/taxonomy.rb,
lib/rss/converter.rb,
lib/rss/maker/0.9.rb,
lib/rss/maker/1.0.rb,
lib/rss/maker/2.0.rb,
lib/rss/trackback.rb,
lib/rss/xmlparser.rb,
lib/rss/dublincore.rb,
lib/rss/maker/atom.rb,
lib/rss/maker/base.rb,
lib/rss/maker/feed.rb,
lib/rss/xmlscanner.rb,
lib/rss/content/1.0.rb,
lib/rss/content/2.0.rb,
lib/rss/maker/entry.rb,
lib/rss/maker/image.rb,
lib/rss/maker/slash.rb,
lib/rss/rexmlparser.rb,
lib/rss/syndication.rb,
lib/rss/maker/itunes.rb,
lib/rss/maker/content.rb,
lib/rss/dublincore/1.0.rb,
lib/rss/dublincore/2.0.rb,
lib/rss/maker/taxonomy.rb,
lib/rss/xml-stylesheet.rb,
lib/rss/dublincore/atom.rb,
lib/rss/maker/trackback.rb,
lib/rss/maker/dublincore.rb,
lib/rss/maker/syndication.rb

Overview

:nodoc: all

Defined Under Namespace

Modules: Atom, BaseDublinCoreModel, BaseModel, BaseTrackBackModel, ContentModel, DublinCoreModel, ITunesBaseModel, ITunesChannelModel, ITunesItemModel, ITunesModelUtils, ImageFaviconModel, ImageItemModel, ImageModelUtils, ListenerMixin, Maker, RSS09, RSS10, RootElementMixin, SetupMaker, SlashModel, SyndicationModel, TaxonomyTopicModel, TaxonomyTopicsModel, TrackBackModel10, TrackBackModel20, TrackBackUtils, Utils, XML, XMLStyleSheetMixin Classes: BaseListener, BaseParser, ConversionError, Converter, Element, Error, InvalidRSSError, MissingAttributeError, MissingTagError, NSError, NotAvailableValueError, NotExpectedTagError, NotSetError, NotValidXMLParser, NotWellFormedError, OverlappedPrefixError, Parser, RDF, REXMLLikeXMLParser, REXMLListener, REXMLParser, Rss, TooMuchTagError, UnknownConversionMethodError, UnknownTagError, UnsupportedMakerVersionError, XMLParserListener, XMLParserNotFound, XMLParserParser, XMLScanListener, XMLScanParser, XMLStyleSheet

Constant Summary collapse

URI =

The URI of the RSS 1.0 specification

"http://purl.org/rss/1.0/"
DEBUG =

:nodoc:

false
NotExceptedTagError =

For backward compatibility :X

NotExpectedTagError
UnknownConvertMethod =

for backward compatibility

UnknownConversionMethodError
IMAGE_PREFIX =

The prefix for the Image XML namespace.

'image'
IMAGE_URI =

The URI for the Image specification.

'http://purl.org/rss/1.0/modules/image/'
IMAGE_ELEMENTS =

This constant holds strings which contain the names of image elements, with the appropriate prefix.

[]
SLASH_PREFIX =

The prefix for the Slash XML namespace.

'slash'
SLASH_URI =

The URI of the Slash specification.

"http://purl.org/rss/1.0/modules/slash/"
ITUNES_PREFIX =

The prefix for the iTunes XML namespace.

'itunes'
ITUNES_URI =

The URI of the iTunes specification.

'http://www.itunes.com/dtds/podcast-1.0.dtd'
AVAILABLE_PARSER_LIBRARIES =

The list of all available libraries for parsing.

[
  ["rss/xmlparser", :XMLParserParser],
  ["rss/xmlscanner", :XMLScanParser],
  ["rss/rexmlparser", :REXMLParser],
]
AVAILABLE_PARSERS =

The list of all available parsers, in constant form.

[]
CONTENT_PREFIX =

The prefix for the Content XML namespace.

'content'
CONTENT_URI =

The URI of the Content specification.

"http://purl.org/rss/1.0/modules/content/"
VERSION =

The current version of RSS

"0.2.9"
TAXO_PREFIX =

The prefix for the Taxonomy XML namespace.

"taxo"
TAXO_URI =

The URI for the specification of the Taxonomy XML namespace.

"http://purl.org/rss/1.0/modules/taxonomy/"
TAXO_ELEMENTS =

The listing of all the taxonomy elements, with the appropriate namespace.

[]
TRACKBACK_PREFIX =
'trackback'
TRACKBACK_URI =
'http://madskills.com/public/xml/rss/module/trackback/'
DC_PREFIX =

The prefix for the Dublin Core XML namespace.

'dc'
DC_URI =

The URI of the Dublin Core specification.

"http://purl.org/dc/elements/1.1/"
DublincoreModel =

For backward compatibility

DublinCoreModel
SY_PREFIX =

The prefix for the Syndication XML namespace.

'sy'
SY_URI =

The URI of the Syndication specification.

"http://purl.org/rss/1.0/modules/syndication/"