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,279 @@
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:media="http://search.yahoo.com/mrss/" 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
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/twosides132way-0600cdf9eefdbc0d5c1021c23a48a9a6f8b9c719.jpg" fileSize="100000" type="image/jpg" medium="image">
24
+ <media:title>President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January.</media:title>
25
+ <media:description>President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January.</media:description>
26
+ <media:credit role="photographer">Saul Loeb</media:credit>
27
+ <media:copyright>Getty Images</media:copyright>
28
+ </media:content>
29
+ </item>
30
+ <item>
31
+ <title>It's ScuttleButton Time!</title>
32
+ <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>
33
+ <pubDate>Thu, 13 Dec 2012 13:48:00 -0500</pubDate>
34
+ <link>http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time?ft=1&amp;f=</link>
35
+ <guid>http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time?ft=1&amp;f=</guid>
36
+ <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>
37
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/button_1207_1_custom-2ea6e50cae5f62fcad63b4d42ff47f515d5f5302.jpg" fileSize="100000" type="image/jpg" medium="image">
38
+ <media:title>scuttle</media:title>
39
+ <media:copyright>Ken Rudin collection</media:copyright>
40
+ </media:content>
41
+ </item>
42
+ <item>
43
+ <title>Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel </title>
44
+ <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>
45
+ <pubDate>Thu, 13 Dec 2012 13:15:00 -0500</pubDate>
46
+ <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>
47
+ <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>
48
+ <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=475696104"><img alt="" src="http://ad.doubleclick.net/ad/n6735.NPR/no_topic;sz=300x80;ord=475696104"/></a>]]></content:encoded>
49
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/m75132way_custom-cc8a08679d92851f23eb4e23542a4c14ac7f9803.jpg" fileSize="100000" type="image/jpg" medium="image">
50
+ <media:title>Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel.</media:title>
51
+ <media:description>Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel.</media:description>
52
+ <media:credit role="photographer">Ashraf Amra </media:credit>
53
+ <media:copyright>APA /Landov</media:copyright>
54
+ </media:content>
55
+ </item>
56
+ <item>
57
+ <title>One Photo, 126 Frames, 2 Billion Leaves, 247 Feet</title>
58
+ <description>Those numbers represent one giant sequoia. Oh, also: The "President," as it's called, is more than 3,000 years old.</description>
59
+ <pubDate>Thu, 13 Dec 2012 13:01:00 -0500</pubDate>
60
+ <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>
61
+ <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>
62
+ <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>
63
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_custom-ecf623469ff776e037de22f1d3b67fa590a57c88.jpg" fileSize="100000" type="image/jpg" medium="image">
64
+ <media:title>The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper.</media:title>
65
+ <media:description>The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper.</media:description>
66
+ <media:credit role="photographer">Michael Nichols</media:credit>
67
+ <media:copyright>National Geographic</media:copyright>
68
+ </media:content>
69
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/tree_custom-490978178ed5b70330c46529a5e3d3ca585f88a7.jpg" fileSize="100000" type="image/jpg" medium="image">
70
+ <media:title>Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs.</media:title>
71
+ <media:description>Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs.</media:description>
72
+ <media:credit role="photographer">Michael Nichols</media:credit>
73
+ <media:copyright>National Geographic</media:copyright>
74
+ </media:content>
75
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/natgeo-mag-1col_custom-a808c9c7d76afd6167e2533a63817c408fd4ec60.gif" fileSize="100000" type="image/gif" medium="image">
76
+ <media:title>National Geographic</media:title>
77
+ <media:copyright url="http://ngm.nationalgeographic.com/">&amp;nbsp;</media:copyright>
78
+ </media:content>
79
+ </item>
80
+ <item>
81
+ <title>NCAA Shake-Up: The Future Of College Athletics</title>
82
+ <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>
83
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
84
+ <link>http://www.npr.org/2012/12/13/167180401/ncaa-shake-up-the-future-of-college-athletics?ft=1&amp;f=</link>
85
+ <guid>http://www.npr.org/2012/12/13/167180401/ncaa-shake-up-the-future-of-college-athletics?ft=1&amp;f=</guid>
86
+ <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>
87
+ </item>
88
+ <item>
89
+ <title>10 Artists You Should Have Known In 2012</title>
90
+ <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>
91
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
92
+ <link>http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012?ft=1&amp;f=</link>
93
+ <guid>http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012?ft=1&amp;f=</guid>
94
+ <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>
95
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/1343246959_heddy_bergsman-phillies-1f72671b8717dd80c9eae8e8da5f47cbc4247450.jpg" fileSize="100000" type="image/jpg" medium="image">
96
+ <media:title>Philadelphia's Aaron Brown.</media:title>
97
+ <media:description>Philadelphia's Aaron Brown.</media:description>
98
+ <media:copyright> </media:copyright>
99
+ </media:content>
100
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/grahamdechter1-aef349a21423cc9ce62fe6c5aa49b55d5f70187c.jpg" fileSize="100000" type="image/jpg" medium="image">
101
+ <media:title>Los Angeles jazz guitarist Graham Dechter.</media:title>
102
+ <media:description>Los Angeles jazz guitarist Graham Dechter.</media:description>
103
+ <media:copyright> </media:copyright>
104
+ </media:content>
105
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/f010-fullbright-bdshoot-mar2012-033-vrf_20120330_144008-c5f81e4871348ab24f78ddad77b6f86f02e4671a.jpg" fileSize="100000" type="image/jpg" medium="image">
106
+ <media:title>Oklahoma's John Fullbright.</media:title>
107
+ <media:description>Oklahoma's John Fullbright.</media:description>
108
+ <media:copyright> </media:copyright>
109
+ </media:content>
110
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider-2daa81da0de3641bcfa08d642fa0ca5d3af2d5e2.jpg" fileSize="100000" type="image/jpg" medium="image">
111
+ <media:title>L.A.'s Ben Schneider.</media:title>
112
+ <media:description>L.A.'s Ben Schneider.</media:description>
113
+ <media:copyright> </media:copyright>
114
+ </media:content>
115
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/6839382744_22a459a1a5_b-03ab159cbdaebd8469c1d24694ac029078324802.jpg" fileSize="100000" type="image/jpg" medium="image">
116
+ <media:title>Poliça lead singer Channy Leaneagh.</media:title>
117
+ <media:description>Poliça lead singer Channy Leaneagh.</media:description>
118
+ <media:copyright> </media:copyright>
119
+ </media:content>
120
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/1323796924radiation_img05_hires-6b42c22378ee8b13e882a67b6cf2685e40d41c1d.jpg" fileSize="100000" type="image/jpg" medium="image">
121
+ <media:title>From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty.</media:title>
122
+ <media:description>From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty.</media:description>
123
+ <media:copyright> </media:copyright>
124
+ </media:content>
125
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/savoiradore_ournaturephoto4_4-2eed3db56a2ace1f58226e7efb473bb9c609d415.jpg" fileSize="100000" type="image/jpg" medium="image">
126
+ <media:title>Savoir Adore's Deidre Muro and Paul Hammer.</media:title>
127
+ <media:description>Savoir Adore's Deidre Muro and Paul Hammer.</media:description>
128
+ <media:copyright> </media:copyright>
129
+ </media:content>
130
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/theesatisfaction_2012_1_davidbelisle_print-ea933f9b1882066e917ec566dc1ea51bfdddbeda.jpg" fileSize="100000" type="image/jpg" medium="image">
131
+ <media:title>THEESatisfaction's Catherine Harris-White and Stasia Irons.</media:title>
132
+ <media:description>THEESatisfaction's Catherine Harris-White and Stasia Irons.</media:description>
133
+ <media:copyright> </media:copyright>
134
+ </media:content>
135
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/20090617_pedromoraes_025-edit_saraiva_1251942567-51c6af0972c6078bf725a3a5e95bde727f13e5d9.jpg" fileSize="100000" type="image/jpg" medium="image">
136
+ <media:title>Brazilian guitarist and composer Pedro Moraes.</media:title>
137
+ <media:description>Brazilian guitarist and composer Pedro Moraes.</media:description>
138
+ <media:copyright> </media:copyright>
139
+ </media:content>
140
+ <media:content url="http://media.npr.org/assets/img/2012/12/07/shakeygraves_credit-kirkstewart-f9eba33e7bbd8f61b3e508e60e1698bfde75f68f.jpeg" fileSize="100000" type="image/jpg" medium="image">
141
+ <media:title>Austin's Alejandro Rose-Garcia</media:title>
142
+ <media:description>Austin's Alejandro Rose-Garcia</media:description>
143
+ <media:copyright>Kirk Stewart</media:copyright>
144
+ </media:content>
145
+ <media:content url="http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_wide-8d7bb036235dd240c33cfd79ffe309b169fc95c3.jpg" fileSize="100000" type="image/jpg" medium="image">
146
+ <media:title>Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012.</media:title>
147
+ <media:description>Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012.</media:description>
148
+ <media:credit role="photographer">Dave Lichterman</media:credit>
149
+ <media:copyright>KEXP</media:copyright>
150
+ </media:content>
151
+ </item>
152
+ <item>
153
+ <title>Drought Continues: Farmers, Shippers Feel Pressure</title>
154
+ <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>
155
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
156
+ <link>http://www.npr.org/2012/12/13/167180403/drought-continues-farmers-shippers-feel-pressure?ft=1&amp;f=</link>
157
+ <guid>http://www.npr.org/2012/12/13/167180403/drought-continues-farmers-shippers-feel-pressure?ft=1&amp;f=</guid>
158
+ <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>
159
+ </item>
160
+ <item>
161
+ <title>Options For Intervention In Mali's Growing Crisis</title>
162
+ <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>
163
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
164
+ <link>http://www.npr.org/2012/12/13/167180399/options-for-intervention-in-malis-growing-crisis?ft=1&amp;f=</link>
165
+ <guid>http://www.npr.org/2012/12/13/167180399/options-for-intervention-in-malis-growing-crisis?ft=1&amp;f=</guid>
166
+ <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>
167
+ </item>
168
+ <item>
169
+ <title>Open Or Closed-Book Exams: Which Style Works Best?</title>
170
+ <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>
171
+ <pubDate>Thu, 13 Dec 2012 13:00:00 -0500</pubDate>
172
+ <link>http://www.npr.org/2012/12/13/167180405/open-or-closed-book-exams-which-style-works-best?ft=1&amp;f=</link>
173
+ <guid>http://www.npr.org/2012/12/13/167180405/open-or-closed-book-exams-which-style-works-best?ft=1&amp;f=</guid>
174
+ <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=423505377"><img alt="" src="http://ad.doubleclick.net/ad/n6735.NPR/no_topic;sz=300x80;ord=423505377"/></a>]]></content:encoded>
175
+ </item>
176
+ <item>
177
+ <title>No Alarm Sounded When The West Virginia Pipeline Exploded</title>
178
+ <description>The NTSB is investigating why no warning sounded in the control center of pipeline operator, Columbia Gas Transmission, when the explosion occurred.</description>
179
+ <pubDate>Thu, 13 Dec 2012 12:26:00 -0500</pubDate>
180
+ <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>
181
+ <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>
182
+ <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>
183
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/ntsb_custom-146b1ff151f7305817057c0d852f726ce62e9367.jpg" fileSize="100000" type="image/jpg" medium="image">
184
+ <media:title>Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va.</media:title>
185
+ <media:description>Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va.</media:description>
186
+ <media:credit role="photographer">NTSB</media:credit>
187
+ <media:copyright>AP</media:copyright>
188
+ </media:content>
189
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012_custom-8a3e86fa855d7d86a73adda5f930bca5b0d97248.jpg" fileSize="100000" type="image/jpg" medium="image">
190
+ <media:title>A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11.</media:title>
191
+ <media:description>A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11.</media:description>
192
+ <media:credit role="photographer">West Virginia State Police</media:credit>
193
+ <media:copyright>Associated Press</media:copyright>
194
+ </media:content>
195
+ </item>
196
+ <item>
197
+ <title>Caution: Walking Under The Influence Of Mobile Devices</title>
198
+ <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>
199
+ <pubDate>Thu, 13 Dec 2012 12:18:00 -0500</pubDate>
200
+ <link>http://www.npr.org/blogs/health/2012/12/13/167150785/caution-walking-under-the-influence-of-mobile-devices?ft=1&amp;f=</link>
201
+ <guid>http://www.npr.org/blogs/health/2012/12/13/167150785/caution-walking-under-the-influence-of-mobile-devices?ft=1&amp;f=</guid>
202
+ <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>
203
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/pedestrians_custom-c59de5330e61059f6396761a4dfab8643b308cc6.jpg" fileSize="100000" type="image/jpg" medium="image">
204
+ <media:title>He better not be talking to his mom.</media:title>
205
+ <media:description>He better not be talking to his mom.</media:description>
206
+ <media:copyright>iStockphoto.com</media:copyright>
207
+ </media:content>
208
+ </item>
209
+ <item>
210
+ <title>From A Life Of Crime To Designing Jewelry, All In A Nairobi Slum </title>
211
+ <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>
212
+ <pubDate>Thu, 13 Dec 2012 12:16:00 -0500</pubDate>
213
+ <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>
214
+ <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>
215
+ <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>
216
+ <media:content url="http://media.npr.org/assets/img/2012/12/12/working-1f2f198931504fc70af17a09bb28a3f77080de2c.jpg" fileSize="100000" type="image/jpg" medium="image">
217
+ <media:title>Zakale Creations is a jewelry-designing operation that employs 30 young people who were previously involved in crime. The Nairobi-based operation is the brainchild of John Mucheru, himself a former mugger.</media:title>
218
+ <media:description>Zakale Creations is a jewelry-designing operation that employs 30 young people who were previously involved in crime. The Nairobi-based operation is the brainchild of John Mucheru, himself a former mugger.</media:description>
219
+ <media:copyright>John Burnett/NPR</media:copyright>
220
+ </media:content>
221
+ <media:content url="http://media.npr.org/assets/img/2012/12/12/mucheru_vert-4fbf6208b5a39dcf8b99aa8ecabad3463e8db372.jpg" fileSize="100000" type="image/jpg" medium="image">
222
+ <media:title>John Mucheru of Zakale Creations poses with his jewelry designs in Nairobi's Huruma slum.</media:title>
223
+ <media:description>John Mucheru of Zakale Creations poses with his jewelry designs in Nairobi's Huruma slum.</media:description>
224
+ <media:copyright>John Burnett/NPR</media:copyright>
225
+ </media:content>
226
+ </item>
227
+ <item>
228
+ <title>Here's Some Good News: Volunteering Is On The Rise </title>
229
+ <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>
230
+ <pubDate>Thu, 13 Dec 2012 12:09:00 -0500</pubDate>
231
+ <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>
232
+ <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>
233
+ <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>
234
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/volunteers132way-a7599584b2168b2873ae249f672d829257d64800.jpg" fileSize="100000" type="image/jpg" medium="image">
235
+ <media:title>Nov. 22: Volunteers prepared Thanksgiving dinners for people in the Queens borough of New York City, which was hit hard by Superstorm Sandy.</media:title>
236
+ <media:description>Nov. 22: Volunteers prepared Thanksgiving dinners for people in the Queens borough of New York City, which was hit hard by Superstorm Sandy.</media:description>
237
+ <media:credit role="photographer">Mario Tama</media:credit>
238
+ <media:copyright>Getty Images</media:copyright>
239
+ </media:content>
240
+ </item>
241
+ <item>
242
+ <title>Promiscuous Males And Choosy Females? Challenging A Classic Experiment</title>
243
+ <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>
244
+ <pubDate>Thu, 13 Dec 2012 12:01:00 -0500</pubDate>
245
+ <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>
246
+ <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>
247
+ <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>
248
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/istock-000006634650-fruit-fly_brick-2ba2bc40bc5cc957bab4ec52fedc36c04d290d67.jpg" fileSize="100000" type="image/jpg" medium="image">
249
+ <media:title>A male fruit fly (Drosophila melanogaster)</media:title>
250
+ <media:description>A male fruit fly (Drosophila melanogaster)</media:description>
251
+ <media:credit role="photographer">Jan Polabinski</media:credit>
252
+ <media:copyright>iStockphoto</media:copyright>
253
+ </media:content>
254
+ </item>
255
+ <item>
256
+ <title>The Steamy Inspiration Of Miguel's Music</title>
257
+ <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>
258
+ <pubDate>Thu, 13 Dec 2012 14:07:00 -0500</pubDate>
259
+ <link>http://www.npr.org/2012/12/13/167164055/the-steamy-inspiration-of-miguels-music?ft=1&amp;f=</link>
260
+ <guid>http://www.npr.org/2012/12/13/167164055/the-steamy-inspiration-of-miguels-music?ft=1&amp;f=</guid>
261
+ <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=1633180988"><img alt="" src="http://ad.doubleclick.net/ad/n6735.NPR/no_topic;sz=300x80;ord=1633180988"/></a>]]></content:encoded>
262
+ <media:group>
263
+ <media:content type="audio/mpeg" url="http://pd.npr.org/anon.npr-mp3/npr/tmm/2012/12/20121213_tmm_04.mp3?orgId=1&amp;topicId=1105" isDefault="true" medium="audio" fileSize="6270351" duration="784"/>
264
+ <media:content type="audio/mpeg" url="http://api.npr.org/m3u/1167165903-7bb3c6.m3u?orgId=1&amp;topicId=1105" isDefault="true" medium="audio" fileSize="6270351" duration="784"/>
265
+ <media:content type="audio/x-ms-wma" url="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167165903&amp;type=1&amp;mtype=WM&amp;orgId=1&amp;topicId=1105" medium="audio" fileSize="100000" duration="784"/>
266
+ </media:group>
267
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/miguel1_wide-791460d0789668dbaa029da55d20b28ae1d7fc66.jpg" fileSize="100000" type="image/jpg" medium="image">
268
+ <media:title>Miguel in concert</media:title>
269
+ <media:credit role="photographer">Timothy Saccenti</media:credit>
270
+ <media:copyright>The Chamber Group</media:copyright>
271
+ </media:content>
272
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/miguelbwjpg_sq-53ce7fde44c7f4e16dfc7278a94a9a6afaf82159.jpg" fileSize="100000" type="image/jpg" medium="image">
273
+ <media:title>R&amp;B singer Miguel</media:title>
274
+ <media:credit role="photographer">Timothy Saccenti</media:credit>
275
+ <media:copyright>The Chamber Group</media:copyright>
276
+ </media:content>
277
+ </item>
278
+ </channel>
279
+ </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>
@@ -0,0 +1,65 @@
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:media="http://search.yahoo.com/mrss/" 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/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>Why Legos Are So Expensive — And So Popular</title>
18
+ <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>
19
+ <pubDate>Thu, 13 Dec 2012 14:53:00 -0500</pubDate>
20
+ <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>
21
+ <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>
22
+ <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>
23
+ <media:group>
24
+ <media:content type="audio/mpeg" url="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121213_atc_17.mp3?orgId=1&amp;topicId=1006" isDefault="true" medium="audio" fileSize="2361597" duration="295"/>
25
+ <media:content type="audio/mpeg" url="http://api.npr.org/m3u/1167199727-2d6035.m3u?orgId=1&amp;topicId=1006" isDefault="true" medium="audio" fileSize="2361597" duration="295"/>
26
+ <media:content type="audio/x-ms-wma" url="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167199727&amp;type=1&amp;mtype=WM&amp;orgId=1&amp;topicId=1006" medium="audio" fileSize="100000" duration="295"/>
27
+ </media:group>
28
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/lego-bd8bfadf3ae10931a86b1b0c0377ffdda6118511.jpg" fileSize="100000" type="image/jpg" medium="image">
29
+ <media:title>Lego vs. Mega</media:title>
30
+ <media:description>Lego vs. Mega</media:description>
31
+ <media:copyright>NPR</media:copyright>
32
+ </media:content>
33
+ </item>
34
+ <item>
35
+ <title>How The Rich Feel About Paying More Taxes</title>
36
+ <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>
37
+ <pubDate>Thu, 13 Dec 2012 11:22:00 -0500</pubDate>
38
+ <link>http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes?ft=1&amp;f=166956822,167055503</link>
39
+ <guid>http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes?ft=1&amp;f=166956822,167055503</guid>
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
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/2_percent_wide-351306ded352abaae0744bc5b0de67eafc1dda81.jpg" fileSize="100000" type="image/jpg" medium="image">
42
+ <media:title>How much income tax should the top 2 percent of U.S. earners pay? Just about everyone has an opinion, but the opinions that count are those of President Obama and House Speaker John Boehner.</media:title>
43
+ <media:description>How much income tax should the top 2 percent of U.S. earners pay? Just about everyone has an opinion, but the opinions that count are those of President Obama and House Speaker John Boehner.</media:description>
44
+ <media:copyright>iStockphoto.com</media:copyright>
45
+ </media:content>
46
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/JeffreyFisher-7ffa28181086a95e38f694233f2c84e61e1b89f9.jpg" fileSize="100000" type="image/jpg" medium="image">
47
+ <media:title>Jeffrey Fisher of Florida says any tax increase ought to be accompanied by cuts to government programs.</media:title>
48
+ <media:description>Jeffrey Fisher of Florida says any tax increase ought to be accompanied by cuts to government programs.</media:description>
49
+ <media:credit role="photographer">Robert J Nelson</media:credit>
50
+ <media:copyright>Courtesy of Jeffrey Fisher</media:copyright>
51
+ </media:content>
52
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/MarkAnderson-b3c3af4fdc78893f06579a533f2495064da41dff.jpg" fileSize="100000" type="image/jpg" medium="image">
53
+ <media:title>Mark Anderson of St. Louis thinks President Obama and other Democrats make being rich "sound like a bad thing," something he says is a mistake.</media:title>
54
+ <media:description>Mark Anderson of St. Louis thinks President Obama and other Democrats make being rich "sound like a bad thing," something he says is a mistake.</media:description>
55
+ <media:credit role="photographer">Alan Greenblatt</media:credit>
56
+ <media:copyright>NPR</media:copyright>
57
+ </media:content>
58
+ <media:content url="http://media.npr.org/assets/img/2012/12/13/StephenPrince-3321230cfed09a1c5277ce228931b15056bc0d09.jpg" fileSize="100000" type="image/jpg" medium="image">
59
+ <media:title>Stephen Prince of Tennessee says the conditions that create wealth are at risk if the rich are too "greedy" to pay more in taxes.</media:title>
60
+ <media:description>Stephen Prince of Tennessee says the conditions that create wealth are at risk if the rich are too "greedy" to pay more in taxes.</media:description>
61
+ <media:copyright>Courtesy of Stephen Prince</media:copyright>
62
+ </media:content>
63
+ </item>
64
+ </channel>
65
+ </rss>