Syndication::Atom::Entry Class

class Syndication::Atom::Entry

An Atom entry, equivalent to the "items" in the RSS world. More...

Header: #include <Syndication/Atom/Entry>
CMake: find_package(KF6 REQUIRED COMPONENTS Syndication)
target_link_libraries(mytarget PRIVATE KF6::Syndication)
Inherits: Syndication::ElementWrapper and Syndication::SpecificItem

Public Functions

Entry()
Entry(const QDomElement &element)
QList<Syndication::Atom::Person> authors() const
QList<Syndication::Atom::Category> categories() const
Syndication::Atom::Content content() const
QList<Syndication::Atom::Person> contributors() const
QString debugInfo() const
QString id() const
QList<Syndication::Atom::Link> links() const
time_t published() const
QString rights() const
void setFeedAuthors(const QList<Syndication::Atom::Person> &feedAuthors)
Syndication::Atom::Source source() const
QString summary() const
QString title() const
QList<QDomElement> unhandledElements() const
time_t updated() const

Reimplemented Public Functions

virtual bool accept(Syndication::SpecificItemVisitor *visitor) override

Detailed Description

Member Function Documentation

Entry::Entry()

creates a null entry object

[explicit] Entry::Entry(const QDomElement &element)

creates an Entry object wrapping an atom:entry element.

element a DOM element, should be a atom:entry element (although not enforced), otherwise this object will not parse anything useful

[override virtual] bool Entry::accept(Syndication::SpecificItemVisitor *visitor)

Reimplements: SpecificItem::accept(Syndication::SpecificItemVisitor *visitor).

Used by visitors for double dispatch. See SpecificVisitor for more information.

visitor the visitor calling the method

QList<Syndication::Atom::Person> Entry::authors() const

list of persons who are authors of this entry. (required)

If the entry itself does not have explicit author description, its source author description is used. If none of these exist, the list of authors of the containing feed is used. That list is set by setFeedAuthors().

QList<Syndication::Atom::Category> Entry::categories() const

a list of categories this entry is filed to (optional)

Syndication::Atom::Content Entry::content() const

content of the entry (optional) See Content for details

Returns entry content, or a null content object if not specified

QList<Syndication::Atom::Person> Entry::contributors() const

list of persons contributing to this entry (optional)

QString Entry::debugInfo() const

returns a description of this entry for debugging purposes

Returns debug string

QString Entry::id() const

ID of the article. (required) The ID must be unique inside this feed. The atom spec defines it as a URI (which is not enforced by this parser)

links pointing to associated web sites and other resources.

Links are optional if the entry provides Content. Otherwise, it must contain at least one link with a rel value of "alternate". (see Link).

time_t Entry::published() const

The datetime of the publication of this entry (optional).

Returns the publication date in seconds since epoch

QString Entry::rights() const

copyright information (optional)

Returns copyright information for the entry (intended for human readers), or a null string if not specified

void Entry::setFeedAuthors(const QList<Syndication::Atom::Person> &feedAuthors)

Sets the list of the containing feed's authors, which will be used as a fallback in authors() in case both the entry itself and its source have no explicit author description.

feedAuthors the list of feed's authors

Syndication::Atom::Source Entry::source() const

source description of the content (optional)

If the content was copied from another feed, this object contains information about the source feed.

Returns source description, or a null object if not specified

QString Entry::summary() const

a short summary, abstract or excerpt of an entry. (optional) This is usually more verbose than title() and but does not contain the whole content as content() does.

Returns the summary as HTML, or a null string if not specified

QString Entry::title() const

title of the entry (required).

Returns the title as HTML

QList<QDomElement> Entry::unhandledElements() const

returns all child elements of this entry not covered by this class. This can be used to access additional metadata from Atom extensions.

time_t Entry::updated() const

The datetime of the last modification of this entry (required).

Returns the modification date in seconds since epoch