Skip to content

Commit c53b4bb

Browse files
committed
save
1 parent b7b48ae commit c53b4bb

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

resources/docs/Feed-formats.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ After your source feed data are downloaded either via URL or custom script, you
6363

6464
Format of post-process script execution line is the same as above.
6565

66+
<img src="images/scrape-post.png" width="50%">
67+
6668
Typical post-processing filter might do things like advanced CSS formatting of feed file entries, removing some ads or simply pretty-printing XML data:
6769

6870
| Command | Explanation |

resources/docs/images/scrape-post.png

21 KB
Loading

src/librssguard/services/standard/standardfeed.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,7 @@ QNetworkReply::NetworkError StandardFeed::networkError() const {
682682
StandardFeed::StandardFeed(const QSqlRecord& record) : Feed(record) {
683683
setEncoding(record.value(FDS_DB_ENCODING_INDEX).toString());
684684
setSourceType(SourceType(record.value(FDS_DB_SOURCE_TYPE_INDEX).toInt()));
685+
setPostProcessScript(record.value(FDS_DB_POST_PROCESS).toString());
685686

686687
StandardFeed::Type type = static_cast<StandardFeed::Type>(record.value(FDS_DB_TYPE_INDEX).toInt());
687688

0 commit comments

Comments
 (0)