| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- (function () {
- function RunningInNode () {
- return(
- (typeof require) == "function"
- &&
- (typeof exports) == "object"
- &&
- (typeof module) == "object"
- &&
- (typeof __filename) == "string"
- &&
- (typeof __dirname) == "string"
- );
- }
- if (!RunningInNode()) {
- if (!this.Tautologistics)
- this.Tautologistics = {};
- if (!this.Tautologistics.NodeHtmlParser)
- this.Tautologistics.NodeHtmlParser = {};
- if (!this.Tautologistics.NodeHtmlParser.Tests)
- this.Tautologistics.NodeHtmlParser.Tests = [];
- exports = {};
- this.Tautologistics.NodeHtmlParser.Tests.push(exports);
- }
- exports.name = "RSS (2.0)";
- exports.options = {
- handler: {}
- , parser: {}
- };
- exports.type = "rss";
- //http://cyber.law.harvard.edu/rss/examples/rss2sample.xml
- exports.html = '<?xml version="1.0"?>\
- <rss version="2.0">\
- <channel>\
- <title>Liftoff News</title>\
- <link>http://liftoff.msfc.nasa.gov/</link>\
- <description>Liftoff to Space Exploration.</description>\
- <language>en-us</language>\
- <pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate>\
- \
- <lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate>\
- <docs>http://blogs.law.harvard.edu/tech/rss</docs>\
- <generator>Weblog Editor 2.0</generator>\
- <managingEditor>editor@example.com</managingEditor>\
- <webMaster>webmaster@example.com</webMaster>\
- <item>\
- \
- <title>Star City</title>\
- <link>http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp</link>\
- <description>How do Americans get ready to work with Russians aboard the International Space Station? They take a crash course in culture, language and protocol at Russia\'s <a href="http://howe.iki.rssi.ru/GCTC/gctc_e.htm">Star City</a>.</description>\
- <pubDate>Tue, 03 Jun 2003 09:39:21 GMT</pubDate>\
- <guid>http://liftoff.msfc.nasa.gov/2003/06/03.html#item573</guid>\
- \
- </item>\
- <item>\
- <description>Sky watchers in Europe, Asia, and parts of Alaska and Canada will experience a <a href="http://science.nasa.gov/headlines/y2003/30may_solareclipse.htm">partial eclipse of the Sun</a> on Saturday, May 31st.</description>\
- <pubDate>Fri, 30 May 2003 11:06:42 GMT</pubDate>\
- <guid>http://liftoff.msfc.nasa.gov/2003/05/30.html#item572</guid>\
- \
- </item>\
- <item>\
- <title>The Engine That Does More</title>\
- <link>http://liftoff.msfc.nasa.gov/news/2003/news-VASIMR.asp</link>\
- <description>Before man travels to Mars, NASA hopes to design new engines that will let us fly through the Solar System more quickly. The proposed VASIMR engine would do that.</description>\
- <pubDate>Tue, 27 May 2003 08:37:32 GMT</pubDate>\
- <guid>http://liftoff.msfc.nasa.gov/2003/05/27.html#item571</guid>\
- \
- </item>\
- <item>\
- <title>Astronauts\' Dirty Laundry</title>\
- <link>http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp</link>\
- <description>Compared to earlier spacecraft, the International Space Station has many luxuries, but laundry facilities are not one of them. Instead, astronauts have other options.</description>\
- <pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate>\
- <guid>http://liftoff.msfc.nasa.gov/2003/05/20.html#item570</guid>\
- \
- </item>\
- </channel>\
- </rss>';
- exports.expected = {
- type: "rss"
- , id: ""
- , title: "Liftoff News"
- , link: "http://liftoff.msfc.nasa.gov/"
- , description: "Liftoff to Space Exploration."
- , updated: new Date("Tue, 10 Jun 2003 09:41:01 GMT")
- , author: "editor@example.com"
- , items: [
- {
- id: "http://liftoff.msfc.nasa.gov/2003/06/03.html#item573"
- , title: "Star City"
- , link: "http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp"
- , description: "How do Americans get ready to work with Russians aboard the International Space Station? They take a crash course in culture, language and protocol at Russia's <a href=\"http://howe.iki.rssi.ru/GCTC/gctc_e.htm\">Star City</a>."
- , pubDate: new Date("Tue, 03 Jun 2003 09:39:21 GMT")
- }
- , {
- id: "http://liftoff.msfc.nasa.gov/2003/05/30.html#item572"
- , description: "Sky watchers in Europe, Asia, and parts of Alaska and Canada will experience a <a href=\"http://science.nasa.gov/headlines/y2003/30may_solareclipse.htm\">partial eclipse of the Sun</a> on Saturday, May 31st."
- , pubDate: new Date("Fri, 30 May 2003 11:06:42 GMT")
- }
- , {
- id: "http://liftoff.msfc.nasa.gov/2003/05/27.html#item571"
- , title: "The Engine That Does More"
- , link: "http://liftoff.msfc.nasa.gov/news/2003/news-VASIMR.asp"
- , description: "Before man travels to Mars, NASA hopes to design new engines that will let us fly through the Solar System more quickly. The proposed VASIMR engine would do that."
- , pubDate: new Date("Tue, 27 May 2003 08:37:32 GMT")
- }
- , {
- id: "http://liftoff.msfc.nasa.gov/2003/05/20.html#item570"
- , title: "Astronauts' Dirty Laundry"
- , link: "http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp"
- , description: "Compared to earlier spacecraft, the International Space Station has many luxuries, but laundry facilities are not one of them. Instead, astronauts have other options."
- , pubDate: new Date("Tue, 20 May 2003 08:56:02 GMT")
- }
- ]
- };
- })();
|