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,440 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <list id="3002" typeid="3002">
3
+ <title>All Topics</title>
4
+ <item id="1149" num="1" type="topic">
5
+ <title>Afghanistan</title>
6
+ <additionalInfo>Afghanistan</additionalInfo>
7
+ </item>
8
+ <item id="1126" num="2" type="topic">
9
+ <title>Africa</title>
10
+ <additionalInfo>Africa</additionalInfo>
11
+ </item>
12
+ <item id="1059" num="3" type="topic">
13
+ <title>Analysis</title>
14
+ <additionalInfo>Analysis by NPR commentators, including Ted Koppel. Subscribe to our free podcast.</additionalInfo>
15
+ </item>
16
+ <item id="1132" num="4" type="topic">
17
+ <title>Animals</title>
18
+ <additionalInfo>Animals</additionalInfo>
19
+ </item>
20
+ <item id="1142" num="5" type="topic">
21
+ <title>Architecture</title>
22
+ <additionalInfo>Architecture</additionalInfo>
23
+ </item>
24
+ <item id="1091" num="6" type="topic">
25
+ <title>Around the Nation</title>
26
+ <additionalInfo>Stories of Local interest</additionalInfo>
27
+ </item>
28
+ <item id="1047" num="7" type="topic">
29
+ <title>Art &amp; Design</title>
30
+ <additionalInfo>NPR explores the visual arts including design, photography, sculpture, and architecture. Interviews, commentary, and audio. Subscribe to the RSS feed.</additionalInfo>
31
+ </item>
32
+ <item id="1008" num="8" type="topic">
33
+ <title>Arts &amp; Life</title>
34
+ <additionalInfo>Art and entertainment commentary plus interviews, book reviews, movie reviews, music reviews, comedy, and visual art. Subscribe to podcasts and follow trends in music, painting, art, architecture, photography, and design.</additionalInfo>
35
+ </item>
36
+ <item id="1125" num="9" type="topic">
37
+ <title>Asia</title>
38
+ <additionalInfo>Asia</additionalInfo>
39
+ </item>
40
+ <item id="1033" num="10" type="topic">
41
+ <title>Author Interviews</title>
42
+ <additionalInfo>NPR interviews with top authors and the NPR Book Tour, a weekly feature and podcast where leading authors read and discuss their writing. Subscribe to the RSS feed.</additionalInfo>
43
+ </item>
44
+ <item id="1034" num="11" type="topic">
45
+ <title>Book Reviews</title>
46
+ <additionalInfo>Summary judgment on books of note, from NPR personalities, independent booksellers and critics from across the public-radio spectrum.</additionalInfo>
47
+ </item>
48
+ <item id="1032" num="12" type="topic">
49
+ <title>Books</title>
50
+ <additionalInfo>NPR's brings you news about books and authors along with our picks for great reads. Interviews, reviews, the NPR Bestseller Lists, New in Paperback and much more.</additionalInfo>
51
+ </item>
52
+ <item id="1161" num="13" type="topic">
53
+ <title>Books News &amp; Features</title>
54
+ <additionalInfo>Headlines, trends and profiles from the world of publishing.</additionalInfo>
55
+ </item>
56
+ <item id="1130" num="14" type="topic">
57
+ <title>Brain Candy</title>
58
+ <additionalInfo>Brain Candy</additionalInfo>
59
+ </item>
60
+ <item id="1006" num="15" type="topic">
61
+ <title>Business</title>
62
+ <additionalInfo>Find the latest business news with reports on Wall Street, interest rates, banking, companies, and U.S. and world financial markets. Subscribe to the Business Story of the Day podcast.</additionalInfo>
63
+ </item>
64
+ <item id="1095" num="16" type="topic">
65
+ <title>Business Story of the Day</title>
66
+ <additionalInfo>NPR's top stories about business, money, Wall Street, companies, and the economy that you can't miss. Subscribe to the Business Story of the Day RSS feed.</additionalInfo>
67
+ </item>
68
+ <item id="1030" num="17" type="topic">
69
+ <title>Children's Health</title>
70
+ <additionalInfo>NPR reports on children's health and medical news including health insurance, new treatments for diseases, and child product safety recalls. Subscribe to the RSS feed.</additionalInfo>
71
+ </item>
72
+ <item id="1060" num="18" type="topic">
73
+ <title>Commentary</title>
74
+ <additionalInfo>NPR's acclaimed commentary on news, politics, and sports. Subscribe to RSS news feeds and podcasts.</additionalInfo>
75
+ </item>
76
+ <item id="1109" num="19" type="topic">
77
+ <title>Concerts</title>
78
+ <additionalInfo>Performances from today's top artists, filmed at venues and festivals across the country.</additionalInfo>
79
+ </item>
80
+ <item id="1145" num="20" type="topic">
81
+ <title>Dance</title>
82
+ <additionalInfo>Dance</additionalInfo>
83
+ </item>
84
+ <item id="1049" num="21" type="topic">
85
+ <title>Digital Life</title>
86
+ <additionalInfo>NPR's stories on information technology, computing, and the internet. Download podcasts and subscribe to RSS feeds. Listen to audio online.</additionalInfo>
87
+ </item>
88
+ <item id="1108" num="22" type="topic">
89
+ <title>Discover Songs</title>
90
+ <additionalInfo>Song features from NPR Music including All Songs Considered, Song of the Day, Open Mic, Song on Deadline, Music Lists, and more. Listen online to find new music in rock, pop, folk, jazz, urban, blues, classical, and world music. Video sessions of new artists.</additionalInfo>
91
+ </item>
92
+ <item id="1051" num="23" type="topic">
93
+ <title>Diversions</title>
94
+ <additionalInfo>Irrestible and odd stories from news, culture, sports, and literature. Subscribe to the Diversions RSS feed.</additionalInfo>
95
+ </item>
96
+ <item id="1017" num="24" type="topic">
97
+ <title>Economy</title>
98
+ <additionalInfo>NPR news on the U.S. and world economy, the World Bank, and Federal Reserve. Commentary on economic trends. Subscribe to NPR Economy podcasts and RSS feeds.</additionalInfo>
99
+ </item>
100
+ <item id="1013" num="25" type="topic">
101
+ <title>Education</title>
102
+ <additionalInfo>NPR news and commentary on education, schools, colleges and universities, and emerging trends in learning. Listen to audio and subscribe to RSS feeds.</additionalInfo>
103
+ </item>
104
+ <item id="1102" num="26" type="topic">
105
+ <title>Election 2008</title>
106
+ <additionalInfo>In-depth coverage of the 2008 presidential election, Democratic and Republican candidates, and primary elections and caucuses. Listen to audio and video reports from the campaign trail. Interactive features include a primary calendar and an interactive election map.</additionalInfo>
107
+ </item>
108
+ <item id="1114" num="27" type="topic">
109
+ <title>Election 2008: Congressional &amp; State Races</title>
110
+ <additionalInfo>NPR looks at the key House, Senate and gubernatorial races for November 2008.</additionalInfo>
111
+ </item>
112
+ <item id="1111" num="28" type="topic">
113
+ <title>Election 2008: Issues</title>
114
+ <additionalInfo>NPR provides in-depth coverage of election issues, from the Iraq war to the economy to health care.</additionalInfo>
115
+ </item>
116
+ <item id="1113" num="29" type="topic">
117
+ <title>Election 2008: Money, Media &amp; Influence</title>
118
+ <additionalInfo>NPR looks at the political process in the 2008 presidential election, including campaign finance, media coverage and the role of lobbyists.</additionalInfo>
119
+ </item>
120
+ <item id="1115" num="30" type="topic">
121
+ <title>Election 2008: On the Campaign Trail</title>
122
+ <additionalInfo>NPR examines the presidential candidates on the campaign trail.</additionalInfo>
123
+ </item>
124
+ <item id="1112" num="31" type="topic">
125
+ <title>Election 2008: Voting Groups</title>
126
+ <additionalInfo>NPR looks at the key voting groups for election 2008, including white working-class voters, Hispanics and women.</additionalInfo>
127
+ </item>
128
+ <item id="1121" num="32" type="topic">
129
+ <title>Election 2008: Voting Problems</title>
130
+ <additionalInfo>NPR examines voting problems for the 2008 election with a look at voter intimidation, voter fraud, registration irregularities and other issues at the polls.</additionalInfo>
131
+ </item>
132
+ <item id="139482413" num="33" type="topic">
133
+ <title>Election 2012</title>
134
+ <additionalInfo>Explore NPR's coverage of the battle for the White House. You'll also find the latest news about House and Senate races and key statewide contests.</additionalInfo>
135
+ </item>
136
+ <item id="1131" num="34" type="topic">
137
+ <title>Energy</title>
138
+ <additionalInfo>Energy</additionalInfo>
139
+ </item>
140
+ <item id="1025" num="35" type="topic">
141
+ <title>Environment</title>
142
+ <additionalInfo>Breaking news on the environment, climate change, pollution, and endangered species. Also featuring Climate Connections, a special series on climate change co-produced by NPR and National Geographic.</additionalInfo>
143
+ </item>
144
+ <item id="1124" num="36" type="topic">
145
+ <title>Europe</title>
146
+ <additionalInfo>Europe</additionalInfo>
147
+ </item>
148
+ <item id="1141" num="37" type="topic">
149
+ <title>Fine Art</title>
150
+ <additionalInfo>Fine Art</additionalInfo>
151
+ </item>
152
+ <item id="1134" num="38" type="topic">
153
+ <title>Fitness &amp; Nutrition</title>
154
+ <additionalInfo>Fitness &amp; Nutrition</additionalInfo>
155
+ </item>
156
+ <item id="1053" num="39" type="topic">
157
+ <title>Food</title>
158
+ <additionalInfo>Stories on food, nutrition, recipes, cooking, cookbook reviews, and health. Download Food and Hidden Kitchen podcasts and subscribe to RSS feeds.</additionalInfo>
159
+ </item>
160
+ <item id="1061" num="40" type="topic">
161
+ <title>From Our Listeners</title>
162
+ <additionalInfo>Listeners respond by email and phone to NPR stories. Subscribe to the Listeners RSS feed.</additionalInfo>
163
+ </item>
164
+ <item id="1052" num="41" type="topic">
165
+ <title>Games &amp; Humor</title>
166
+ <additionalInfo>Games, puzzles, and contests plus odd stories from comedy, art, and society.</additionalInfo>
167
+ </item>
168
+ <item id="1054" num="42" type="topic">
169
+ <title>Gardening</title>
170
+ <additionalInfo>NPR stories about gardening, plants, and food crops. Read interviews and commentary and subscribe to the Gardening RSS feed.</additionalInfo>
171
+ </item>
172
+ <item id="1031" num="43" type="topic">
173
+ <title>Global Health</title>
174
+ <additionalInfo>NPR news on world health issues, disease control, public health and sanitation, and health education. Subscribe to the RSS feed.</additionalInfo>
175
+ </item>
176
+ <item id="1120" num="44" type="topic">
177
+ <title>Gov. Sarah Palin</title>
178
+ <additionalInfo>Browse NPR coverage of Republican vice-presidential candidate Alaska Gov. Sarah Palin.</additionalInfo>
179
+ </item>
180
+ <item id="1123" num="45" type="topic">
181
+ <title>Governing</title>
182
+ <additionalInfo>Governing</additionalInfo>
183
+ </item>
184
+ <item id="1128" num="46" type="topic">
185
+ <title>Health</title>
186
+ <additionalInfo>Health</additionalInfo>
187
+ </item>
188
+ <item id="1027" num="47" type="topic">
189
+ <title>Health Care</title>
190
+ <additionalInfo>The state of health care, health insurance, new medical research, disease prevention, and drug treatments. Interviews, news, and commentary from NPR's correspondents. Subscribe to podcasts.</additionalInfo>
191
+ </item>
192
+ <item id="1136" num="48" type="topic">
193
+ <title>History</title>
194
+ <additionalInfo>History</additionalInfo>
195
+ </item>
196
+ <item id="1096" num="49" type="topic">
197
+ <title>Holiday Story of the Day</title>
198
+ <additionalInfo>The holiday stories that you can't miss. Christmas, Hannukah, Kwanzaa, and New Year's. Subscribe to the Holiday Story of the Day RSS feed.</additionalInfo>
199
+ </item>
200
+ <item id="1002" num="50" type="topic">
201
+ <title>Home Page Top Stories</title>
202
+ <additionalInfo>NPR delivers breaking national and world news. Also top stories from business, politics, health, science, technology, music, arts and culture. Subscribe to podcasts and RSS feeds.</additionalInfo>
203
+ </item>
204
+ <item id="139545299" num="51" type="topic">
205
+ <title>House &amp; Senate Races</title>
206
+ <additionalInfo>Explore NPR's latest coverage of the 2012 congressional contests.</additionalInfo>
207
+ </item>
208
+ <item id="1129" num="52" type="topic">
209
+ <title>Humans</title>
210
+ <additionalInfo>Humans</additionalInfo>
211
+ </item>
212
+ <item id="1022" num="53" type="topic">
213
+ <title>Interviews</title>
214
+ <additionalInfo>NPR interviews famous and everyday individuals, including world leaders and political figures, artists, writers, musicians, and unique people in your community.</additionalInfo>
215
+ </item>
216
+ <item id="1127" num="54" type="topic">
217
+ <title>Latin America</title>
218
+ <additionalInfo>Latin America</additionalInfo>
219
+ </item>
220
+ <item id="1076" num="55" type="topic">
221
+ <title>Low-Wage America</title>
222
+ <additionalInfo>NPR stories about low-wage America, the income gap between rich and poor, affordable housing, welfare, medicaid, social security, and healthcare for the working poor.</additionalInfo>
223
+ </item>
224
+ <item id="1020" num="56" type="topic">
225
+ <title>Media</title>
226
+ <additionalInfo>News about the state of the media. Trends in broadcast and print media, television, and radio journalism. Download podcasts and RSS feeds.</additionalInfo>
227
+ </item>
228
+ <item id="1135" num="57" type="topic">
229
+ <title>Medical Treatments</title>
230
+ <additionalInfo>Medical Treatments</additionalInfo>
231
+ </item>
232
+ <item id="1029" num="58" type="topic">
233
+ <title>Mental Health</title>
234
+ <additionalInfo>NPR covers mental health, happiness, depression, and treatment options. Subscribe to the RSS feed.</additionalInfo>
235
+ </item>
236
+ <item id="1137" num="59" type="topic">
237
+ <title>Movie Interviews</title>
238
+ <additionalInfo>Movie Interviews</additionalInfo>
239
+ </item>
240
+ <item id="1045" num="60" type="topic">
241
+ <title>Movies</title>
242
+ <additionalInfo>NPR Movies podcast, movie reviews, and commentary on new and classic films. Interviews with filmmakers, actors, and actresses.</additionalInfo>
243
+ </item>
244
+ <item id="1147" num="61" type="topic">
245
+ <title>Multimedia</title>
246
+ <additionalInfo>National Public Radio offers up radio with a vision. Presenting NPR multimedia: the Picture Show blog and the Radio Pictures video podcast - quality visuals to go with NPR's quality sound.</additionalInfo>
247
+ </item>
248
+ <item id="1039" num="62" type="topic">
249
+ <title>Music</title>
250
+ <additionalInfo>NPR Music features, streams, live concerts and music news.</additionalInfo>
251
+ </item>
252
+ <item id="1151" num="63" type="topic">
253
+ <title>Music Games &amp; Humor</title>
254
+ <additionalInfo>Music Games &amp; Humor</additionalInfo>
255
+ </item>
256
+ <item id="1105" num="64" type="topic">
257
+ <title>Music Interviews</title>
258
+ <additionalInfo>Interviews with top musicians from jazz, blues, rock, pop, folk, classical, urban, and world music. Listen online to live studio sessions and musician interviews and watch video sessions.</additionalInfo>
259
+ </item>
260
+ <item id="1106" num="65" type="topic">
261
+ <title>Music News</title>
262
+ <additionalInfo>Current music news, artist interviews, album reviews, and music industry news from NPR Music. Rock, pop, folk, classical, jazz, blues, urban, and world music. Watch video sessions.</additionalInfo>
263
+ </item>
264
+ <item id="1104" num="66" type="topic">
265
+ <title>Music Reviews</title>
266
+ <additionalInfo>Music reviews of the best new albums in pop, rock, folk, jazz, blues, classical, world, and urban music. Song of the day, artist interviews, video sessions, and album reviews.</additionalInfo>
267
+ </item>
268
+ <item id="1110" num="67" type="topic">
269
+ <title>Music Videos</title>
270
+ <additionalInfo>Watch new music videos and live NPR studio sessions featuring top musicians. Discover songs and listen online. NPR covers the best pop, rock, urban, jazz, folk, blues, world, and classical music.</additionalInfo>
271
+ </item>
272
+ <item id="1122" num="68" type="topic">
273
+ <title>National Security</title>
274
+ <additionalInfo>National Security</additionalInfo>
275
+ </item>
276
+ <item id="1001" num="69" type="topic">
277
+ <title>News</title>
278
+ <additionalInfo>NPR news, audio, and pointernal linksdcasts. Coverage of breaking stories, national and world news, politics, business, science, technology, and extended coverage of major national and world events.</additionalInfo>
279
+ </item>
280
+ <item id="128850421" num="70" type="topic">
281
+ <title>News iPad</title>
282
+ <additionalInfo>teaser</additionalInfo>
283
+ </item>
284
+ <item id="1107" num="71" type="topic">
285
+ <title>NPR Music Essentials</title>
286
+ <additionalInfo>Lists of top artists and top songs compiled by musicians, critics, and noted NPR hosts. Listen online and find new songs in rock, pop, folk, jazz, blues, urban, classical, and world music.</additionalInfo>
287
+ </item>
288
+ <item id="1150" num="72" type="topic">
289
+ <title>NPR News Investigations</title>
290
+ <additionalInfo>NPR News Investigations</additionalInfo>
291
+ </item>
292
+ <item id="1028" num="73" type="topic">
293
+ <title>On Aging</title>
294
+ <additionalInfo>NPR stories and audio on aging, longevity, retirement, and senior issues. More articles on health care, leisure, disease prevention, and housing. Subscribe to the RSS feed.</additionalInfo>
295
+ </item>
296
+ <item id="1133" num="74" type="topic">
297
+ <title>On Disabilities</title>
298
+ <additionalInfo>On Disabilities</additionalInfo>
299
+ </item>
300
+ <item id="1057" num="75" type="topic">
301
+ <title>Opinion</title>
302
+ <additionalInfo>Editorial opinions and commentary on news events and world events. Download podcasts and subscribe to RSS feeds.</additionalInfo>
303
+ </item>
304
+ <item id="1046" num="76" type="topic">
305
+ <title>Performing Arts</title>
306
+ <additionalInfo>News, interviews, and commentary on theater, the arts, music, and dance.</additionalInfo>
307
+ </item>
308
+ <item id="1143" num="77" type="topic">
309
+ <title>Photography</title>
310
+ <additionalInfo>Photography</additionalInfo>
311
+ </item>
312
+ <item id="1014" num="78" type="topic">
313
+ <title>Politics</title>
314
+ <additionalInfo>NPR's expanded coverage of U.S. and world politics, the latest news from Congress and the White House, and elections. Subscribe to podcasts and RSS feeds.</additionalInfo>
315
+ </item>
316
+ <item id="1048" num="79" type="topic">
317
+ <title>Pop Culture</title>
318
+ <additionalInfo>News and commentary on popular culture trends. Download the Pop Culture podcast.</additionalInfo>
319
+ </item>
320
+ <item id="139544303" num="80" type="topic">
321
+ <title>Presidential Race</title>
322
+ <additionalInfo>Explore NPR's latest coverage of the race for the White House.</additionalInfo>
323
+ </item>
324
+ <item id="1139" num="81" type="topic">
325
+ <title>Recipes</title>
326
+ <additionalInfo>Recipes</additionalInfo>
327
+ </item>
328
+ <item id="1016" num="82" type="topic">
329
+ <title>Religion</title>
330
+ <additionalInfo>NPR's stories on U.S. and world religion, spirituality, ethics, and moral issues affecting society and culture. Subscribe to NPR Religion RSS feeds.</additionalInfo>
331
+ </item>
332
+ <item id="1062" num="83" type="topic">
333
+ <title>Remembrances</title>
334
+ <additionalInfo>NPR remembrances of remarkable individuals. Also obituaries and and tributes to great individuals. Subscribe to the Remembrances podcast.</additionalInfo>
335
+ </item>
336
+ <item id="1024" num="84" type="topic">
337
+ <title>Research News</title>
338
+ <additionalInfo>New advances in science, medicine, health, and technology.Stem cell research, drug research, and new treatments for disease.</additionalInfo>
339
+ </item>
340
+ <item id="1007" num="85" type="topic">
341
+ <title>Science</title>
342
+ <additionalInfo>The latest health and science news. Updates on medicine, healthy living, nutrition, drugs, diet, and advances in science and technology. Subscribe to the Health &amp; Science podcast.</additionalInfo>
343
+ </item>
344
+ <item id="1117" num="86" type="topic">
345
+ <title>Sen. Barack Obama (D-IL)</title>
346
+ <additionalInfo>Browse NPR coverage of Democratic presidential candidate Illinois Sen. Barack Obama.</additionalInfo>
347
+ </item>
348
+ <item id="1116" num="87" type="topic">
349
+ <title>Sen. Hillary Clinton (D-NY)</title>
350
+ <additionalInfo>Browse NPR coverage of Democratic presidential candidate New York Sen. Hillary Clinton.</additionalInfo>
351
+ </item>
352
+ <item id="1118" num="88" type="topic">
353
+ <title>Sen. John McCain (R-AZ)</title>
354
+ <additionalInfo>Browse NPR coverage of Republican presidential candidate Arizona Sen. John McCain.</additionalInfo>
355
+ </item>
356
+ <item id="1119" num="89" type="topic">
357
+ <title>Sen. Joseph Biden (D-DE)</title>
358
+ <additionalInfo>Browse NPR coverage of Democratic vice-presidential candidate Delaware Sen. Joseph Biden.</additionalInfo>
359
+ </item>
360
+ <item id="1026" num="90" type="topic">
361
+ <title>Space</title>
362
+ <additionalInfo>NPR coverage of space exploration, space shuttle missions, news from NASA, private space exploration, satellite technology, and new discoveries in astronomy and astrophysics.</additionalInfo>
363
+ </item>
364
+ <item id="1055" num="91" type="topic">
365
+ <title>Sports</title>
366
+ <additionalInfo>NPR sports news and interviews. Listen to Frank DeFord's sport commentary and download the sports podcast.</additionalInfo>
367
+ </item>
368
+ <item id="139545485" num="92" type="topic">
369
+ <title>Statewide Races</title>
370
+ <additionalInfo>Explore NPR's coverage of gubernatorial contests, ballot issues and other statewide elections in 2012.</additionalInfo>
371
+ </item>
372
+ <item id="1090" num="93" type="topic">
373
+ <title>Story of the Day</title>
374
+ <additionalInfo>NPR's daily top stories that you can't miss. Exceptional, moving, offbeat, or just plain funny. Subscribe to the Story of the Day podcast.</additionalInfo>
375
+ </item>
376
+ <item id="1146" num="94" type="topic">
377
+ <title>Strange News</title>
378
+ <additionalInfo>Unlikely stories from around the nation and the world.</additionalInfo>
379
+ </item>
380
+ <item id="1103" num="95" type="topic">
381
+ <title>Studio Sessions</title>
382
+ <additionalInfo>Musicians perform and discuss their work in the studios of NPR and NPR Music station partners. Live music sessions, interviews, and the best new songs in rock, pop, folk, classical, jazz, blues, urban, and world music. Watch video sessions.</additionalInfo>
383
+ </item>
384
+ <item id="1088" num="96" type="topic">
385
+ <title>Summer</title>
386
+ <additionalInfo>NPR stories about summer. Living, eating, diversions, health, and summer traditions. Subscribe to the Summer RSS feed.</additionalInfo>
387
+ </item>
388
+ <item id="1087" num="97" type="topic">
389
+ <title>Summer Reading: Cooking</title>
390
+ <additionalInfo>Fresh recipes and cookbooks for summer reading. Subscribe to the RSS feed.</additionalInfo>
391
+ </item>
392
+ <item id="1085" num="98" type="topic">
393
+ <title>Summer Reading: Fiction</title>
394
+ <additionalInfo>Selections for great summer fiction. Book reviews, excerpts, and author interviews. Suscribe to the Summer Fiction RSS feed.</additionalInfo>
395
+ </item>
396
+ <item id="1086" num="99" type="topic">
397
+ <title>Summer Reading: Kids</title>
398
+ <additionalInfo>NPR's selections of summer reading for kids. Excerpts, interviews, and reviews. Subscribe to RSS feeds.</additionalInfo>
399
+ </item>
400
+ <item id="1089" num="100" type="topic">
401
+ <title>Summer Reading: Nonfiction</title>
402
+ <additionalInfo>Selections for great summer nonfiction. Book reviews, excerpts, and author interviews. Suscribe to the Summer Reading Nonfiction RSS feed.</additionalInfo>
403
+ </item>
404
+ <item id="1019" num="101" type="topic">
405
+ <title>Technology</title>
406
+ <additionalInfo>Latest technology news and breakthroughs in technology, science, and industry. Download the NPR Technology podcast and Technology RSS feed.</additionalInfo>
407
+ </item>
408
+ <item id="1138" num="102" type="topic">
409
+ <title>Television</title>
410
+ <additionalInfo>Television</additionalInfo>
411
+ </item>
412
+ <item id="1078" num="103" type="topic">
413
+ <title>The Impact of War</title>
414
+ <additionalInfo>NPR news and stories about the wars in Iraq and Afghanistan. Interviews with soldiers, world leaders, veterans, and families on the home front. Read and listen to stories and subscribe to RSS feeds.</additionalInfo>
415
+ </item>
416
+ <item id="1144" num="104" type="topic">
417
+ <title>Theater</title>
418
+ <additionalInfo>Theater</additionalInfo>
419
+ </item>
420
+ <item id="1003" num="105" type="topic">
421
+ <title>U.S.</title>
422
+ <additionalInfo>NPR coverage of national news, U.S. politics, elections, business, arts, culture, health and science, and technology. Subscribe to the NPR Nation RSS feed.</additionalInfo>
423
+ </item>
424
+ <item id="1004" num="106" type="topic">
425
+ <title>World</title>
426
+ <additionalInfo>NPR world news, international art and culture, world business and financial markets, world economy, and global trends in health, science and technology. Subscribe to the World Story of the Day podcast and RSS feed.</additionalInfo>
427
+ </item>
428
+ <item id="1056" num="107" type="topic">
429
+ <title>World Story of the Day</title>
430
+ <additionalInfo>NPR's top daily news about world events, politics, economy, and culture. Download the World Story of the Day podcast.</additionalInfo>
431
+ </item>
432
+ <item id="1066" num="108" type="topic">
433
+ <title>Your Health</title>
434
+ <additionalInfo>News and commentary about personal health, medicine, healthcare, drugs, diet, recipes, and nutrition. Download the Your Health podcast and subscribe to our RSS feed.</additionalInfo>
435
+ </item>
436
+ <item id="1018" num="109" type="topic">
437
+ <title>Your Money</title>
438
+ <additionalInfo>NPR coverage of personal finance, money, investing, taxes, retirement, mortgages and housing markets, wealth management, and stock market news. Download NPR podcasts and RSS feeds.</additionalInfo>
439
+ </item>
440
+ </list>
@@ -0,0 +1,30 @@
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/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>Ravi Shankar, Who Brought Eastern Music To Western Legends, Dies</title>
20
+ <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>
21
+ <pubDate>Wed, 12 Dec 2012 00:30:00 -0500</pubDate>
22
+ <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>
23
+ <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>
24
+ <itunes:summary>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.</itunes:summary>
25
+ <itunes:keywords/>
26
+ <itunes:explicit>no</itunes:explicit>
27
+ <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>
28
+ </item>
29
+ </channel>
30
+ </rss>
@@ -0,0 +1,32 @@
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/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>In Freedom, Ex-Felon Becomes Probation Counselor </title>
20
+ <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>
21
+ <pubDate>Tue, 11 Dec 2012 15:24:00 -0500</pubDate>
22
+ <link>http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor?ft=1&amp;f=166884441</link>
23
+ <guid>http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor?ft=1&amp;f=166884441</guid>
24
+ <itunes:summary>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.</itunes:summary>
25
+ <itunes:keywords/>
26
+ <itunes:duration>290</itunes:duration>
27
+ <itunes:explicit>no</itunes:explicit>
28
+ <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>
29
+ <enclosure url="http://public.npr.org/anon.npr-mp3/npr/atc/2012/12/20121211_atc_07.mp3?sc=16&amp;orgId=278&amp;forsearch=0&amp;topicId=1003&amp;ft=1&amp;f=166884441" length="100000" type="audio/mpeg"/>
30
+ </item>
31
+ </channel>
32
+ </rss>
@@ -0,0 +1,19 @@
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/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
+ </channel>
19
+ </rss>