ttrss_plugin-af_feedmod
ttrss_plugin-af_feedmod copied to clipboard
Article Filter plugin for Tiny-Tiny-RSS to replace article stubs by website contents.
Hi mbirth, I've played around with feedmod for a while and adding new features in my fork, restructured the code and so on. Now I made a new repository which...
Added a new option `mod_link` to allow the modification of an article's link. _Example:_ http://feeds.feedburner.com/rivva ``` json "rivva.de": { "type": "xpath", "xpath": "header/h1/a/@href", "force_charset": "utf-8", "mod_link": true } ```
i seem to be unable to pull the guardian's full article. example: feed: http://www.theguardian.com/world/rss article: http://www.theguardian.com/world/2014/jul/30/wikileaks-australia-super-injunction-bribery-allegations this is the xpath needed: /html[@id='js-context']/body[@id='top']/div[@class='l-side-margins l-side-margins--layout-content']/article[@id='article']/div[@class='gs-container']/div[@class='content__main-column content__main-column--article']/div[@class='from-content-api js-article__body'] but even using this "theguardian":...
This modification adds preview functionality to test the filters for a specific URL. The preview is embedded in the settings in the FeedMod tab.
Convert relative URLs embedded in the content to absolute URLs so that they point to the correct destination. This rewrites URLs based on the following rules: - If the URL...
The "readability" library can extract the article content of a html page. With that, the configuration file would no longer be needed. More info about readability: it was at first...
At the moment, af_feedmod is unlicensed.
Any way to select an entire body of a page? I'm working on one that has no div or classes or much of anything except text wrapped in a body...
- fetching is now done by a global function in fetch.php. This allows to use this functions in test/xpath.php for testing. - besides of user configuration as explained in README.md...