npr 0.0.0 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. data/.travis.yml +13 -0
  2. data/{LICENSE → MIT-LICENSE} +1 -1
  3. data/README.md +115 -3
  4. data/Rakefile +6 -0
  5. data/gemfiles/Gemfile.rb-1.8.7 +6 -0
  6. data/lib/npr/api/client.rb +87 -0
  7. data/lib/npr/api/message.rb +38 -0
  8. data/lib/npr/api/query_builder.rb +222 -0
  9. data/lib/npr/api/response.rb +32 -0
  10. data/lib/npr/api.rb +7 -0
  11. data/lib/npr/concern/attr_typecast.rb +59 -0
  12. data/lib/npr/concern/relation.rb +103 -0
  13. data/lib/npr/concern/shallow_attributes.rb +71 -0
  14. data/lib/npr/concern.rb +9 -0
  15. data/lib/npr/configuration.rb +120 -0
  16. data/lib/npr/core_ext/array/wrap.rb +15 -0
  17. data/lib/npr/entity/audio.rb +28 -0
  18. data/lib/npr/entity/author.rb +22 -0
  19. data/lib/npr/entity/base.rb +19 -0
  20. data/lib/npr/entity/book.rb +21 -0
  21. data/lib/npr/entity/book_edition.rb +26 -0
  22. data/lib/npr/entity/byline.rb +18 -0
  23. data/lib/npr/entity/collection.rb +11 -0
  24. data/lib/npr/entity/crop.rb +20 -0
  25. data/lib/npr/entity/enlargement.rb +20 -0
  26. data/lib/npr/entity/formats.rb +19 -0
  27. data/lib/npr/entity/image.rb +33 -0
  28. data/lib/npr/entity/intro_text.rb +21 -0
  29. data/lib/npr/entity/link.rb +23 -0
  30. data/lib/npr/entity/list.rb +28 -0
  31. data/lib/npr/entity/list_text.rb +19 -0
  32. data/lib/npr/entity/member.rb +23 -0
  33. data/lib/npr/entity/member_byline.rb +17 -0
  34. data/lib/npr/entity/member_promo_art.rb +17 -0
  35. data/lib/npr/entity/mp3.rb +23 -0
  36. data/lib/npr/entity/organization.rb +18 -0
  37. data/lib/npr/entity/paragraph.rb +27 -0
  38. data/lib/npr/entity/permissions.rb +18 -0
  39. data/lib/npr/entity/program.rb +24 -0
  40. data/lib/npr/entity/promo_art.rb +17 -0
  41. data/lib/npr/entity/promo_art_book_edition.rb +18 -0
  42. data/lib/npr/entity/provider.rb +23 -0
  43. data/lib/npr/entity/pull_quote.rb +16 -0
  44. data/lib/npr/entity/related_link.rb +21 -0
  45. data/lib/npr/entity/show.rb +19 -0
  46. data/lib/npr/entity/story.rb +179 -0
  47. data/lib/npr/entity/text.rb +22 -0
  48. data/lib/npr/entity/title.rb +21 -0
  49. data/lib/npr/entity/transcript.rb +16 -0
  50. data/lib/npr/entity.rb +7 -0
  51. data/lib/npr/errors.rb +17 -0
  52. data/lib/npr/version.rb +1 -1
  53. data/lib/npr.rb +64 -3
  54. data/npr.gemspec +12 -2
  55. data/spec/fixtures/README.md +30 -0
  56. data/spec/fixtures/atom/01_story_full_media.atom +36 -0
  57. data/spec/fixtures/atom/02_story_multiple_images.atom +32 -0
  58. data/spec/fixtures/atom/03_no_results.atom +10 -0
  59. data/spec/fixtures/atom/04_invalid_id.atom +344 -0
  60. data/spec/fixtures/atom/05_no_api_key.atom +9 -0
  61. data/spec/fixtures/atom/06_story_multiple_ids.atom +59 -0
  62. data/spec/fixtures/fetch_formats.rb +65 -0
  63. data/spec/fixtures/html/01_story_full_media.html +54 -0
  64. data/spec/fixtures/html/02_story_multiple_images.html +55 -0
  65. data/spec/fixtures/html/03_no_results.html +38 -0
  66. data/spec/fixtures/html/04_invalid_id.html +82 -0
  67. data/spec/fixtures/html/05_no_api_key.html +8 -0
  68. data/spec/fixtures/html/06_story_multiple_ids.html +69 -0
  69. data/spec/fixtures/js/01_story_full_media.js +1 -0
  70. data/spec/fixtures/js/02_story_multiple_images.js +1 -0
  71. data/spec/fixtures/js/03_no_results.js +1 -0
  72. data/spec/fixtures/js/04_invalid_id.js +1 -0
  73. data/spec/fixtures/js/05_no_api_key.js +8 -0
  74. data/spec/fixtures/js/06_story_multiple_ids.js +1 -0
  75. data/spec/fixtures/json/01_story_full_media.json +1 -0
  76. data/spec/fixtures/json/02_story_multiple_images.json +1 -0
  77. data/spec/fixtures/json/03_no_results.json +1 -0
  78. data/spec/fixtures/json/04_invalid_id.json +1 -0
  79. data/spec/fixtures/json/05_no_api_key.json +1 -0
  80. data/spec/fixtures/json/06_story_multiple_ids.json +1 -0
  81. data/spec/fixtures/json/list.json +1 -0
  82. data/spec/fixtures/mediarss/01_story_full_media.rss +31 -0
  83. data/spec/fixtures/mediarss/02_story_multiple_images.rss +40 -0
  84. data/spec/fixtures/mediarss/03_no_results.rss +17 -0
  85. data/spec/fixtures/mediarss/04_invalid_id.rss +279 -0
  86. data/spec/fixtures/mediarss/05_no_api_key.rss +31 -0
  87. data/spec/fixtures/mediarss/06_story_multiple_ids.rss +65 -0
  88. data/spec/fixtures/nprml/01_story_full_media.xml +271 -0
  89. data/spec/fixtures/nprml/02_story_multiple_images.xml +165 -0
  90. data/spec/fixtures/nprml/03_no_results.xml +14 -0
  91. data/spec/fixtures/nprml/04_invalid_id.xml +1780 -0
  92. data/spec/fixtures/nprml/05_no_api_key.xml +9 -0
  93. data/spec/fixtures/nprml/06_story_multiple_ids.xml +435 -0
  94. data/spec/fixtures/nprml/list.xml +440 -0
  95. data/spec/fixtures/podcast/01_story_full_media.rss +30 -0
  96. data/spec/fixtures/podcast/02_story_multiple_images.rss +32 -0
  97. data/spec/fixtures/podcast/03_no_results.rss +19 -0
  98. data/spec/fixtures/podcast/04_invalid_id.rss +186 -0
  99. data/spec/fixtures/podcast/05_no_api_key.rss +31 -0
  100. data/spec/fixtures/podcast/06_story_multiple_ids.rss +43 -0
  101. data/spec/fixtures/rss/01_story_full_media.rss +25 -0
  102. data/spec/fixtures/rss/02_story_multiple_images.rss +25 -0
  103. data/spec/fixtures/rss/03_no_results.rss +17 -0
  104. data/spec/fixtures/rss/04_invalid_id.rss +137 -0
  105. data/spec/fixtures/rss/05_no_api_key.rss +31 -0
  106. data/spec/fixtures/rss/06_story_multiple_ids.rss +33 -0
  107. data/spec/spec_helper.rb +23 -0
  108. data/spec/support/config_helper.rb +64 -0
  109. data/spec/support/fake_response.rb +54 -0
  110. data/spec/support/fixture_helper.rb +23 -0
  111. data/spec/unit/api/client_spec.rb +42 -0
  112. data/spec/unit/api/message_spec.rb +68 -0
  113. data/spec/unit/api/query_builder_spec.rb +195 -0
  114. data/spec/unit/api/response_spec.rb +45 -0
  115. data/spec/unit/configuration_spec.rb +63 -0
  116. data/spec/unit/entity/audio_spec.rb +75 -0
  117. data/spec/unit/entity/author_spec.rb +30 -0
  118. data/spec/unit/entity/base_spec.rb +87 -0
  119. data/spec/unit/entity/book_edition_spec.rb +57 -0
  120. data/spec/unit/entity/book_spec.rb +31 -0
  121. data/spec/unit/entity/byline_spec.rb +23 -0
  122. data/spec/unit/entity/collection_spec.rb +39 -0
  123. data/spec/unit/entity/crop_spec.rb +25 -0
  124. data/spec/unit/entity/englargement_spec.rb +21 -0
  125. data/spec/unit/entity/formats_spec.rb +41 -0
  126. data/spec/unit/entity/image_spec.rb +82 -0
  127. data/spec/unit/entity/intro_text_spec.rb +25 -0
  128. data/spec/unit/entity/link_spec.rb +25 -0
  129. data/spec/unit/entity/list_spec.rb +22 -0
  130. data/spec/unit/entity/list_text_spec.rb +31 -0
  131. data/spec/unit/entity/member_byline_spec.rb +21 -0
  132. data/spec/unit/entity/member_promo_art_spec.rb +21 -0
  133. data/spec/unit/entity/member_spec.rb +59 -0
  134. data/spec/unit/entity/mp3_spec.rb +25 -0
  135. data/spec/unit/entity/organization_spec.rb +29 -0
  136. data/spec/unit/entity/paragraph_spec.rb +25 -0
  137. data/spec/unit/entity/permissions_spec.rb +56 -0
  138. data/spec/unit/entity/program_spec.rb +27 -0
  139. data/spec/unit/entity/promo_art_book_edition_spec.rb +21 -0
  140. data/spec/unit/entity/promo_art_spec.rb +42 -0
  141. data/spec/unit/entity/pull_quote_spec.rb +29 -0
  142. data/spec/unit/entity/related_link_spec.rb +55 -0
  143. data/spec/unit/entity/show_spec.rb +41 -0
  144. data/spec/unit/entity/story_spec.rb +154 -0
  145. data/spec/unit/entity/text_spec.rb +54 -0
  146. data/spec/unit/entity/title_spec.rb +25 -0
  147. data/spec/unit/entity/transcript_spec.rb +22 -0
  148. metadata +340 -8
