Add basic info to feed parse info

This commit is contained in:
Dave Conway-Jones 2015-09-12 22:32:15 +01:00
parent 7de54b9af2
commit d00f4a7e32
2 changed files with 5 additions and 1 deletions

View File

@ -31,6 +31,9 @@
<script type="text/x-red" data-help-name="feedparse"> <script type="text/x-red" data-help-name="feedparse">
<p>Monitors an RSS/atom feed for new entries.</p> <p>Monitors an RSS/atom feed for new entries.</p>
<p>The <b>msg.topic</b> contains the original article link. The <b>msg.payload</b>
contains the description, and <b>msg.article</b> contains the complete article object,
which has properties such as <i>.title</i>, <i>.summary</i>, <i>.date</i> and so on.</p>
</script> </script>
<script type="text/javascript"> <script type="text/javascript">

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red-node-feedparser", "name": "node-red-node-feedparser",
"version": "0.1.1", "version": "0.1.2",
"description": "A Node-RED node to get RSS Atom feeds.", "description": "A Node-RED node to get RSS Atom feeds.",
"dependencies": { "dependencies": {
"feedparser": "1.1.3", "feedparser": "1.1.3",
@ -20,4 +20,5 @@
"nodes": { "nodes": {
"feedparse": "32-feedparse.js" "feedparse": "32-feedparse.js"
} }
}
} }