mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-19 12:22:47 +01:00
save
This commit is contained in:
parent
b7b48ae5c1
commit
c53b4bb970
@ -63,6 +63,8 @@ After your source feed data are downloaded either via URL or custom script, you
|
|||||||
|
|
||||||
Format of post-process script execution line is the same as above.
|
Format of post-process script execution line is the same as above.
|
||||||
|
|
||||||
|
<img src="images/scrape-post.png" width="50%">
|
||||||
|
|
||||||
Typical post-processing filter might do things like advanced CSS formatting of feed file entries, removing some ads or simply pretty-printing XML data:
|
Typical post-processing filter might do things like advanced CSS formatting of feed file entries, removing some ads or simply pretty-printing XML data:
|
||||||
|
|
||||||
| Command | Explanation |
|
| Command | Explanation |
|
||||||
|
BIN
resources/docs/images/scrape-post.png
Normal file
BIN
resources/docs/images/scrape-post.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
@ -682,6 +682,7 @@ QNetworkReply::NetworkError StandardFeed::networkError() const {
|
|||||||
StandardFeed::StandardFeed(const QSqlRecord& record) : Feed(record) {
|
StandardFeed::StandardFeed(const QSqlRecord& record) : Feed(record) {
|
||||||
setEncoding(record.value(FDS_DB_ENCODING_INDEX).toString());
|
setEncoding(record.value(FDS_DB_ENCODING_INDEX).toString());
|
||||||
setSourceType(SourceType(record.value(FDS_DB_SOURCE_TYPE_INDEX).toInt()));
|
setSourceType(SourceType(record.value(FDS_DB_SOURCE_TYPE_INDEX).toInt()));
|
||||||
|
setPostProcessScript(record.value(FDS_DB_POST_PROCESS).toString());
|
||||||
|
|
||||||
StandardFeed::Type type = static_cast<StandardFeed::Type>(record.value(FDS_DB_TYPE_INDEX).toInt());
|
StandardFeed::Type type = static_cast<StandardFeed::Type>(record.value(FDS_DB_TYPE_INDEX).toInt());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user