reallysimple 0.4.27 → 0.4.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "reallysimple",
3
3
  "description": "A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.",
4
- "version": "0.4.27",
4
+ "version": "0.4.29",
5
5
  "author": "Dave Winer <dave@scripting.com>",
6
6
  "license": "MIT",
7
7
  "files": [
package/readme.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # reallysimple
2
2
 
3
- A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.
3
+ A <a href="https://www.npmjs.com/package/reallysimple">Node package</a> that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.
4
4
 
5
5
  #### Code example
6
6
 
package/readme.opml CHANGED
@@ -2,7 +2,7 @@
2
2
  <opml version="2.0">
3
3
  <head>
4
4
  <title>readme.md</title>
5
- <dateModified>Thu, 03 Nov 2022 13:50:10 GMT</dateModified>
5
+ <dateModified>Fri, 24 May 2024 12:26:02 GMT</dateModified>
6
6
  <expansionState></expansionState>
7
7
  <vertScrollState>1</vertScrollState>
8
8
  <windowTop>300</windowTop>
@@ -12,7 +12,7 @@
12
12
  </head>
13
13
  <body created="Sat, 05 Mar 2022 16:54:13 GMT" text="readme.md">
14
14
  <outline created="Sat, 05 Mar 2022 16:54:15 GMT" text="# reallysimple">
15
- <outline created="Sat, 11 Jun 2022 15:59:23 GMT" text="A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history."></outline>
15
+ <outline created="Sat, 11 Jun 2022 15:59:23 GMT" text="A &lt;a href=&quot;https://www.npmjs.com/package/reallysimple&quot;&gt;Node package&lt;/a&gt; that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history."></outline>
16
16
  </outline>
17
17
  <outline created="Sat, 11 Jun 2022 16:24:18 GMT" text="#### Code example">
18
18
  <outline created="Sat, 11 Jun 2022 16:20:10 GMT" text="I always like to see the code first..."></outline>
package/reallysimple.js CHANGED
@@ -1,4 +1,4 @@
1
- var myProductName = "reallysimple", myVersion = "0.4.27";
1
+ var myProductName = "reallysimple", myVersion = "0.4.29";
2
2
 
3
3
  exports.readFeed = readFeed;
4
4
  exports.convertFeedToOpml = convertFeedToOpml;
@@ -166,6 +166,14 @@ function convertFeed (oldFeed, whenstart) {
166
166
  const cloud = item.meta ["source:cloud"];
167
167
  newFeed.cloudUrl = cloud ["#"];
168
168
  }
169
+ if (item.meta ["source:blogroll"] !== undefined) { //3/14/24 by DW
170
+ var blogroll = item.meta ["source:blogroll"];
171
+ newFeed.blogroll = blogroll ["#"];
172
+ }
173
+ if (item.meta ["source:self"] !== undefined) { //5/25/24 by DW
174
+ var linkToSelf = item.meta ["source:self"];
175
+ newFeed.linkToSelf = linkToSelf ["#"];
176
+ }
169
177
  }
170
178
  }
171
179
  }
package/worknotes.md CHANGED
@@ -1,3 +1,7 @@
1
+ #### 5/25/24; 1:36:02 PM by DW
2
+
3
+ Added support for <source:self> element, map it to linkToSelf, the same as atom:link, implemented on 6/15/22.
4
+
1
5
  #### 3/14/24; 1:40:38 PM by DW
2
6
 
3
7
  Added support for <source:blogroll>.