diff options
Diffstat (limited to 'akregator/src/librss/global.h')
-rw-r--r-- | akregator/src/librss/global.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/akregator/src/librss/global.h b/akregator/src/librss/global.h index 16c08178..8ff4e406 100644 --- a/akregator/src/librss/global.h +++ b/akregator/src/librss/global.h @@ -18,6 +18,21 @@ class TQValueList; namespace RSS { + /// The Atom 1.0 XML namespace. + constexpr const char *AtomNamespace = "http://www.w3.org/2005/Atom"; + /// The CommentAPI XML namespace. + constexpr const char *CommentAPINamespace = "http://wellformedweb.org/CommentAPI/"; + /// The Content XML namespace. + constexpr const char *ContentNamespace = "http://purl.org/rss/1.0/modules/content/"; + /// The Dublin Core XML namespace. + constexpr const char *DublinCoreNamespace = "http://purl.org/dc/elements/1.1/"; + /// The RDF Concepts Vocabulary (RDF) namespace. + constexpr const char *RDFNamespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; + /// The Slash XML namespace. + constexpr const char *SlashNamespace = "http://purl.org/rss/1.0/modules/slash/"; + /// The XML namespace. + constexpr const char *XMLNamespace = "http://www.w3.org/XML/1998/namespace"; + /** * Versions currently supported by this library. This enumeration is * subject to be extended in the future and used by Document::version() to |