@@ -0,0 +1,186 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss xmlns:npr="http://www.npr.org/rss/" xmlns:nprml="http://api.npr.org/nprml" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
3
+ <channel>
4
+ <title>NPR: Stories from NPR</title>
5
+ <link>http://www.npr.org</link>
6
+ <description>Assorted stories from NPR</description>
7
+ <language>en</language>
8
+ <copyright>Copyright 2012 NPR - For Personal Use Only</copyright>
9
+ <generator>NPR API RSS Generator 0.94</generator>
10
+ <lastBuildDate>Thu, 13 Dec 2012 11:25:00 -0500</lastBuildDate>
11
+ <image>
12
+ <url>http://media.npr.org/images/podcasts/thumbnail/npr_generic_image_75.jpg</url>
13
+ <title>NPR: Stories from NPR</title>
14
+ <link>http://www.npr.org</link>
15
+ </image>
16
+ <itunes:block/>
17
+ <itunes:image href="http://media.npr.org/images/podcasts/primary/npr_generic_image_300.jpg"/>
18
+ <item>
19
+ <title>On 'Fiscal Cliff,' Majority Of Public Sides With Democrats, Pew Poll Says</title>
20
+ <description>Fifty-five percent of those surveyed said President Obama is making a "serious effort" to work with Republicans. Just 32 percent said Republicans are making a serious effort to work with the Democratic president.</description>
21
+ <pubDate>Thu, 13 Dec 2012 11:25:00 -0500</pubDate>
22
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says?ft=1&amp;f=</link>
23
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says?ft=1&amp;f=</guid>
24
+ <itunes:summary>Fifty-five percent of those surveyed said President Obama is making a "serious effort" to work with Republicans. Just 32 percent said Republicans are making a serious effort to work with the Democratic president.</itunes:summary>
25
+ <itunes:keywords/>
26
+ <itunes:explicit>no</itunes:explicit>
27
+ <content:encoded><![CDATA[<p>Fifty-five percent of those surveyed said President Obama is making a "serious effort" to work with Republicans. Just 32 percent said Republicans are making a serious effort to work with the Democratic president.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167159547">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167159547">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
28
+ </item>
29
+ <item>
30
+ <title>It's ScuttleButton Time!</title>
31
+ <description>This is the last ScuttleButton puzzle for 2012 — and your last chance to win a Political Junkie t-shirt and Official No-Prize button! (until next year, of course)</description>
32
+ <pubDate>Thu, 13 Dec 2012 13:48:00 -0500</pubDate>
33
+ <link>http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time?ft=1&amp;f=</link>
34
+ <guid>http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time?ft=1&amp;f=</guid>
35
+ <itunes:summary>This is the last ScuttleButton puzzle for 2012 — and your last chance to win a Political Junkie t-shirt and Official No-Prize button! (until next year, of course)</itunes:summary>
36
+ <itunes:keywords/>
37
+ <itunes:explicit>no</itunes:explicit>
38
+ <content:encoded><![CDATA[<p>This is the last ScuttleButton puzzle for 2012 — and your last chance to win a Political Junkie t-shirt and Official No-Prize button! (until next year, of course)</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167177687">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167177687">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
39
+ </item>
40
+ <item>
41
+ <title>Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel </title>
42
+ <description>M75 fragrances for men and women get their name from rockets fired from Gaza into Israel in November. Sales have been soaring, shopkeepers say. No, they don't smell like rocket fuel. They're citrus-scented.</description>
43
+ <pubDate>Thu, 13 Dec 2012 13:15:00 -0500</pubDate>
44
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel?ft=1&amp;f=</link>
45
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel?ft=1&amp;f=</guid>
46
+ <itunes:summary>M75 fragrances for men and women get their name from rockets fired from Gaza into Israel in November. Sales have been soaring, shopkeepers say. No, they don't smell like rocket fuel. They're citrus-scented.</itunes:summary>
47
+ <itunes:keywords/>
48
+ <itunes:explicit>no</itunes:explicit>
49
+ <content:encoded><![CDATA[<p>M75 fragrances for men and women get their name from rockets fired from Gaza into Israel in November. Sales have been soaring, shopkeepers say. No, they don't smell like rocket fuel. They're citrus-scented.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167171524">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167171524">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
50
+ </item>
51
+ <item>
52
+ <title>One Photo, 126 Frames, 2 Billion Leaves, 247 Feet</title>
53
+ <description>Those numbers represent one giant sequoia. Oh, also: The "President," as it's called, is more than 3,000 years old.</description>
54
+ <pubDate>Thu, 13 Dec 2012 13:01:00 -0500</pubDate>
55
+ <link>http://www.npr.org/blogs/pictureshow/2012/12/13/167163801/one-photo-126-frames-2-billion-leaves-247-feet?ft=1&amp;f=</link>
56
+ <guid>http://www.npr.org/blogs/pictureshow/2012/12/13/167163801/one-photo-126-frames-2-billion-leaves-247-feet?ft=1&amp;f=</guid>
57
+ <itunes:summary>Those numbers represent one giant sequoia. Oh, also: The "President," as it's called, is more than 3,000 years old.</itunes:summary>
58
+ <itunes:keywords/>
59
+ <itunes:explicit>no</itunes:explicit>
60
+ <content:encoded><![CDATA[<p>Those numbers represent one giant sequoia. Oh, also: The "President," as it's called, is more than 3,000 years old.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167163801">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167163801">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
61
+ </item>
62
+ <item>
63
+ <title>NCAA Shake-Up: The Future Of College Athletics</title>
64
+ <description>In 2013 and 2014, there will be a number of substantial realignments in the NCAA conferences. Some believe that the realignment process will ultimately result in the creation of four "super conferences." NPR's Mike Pesca talks about how conference shifts could effect the future of college athletics.</description>
65
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
66
+ <link>http://www.npr.org/2012/12/13/167180401/ncaa-shake-up-the-future-of-college-athletics?ft=1&amp;f=</link>
67
+ <guid>http://www.npr.org/2012/12/13/167180401/ncaa-shake-up-the-future-of-college-athletics?ft=1&amp;f=</guid>
68
+ <itunes:summary>In 2013 and 2014, there will be a number of substantial realignments in the NCAA conferences. Some believe that the realignment process will ultimately result in the creation of four "super conferences." NPR's Mike Pesca talks about how conference shifts could effect the future of college athletics.</itunes:summary>
69
+ <itunes:keywords/>
70
+ <itunes:explicit>no</itunes:explicit>
71
+ <content:encoded><![CDATA[<p>In 2013 and 2014, there will be a number of substantial realignments in the NCAA conferences. Some believe that the realignment process will ultimately result in the creation of four "super conferences." NPR's Mike Pesca talks about how conference shifts could effect the future of college athletics.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180401">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180401">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
72
+ </item>
73
+ <item>
74
+ <title>10 Artists You Should Have Known In 2012</title>
75
+ <description>It's hard to keep track of new artists these days. So we asked our colleagues around the country to recommend recent discoveries from their communities. Download 10 songs that helped put these musicians on the map in 2012.</description>
76
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
77
+ <link>http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012?ft=1&amp;f=</link>
78
+ <guid>http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012?ft=1&amp;f=</guid>
79
+ <itunes:summary>It's hard to keep track of new artists these days. So we asked our colleagues around the country to recommend recent discoveries from their communities. Download 10 songs that helped put these musicians on the map in 2012.</itunes:summary>
80
+ <itunes:keywords/>
81
+ <itunes:explicit>no</itunes:explicit>
82
+ <content:encoded><![CDATA[<p>It's hard to keep track of new artists these days. So we asked our colleagues around the country to recommend recent discoveries from their communities. Download 10 songs that helped put these musicians on the map in 2012.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=166745766">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D166745766">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
83
+ </item>
84
+ <item>
85
+ <title>Options For Intervention In Mali's Growing Crisis</title>
86
+ <description>A military coup brought down Mali's prime minister in March, allowing radical Islamists from Mali and surrounding areas to take hold of an area the size of Texas. As al-Qaida-linked militants take over the northern part of the country, many wonder what the U.S. and other can do to intervene.</description>
87
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
88
+ <link>http://www.npr.org/2012/12/13/167180399/options-for-intervention-in-malis-growing-crisis?ft=1&amp;f=</link>
89
+ <guid>http://www.npr.org/2012/12/13/167180399/options-for-intervention-in-malis-growing-crisis?ft=1&amp;f=</guid>
90
+ <itunes:summary>A military coup brought down Mali's prime minister in March, allowing radical Islamists from Mali and surrounding areas to take hold of an area the size of Texas. As al-Qaida-linked militants take over the northern part of the country, many wonder what the U.S. and other can do to intervene.</itunes:summary>
91
+ <itunes:keywords/>
92
+ <itunes:explicit>no</itunes:explicit>
93
+ <content:encoded><![CDATA[<p>A military coup brought down Mali's prime minister in March, allowing radical Islamists from Mali and surrounding areas to take hold of an area the size of Texas. As al-Qaida-linked militants take over the northern part of the country, many wonder what the U.S. and other can do to intervene.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180399">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180399">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
94
+ </item>
95
+ <item>
96
+ <title>Drought Continues: Farmers, Shippers Feel Pressure</title>
97
+ <description>The United States is facing its worst drought since the 1950s, according to the National Oceanic and Atmospheric Administration. With little to no signs of relief on the horizon, many analysts expect conditions to worsen well into next year.</description>
98
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
99
+ <link>http://www.npr.org/2012/12/13/167180403/drought-continues-farmers-shippers-feel-pressure?ft=1&amp;f=</link>
100
+ <guid>http://www.npr.org/2012/12/13/167180403/drought-continues-farmers-shippers-feel-pressure?ft=1&amp;f=</guid>
101
+ <itunes:summary>The United States is facing its worst drought since the 1950s, according to the National Oceanic and Atmospheric Administration. With little to no signs of relief on the horizon, many analysts expect conditions to worsen well into next year.</itunes:summary>
102
+ <itunes:keywords/>
103
+ <itunes:explicit>no</itunes:explicit>
104
+ <content:encoded><![CDATA[<p>The United States is facing its worst drought since the 1950s, according to the National Oceanic and Atmospheric Administration. With little to no signs of relief on the horizon, many analysts expect conditions to worsen well into next year.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180403">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180403">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
105
+ </item>
106
+ <item>
107
+ <title>Open Or Closed-Book Exams: Which Style Works Best?</title>
108
+ <description>Afshin Gharib, a psychology professor at Dominican University of California, prefers to give open-book tests. His colleague William Phillips only lets students use cheat sheets. After several arguments about the techniques, they decided to conduct an experiment to find out which method works best.</description>
109
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
110
+ <link>http://www.npr.org/2012/12/13/167180405/open-or-closed-book-exams-which-style-works-best?ft=1&amp;f=</link>
111
+ <guid>http://www.npr.org/2012/12/13/167180405/open-or-closed-book-exams-which-style-works-best?ft=1&amp;f=</guid>
112
+ <itunes:summary>Afshin Gharib, a psychology professor at Dominican University of California, prefers to give open-book tests. His colleague William Phillips only lets students use cheat sheets. After several arguments about the techniques, they decided to conduct an experiment to find out which method works best.</itunes:summary>
113
+ <itunes:keywords/>
114
+ <itunes:explicit>no</itunes:explicit>
115
+ <content:encoded><![CDATA[<p>Afshin Gharib, a psychology professor at Dominican University of California, prefers to give open-book tests. His colleague William Phillips only lets students use cheat sheets. After several arguments about the techniques, they decided to conduct an experiment to find out which method works best.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180405">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180405">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
116
+ </item>
117
+ <item>
118
+ <title>No Alarm Sounded When The West Virginia Pipeline Exploded</title>
119
+ <description>The NTSB is investigating why no warning sounded in the control center of pipeline operator, Columbia Gas Transmission, when the explosion occurred.</description>
120
+ <pubDate>Thu, 13 Dec 2012 12:26:00 -0500</pubDate>
121
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167169109/no-alarm-sounded-when-the-west-virginia-pipeline-exploded?ft=1&amp;f=</link>
122
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167169109/no-alarm-sounded-when-the-west-virginia-pipeline-exploded?ft=1&amp;f=</guid>
123
+ <itunes:summary>The NTSB is investigating why no warning sounded in the control center of pipeline operator, Columbia Gas Transmission, when the explosion occurred.</itunes:summary>
124
+ <itunes:keywords/>
125
+ <itunes:explicit>no</itunes:explicit>
126
+ <content:encoded><![CDATA[<p>The NTSB is investigating why no warning sounded in the control center of pipeline operator, Columbia Gas Transmission, when the explosion occurred.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167169109">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167169109">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
127
+ </item>
128
+ <item>
129
+ <title>Caution: Walking Under The Influence Of Mobile Devices</title>
130
+ <description>Nearly a third of pedestrians crossing som of Seattle's most dangerous intersections were were doing something distracting at the same time. People texting were four times more likely to cross the street without looking both ways.</description>
131
+ <pubDate>Thu, 13 Dec 2012 12:18:00 -0500</pubDate>
132
+ <link>http://www.npr.org/blogs/health/2012/12/13/167150785/caution-walking-under-the-influence-of-mobile-devices?ft=1&amp;f=</link>
133
+ <guid>http://www.npr.org/blogs/health/2012/12/13/167150785/caution-walking-under-the-influence-of-mobile-devices?ft=1&amp;f=</guid>
134
+ <itunes:summary>Nearly a third of pedestrians crossing som of Seattle's most dangerous intersections were were doing something distracting at the same time. People texting were four times more likely to cross the street without looking both ways.</itunes:summary>
135
+ <itunes:keywords/>
136
+ <itunes:explicit>no</itunes:explicit>
137
+ <content:encoded><![CDATA[<p>Nearly a third of pedestrians crossing som of Seattle's most dangerous intersections were were doing something distracting at the same time. People texting were four times more likely to cross the street without looking both ways.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167150785">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167150785">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
138
+ </item>
139
+ <item>
140
+ <title>From A Life Of Crime To Designing Jewelry, All In A Nairobi Slum </title>
141
+ <description>Zakale Creations is a jewelry-designing operation that employs 30 young people — former thieves and prostitutes. The Nairobi-based operation is the brainchild of John Mucheru, himself a former mugger.</description>
142
+ <pubDate>Thu, 13 Dec 2012 12:16:00 -0500</pubDate>
143
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/12/167120895/from-a-life-of-crime-to-designing-jewelry-all-in-a-nairobi-slum?ft=1&amp;f=</link>
144
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/12/167120895/from-a-life-of-crime-to-designing-jewelry-all-in-a-nairobi-slum?ft=1&amp;f=</guid>
145
+ <itunes:summary>Zakale Creations is a jewelry-designing operation that employs 30 young people — former thieves and prostitutes. The Nairobi-based operation is the brainchild of John Mucheru, himself a former mugger.</itunes:summary>
146
+ <itunes:keywords/>
147
+ <itunes:explicit>no</itunes:explicit>
148
+ <content:encoded><![CDATA[<p>Zakale Creations is a jewelry-designing operation that employs 30 young people — former thieves and prostitutes. The Nairobi-based operation is the brainchild of John Mucheru, himself a former mugger.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167120895">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167120895">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
149
+ </item>
150
+ <item>
151
+ <title>Here's Some Good News: Volunteering Is On The Rise </title>
152
+ <description>A holiday reminder of how generous many Americans are: More than 64 million people volunteered through a formal organization in 2011, a new report shows. That was up from the year before and part of a trend.</description>
153
+ <pubDate>Thu, 13 Dec 2012 12:09:00 -0500</pubDate>
154
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167165264/heres-some-good-news-volunteering-is-on-the-rise?ft=1&amp;f=</link>
155
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167165264/heres-some-good-news-volunteering-is-on-the-rise?ft=1&amp;f=</guid>
156
+ <itunes:summary>A holiday reminder of how generous many Americans are: More than 64 million people volunteered through a formal organization in 2011, a new report shows. That was up from the year before and part of a trend.</itunes:summary>
157
+ <itunes:keywords/>
158
+ <itunes:explicit>no</itunes:explicit>
159
+ <content:encoded><![CDATA[<p>A holiday reminder of how generous many Americans are: More than 64 million people volunteered through a formal organization in 2011, a new report shows. That was up from the year before and part of a trend.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167165264">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167165264">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
160
+ </item>
161
+ <item>
162
+ <title>Promiscuous Males And Choosy Females? Challenging A Classic Experiment</title>
163
+ <description>We've all heard them: explanations rooted in evolutionary biology for why "promiscuous" males mate with many more partners than "choosy" females. Barbara J. King traces these widespread assumptions to a famous 1948 study on fruitflies — a study that a group of modern-day scientists now say was badly flawed.</description>
164
+ <pubDate>Thu, 13 Dec 2012 12:01:00 -0500</pubDate>
165
+ <link>http://www.npr.org/blogs/13.7/2012/12/13/166953517/promiscuous-males-and-choosy-females-challenging-a-classic-experiment?ft=1&amp;f=</link>
166
+ <guid>http://www.npr.org/blogs/13.7/2012/12/13/166953517/promiscuous-males-and-choosy-females-challenging-a-classic-experiment?ft=1&amp;f=</guid>
167
+ <itunes:summary>We've all heard them: explanations rooted in evolutionary biology for why "promiscuous" males mate with many more partners than "choosy" females. Barbara J. King traces these widespread assumptions to a famous 1948 study on fruitflies — a study that a group of modern-day scientists now say was badly flawed.</itunes:summary>
168
+ <itunes:keywords/>
169
+ <itunes:explicit>no</itunes:explicit>
170
+ <content:encoded><![CDATA[<p>We've all heard them: explanations rooted in evolutionary biology for why "promiscuous" males mate with many more partners than "choosy" females. Barbara J. King traces these widespread assumptions to a famous 1948 study on fruitflies — a study that a group of modern-day scientists now say was badly flawed.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=166953517">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D166953517">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
171
+ </item>
172
+ <item>
173
+ <title>The Steamy Inspiration Of Miguel's Music</title>
174
+ <description>Six-time Grammy nominee Miguel is heating up the airwaves with his newest album, &lt;em&gt;Kaleidoscope Dream&lt;/em&gt;. Miguel sat down with host Michel Martin to discuss his musical style and why he wants to challenge stereotypes about R&amp;B. &lt;strong&gt;*Advisory: &lt;/strong&gt; This conversation may not be suitable for all listeners.</description>
175
+ <pubDate>Thu, 13 Dec 2012 14:07:00 -0500</pubDate>
176
+ <link>http://www.npr.org/2012/12/13/167164055/the-steamy-inspiration-of-miguels-music?ft=1&amp;f=</link>
177
+ <guid>http://www.npr.org/2012/12/13/167164055/the-steamy-inspiration-of-miguels-music?ft=1&amp;f=</guid>
178
+ <itunes:summary>Six-time Grammy nominee Miguel is heating up the airwaves with his newest album, &lt;em&gt;Kaleidoscope Dream&lt;/em&gt;. Miguel sat down with host Michel Martin to discuss his musical style and why he wants to challenge stereotypes about R&amp;B. &lt;strong&gt;*Advisory: &lt;/strong&gt; This conversation may not be suitable for all listeners.</itunes:summary>
179
+ <itunes:keywords/>
180
+ <itunes:duration>784</itunes:duration>
181
+ <itunes:explicit>no</itunes:explicit>
182
+ <content:encoded><![CDATA[<p>Six-time Grammy nominee Miguel is heating up the airwaves with his newest album, <em>Kaleidoscope Dream</em>. Miguel sat down with host Michel Martin to discuss his musical style and why he wants to challenge stereotypes about R&B. <strong>*Advisory: </strong> This conversation may not be suitable for all listeners.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167164055">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167164055">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
183
+ <enclosure url="http://public.npr.org/anon.npr-mp3/npr/tmm/2012/12/20121213_tmm_04.mp3?sc=16&amp;orgId=1&amp;forsearch=0&amp;topicId=1105&amp;ft=1&amp;f=" length="100000" type="audio/mpeg"/>
184
+ </item>
185
+ </channel>
186
+ </rss>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0"?>
2
+ <rss xmlns:npr="http://www.npr.org/podcasts/" version="2.0">
3
+ <channel>
4
+ <title>Podcast Error</title>
5
+ <link>http://www.npr.org/podcasts/index.html</link>
6
+ <description>Podcast Error</description>
7
+ <copyright>
8
+ Copyright 2005 NPR - For Personal Use Only
9
+ </copyright>
10
+ <generator>NPR/RSS Generator 2.0</generator>
11
+ <lastBuildDate>Wed, 5 May 2005 00:00:00 EDT</lastBuildDate>
12
+ <image> <title>Podcast Error</title>
13
+ <url>http://www.npr.org/images/npr_news_123x20.gif</url>
14
+ <link>
15
+ http://www.npr.org/podcasts/index.html</link>
16
+ </image>
17
+ <item>
18
+ <title>NPR Podcast Error</title>
19
+ <description>
20
+ This is an invalid Podcast feed address. For the most up-to-date list, please go to: http://www.npr.org/podcasts/
21
+ </description>
22
+ <link>
23
+ http://www.npr.org/podcasts/index.html
24
+ </link>
25
+ <guid>
26
+ http://www.npr.org/podcasts/index.html
27
+ </guid>
28
+ <pubDate>Wed, 15 May 2005 03:00:00 EDT</pubDate>
29
+ </item>
30
+ </channel>
31
+ </rss>
@@ -0,0 +1,43 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss xmlns:npr="http://www.npr.org/rss/" xmlns:nprml="http://api.npr.org/nprml" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
3
+ <channel>
4
+ <title>NPR: Stories from NPR</title>
5
+ <link>http://www.npr.org</link>
6
+ <description>Assorted stories from NPR</description>
7
+ <language>en</language>
8
+ <copyright>Copyright 2012 NPR - For Personal Use Only</copyright>
9
+ <generator>NPR API RSS Generator 0.94</generator>
10
+ <lastBuildDate>Thu, 13 Dec 2012 14:53:00 -0500</lastBuildDate>
11
+ <image>
12
+ <url>http://media.npr.org/images/podcasts/thumbnail/npr_generic_image_75.jpg</url>
13
+ <title>NPR: Stories from NPR</title>
14
+ <link>http://www.npr.org</link>
15
+ </image>
16
+ <itunes:block/>
17
+ <itunes:image href="http://media.npr.org/images/podcasts/primary/npr_generic_image_300.jpg"/>
18
+ <item>
19
+ <title>Why Legos Are So Expensive — And So Popular</title>
20
+ <description>Legos often cost twice as much as similar blocks from a rival toymaker. So why are Legos so much more popular than other brands?</description>
21
+ <pubDate>Thu, 13 Dec 2012 14:53:00 -0500</pubDate>
22
+ <link>http://www.npr.org/blogs/money/2012/12/13/167055503/why-legos-are-so-expensive-and-so-popular?ft=1&amp;f=166956822,167055503</link>
23
+ <guid>http://www.npr.org/blogs/money/2012/12/13/167055503/why-legos-are-so-expensive-and-so-popular?ft=1&amp;f=166956822,167055503</guid>
24
+ <itunes:summary>Legos often cost twice as much as similar blocks from a rival toymaker. So why are Legos so much more popular than other brands?</itunes:summary>
25
+ <itunes:keywords/>
26
+ <itunes:duration>295</itunes:duration>
27
+ <itunes:explicit>no</itunes:explicit>
28
+ <content:encoded><![CDATA[<p>Legos often cost twice as much as similar blocks from a rival toymaker. So why are Legos so much more popular than other brands?</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167055503">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167055503">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
29
+ <enclosure url="http://public.npr.org/anon.npr-mp3/npr/atc/2012/12/20121213_atc_17.mp3?sc=16&amp;orgId=1&amp;forsearch=0&amp;topicId=1006&amp;ft=1&amp;f=166956822,167055503" length="100000" type="audio/mpeg"/>
30
+ </item>
31
+ <item>
32
+ <title>How The Rich Feel About Paying More Taxes</title>
33
+ <description>Many people earning more than $250,000 a year — the 2 percent — admit they can afford to pay more in taxes. However, they don't necessarily like the idea, especially when they're made to feel like skinflints even though they're already sending significant sums to Washington.</description>
34
+ <pubDate>Thu, 13 Dec 2012 11:22:00 -0500</pubDate>
35
+ <link>http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes?ft=1&amp;f=166956822,167055503</link>
36
+ <guid>http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes?ft=1&amp;f=166956822,167055503</guid>
37
+ <itunes:summary>Many people earning more than $250,000 a year — the 2 percent — admit they can afford to pay more in taxes. However, they don't necessarily like the idea, especially when they're made to feel like skinflints even though they're already sending significant sums to Washington.</itunes:summary>
38
+ <itunes:keywords/>
39
+ <itunes:explicit>no</itunes:explicit>
40
+ <content:encoded><![CDATA[<p>Many people earning more than $250,000 a year — the 2 percent — admit they can afford to pay more in taxes. However, they don't necessarily like the idea, especially when they're made to feel like skinflints even though they're already sending significant sums to Washington.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=166956822">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D166956822">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
41
+ </item>
42
+ </channel>
43
+ </rss>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss xmlns:npr="http://www.npr.org/rss/" xmlns:nprml="http://api.npr.org/nprml" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
3
+ <channel>
4
+ <title>NPR: Stories from NPR</title>
5
+ <link>http://www.npr.org</link>
6
+ <description>Assorted stories from NPR</description>
7
+ <language>en</language>
8
+ <copyright>Copyright 2012 NPR - For Personal Use Only</copyright>
9
+ <generator>NPR API RSS Generator 0.94</generator>
10
+ <lastBuildDate>Wed, 12 Dec 2012 00:30:00 -0500</lastBuildDate>
11
+ <image>
12
+ <url>http://media.npr.org/images/npr_news_123x20.gif</url>
13
+ <title>NPR: Stories from NPR</title>
14
+ <link>http://www.npr.org</link>
15
+ </image>
16
+ <item>
17
+ <title>Ravi Shankar, Who Brought Eastern Music To Western Legends, Dies</title>
18
+ <description>When he was just 10 years old, Shankar began performing in Europe and the US with his family's Indian dance troupe. But at age 18, Shankar gave up all the glitter to study with a guru who taught him the sitar. He became a master, and introduced the West to his country's music.</description>
19
+ <pubDate>Wed, 12 Dec 2012 00:30:00 -0500</pubDate>
20
+ <link>http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies?ft=1&amp;f=167019577</link>
21
+ <guid>http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies?ft=1&amp;f=167019577</guid>
22
+ <content:encoded><![CDATA[<p>When he was just 10 years old, Shankar began performing in Europe and the US with his family's Indian dance troupe. But at age 18, Shankar gave up all the glitter to study with a guru who taught him the sitar. He became a master, and introduced the West to his country's music.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167019577">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167019577">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
23
+ </item>
24
+ </channel>
25
+ </rss>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss xmlns:npr="http://www.npr.org/rss/" xmlns:nprml="http://api.npr.org/nprml" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
3
+ <channel>
4
+ <title>NPR: Stories from NPR</title>
5
+ <link>http://www.npr.org</link>
6
+ <description>Assorted stories from NPR</description>
7
+ <language>en</language>
8
+ <copyright>Copyright 2012 NPR - For Personal Use Only</copyright>
9
+ <generator>NPR API RSS Generator 0.94</generator>
10
+ <lastBuildDate>Tue, 11 Dec 2012 15:24:00 -0500</lastBuildDate>
11
+ <image>
12
+ <url>http://media.npr.org/images/npr_news_123x20.gif</url>
13
+ <title>NPR: Stories from NPR</title>
14
+ <link>http://www.npr.org</link>
15
+ </image>
16
+ <item>
17
+ <title>In Freedom, Ex-Felon Becomes Probation Counselor </title>
18
+ <description>The federal probation office in St. Louis has one of the biggest caseloads of violent offenders in the country — and one of the lowest recidivism rates. That's in part because of a former felon who knows how to keep ex-offenders from returning to prison.</description>
19
+ <pubDate>Tue, 11 Dec 2012 15:24:00 -0500</pubDate>
20
+ <link>http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor?ft=1&amp;f=166884441</link>
21
+ <guid>http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor?ft=1&amp;f=166884441</guid>
22
+ <content:encoded><![CDATA[<p>The federal probation office in St. Louis has one of the biggest caseloads of violent offenders in the country — and one of the lowest recidivism rates. That's in part because of a former felon who knows how to keep ex-offenders from returning to prison.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=166884441">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D166884441">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
23
+ </item>
24
+ </channel>
25
+ </rss>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss xmlns:npr="http://www.npr.org/rss/" xmlns:nprml="http://api.npr.org/nprml" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
3
+ <channel>
4
+ <title>NPR: Stories from NPR</title>
5
+ <link>http://www.npr.org</link>
6
+ <description>Assorted stories from NPR</description>
7
+ <language>en</language>
8
+ <copyright>Copyright 2012 NPR - For Personal Use Only</copyright>
9
+ <generator>NPR API RSS Generator 0.94</generator>
10
+ <lastBuildDate/>
11
+ <image>
12
+ <url>http://media.npr.org/images/npr_news_123x20.gif</url>
13
+ <title>NPR: Stories from NPR</title>
14
+ <link>http://www.npr.org</link>
15
+ </image>
16
+ </channel>
17
+ </rss>
@@ -0,0 +1,137 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss xmlns:npr="http://www.npr.org/rss/" xmlns:nprml="http://api.npr.org/nprml" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
3
+ <channel>
4
+ <title>NPR: Stories from NPR</title>
5
+ <link>http://www.npr.org</link>
6
+ <description>Assorted stories from NPR</description>
7
+ <language>en</language>
8
+ <copyright>Copyright 2012 NPR - For Personal Use Only</copyright>
9
+ <generator>NPR API RSS Generator 0.94</generator>
10
+ <lastBuildDate>Thu, 13 Dec 2012 11:25:00 -0500</lastBuildDate>
11
+ <image>
12
+ <url>http://media.npr.org/images/npr_news_123x20.gif</url>
13
+ <title>NPR: Stories from NPR</title>
14
+ <link>http://www.npr.org</link>
15
+ </image>
16
+ <item>
17
+ <title>On 'Fiscal Cliff,' Majority Of Public Sides With Democrats, Pew Poll Says</title>
18
+ <description>Fifty-five percent of those surveyed said President Obama is making a "serious effort" to work with Republicans. Just 32 percent said Republicans are making a serious effort to work with the Democratic president.</description>
19
+ <pubDate>Thu, 13 Dec 2012 11:25:00 -0500</pubDate>
20
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says?ft=1&amp;f=</link>
21
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says?ft=1&amp;f=</guid>
22
+ <content:encoded><![CDATA[<p>Fifty-five percent of those surveyed said President Obama is making a "serious effort" to work with Republicans. Just 32 percent said Republicans are making a serious effort to work with the Democratic president.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167159547">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167159547">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
23
+ </item>
24
+ <item>
25
+ <title>It's ScuttleButton Time!</title>
26
+ <description>This is the last ScuttleButton puzzle for 2012 — and your last chance to win a Political Junkie t-shirt and Official No-Prize button! (until next year, of course)</description>
27
+ <pubDate>Thu, 13 Dec 2012 13:48:00 -0500</pubDate>
28
+ <link>http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time?ft=1&amp;f=</link>
29
+ <guid>http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time?ft=1&amp;f=</guid>
30
+ <content:encoded><![CDATA[<p>This is the last ScuttleButton puzzle for 2012 — and your last chance to win a Political Junkie t-shirt and Official No-Prize button! (until next year, of course)</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167177687">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167177687">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
31
+ </item>
32
+ <item>
33
+ <title>Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel </title>
34
+ <description>M75 fragrances for men and women get their name from rockets fired from Gaza into Israel in November. Sales have been soaring, shopkeepers say. No, they don't smell like rocket fuel. They're citrus-scented.</description>
35
+ <pubDate>Thu, 13 Dec 2012 13:15:00 -0500</pubDate>
36
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel?ft=1&amp;f=</link>
37
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel?ft=1&amp;f=</guid>
38
+ <content:encoded><![CDATA[<p>M75 fragrances for men and women get their name from rockets fired from Gaza into Israel in November. Sales have been soaring, shopkeepers say. No, they don't smell like rocket fuel. They're citrus-scented.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167171524">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167171524">&raquo; Add to Del.icio.us</a></p><a rel="nofollow" href="http://ad.doubleclick.net/jump/n6735.NPR/no_topic;sz=300x80;ord=416658093"><img alt="" src="http://ad.doubleclick.net/ad/n6735.NPR/no_topic;sz=300x80;ord=416658093"/></a>]]></content:encoded>
39
+ </item>
40
+ <item>
41
+ <title>One Photo, 126 Frames, 2 Billion Leaves, 247 Feet</title>
42
+ <description>Those numbers represent one giant sequoia. Oh, also: The "President," as it's called, is more than 3,000 years old.</description>
43
+ <pubDate>Thu, 13 Dec 2012 13:01:00 -0500</pubDate>
44
+ <link>http://www.npr.org/blogs/pictureshow/2012/12/13/167163801/one-photo-126-frames-2-billion-leaves-247-feet?ft=1&amp;f=</link>
45
+ <guid>http://www.npr.org/blogs/pictureshow/2012/12/13/167163801/one-photo-126-frames-2-billion-leaves-247-feet?ft=1&amp;f=</guid>
46
+ <content:encoded><![CDATA[<p>Those numbers represent one giant sequoia. Oh, also: The "President," as it's called, is more than 3,000 years old.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167163801">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167163801">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
47
+ </item>
48
+ <item>
49
+ <title>NCAA Shake-Up: The Future Of College Athletics</title>
50
+ <description>In 2013 and 2014, there will be a number of substantial realignments in the NCAA conferences. Some believe that the realignment process will ultimately result in the creation of four "super conferences." NPR's Mike Pesca talks about how conference shifts could effect the future of college athletics.</description>
51
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
52
+ <link>http://www.npr.org/2012/12/13/167180401/ncaa-shake-up-the-future-of-college-athletics?ft=1&amp;f=</link>
53
+ <guid>http://www.npr.org/2012/12/13/167180401/ncaa-shake-up-the-future-of-college-athletics?ft=1&amp;f=</guid>
54
+ <content:encoded><![CDATA[<p>In 2013 and 2014, there will be a number of substantial realignments in the NCAA conferences. Some believe that the realignment process will ultimately result in the creation of four "super conferences." NPR's Mike Pesca talks about how conference shifts could effect the future of college athletics.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180401">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180401">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
55
+ </item>
56
+ <item>
57
+ <title>10 Artists You Should Have Known In 2012</title>
58
+ <description>It's hard to keep track of new artists these days. So we asked our colleagues around the country to recommend recent discoveries from their communities. Download 10 songs that helped put these musicians on the map in 2012.</description>
59
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
60
+ <link>http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012?ft=1&amp;f=</link>
61
+ <guid>http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012?ft=1&amp;f=</guid>
62
+ <content:encoded><![CDATA[<p>It's hard to keep track of new artists these days. So we asked our colleagues around the country to recommend recent discoveries from their communities. Download 10 songs that helped put these musicians on the map in 2012.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=166745766">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D166745766">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
63
+ </item>
64
+ <item>
65
+ <title>Options For Intervention In Mali's Growing Crisis</title>
66
+ <description>A military coup brought down Mali's prime minister in March, allowing radical Islamists from Mali and surrounding areas to take hold of an area the size of Texas. As al-Qaida-linked militants take over the northern part of the country, many wonder what the U.S. and other can do to intervene.</description>
67
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
68
+ <link>http://www.npr.org/2012/12/13/167180399/options-for-intervention-in-malis-growing-crisis?ft=1&amp;f=</link>
69
+ <guid>http://www.npr.org/2012/12/13/167180399/options-for-intervention-in-malis-growing-crisis?ft=1&amp;f=</guid>
70
+ <content:encoded><![CDATA[<p>A military coup brought down Mali's prime minister in March, allowing radical Islamists from Mali and surrounding areas to take hold of an area the size of Texas. As al-Qaida-linked militants take over the northern part of the country, many wonder what the U.S. and other can do to intervene.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180399">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180399">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
71
+ </item>
72
+ <item>
73
+ <title>Drought Continues: Farmers, Shippers Feel Pressure</title>
74
+ <description>The United States is facing its worst drought since the 1950s, according to the National Oceanic and Atmospheric Administration. With little to no signs of relief on the horizon, many analysts expect conditions to worsen well into next year.</description>
75
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
76
+ <link>http://www.npr.org/2012/12/13/167180403/drought-continues-farmers-shippers-feel-pressure?ft=1&amp;f=</link>
77
+ <guid>http://www.npr.org/2012/12/13/167180403/drought-continues-farmers-shippers-feel-pressure?ft=1&amp;f=</guid>
78
+ <content:encoded><![CDATA[<p>The United States is facing its worst drought since the 1950s, according to the National Oceanic and Atmospheric Administration. With little to no signs of relief on the horizon, many analysts expect conditions to worsen well into next year.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180403">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180403">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
79
+ </item>
80
+ <item>
81
+ <title>Open Or Closed-Book Exams: Which Style Works Best?</title>
82
+ <description>Afshin Gharib, a psychology professor at Dominican University of California, prefers to give open-book tests. His colleague William Phillips only lets students use cheat sheets. After several arguments about the techniques, they decided to conduct an experiment to find out which method works best.</description>
83
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
84
+ <link>http://www.npr.org/2012/12/13/167180405/open-or-closed-book-exams-which-style-works-best?ft=1&amp;f=</link>
85
+ <guid>http://www.npr.org/2012/12/13/167180405/open-or-closed-book-exams-which-style-works-best?ft=1&amp;f=</guid>
86
+ <content:encoded><![CDATA[<p>Afshin Gharib, a psychology professor at Dominican University of California, prefers to give open-book tests. His colleague William Phillips only lets students use cheat sheets. After several arguments about the techniques, they decided to conduct an experiment to find out which method works best.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167180405">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167180405">&raquo; Add to Del.icio.us</a></p><a rel="nofollow" href="http://ad.doubleclick.net/jump/n6735.NPR/no_topic;sz=300x80;ord=1424093765"><img alt="" src="http://ad.doubleclick.net/ad/n6735.NPR/no_topic;sz=300x80;ord=1424093765"/></a>]]></content:encoded>
87
+ </item>
88
+ <item>
89
+ <title>No Alarm Sounded When The West Virginia Pipeline Exploded</title>
90
+ <description>The NTSB is investigating why no warning sounded in the control center of pipeline operator, Columbia Gas Transmission, when the explosion occurred.</description>
91
+ <pubDate>Thu, 13 Dec 2012 12:26:00 -0500</pubDate>
92
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167169109/no-alarm-sounded-when-the-west-virginia-pipeline-exploded?ft=1&amp;f=</link>
93
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167169109/no-alarm-sounded-when-the-west-virginia-pipeline-exploded?ft=1&amp;f=</guid>
94
+ <content:encoded><![CDATA[<p>The NTSB is investigating why no warning sounded in the control center of pipeline operator, Columbia Gas Transmission, when the explosion occurred.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167169109">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167169109">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
95
+ </item>
96
+ <item>
97
+ <title>Caution: Walking Under The Influence Of Mobile Devices</title>
98
+ <description>Nearly a third of pedestrians crossing som of Seattle's most dangerous intersections were were doing something distracting at the same time. People texting were four times more likely to cross the street without looking both ways.</description>
99
+ <pubDate>Thu, 13 Dec 2012 12:18:00 -0500</pubDate>
100
+ <link>http://www.npr.org/blogs/health/2012/12/13/167150785/caution-walking-under-the-influence-of-mobile-devices?ft=1&amp;f=</link>
101
+ <guid>http://www.npr.org/blogs/health/2012/12/13/167150785/caution-walking-under-the-influence-of-mobile-devices?ft=1&amp;f=</guid>
102
+ <content:encoded><![CDATA[<p>Nearly a third of pedestrians crossing som of Seattle's most dangerous intersections were were doing something distracting at the same time. People texting were four times more likely to cross the street without looking both ways.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167150785">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167150785">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
103
+ </item>
104
+ <item>
105
+ <title>From A Life Of Crime To Designing Jewelry, All In A Nairobi Slum </title>
106
+ <description>Zakale Creations is a jewelry-designing operation that employs 30 young people — former thieves and prostitutes. The Nairobi-based operation is the brainchild of John Mucheru, himself a former mugger.</description>
107
+ <pubDate>Thu, 13 Dec 2012 12:16:00 -0500</pubDate>
108
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/12/167120895/from-a-life-of-crime-to-designing-jewelry-all-in-a-nairobi-slum?ft=1&amp;f=</link>
109
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/12/167120895/from-a-life-of-crime-to-designing-jewelry-all-in-a-nairobi-slum?ft=1&amp;f=</guid>
110
+ <content:encoded><![CDATA[<p>Zakale Creations is a jewelry-designing operation that employs 30 young people — former thieves and prostitutes. The Nairobi-based operation is the brainchild of John Mucheru, himself a former mugger.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167120895">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167120895">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
111
+ </item>
112
+ <item>
113
+ <title>Here's Some Good News: Volunteering Is On The Rise </title>
114
+ <description>A holiday reminder of how generous many Americans are: More than 64 million people volunteered through a formal organization in 2011, a new report shows. That was up from the year before and part of a trend.</description>
115
+ <pubDate>Thu, 13 Dec 2012 12:09:00 -0500</pubDate>
116
+ <link>http://www.npr.org/blogs/thetwo-way/2012/12/13/167165264/heres-some-good-news-volunteering-is-on-the-rise?ft=1&amp;f=</link>
117
+ <guid>http://www.npr.org/blogs/thetwo-way/2012/12/13/167165264/heres-some-good-news-volunteering-is-on-the-rise?ft=1&amp;f=</guid>
118
+ <content:encoded><![CDATA[<p>A holiday reminder of how generous many Americans are: More than 64 million people volunteered through a formal organization in 2011, a new report shows. That was up from the year before and part of a trend.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167165264">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167165264">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
119
+ </item>
120
+ <item>
121
+ <title>Promiscuous Males And Choosy Females? Challenging A Classic Experiment</title>
122
+ <description>We've all heard them: explanations rooted in evolutionary biology for why "promiscuous" males mate with many more partners than "choosy" females. Barbara J. King traces these widespread assumptions to a famous 1948 study on fruitflies — a study that a group of modern-day scientists now say was badly flawed.</description>
123
+ <pubDate>Thu, 13 Dec 2012 12:01:00 -0500</pubDate>
124
+ <link>http://www.npr.org/blogs/13.7/2012/12/13/166953517/promiscuous-males-and-choosy-females-challenging-a-classic-experiment?ft=1&amp;f=</link>
125
+ <guid>http://www.npr.org/blogs/13.7/2012/12/13/166953517/promiscuous-males-and-choosy-females-challenging-a-classic-experiment?ft=1&amp;f=</guid>
126
+ <content:encoded><![CDATA[<p>We've all heard them: explanations rooted in evolutionary biology for why "promiscuous" males mate with many more partners than "choosy" females. Barbara J. King traces these widespread assumptions to a famous 1948 study on fruitflies — a study that a group of modern-day scientists now say was badly flawed.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=166953517">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D166953517">&raquo; Add to Del.icio.us</a></p>]]></content:encoded>
127
+ </item>
128
+ <item>
129
+ <title>The Steamy Inspiration Of Miguel's Music</title>
130
+ <description>Six-time Grammy nominee Miguel is heating up the airwaves with his newest album, &lt;em&gt;Kaleidoscope Dream&lt;/em&gt;. Miguel sat down with host Michel Martin to discuss his musical style and why he wants to challenge stereotypes about R&amp;B. &lt;strong&gt;*Advisory: &lt;/strong&gt; This conversation may not be suitable for all listeners.</description>
131
+ <pubDate>Thu, 13 Dec 2012 14:07:00 -0500</pubDate>
132
+ <link>http://www.npr.org/2012/12/13/167164055/the-steamy-inspiration-of-miguels-music?ft=1&amp;f=</link>
133
+ <guid>http://www.npr.org/2012/12/13/167164055/the-steamy-inspiration-of-miguels-music?ft=1&amp;f=</guid>
134
+ <content:encoded><![CDATA[<p>Six-time Grammy nominee Miguel is heating up the airwaves with his newest album, <em>Kaleidoscope Dream</em>. Miguel sat down with host Michel Martin to discuss his musical style and why he wants to challenge stereotypes about R&B. <strong>*Advisory: </strong> This conversation may not be suitable for all listeners.</p><p><a href="http://www.npr.org/templates/email/emailAFriend.php?storyId=167164055">&raquo; E-Mail This</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D167164055">&raquo; Add to Del.icio.us</a></p><a rel="nofollow" href="http://ad.doubleclick.net/jump/n6735.NPR/no_topic;sz=300x80;ord=43837676"><img alt="" src="http://ad.doubleclick.net/ad/n6735.NPR/no_topic;sz=300x80;ord=43837676"/></a>]]></content:encoded>
135
+ </item>
136
+ </channel>
137
+ </rss>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0"?>
2
+ <rss xmlns:npr="http://www.npr.org/rss/" version="2.0">
3
+ <channel>
4
+ <title>RSS Error</title>
5
+ <link>http://www.npr.org/rss/index.html</link>
6
+ <description>RSS Error</description>
7
+ <copyright>
8
+ Copyright 2005 NPR - For Personal Use Only
9
+ </copyright>
10
+ <generator>NPR/RSS Generator 2.0</generator>
11
+ <lastBuildDate>Wed, 5 May 2005 00:00:00 EDT</lastBuildDate>
12
+ <image>
13
+ <title>RSS Error</title>
14
+ <url>http://media.npr.org/images/npr_news_123x20.gif</url>
15
+ <link>http://www.npr.org/rss/index.html</link>
16
+ </image>
17
+ <item>
18
+ <title>NPR RSS Error</title>
19
+ <description>
20
+ This is an invalid RSS feed address. For the most up-to-date list, please go to: http://www.npr.org/rss/
21
+ </description>
22
+ <link>
23
+ http://www.npr.org/rss/index.html
24
+ </link>
25
+ <guid>
26
+ http://www.npr.org/rss/index.html
27
+ </guid>
28
+ <pubDate>Wed, 15 May 2005 03:00:00 EDT</pubDate>
29
+ </item>
30
+ </channel>
31
+ </rss>