aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rss/atom.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-12 20:17:29 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-12 20:17:29 +0000
commit78e06ab19423518300a2ef9478cef69468e9d4a9 (patch)
treed1b8a3f97e830b41b3e4720e25ccd486590b4517 /lib/rss/atom.rb
parent73707bb42bc9d33f6baf9d82b01604284f3c1725 (diff)
downloadruby-78e06ab19423518300a2ef9478cef69468e9d4a9.tar.gz
* lib/rss/atom.rb (module RSS): Document URIs. Patch by Mark Turner.
[Ruby 1.9 - #4671] * lib/rss/rss.rb (module RSS): Document exception classes. Patch by Mark Turner. [Ruby 1.9 - #4671] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31535 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/atom.rb')
-rw-r--r--lib/rss/atom.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/rss/atom.rb b/lib/rss/atom.rb
index 7720f77539..f6fea386ba 100644
--- a/lib/rss/atom.rb
+++ b/lib/rss/atom.rb
@@ -2,7 +2,15 @@ require 'rss/parser'
module RSS
module Atom
+
+ ##
+ # The Atom URI W3C Namespace
+
URI = "http://www.w3.org/2005/Atom"
+
+ ##
+ # The XHTML URI W3C Namespace
+
XHTML_URI = "http://www.w3.org/1999/xhtml"
module CommonModel