[Pkg-mozext-commits] [sage-extension] 02/39: feed parsing update

David Prévot taffit at moszumanska.debian.org
Fri May 1 03:10:18 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to tag sage_1_1
in repository sage-extension.

commit db930b9a94820f6d26906c7c1b02764c6ccdc89f
Author: Peter Andrews <petea at jhu.edu>
Date:   Sat May 29 05:39:12 2004 +0000

    feed parsing update
---
 src/sage/content/feedlib.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/sage/content/feedlib.js b/src/sage/content/feedlib.js
index 455df87..3ef5bcf 100644
--- a/src/sage/content/feedlib.js
+++ b/src/sage/content/feedlib.js
@@ -7,7 +7,7 @@ var Feed = {
 	link: null,
 	description: null,  
 	items: new Array(),
-  lastPubDate: null,
+	lastPubDate: null,
 
 
 	Feed: function(feedXML) {
@@ -27,7 +27,7 @@ var Feed = {
 
 	parseRSS: function() {
 
-		feedXML = this.feedXML;
+		var feedXML = this.feedXML;
 
 		this.feedFormat = "RSS";
 
@@ -105,7 +105,7 @@ var Feed = {
 
 	parseATOM: function() {
 
-		feedXML = this.feedXML;
+		var feedXML = this.feedXML;
 
 		this.feedFormat = "ATOM";
 
@@ -233,7 +233,7 @@ var Feed = {
 
 	getFormat: function() {
 		return this.feedFormat;
-	},
+	}
 
 }
 
@@ -308,6 +308,6 @@ var FeedItem = {
 		} else {
 			return null;
 		}
-	},
+	}
 
 }
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/sage-extension.git



More information about the Pkg-mozext-commits mailing list