Bug 415045 - Request: Provide QML bindings
Summary: Request: Provide QML bindings
Status: REPORTED
Alias: None
Product: frameworks-syndication
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Other Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-12-11 09:45 UTC by Gerion
Modified: 2019-12-11 09:45 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gerion 2019-12-11 09:45:30 UTC
I'd like to write an RSS/Atom Plasma widget.

However, generic RSS/Atom parsing is not as simple as expected and for example claimed here: https://doc.qt.io/qt-5/qml-qtquick-xmllistmodel-xmllistmodel.html

With libsyndication a good library for RSS/Atom already exists. It would be nice, if you provide some QML keybindings.

One usage pattern in QML could be like this:
```
FeedModel {
    id: "tagesschau"
    source: "http://www.tagesschau.de/xml/atom/"
}

FeedModel {
    id: "spiegel"
    source: "https://www.spiegel.de/schlagzeilen/index.rss"
}
```

See also https://marc.info/?l=kde-devel&m=156466043801682&w=2