Skip to content

Commit

Permalink
v0.86
Browse files Browse the repository at this point in the history
  • Loading branch information
scripting committed Jun 9, 2014
1 parent a4d31ad commit e3edcbc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ Specifically thanks to Dan for writing the excellent <a href="https://github.com

#### Changes

##### v0.86 -- 6/09/14 by DW

Fixed a bug that would cause River4 to crash when reading an item from a subscription list that didn't have an xmlUrl attribute.

##### v0.85 -- 6/07/14 by DW

Two fixes, explained <a href="http://river4.smallpict.com/2014/06/07/river4V085.html">here</a>.
Expand Down
11 changes: 7 additions & 4 deletions opml/river4.opml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml encoding="ISO-8859-1" version="1.0"?>
<!-- OPML generated by OPML Editor v0.75 on 6/7/14; 12:04:44 PM -->
<!-- OPML generated by OPML Editor v0.75 on 6/9/14; 7:55:57 AM -->
<opml version="2.0">
<head>
<title>river4.js</title>
Expand All @@ -11,7 +11,7 @@
<windowRight>1500</windowRight>
</head>
<body text="river4.js">
<outline text="var myVersion = &quot;0.85&quot;, myProductName = &quot;River4&quot;, flRunningOnServer = true;"></outline>
<outline text="var myVersion = &quot;0.86&quot;, myProductName = &quot;River4&quot;, flRunningOnServer = true;"></outline>
<outline text=""></outline>
<outline isComment="true" text="notes, building, testing">
<outline text="npm install MD5"></outline>
Expand Down Expand Up @@ -1127,8 +1127,11 @@
<outline text="while (outline = this.read ()) {">
<outline text="var type = outline [&quot;#type&quot;];"></outline>
<outline text="if (type == &quot;feed&quot;) {">
<outline text="addToFeedsArray (outline.xmlurl, outline, listname);"></outline>
<outline text="addToFeedsInLists (outline.xmlurl); //5/30/14 by DW"></outline>
<outline text="if ((outline.xmlurl != undefined) &amp;&amp; (outline.xmlurl.length &gt; 0)) { //6/9/14 by DW">
<outline text="addToFeedsArray (outline.xmlurl, outline, listname); "></outline>
<outline text="addToFeedsInLists (outline.xmlurl); //5/30/14 by DW"></outline>
<outline text="}"></outline>
</outline>
<outline text="}"></outline>
</outline>
<outline text="}"></outline>
Expand Down
8 changes: 5 additions & 3 deletions river4.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var myVersion = "0.85", myProductName = "River4", flRunningOnServer = true;
var myVersion = "0.86", myProductName = "River4", flRunningOnServer = true;


var http = require ("http");
Expand Down Expand Up @@ -1430,8 +1430,10 @@ function readOneList (listname, filepath) {
while (outline = this.read ()) {
var type = outline ["#type"];
if (type == "feed") {
addToFeedsArray (outline.xmlurl, outline, listname);
addToFeedsInLists (outline.xmlurl); //5/30/14 by DW
if ((outline.xmlurl != undefined) && (outline.xmlurl.length > 0)) { //6/9/14 by DW
addToFeedsArray (outline.xmlurl, outline, listname);
addToFeedsInLists (outline.xmlurl); //5/30/14 by DW
}
}
}
});
Expand Down

0 comments on commit e3edcbc

Please sign in to comment.