Syndication

constants.cpp
1/*
2 This file is part of the syndication library
3 SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#include "constants.h"
9
10#include <QString>
11
12namespace Syndication
13{
14QString xmlNamespace()
15{
16 return QStringLiteral("http://www.w3.org/XML/1998/namespace");
17}
18
19QString xhtmlNamespace()
20{
21 return QStringLiteral("http://www.w3.org/1999/xhtml");
22}
23
24QString contentNameSpace()
25{
26 return QStringLiteral("http://purl.org/rss/1.0/modules/content/");
27}
28
29QString dublinCoreNamespace()
30{
31 return QStringLiteral("http://purl.org/dc/elements/1.1/");
32}
33
34QString itunesNamespace()
35{
36 return QStringLiteral("http://www.itunes.com/dtds/podcast-1.0.dtd");
37}
38
40{
41 return QStringLiteral("http://wellformedweb.org/CommentAPI/");
42}
43
45{
46 return QStringLiteral("http://purl.org/rss/1.0/modules/slash/");
47}
48
49} // namespace Syndication
QString slashNamespace()
"slash" namespace http://purl.org/rss/1.0/modules/slash/
Definition constants.cpp:44
QString commentApiNamespace()
wellformedweb.org's RSS namespace for comment functionality "http://wellformedweb....
Definition constants.cpp:39
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:15 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.