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,54 @@
1
+ <div class="nprMod">
2
+ <script type="text/javascript">
3
+ /* popup window function, based on original code by James Craig */
4
+ var sUserAgent = navigator.userAgent.toLowerCase();
5
+ var isOp = (sUserAgent.indexOf('opera')!=-1)?true:false;
6
+
7
+ function moduleLink(oAnchor, sWindow){
8
+ var sUrl = '';
9
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
10
+ else {
11
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
12
+ if(sUrl=='') sUrl = oAnchor.href;
13
+ }
14
+
15
+ if(sUrl=='') return true;
16
+ var sWindowName = sWindow?sWindow:'nprPopup';
17
+ if(sUrl) var oPopup = window.open(sUrl,sWindowName);
18
+ if(oPopup && !isOp) oPopup.focus();
19
+ return (oPopup)?false:true;
20
+ }
21
+
22
+ function moduleMedia(oAnchor){
23
+ var sUrl = '';
24
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
25
+ else {
26
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
27
+ if(sUrl=='') sUrl = oAnchor.href;
28
+ }
29
+
30
+ if(sUrl=='') return true;
31
+
32
+ window.location.href = sUrl;
33
+ return false;
34
+ }
35
+ </script>
36
+
37
+ <script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script>
38
+ <div class="nprModStory1">
39
+ <div class="nprModImg">
40
+ <a href="http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815_sq-feeced862ebdd5504fab9770d31bc3cfae40fdf6.jpg?s=13" alt="Redferns" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a>
41
+ </div>
42
+ <div class="nprModHead">
43
+ <a href="http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies" onclick="return moduleLink(this);"><strong>Ravi Shankar, Who Brought Eastern Music To Western Legends, Dies</strong></a>
44
+ </div>
45
+ <div class="nprModText">
46
+ <span class="nprModDate">December 12, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span>
47
+ </div>
48
+ <div class="nprModAudioLinks">
49
+ </div>
50
+ <div style="clear:both;">
51
+ &nbsp;
52
+ </div>
53
+ </div>
54
+ </div>
@@ -0,0 +1,55 @@
1
+ <div class="nprMod">
2
+ <script type="text/javascript">
3
+ /* popup window function, based on original code by James Craig */
4
+ var sUserAgent = navigator.userAgent.toLowerCase();
5
+ var isOp = (sUserAgent.indexOf('opera')!=-1)?true:false;
6
+
7
+ function moduleLink(oAnchor, sWindow){
8
+ var sUrl = '';
9
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
10
+ else {
11
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
12
+ if(sUrl=='') sUrl = oAnchor.href;
13
+ }
14
+
15
+ if(sUrl=='') return true;
16
+ var sWindowName = sWindow?sWindow:'nprPopup';
17
+ if(sUrl) var oPopup = window.open(sUrl,sWindowName);
18
+ if(oPopup && !isOp) oPopup.focus();
19
+ return (oPopup)?false:true;
20
+ }
21
+
22
+ function moduleMedia(oAnchor){
23
+ var sUrl = '';
24
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
25
+ else {
26
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
27
+ if(sUrl=='') sUrl = oAnchor.href;
28
+ }
29
+
30
+ if(sUrl=='') return true;
31
+
32
+ window.location.href = sUrl;
33
+ return false;
34
+ }
35
+ </script>
36
+
37
+ <script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script>
38
+ <div class="nprModStory1">
39
+ <div class="nprModImg">
40
+ <a href="http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/11/clark_composite_sq-fe93b6a98c444ebe0b1dd7e3e02729f934c676fb.jpg?s=13" alt="Courtesy of Washington Universtiy in St. Louis" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a>
41
+ </div>
42
+ <div class="nprModHead">
43
+ <a href="http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor" onclick="return moduleLink(this);"><strong>In Freedom, Ex-Felon Becomes Probation Counselor </strong></a>
44
+ </div>
45
+ <div class="nprModText">
46
+ <span class="nprModDate">December 11, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">KWMU</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span>
47
+ </div>
48
+ <div class="nprModAudioLinks">
49
+ <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167000584&type=1&mtype=WM&orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkWindows"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconWindows" /></a> <span> </span> <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167000584&type=1&mtype=WM&orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkWindows">Windows Media</a> <span class="nprModAudioPipeMP3"> | </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121211_atc_07.mp3?orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkMp3"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconMp3" /></a> <span> </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121211_atc_07.mp3?orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkMp3">MP3</a> <span class="nprModAudioPipePlayNow"> | </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconPlayNow" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow">NPR Player</a> <span class="nprModAudioPipePlaylist"> | </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist"><img src="http://media.npr.org/chrome/audio-icon-plus.gif" height="15" width="14" border="0" class="nprModLinkAddToPlaylistIcon" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist">Add to NPR Player</a>
50
+ </div>
51
+ <div style="clear:both;">
52
+ &nbsp;
53
+ </div>
54
+ </div>
55
+ </div>
@@ -0,0 +1,38 @@
1
+ <div class="nprMod">
2
+ <script type="text/javascript">
3
+ /* popup window function, based on original code by James Craig */
4
+ var sUserAgent = navigator.userAgent.toLowerCase();
5
+ var isOp = (sUserAgent.indexOf('opera')!=-1)?true:false;
6
+
7
+ function moduleLink(oAnchor, sWindow){
8
+ var sUrl = '';
9
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
10
+ else {
11
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
12
+ if(sUrl=='') sUrl = oAnchor.href;
13
+ }
14
+
15
+ if(sUrl=='') return true;
16
+ var sWindowName = sWindow?sWindow:'nprPopup';
17
+ if(sUrl) var oPopup = window.open(sUrl,sWindowName);
18
+ if(oPopup && !isOp) oPopup.focus();
19
+ return (oPopup)?false:true;
20
+ }
21
+
22
+ function moduleMedia(oAnchor){
23
+ var sUrl = '';
24
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
25
+ else {
26
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
27
+ if(sUrl=='') sUrl = oAnchor.href;
28
+ }
29
+
30
+ if(sUrl=='') return true;
31
+
32
+ window.location.href = sUrl;
33
+ return false;
34
+ }
35
+ </script>
36
+
37
+ <script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script>
38
+ </div>
@@ -0,0 +1,82 @@
1
+ <div class="nprMod">
2
+ <script type="text/javascript">
3
+ /* popup window function, based on original code by James Craig */
4
+ var sUserAgent = navigator.userAgent.toLowerCase();
5
+ var isOp = (sUserAgent.indexOf('opera')!=-1)?true:false;
6
+
7
+ function moduleLink(oAnchor, sWindow){
8
+ var sUrl = '';
9
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
10
+ else {
11
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
12
+ if(sUrl=='') sUrl = oAnchor.href;
13
+ }
14
+
15
+ if(sUrl=='') return true;
16
+ var sWindowName = sWindow?sWindow:'nprPopup';
17
+ if(sUrl) var oPopup = window.open(sUrl,sWindowName);
18
+ if(oPopup && !isOp) oPopup.focus();
19
+ return (oPopup)?false:true;
20
+ }
21
+
22
+ function moduleMedia(oAnchor){
23
+ var sUrl = '';
24
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
25
+ else {
26
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
27
+ if(sUrl=='') sUrl = oAnchor.href;
28
+ }
29
+
30
+ if(sUrl=='') return true;
31
+
32
+ window.location.href = sUrl;
33
+ return false;
34
+ }
35
+ </script>
36
+
37
+ <script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script>
38
+ <div class="nprModStory1">
39
+ <div class="nprModImg">
40
+ <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/twosides132way_sq-5e343907998d9f07d5c1e4f01ee1fdbb8326ac27.jpg?s=13" alt="Getty Images" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a>
41
+ </div>
42
+ <div class="nprModHead">
43
+ <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says" onclick="return moduleLink(this);"><strong>On 'Fiscal Cliff,' Majority Of Public Sides With Democrats, Pew Poll Says</strong></a>
44
+ </div>
45
+ <div class="nprModText">
46
+ <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span>
47
+ </div>
48
+ <div class="nprModAudioLinks">
49
+ </div>
50
+ <div style="clear:both;">
51
+ &nbsp;
52
+ </div>
53
+ </div>
54
+ <div class="nprModStory2">
55
+ <div class="nprModImg">
56
+ <a href="http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/button_1207_1_sq-7676362472ddbb1e5cfc8a9c8bb42d29908f53ea.jpg?s=13" alt="Ken Rudin collection" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a>
57
+ </div>
58
+ <div class="nprModHead">
59
+ <a href="http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time" onclick="return moduleLink(this);"><strong>It's ScuttleButton Time!</strong></a>
60
+ </div>
61
+ <div class="nprModText">
62
+ <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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)</span>
63
+ </div>
64
+ <div style="clear:both;">
65
+ &nbsp;
66
+ </div>
67
+ </div>
68
+ <div class="nprModStory3">
69
+ <div class="nprModImg">
70
+ <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/m75132way_sq-03b05522462b24e63b4a6d85328261a32479f564.jpg?s=13" alt="APA /Landov" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a>
71
+ </div>
72
+ <div class="nprModHead">
73
+ <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel" onclick="return moduleLink(this);"><strong>Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel </strong></a>
74
+ </div>
75
+ <div class="nprModText">
76
+ <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span>
77
+ </div>
78
+ <div style="clear:both;">
79
+ &nbsp;
80
+ </div>
81
+ </div>
82
+ </div>
@@ -0,0 +1,8 @@
1
+
2
+ <div class="nprMod">
3
+ <div class="nprModStory1">
4
+ <div class="nprModHead">
5
+ There was an error processing this request.
6
+ </div>
7
+ </div>
8
+ </div>
@@ -0,0 +1,69 @@
1
+ <div class="nprMod">
2
+ <script type="text/javascript">
3
+ /* popup window function, based on original code by James Craig */
4
+ var sUserAgent = navigator.userAgent.toLowerCase();
5
+ var isOp = (sUserAgent.indexOf('opera')!=-1)?true:false;
6
+
7
+ function moduleLink(oAnchor, sWindow){
8
+ var sUrl = '';
9
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
10
+ else {
11
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
12
+ if(sUrl=='') sUrl = oAnchor.href;
13
+ }
14
+
15
+ if(sUrl=='') return true;
16
+ var sWindowName = sWindow?sWindow:'nprPopup';
17
+ if(sUrl) var oPopup = window.open(sUrl,sWindowName);
18
+ if(oPopup && !isOp) oPopup.focus();
19
+ return (oPopup)?false:true;
20
+ }
21
+
22
+ function moduleMedia(oAnchor){
23
+ var sUrl = '';
24
+ if(typeof(oAnchor)=='string') sUrl = oAnchor;
25
+ else {
26
+ if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
27
+ if(sUrl=='') sUrl = oAnchor.href;
28
+ }
29
+
30
+ if(sUrl=='') return true;
31
+
32
+ window.location.href = sUrl;
33
+ return false;
34
+ }
35
+ </script>
36
+
37
+ <script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script>
38
+ <div class="nprModStory1">
39
+ <div class="nprModImg">
40
+ <a href="http://www.npr.org/blogs/money/2012/12/13/167055503/why-legos-are-so-expensive-and-so-popular" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/lego_sq-5697f9cc467d4cb5a52b9610454960463b261358.jpg?s=13" alt="NPR" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a>
41
+ </div>
42
+ <div class="nprModHead">
43
+ <a href="http://www.npr.org/blogs/money/2012/12/13/167055503/why-legos-are-so-expensive-and-so-popular" onclick="return moduleLink(this);"><strong>Why Legos Are So Expensive — And So Popular</strong></a>
44
+ </div>
45
+ <div class="nprModText">
46
+ <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">Legos often cost twice as much as similar blocks from a rival toymaker. So why are Legos so much more popular than other brands?</span>
47
+ </div>
48
+ <div class="nprModAudioLinks">
49
+ <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167199727&type=1&mtype=WM&orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkWindows"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconWindows" /></a> <span> </span> <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167199727&type=1&mtype=WM&orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkWindows">Windows Media</a> <span class="nprModAudioPipeMP3"> | </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121213_atc_17.mp3?orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkMp3"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconMp3" /></a> <span> </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121213_atc_17.mp3?orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkMp3">MP3</a> <span class="nprModAudioPipePlayNow"> | </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconPlayNow" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow">NPR Player</a> <span class="nprModAudioPipePlaylist"> | </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist"><img src="http://media.npr.org/chrome/audio-icon-plus.gif" height="15" width="14" border="0" class="nprModLinkAddToPlaylistIcon" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, '')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist">Add to NPR Player</a>
50
+ </div>
51
+ <div style="clear:both;">
52
+ &nbsp;
53
+ </div>
54
+ </div>
55
+ <div class="nprModStory2">
56
+ <div class="nprModImg">
57
+ <a href="http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/2_percent_sq-11ba8a8cb3610ad2c3740ffd6116473304176d6d.jpg?s=13" alt="iStockphoto.com" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a>
58
+ </div>
59
+ <div class="nprModHead">
60
+ <a href="http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes" onclick="return moduleLink(this);"><strong>How The Rich Feel About Paying More Taxes</strong></a>
61
+ </div>
62
+ <div class="nprModText">
63
+ <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span>
64
+ </div>
65
+ <div style="clear:both;">
66
+ &nbsp;
67
+ </div>
68
+ </div>
69
+ </div>
@@ -0,0 +1 @@
1
+ document.write('<div class="nprMod"> <script type="text/javascript">/* popup window function, based on original code by James Craig */var sUserAgent = navigator.userAgent.toLowerCase();var isOp = (sUserAgent.indexOf(\'opera\')!=-1)?true:false;function moduleLink(oAnchor, sWindow){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; var sWindowName = sWindow?sWindow:\'nprPopup\'; if(sUrl) var oPopup = window.open(sUrl,sWindowName); if(oPopup && !isOp) oPopup.focus(); return (oPopup)?false:true;}function moduleMedia(oAnchor){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; window.location.href = sUrl; return false;}</script><script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script> <div class="nprModStory1"> <div class="nprModImg"> <a href="http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815_sq-feeced862ebdd5504fab9770d31bc3cfae40fdf6.jpg?s=13" alt="Redferns" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a> </div> <div class="nprModHead"> <a href="http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies" onclick="return moduleLink(this);"><strong>Ravi Shankar, Who Brought Eastern Music To Western Legends, Dies</strong></a> </div> <div class="nprModText"> <span class="nprModDate">December 12, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span> </div> <div class="nprModAudioLinks"> </div> <div style="clear:both;"> &nbsp; </div> </div></div>');
@@ -0,0 +1 @@
1
+ document.write('<div class="nprMod"> <script type="text/javascript">/* popup window function, based on original code by James Craig */var sUserAgent = navigator.userAgent.toLowerCase();var isOp = (sUserAgent.indexOf(\'opera\')!=-1)?true:false;function moduleLink(oAnchor, sWindow){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; var sWindowName = sWindow?sWindow:\'nprPopup\'; if(sUrl) var oPopup = window.open(sUrl,sWindowName); if(oPopup && !isOp) oPopup.focus(); return (oPopup)?false:true;}function moduleMedia(oAnchor){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; window.location.href = sUrl; return false;}</script><script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script> <div class="nprModStory1"> <div class="nprModImg"> <a href="http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/11/clark_composite_sq-fe93b6a98c444ebe0b1dd7e3e02729f934c676fb.jpg?s=13" alt="Courtesy of Washington Universtiy in St. Louis" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a> </div> <div class="nprModHead"> <a href="http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor" onclick="return moduleLink(this);"><strong>In Freedom, Ex-Felon Becomes Probation Counselor </strong></a> </div> <div class="nprModText"> <span class="nprModDate">December 11, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">KWMU</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span> </div> <div class="nprModAudioLinks"> <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167000584&type=1&mtype=WM&orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkWindows"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconWindows" /></a> <span> </span> <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167000584&type=1&mtype=WM&orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkWindows">Windows Media</a> <span class="nprModAudioPipeMP3"> | </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121211_atc_07.mp3?orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkMp3"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconMp3" /></a> <span> </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121211_atc_07.mp3?orgId=278&topicId=1003" onclick="return moduleMedia(this);" class="nprModLinkMp3">MP3</a> <span class="nprModAudioPipePlayNow"> | </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconPlayNow" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow">NPR Player</a> <span class="nprModAudioPipePlaylist"> | </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist"><img src="http://media.npr.org/chrome/audio-icon-plus.gif" height="15" width="14" border="0" class="nprModLinkAddToPlaylistIcon" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(166884441, 167000584, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist">Add to NPR Player</a> </div> <div style="clear:both;"> &nbsp; </div> </div></div>');
@@ -0,0 +1 @@
1
+ document.write('<div class="nprMod"> <script type="text/javascript">/* popup window function, based on original code by James Craig */var sUserAgent = navigator.userAgent.toLowerCase();var isOp = (sUserAgent.indexOf(\'opera\')!=-1)?true:false;function moduleLink(oAnchor, sWindow){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; var sWindowName = sWindow?sWindow:\'nprPopup\'; if(sUrl) var oPopup = window.open(sUrl,sWindowName); if(oPopup && !isOp) oPopup.focus(); return (oPopup)?false:true;}function moduleMedia(oAnchor){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; window.location.href = sUrl; return false;}</script><script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script></div>');
@@ -0,0 +1 @@
1
+ document.write('<div class="nprMod"> <script type="text/javascript">/* popup window function, based on original code by James Craig */var sUserAgent = navigator.userAgent.toLowerCase();var isOp = (sUserAgent.indexOf(\'opera\')!=-1)?true:false;function moduleLink(oAnchor, sWindow){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; var sWindowName = sWindow?sWindow:\'nprPopup\'; if(sUrl) var oPopup = window.open(sUrl,sWindowName); if(oPopup && !isOp) oPopup.focus(); return (oPopup)?false:true;}function moduleMedia(oAnchor){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; window.location.href = sUrl; return false;}</script><script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script> <div class="nprModStory1"> <div class="nprModImg"> <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/twosides132way_sq-5e343907998d9f07d5c1e4f01ee1fdbb8326ac27.jpg?s=13" alt="Getty Images" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a> </div> <div class="nprModHead"> <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says" onclick="return moduleLink(this);"><strong>On \'Fiscal Cliff,\' Majority Of Public Sides With Democrats, Pew Poll Says</strong></a> </div> <div class="nprModText"> <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span> </div> <div class="nprModAudioLinks"> </div> <div style="clear:both;"> &nbsp; </div> </div> <div class="nprModStory2"> <div class="nprModImg"> <a href="http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/button_1207_1_sq-7676362472ddbb1e5cfc8a9c8bb42d29908f53ea.jpg?s=13" alt="Ken Rudin collection" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a> </div> <div class="nprModHead"> <a href="http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time" onclick="return moduleLink(this);"><strong>It\'s ScuttleButton Time!</strong></a> </div> <div class="nprModText"> <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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)</span> </div> <div style="clear:both;"> &nbsp; </div> </div> <div class="nprModStory3"> <div class="nprModImg"> <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/m75132way_sq-03b05522462b24e63b4a6d85328261a32479f564.jpg?s=13" alt="APA /Landov" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a> </div> <div class="nprModHead"> <a href="http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel" onclick="return moduleLink(this);"><strong>Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel </strong></a> </div> <div class="nprModText"> <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span> </div> <div style="clear:both;"> &nbsp; </div> </div></div>');
@@ -0,0 +1,8 @@
1
+
2
+ <div class="nprMod">
3
+ <div class="nprModStory1">
4
+ <div class="nprModHead">
5
+ There was an error processing this request.
6
+ </div>
7
+ </div>
8
+ </div>
@@ -0,0 +1 @@
1
+ document.write('<div class="nprMod"> <script type="text/javascript">/* popup window function, based on original code by James Craig */var sUserAgent = navigator.userAgent.toLowerCase();var isOp = (sUserAgent.indexOf(\'opera\')!=-1)?true:false;function moduleLink(oAnchor, sWindow){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; var sWindowName = sWindow?sWindow:\'nprPopup\'; if(sUrl) var oPopup = window.open(sUrl,sWindowName); if(oPopup && !isOp) oPopup.focus(); return (oPopup)?false:true;}function moduleMedia(oAnchor){ var sUrl = \'\'; if(typeof(oAnchor)==\'string\') sUrl = oAnchor; else { if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute(\'href\'); if(sUrl==\'\') sUrl = oAnchor.href; } if(sUrl==\'\') return true; window.location.href = sUrl; return false;}</script><script type="text/javascript" src="http://www.npr.org/templates/javascript/generated/apiModule.js"></script> <div class="nprModStory1"> <div class="nprModImg"> <a href="http://www.npr.org/blogs/money/2012/12/13/167055503/why-legos-are-so-expensive-and-so-popular" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/lego_sq-5697f9cc467d4cb5a52b9610454960463b261358.jpg?s=13" alt="NPR" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a> </div> <div class="nprModHead"> <a href="http://www.npr.org/blogs/money/2012/12/13/167055503/why-legos-are-so-expensive-and-so-popular" onclick="return moduleLink(this);"><strong>Why Legos Are So Expensive — And So Popular</strong></a> </div> <div class="nprModText"> <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">Legos often cost twice as much as similar blocks from a rival toymaker. So why are Legos so much more popular than other brands?</span> </div> <div class="nprModAudioLinks"> <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167199727&type=1&mtype=WM&orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkWindows"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconWindows" /></a> <span> </span> <a href="http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167199727&type=1&mtype=WM&orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkWindows">Windows Media</a> <span class="nprModAudioPipeMP3"> | </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121213_atc_17.mp3?orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkMp3"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconMp3" /></a> <span> </span> <a href="http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121213_atc_17.mp3?orgId=1&topicId=1006" onclick="return moduleMedia(this);" class="nprModLinkMp3">MP3</a> <span class="nprModAudioPipePlayNow"> | </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow"><img src="http://media.npr.org/chrome/audio-icon-pos.gif" height="15" width="14" border="0" class="nprModListenIconPlayNow" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.PLAY_NOW, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkPlayNow">NPR Player</a> <span class="nprModAudioPipePlaylist"> | </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist"><img src="http://media.npr.org/chrome/audio-icon-plus.gif" height="15" width="14" border="0" class="nprModLinkAddToPlaylistIcon" /></a> <span> </span> <a href="javascript:NPR.Player.openPlayer(167055503, 167199727, null, NPR.Player.Action.ADD_TO_PLAYLIST, NPR.Player.Type.STORY, \'\')" onclick="return moduleMedia(this);" class="nprModLinkAddToPlaylist">Add to NPR Player</a> </div> <div style="clear:both;"> &nbsp; </div> </div> <div class="nprModStory2"> <div class="nprModImg"> <a href="http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes" onclick="return moduleLink(this);"><img src="http://media.npr.org/assets/img/2012/12/13/2_percent_sq-11ba8a8cb3610ad2c3740ffd6116473304176d6d.jpg?s=13" alt="iStockphoto.com" height="75" width="75" border="0" align="left" style="margin-right: 5px;" /></a> </div> <div class="nprModHead"> <a href="http://www.npr.org/2012/12/11/166956822/how-the-rich-feel-about-paying-more-taxes" onclick="return moduleLink(this);"><strong>How The Rich Feel About Paying More Taxes</strong></a> </div> <div class="nprModText"> <span class="nprModDate">December 13, 2012</span> <span class="nprModPipe"> | </span> <span class="nprModName">NPR</span> <span class="nprMiddot"> &middot; </span> <span class="nprTeaser">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.</span> </div> <div style="clear:both;"> &nbsp; </div> </div></div>');
@@ -0,0 +1 @@
1
+ {"version": "0.94", "list": {"title": {"$text": "NPR: Stories from NPR"}, "teaser": {"$text": "Assorted stories from NPR"}, "miniTeaser": {"$text": "Custom NPR News Feed API. Visit http://www.npr.org/templates/apidoc/index.php for more information."}, "link": [{"type": "api", "$text": "http://api.npr.org/query?id=167019577&apiKey=API_KEY"}, {"type": "html", "$text": "http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies?ft=3&f=167019577"}], "story": [{"id": "167019577", "link": [{"type": "html", "$text": "http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=167019577&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/TTXiJB"}], "title": {"$text": "Ravi Shankar, Who Brought Eastern Music To Western Legends, Dies"}, "partnerId": {"$text": "167019577"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "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."}, "miniTeaser": {"$text": "The sitar master and composer worked with George Harrison, Yehudi Menuhin, Philip Glass and more."}, "slug": {"$text": "The Record"}, "thumbnail": {"medium": {"$text": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815_sq-feeced862ebdd5504fab9770d31bc3cfae40fdf6.jpg?s=13"}, "large": {"$text": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815_sq-feeced862ebdd5504fab9770d31bc3cfae40fdf6.jpg?s=11"}, "provider": {"$text": "Redferns"}}, "storyDate": {"$text": "Wed, 12 Dec 2012 04:00:00 -0500"}, "pubDate": {"$text": "Wed, 12 Dec 2012 01:00:00 -0500"}, "lastModifiedDate": {"$text": "Wed, 12 Dec 2012 01:00:06 -0500"}, "show": [{"program": {"id": "3", "code": "ME", "$text": "Morning Edition"}, "showDate": {"$text": "Wed, 12 Dec 2012 04:00:00 -0500"}, "segNum": {"$text": "57"}}], "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "161375941", "type": "category", "title": {"$text": "The Musicians"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/therecord/161375941/the-musicians?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=161375941&apiKey=API_KEY"}]}, {"id": "128494978", "type": "blog", "slug": "true", "title": {"$text": "The Record"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/therecord/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=128494978&apiKey=API_KEY"}]}, {"id": "100920965", "type": "newsPackage", "title": {"$text": "Music Articles"}, "link": [{"type": "html", "$text": "http://www.npr.org/series/100920965/music-articles/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=100920965&apiKey=API_KEY"}]}, {"id": "10004", "type": "genre", "title": {"$text": "World"}, "link": [{"type": "html", "$text": "http://www.npr.org/music/genres/world/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=10004&apiKey=API_KEY"}]}, {"id": "1106", "type": "primaryTopic", "title": {"$text": "Music News"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/music-news/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=1106&apiKey=API_KEY"}]}, {"id": "1106", "type": "topic", "title": {"$text": "Music News"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/music-news/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=1106&apiKey=API_KEY"}]}, {"id": "1062", "type": "topic", "title": {"$text": "Remembrances"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/remembrances/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=1062&apiKey=API_KEY"}]}, {"id": "1039", "type": "topic", "title": {"$text": "Music"}, "link": [{"type": "html", "$text": "http://www.npr.org/music/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=1039&apiKey=API_KEY"}]}, {"id": "1002", "type": "topic", "title": {"$text": "Home Page Top Stories"}, "link": [{"type": "html", "$text": "http://www.npr.org/?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=1002&apiKey=API_KEY"}]}], "audio": [{"id": "167021351", "type": "primary", "title": {}, "duration": {"$text": "0"}, "description": {}, "format": {}, "rightsHolder": {}, "permissions": {"download": {"allow": "false"}, "stream": {"allow": "true"}, "embed": {"allow": "false"}}, "stream": {"active": "false"}}], "byline": [{"id": "167019584", "name": {"personId": "2101242", "$text": "Susan Stamberg"}, "link": [{"type": "html", "$text": "http://www.npr.org/people/2101242/susan-stamberg?ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=2101242&apiKey=API_KEY"}]}], "container": [{"id": "167020780", "title": {}, "introText": {}, "colSpan": {"$text": "1"}, "displayOptions": {"typeId": "2", "$text": "Display Both"}, "link": [{"refId": "167020072", "num": "1"}, {"refId": "167020069", "num": "2"}]}], "image": [{"id": "167021232", "type": "primary", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815-0e02bde00f7b2ac036374e2874fc6b5ee6de4352.jpg?s=12", "hasBorder": "false", "title": {"$text": "Ravi Shankar circa 1960 in the U.K."}, "caption": {"$text": "Ravi Shankar circa 1960 in the U.K."}, "link": {"url": ""}, "producer": {"$text": "David Redfern"}, "provider": {"url": "", "$text": "Redferns"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815-0e02bde00f7b2ac036374e2874fc6b5ee6de4352.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815-0e02bde00f7b2ac036374e2874fc6b5ee6de4352.jpg", "height": "2942", "width": "3915"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815_sq-feeced862ebdd5504fab9770d31bc3cfae40fdf6.jpg", "height": "2350", "width": "2350"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815_wide-71aa24bf68c198dc53053a8eba0ddaf845c3b605.jpg", "height": "2200", "width": "3915"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815-0e02bde00f7b2ac036374e2874fc6b5ee6de4352.jpg", "height": "2942", "width": "3915"}]}], "relatedLink": [{"id": "167020072", "type": "internal", "caption": {"$text": " Ravi Shankar At 90: The Man And His Music"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=125507150&ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=125507150&apiKey=API_KEY"}]}, {"id": "167020069", "type": "internal", "caption": {"$text": " Indian Classical Music 101 With Ravi Shankar"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=125512689&ft=3&f=167019577"}, {"type": "api", "$text": "http://api.npr.org/query?id=125512689&apiKey=API_KEY"}]}], "text": {"paragraph": [{"num": "1", "$text": "Sitar master and composer Ravi Shankar died Tuesday at a hospital near his home in the San Diego area. Shankar's foundation released a statement that says the musician had suffered from upper-respiratory and heart issues over the past year and underwent heart-valve replacement surgery last week. He was 92."}, {"num": "2", "$text": "When he was just 10 years old, Pandit Ravi Shankar began performing in Europe and the U.S. with his family's Indian dance troupe. It was a glamorous life: the best hotels, the best meals, celebrities coming backstage to say just how much they'd enjoyed the concert. But at age 18, Shankar gave up all the glitter and went back to a dusty little town in India to study with a guru who taught him the sitar. He apprenticed for years, then started to play in public on the ancient and difficult string instrument. Eventually, he became a master."}, {"num": "3", "$text": "Shankar's music is like a fine Indian sari — silken, swirling, exotic, it can break your heart with its beauty. He was a respected classical musician, but in 1966 he became an international superstar when George Harrison studied with him. Shankar's goal to make Eastern music known in the West was achieved with help from The Beatles, though he grew discouraged by the hippie scene, where drugs clouded the attention of his audience."}, {"num": "4", "$text": "Back in India, Shankar wrote sitar concerts for Western symphony orchestras and continued touring. The composer and performer remained a teacher too. In December of 2004, when I visited his home in New Delhi, the sitar master was still giving lessons. He sat on the carpeted floor in an old brown sweater vest playing simple exercises; his sitar filled the room with feeling."}, {"num": "5", "$text": "\"[This music] is sort of is a combination of shanta and karuna, which means tranquility and sadness,\" he said of the piece he was playing. \"This sadness is ... like wanting to reach out [for something] and not finding it, whether for a lover or for God.\""}, {"num": "6", "$text": "Shankar's music reached out to some of the West's finest musicians. Violinist Yehudi Menuhin and composer Philip Glass were friends and collaborators. One of today's top pop stars, Grammy winner Norah Jones, is Shankar's daughter. Another daughter, Anoushka, learned sitar from her father, and now takes his classical tradition and makes it more contemporary."}, {"num": "7", "$text": "A few winters ago in Delhi, remembering those demanding early years of sitar studies, Ravi Shankar said his guru's most important lesson was this: \"He says that we have to earn our livelihood, and for that we have to perform and accept money. But music is not for sale. The music that I have learned and want to give is like worshiping God. It's absolutely like a prayer.\""}, {"num": "8", "$text": "Shankar once said he felt ecstasy when he made music — the world was erased, and he experienced great peace. His music embraced and lifted those who heard and loved it, his widow Sukanya, his daughters and his many fans. [Copyright 2012 National Public Radio]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "Sitar master and composer <a href=\"http://www.npr.org/templates/story/story.php?storyId=17093771\" target=\"_blank\">Ravi Shankar</a> died Tuesday at a hospital near his home in the San Diego area. Shankar's foundation released a statement that says the musician had suffered from upper-respiratory and heart issues over the past year and underwent heart-valve replacement surgery last week. He was 92."}, {"num": "2", "$text": "When he was just 10 years old, Pandit Ravi Shankar began performing in Europe and the U.S. with his family's Indian dance troupe. It was a glamorous life: the best hotels, the best meals, celebrities coming backstage to say just how much they'd enjoyed the concert. But at age 18, Shankar gave up all the glitter and went back to a dusty little town in India to study with a guru who taught him the sitar. He apprenticed for years, then started to play in public on the ancient and difficult string instrument. Eventually, he became a master."}, {"num": "3", "$text": "Shankar's music is like a fine Indian sari — silken, swirling, exotic, it can break your heart with its beauty. He was a respected classical musician, but in 1966 he became an international superstar when <a href=\"http://www.npr.org/templates/story/story.php?storyId=15774029\" target=\"_blank\">George Harrison</a> studied with him. Shankar's goal to make Eastern music known in the West was achieved with help from <a href=\"http://www.npr.org/templates/story/story.php?storyId=15229570\" target=\"_blank\">The Beatles</a>, though he grew discouraged by the hippie scene, where drugs clouded the attention of his audience."}, {"num": "4", "$text": "Back in India, Shankar wrote sitar concerts for Western symphony orchestras and continued touring. The composer and performer remained a teacher too. In December of 2004, when I visited his home in New Delhi, the sitar master was still giving lessons. He sat on the carpeted floor in an old brown sweater vest playing simple exercises; his sitar filled the room with feeling."}, {"num": "5", "$text": "\"[This music] is sort of is a combination of <em>shanta</em> and <em>karuna</em>, which means tranquility and sadness,\" he said of the piece he was playing. \"This sadness is ... like wanting to reach out [for something] and not finding it, whether for a lover or for God.\""}, {"num": "6", "$text": "Shankar's music reached out to some of the West's finest musicians. Violinist Yehudi Menuhin and composer <a href=\"http://www.npr.org/artists/15680178/philip-glass\" target=\"_blank\">Philip Glass</a> were friends and collaborators. One of today's top pop stars, Grammy winner <a href=\"http://www.npr.org/templates/story/story.php?storyId=15012277\" target=\"_blank\">Norah Jones</a>, is Shankar's daughter. Another daughter, <a href=\"http://www.npr.org/templates/story/story.php?storyId=15402971\" target=\"_blank\">Anoushka</a>, learned sitar from her father, and now takes his classical tradition and makes it more contemporary."}, {"num": "7", "$text": "A few winters ago in Delhi, remembering those demanding early years of sitar studies, Ravi Shankar said his guru's most important lesson was this: \"He says that we have to earn our livelihood, and for that we have to perform and accept money. But music is not for sale. The music that I have learned and want to give is like worshiping God. It's absolutely like a prayer.\""}, {"num": "8", "$text": "Shankar once said he felt ecstasy when he made music — the world was erased, and he experienced great peace. His music embraced and lifted those who heard and loved it, his widow Sukanya, his daughters and his many fans. <div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=Ravi+Shankar%2C+Who+Brought+Eastern+Music+To+Western+Legends%2C+Dies&utme=8(APIKey)9(API_KEY)\"/></div>"}]}, "fullText": {"$text": "<div class=\"storytitle\"> <h1>Ravi Shankar, Who Brought Eastern Music To Western Legends, Dies</h1> <input type=\"hidden\" id=\"title167019577\" value=\"Ravi Shankar, Who Brought Eastern Music To Western Legends, Dies\"></input> <input type=\"hidden\" id=\"modelShortUrl167019577\" value=\"http://n.pr/TTXit3\"></input> <input type=\"hidden\" id=\"modelFullUrl167019577\" value=\"http://www.npr.org/blogs/therecord/2012/12/12/167019577/ravi-shankar-who-brought-eastern-music-to-western-legends-dies\"></input></div><!-- END CLASS=\"STORYTITLE\" --><div id=\"story-meta\"> <div id=\"storybyline\" class=\" linkLocation\"> <div class=\"bucketwrap byline\" id=\"res167019583\" previewTitle=\"bylines\"> <p class=\"byline\">by <a rel=\"author\" href=\"http://www.npr.org/people/2101242/susan-stamberg\"><span>Susan Stamberg</span></a></p> </div> <!-- END CLASS=\"BUCKETWRAP BYLINE\" ID=\"RES167019583\" PREVIEWTITLE=\"BYLINES\" --> </div> <!-- END ID=\"STORYBYLINE\" CLASS=\" LINKLOCATION\" --> <div class=\"dateblock\"> <time datetime=\"2012-12-12\"><span class=\"date\">December 12, 2012</span><span class=\"time\"> 4:00 AM</span></time> </div></div><!-- END ID=\"STORY-META\" --><div id=\"primaryaudio\" class=\"storylocation linkLocation\"> <div id=\"res167021351\" class=\"bucketwrap primary unavailable resaudio \"> <div class=\"listenicon\"> <a href=\"#\"></a> </div> <!-- END CLASS=\"LISTENICON\" --> <div class=\"avcontent listen\"> <p>Audio for this story from <a href=\"/templates/rundowns/rundown.php?prgId=3&prgDate=12-12-2012\">Morning Edition</a> will be available at approx. 9:00 a.m. ET</p> </div> <!-- END CLASS=\"AVCONTENT LISTEN\" --> <p class=\"date\">December 12, 2012</p> <ul class=\"audiotools\"> </ul> <div class=\"spacer\"> &nbsp; </div> </div> <!-- END ID=\"RES167021351\" CLASS=\"BUCKETWRAP PRIMARY UNAVAILABLE RESAUDIO \" --></div><!-- END ID=\"PRIMARYAUDIO\" CLASS=\"STORYLOCATION LINKLOCATION\" --><div id=\"storytext\" class=\"storytext storylocation linkLocation\"> <div id=\"res167021232\" class=\"bucketwrap image large\" previewTitle=\"Ravi Shankar circa 1960 in the U.K.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815-0e02bde00f7b2ac036374e2874fc6b5ee6de4352-s6-c10.jpg\" data-original=\"http://media.npr.org/assets/img/2012/12/12/gettyimages_84882815-0e02bde00f7b2ac036374e2874fc6b5ee6de4352.jpg\" class=\"img lazyOnLoad\" title=\"Ravi Shankar circa 1960 in the U.K.\" alt=\"Ravi Shankar circa 1960 in the U.K.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Ravi Shankar circa 1960 in the U.K.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">David Redfern</span>/<span class=\"rightsnotice\">Redferns</span></span> </div> <p>Sitar master and composer <a href=\"http://www.npr.org/templates/story/story.php?storyId=17093771\" target=\"_blank\">Ravi Shankar</a> died Tuesday at a hospital near his home in the San Diego area. Shankar's foundation released a statement that says the musician had suffered from upper-respiratory and heart issues over the past year and underwent heart-valve replacement surgery last week. He was 92.</p> <p>When he was just 10 years old, Pandit Ravi Shankar began performing in Europe and the U.S. with his family's Indian dance troupe. It was a glamorous life: the best hotels, the best meals, celebrities coming backstage to say just how much they'd enjoyed the concert. But at age 18, Shankar gave up all the glitter and went back to a dusty little town in India to study with a guru who taught him the sitar. He apprenticed for years, then started to play in public on the ancient and difficult string instrument. Eventually, he became a master.</p> <p>Shankar's music is like a fine Indian sari — silken, swirling, exotic, it can break your heart with its beauty. He was a respected classical musician, but in 1966 he became an international superstar when <a href=\"http://www.npr.org/templates/story/story.php?storyId=15774029\" target=\"_blank\">George Harrison</a> studied with him. Shankar's goal to make Eastern music known in the West was achieved with help from <a href=\"http://www.npr.org/templates/story/story.php?storyId=15229570\" target=\"_blank\">The Beatles</a>, though he grew discouraged by the hippie scene, where drugs clouded the attention of his audience.</p> <p>Back in India, Shankar wrote sitar concerts for Western symphony orchestras and continued touring. The composer and performer remained a teacher too. In December of 2004, when I visited his home in New Delhi, the sitar master was still giving lessons. He sat on the carpeted floor in an old brown sweater vest playing simple exercises; his sitar filled the room with feeling.</p> <p>\"[This music] is sort of is a combination of <em>shanta</em> and <em>karuna</em>, which means tranquility and sadness,\" he said of the piece he was playing. \"This sadness is ... like wanting to reach out [for something] and not finding it, whether for a lover or for God.\"</p> <p>Shankar's music reached out to some of the West's finest musicians. Violinist Yehudi Menuhin and composer <a href=\"http://www.npr.org/artists/15680178/philip-glass\" target=\"_blank\">Philip Glass</a> were friends and collaborators. One of today's top pop stars, Grammy winner <a href=\"http://www.npr.org/templates/story/story.php?storyId=15012277\" target=\"_blank\">Norah Jones</a>, is Shankar's daughter. Another daughter, <a href=\"http://www.npr.org/templates/story/story.php?storyId=15402971\" target=\"_blank\">Anoushka</a>, learned sitar from her father, and now takes his classical tradition and makes it more contemporary.</p> <p>A few winters ago in Delhi, remembering those demanding early years of sitar studies, Ravi Shankar said his guru's most important lesson was this: \"He says that we have to earn our livelihood, and for that we have to perform and accept money. But music is not for sale. The music that I have learned and want to give is like worshiping God. It's absolutely like a prayer.\"</p> <p>Shankar once said he felt ecstasy when he made music — the world was erased, and he experienced great peace. His music embraced and lifted those who heard and loved it, his widow Sukanya, his daughters and his many fans.</p> <div id=\"res167020365\" class=\"bucketwrap video youtube-video large graphic624\"> <div class=\"video-wrap\"> <iframe width=\"624\" height=\"500\" type=\"text/html\" src=\"http://www.youtube.com/embed/HsuFlxxrX8k\"></iframe> </div> <!-- END CLASS=\"VIDEO-WRAP\" --> <div class=\"captionwrap externalasset\"> <span class=\"creditwrap\"><span class=\"source\">YouTube</span></span> </div> <!-- END CLASS=\"CAPTIONWRAP EXTERNALASSET\" --> </div> <!-- END ID=\"RES167020365\" CLASS=\"BUCKETWRAP VIDEO YOUTUBE-VIDEO LARGE GRAPHIC624\" --> <div class=\"container con1col small\" id=\"con167020780\" previewTitle=\"Ravi Shankar Links\"> <h3>Additional Information: </h3> <div id=\"res167020072\" class=\"bucketwrap internallink inkinsetonecolumn inset1col \"> <a href=\"http://www.npr.org/templates/story/story.php?storyId=125507150\" id=\"featuredStackSquareImage125507150\" class=\"photowrap\" reload=\"true\" numResources=\"1\"><img src=\"http://media.npr.org/assets/music/studiosessions/favorite/2010/04/ravishankar_sq-52804aa264cf5ace65147c0510b0c381b1b32e6a-s1.jpg\" class=\"img138\" title=\"Ravi Shankar, who brought Indian classical music to the West, turns 90 Wednesday\" alt=\"Ravi Shankar, who brought Indian classical music to the West, turns 90 Wednesday\" /></a> <div class=\"bucketblock\"> <h3 class=\"slug\"><a href=\"http://www.npr.org/series/10347449/classical-sessions\">Classical Sessions </a></h3> <p><a href=\"http://www.npr.org/templates/story/story.php?storyId=125507150\"> Ravi Shankar At 90: The Man And His Music</a></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --> </div> <!-- END ID=\"RES167020072\" CLASS=\"BUCKETWRAP INTERNALLINK INKINSETONECOLUMN INSET1COL \" --> <div id=\"res167020069\" class=\"bucketwrap internallink inkinsetonecolumn inset1col \"> <a href=\"http://www.npr.org/templates/story/story.php?storyId=125512689\" id=\"featuredStackSquareImage125512689\" class=\"photowrap\" reload=\"true\" numResources=\"1\"><img src=\"http://media.npr.org/assets/music/studiosessions/favorite/2010/04/ravi_child_sq-f1975d268e6de8a9543188ba0bc3b997ced3e195-s1.jpg\" class=\"img138\" title=\"Ravi Shankar performs with his daughter Anoushka Shankar.\" alt=\"Ravi Shankar performs with his daughter Anoushka Shankar.\" /></a> <div class=\"bucketblock\"> <h3 class=\"slug\"><a href=\"http://www.npr.org/sections/music-interviews/\">Music Interviews </a></h3> <p><a href=\"http://www.npr.org/templates/story/story.php?storyId=125512689\"> Indian Classical Music 101 With Ravi Shankar</a></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --> </div> <!-- END ID=\"RES167020069\" CLASS=\"BUCKETWRAP INTERNALLINK INKINSETONECOLUMN INSET1COL \" --> </div> <!-- END CLASS=\"CONTAINER CON1COL SMALL\" ID=\"CON167020780\" PREVIEWTITLE=\"RAVI SHANKAR LINKS\" --></div><div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=Ravi+Shankar%2C+Who+Brought+Eastern+Music+To+Western+Legends%2C+Dies&utme=8(APIKey)9(API_KEY)\"/></div>"}, "externalAsset": [{"id": "167020365", "type": "YouTube", "url": {"$text": "http://www.youtube.com/watch?v=HsuFlxxrX8k"}, "oEmbed": {"$text": "http://www.youtube.com/oembed?url=http%3A//www.youtube.com/watch%3Fv%3DHsuFlxxrX8k"}, "externalId": {"$text": "HsuFlxxrX8k"}, "credit": {}, "parameters": {}, "caption": {}}]}]}}
@@ -0,0 +1 @@
1
+ {"version": "0.94", "list": {"title": {"$text": "NPR: Stories from NPR"}, "teaser": {"$text": "Assorted stories from NPR"}, "miniTeaser": {"$text": "Custom NPR News Feed API. Visit http://www.npr.org/templates/apidoc/index.php for more information."}, "link": [{"type": "api", "$text": "http://api.npr.org/query?id=166884441&apiKey=API_KEY"}, {"type": "html", "$text": "http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor?ft=3&f=166884441"}], "story": [{"id": "166884441", "link": [{"type": "html", "$text": "http://www.npr.org/2012/12/11/166884441/in-freedom-ex-felon-becomes-probation-counselor?ft=3&f=166884441"}, {"type": "api", "$text": "http://api.npr.org/query?id=166884441&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/RXCSBj"}], "title": {"$text": "In Freedom, Ex-Felon Becomes Probation Counselor "}, "partnerId": {"$text": "166884441"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "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."}, "miniTeaser": {"$text": "After serving time for armed robbery, an ex-offender now helps others turn their lives around."}, "slug": {"$text": "U.S."}, "thumbnail": {"medium": {"$text": "http://media.npr.org/assets/img/2012/12/11/clark_composite_sq-fe93b6a98c444ebe0b1dd7e3e02729f934c676fb.jpg?s=13"}, "large": {"$text": "http://media.npr.org/assets/img/2012/12/11/clark_composite_sq-fe93b6a98c444ebe0b1dd7e3e02729f934c676fb.jpg?s=11"}, "provider": {"$text": "Courtesy of Washington Universtiy in St. Louis"}}, "storyDate": {"$text": "Tue, 11 Dec 2012 15:00:00 -0500"}, "pubDate": {"$text": "Tue, 11 Dec 2012 21:34:00 -0500"}, "lastModifiedDate": {"$text": "Tue, 11 Dec 2012 21:34:27 -0500"}, "show": [{"program": {"id": "2", "code": "ATC", "$text": "All Things Considered"}, "showDate": {"$text": "Tue, 11 Dec 2012 15:00:00 -0500"}, "segNum": {"$text": "7"}}], "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "278", "orgAbbr": "KWMU", "name": {"$text": "KWMU-FM"}, "website": {"$text": "http://www.stlpublicradio.org"}}], "transcript": {"link": {"type": "api", "$text": "http://api.npr.org/transcript?id=166884441&apiKey=API_KEY"}}, "parent": [{"id": "1091", "type": "topic", "title": {"$text": "Around the Nation"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/around-the-nation/?ft=3&f=166884441"}, {"type": "api", "$text": "http://api.npr.org/query?id=1091&apiKey=API_KEY"}]}, {"id": "1003", "type": "primaryTopic", "slug": "true", "title": {"$text": "U.S."}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/us/?ft=3&f=166884441"}, {"type": "api", "$text": "http://api.npr.org/query?id=1003&apiKey=API_KEY"}]}, {"id": "1003", "type": "topic", "title": {"$text": "U.S."}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/us/?ft=3&f=166884441"}, {"type": "api", "$text": "http://api.npr.org/query?id=1003&apiKey=API_KEY"}]}, {"id": "1002", "type": "topic", "title": {"$text": "Home Page Top Stories"}, "link": [{"type": "html", "$text": "http://www.npr.org/?ft=3&f=166884441"}, {"type": "api", "$text": "http://api.npr.org/query?id=1002&apiKey=API_KEY"}]}], "audio": [{"id": "167000584", "type": "primary", "title": {}, "duration": {"$text": "290"}, "description": {}, "format": {"mp3": [{"type": "mp3", "$text": "http://pd.npr.org/anon.npr-mp3/npr/atc/2012/12/20121211_atc_07.mp3?orgId=278&topicId=1003&ft=3&f=166884441"}, {"type": "m3u", "$text": "http://api.npr.org/m3u/1167000584-5e6998.m3u?orgId=278&topicId=1003&ft=3&f=166884441"}], "wm": {"$text": "http://www.npr.org/templates/dmg/dmg_wmref_em.php?id=167000584&type=1&mtype=WM&orgId=278&topicId=1003&ft=3&f=166884441"}, "mediastream": {"$text": "rtmp://flash.npr.org/ondemand/mp3:anon.npr-mp3/npr/atc/2012/12/20121211_atc_07.mp3"}}, "rightsHolder": {}, "permissions": {"download": {"allow": "true"}, "stream": {"allow": "true"}, "embed": {"allow": "true"}}, "stream": {"active": "false"}}], "byline": [{"id": "166885535", "name": {"personId": "134991966", "$text": "Julie Bierach"}, "link": [{"type": "html", "$text": "http://news.stlpublicradio.org/people/julie-bierach"}, {"type": "api", "$text": "http://api.npr.org/query?id=134991966&apiKey=API_KEY"}]}], "image": [{"id": "166972468", "type": "primary", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/11/clark_composite_custom-7a789655986f08866836381751bd592fd4cfca2d.jpg?s=12", "hasBorder": "false", "title": {"$text": "Clark Porter was 17 when he was sentenced to 35 years in prison for robbing a downtown post office at gunpoint. He spent 15 years in prison and today helps some of the toughest ex-offenders turn their lives around."}, "caption": {"$text": "Clark Porter was 17 when he was sentenced to 35 years in prison for robbing a downtown post office at gunpoint. He spent 15 years in prison and today helps some of the toughest ex-offenders turn their lives around."}, "link": {"url": ""}, "producer": {}, "provider": {"url": "", "$text": "Courtesy of Washington Universtiy in St. Louis"}, "copyright": {}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/11/clark_composite-2ac1e5b66d2510c36f1d57fa9866c2c13a3a9a59.jpg", "height": "572", "width": "763"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/11/clark_composite_sq-fe93b6a98c444ebe0b1dd7e3e02729f934c676fb.jpg", "height": "325", "width": "325"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/11/clark_composite_wide-85ff648d8e6a64688abe3cf54e8079e1583da8e3.jpg", "height": "431", "width": "768"}, {"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/11/clark_composite_custom-7a789655986f08866836381751bd592fd4cfca2d.jpg", "height": "536", "width": "768"}, {"type": "altPromo", "src": "http://media.npr.org/assets/img/2012/12/11/clark_composite_promo-171b7217eabe4e2f23f1c18fc82205b1a97087f0.jpg", "height": "575", "width": "768"}, {"type": "slide", "src": "http://media.npr.org/assets/img/2012/12/11/clark_composite_slide-bbc0d3742f1af87f499cedba52645cf7bb351e14.jpg", "height": "510", "width": "765"}]}, {"id": "166891214", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_custom-35bad304f3f860d830fd400fe48eea92115cc29e.jpg?s=12", "hasBorder": "false", "title": {"$text": "Porter was hired by Chief U.S. Probation Officer Douglas Burris, who was initially taken aback by the idea of an ex-felon working for the probation office."}, "caption": {"$text": "Porter was hired by Chief U.S. Probation Officer Douglas Burris, who was initially taken aback by the idea of an ex-felon working for the probation office."}, "link": {"url": ""}, "producer": {}, "provider": {"url": "", "$text": "Courtesy of Washington University in St. Louis"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_custom-35bad304f3f860d830fd400fe48eea92115cc29e.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1-9b0e41238589082a4c0d93122b94e68bf79c161b.jpg", "height": "362", "width": "483"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_sq-be78c6cfef0ab3420ecc467a2daa7168b0f128c5.jpg", "height": "455", "width": "455"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_wide-8b03d0d4ae08bd70149ca7e1a8c7b7c03cbb634c.jpg", "height": "285", "width": "508"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_custom-35bad304f3f860d830fd400fe48eea92115cc29e.jpg", "height": "455", "width": "493"}, {"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_custom-35bad304f3f860d830fd400fe48eea92115cc29e.jpg", "height": "455", "width": "493"}, {"type": "brick", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_brick-b647d10682167bc75cd5fd20f0fb1f3fbbc345d2.jpg", "height": "223", "width": "485"}, {"type": "altPromo", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_promo-80e09309a1b1c3d2430f5dd482bab16e1e7c3ba1.jpg", "height": "375", "width": "500"}, {"type": "vertical", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_vert-556f13a3bb4a7f312bac078a60d52a326f4bdd12.jpg", "height": "455", "width": "341"}, {"type": "slide", "src": "http://media.npr.org/assets/img/2012/12/10/f_clark_porter_alumnus_1_slide-4731441f7b280ef7d4902380c7bf1c22825fa01d.jpg", "height": "357", "width": "535"}]}], "text": {"paragraph": [{"num": "1", "$text": "Every weekday, Clark Porter, a tall man with a sturdy build, walks into the Thomas F. Eagleton U.S. Courthouse in St. Louis to work with tough ex-offenders. On the outside, he wears a suit and tie. But on the inside, he has more in common with the former felons than most."}, {"num": "2", "$text": "Back in 1986, a skinny 17-year-old Porter went on trial there as an adult for robbing a post office at gunpoint. His sentence: 35 years."}, {"num": "3", "$text": "\"The hardest part of prison is when you get into year five,\" he says. \"That's when you start hearing the door close. You get these pangs of reality, and it's like, 'Wow, I've got a 35-year-sentence; I'm not going anywhere.\""}, {"num": "4", "$text": "Porter served 15 years. When released in 2001, he radically changed his life and enrolled at Washington University in St. Louis while still on probation. He then did the unthinkable and asked Doug Burris, the chief U.S. probation officer in the eastern district of Missouri, for a job."}, {"num": "5", "$text": "\"My initial reaction was, I laughed. And I thought, you know, that's the craziest idea you could ever come up with,\" Burris says."}, {"num": "6", "$text": "After all, Porter would be working with the very same people who put him in prison. They had pushed to try him as an adult, arguing that he was beyond hope."}, {"num": "7", "$text": "Before Burris could take a chance on Porter, he needed permission from then-Chief Judge Carol Jackson."}, {"num": "8", "$text": "\"She [was] either going to have me committed or throw me out of her office,\" says Burris. \"I was proposing that we hire a former violent felon who was prosecuted out of this district.\""}, {"num": "9", "$text": "But to Burris' surprise, Jackson agreed."}, {"num": "10", "$text": "Today, Porter works with a group of ex-offenders in an intense seven-month-long program that he helped design. The ex-felons are required to do community service, look for a job and participate in therapy. Most have drug offenses and face a daunting choice of employment in either \"McDonald's or dope,\" according to Porter."}, {"num": "11", "$text": "\"An uneducated black man growing up in the inner city ... You're going to choose the one that pays better. And dope pays sometimes,\" Porter says."}, {"num": "12", "$text": "He argues that revoking probation for not finding a job or for substance abuse is counterproductive."}, {"num": "13", "$text": "\"Did it serve our interest to lock him up? Or did it serve our interest to get him clean? Because if he's clean, we don't have to worry about him knocking somebody in the head for a shot of dope,\" Porter says."}, {"num": "14", "$text": "Lamont McGhee served 13 years in prison for drug conspiracy. He went through Porter's program and admits that Porter's job isn't an easy one."}, {"num": "15", "$text": "\"He's got to put up with a lot of knuckleheads. He's got to put up with a lot of people that's not going to listen,\" McGhee says. \"A lot of people that say he's one of them, meaning a probation officer.\""}, {"num": "16", "$text": "Criminologist Beth Huebner of the University of Missouri, St. Louis, researches recidivism among young offenders — the study of a person's relapse into criminal behavior after receiving punishments or interventions for a previous crime. She says ex-offenders are more successful in programs like Porter's because he was once just like them."}, {"num": "17", "$text": "\"There are some mentoring programs here or there, but there's no systematic development of this sort of program,\" she says. \"But this is something that I hear from offenders — that this is something that they want, that they need.\""}, {"num": "18", "$text": "Because of their success, Burris and Porter speak to groups across the country. Burris beams when recalling the time he sent Porter to attend a regional White House meeting."}, {"num": "19", "$text": "\"Because the last time the government paid for him to fly, he was in handcuffs and belly chains on his way to a maximum security prison. And he went from that to having the government pay for him to fly to a meeting with White House officials,\" Burris says."}, {"num": "20", "$text": "Porter says he knows it's a big responsibility to be a role model for offenders — and that some people are just waiting for him to mess up. But that won't happen, he says. [Copyright 2012 KWMU-FM]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "Every weekday, Clark Porter, a tall man with a sturdy build, walks into the Thomas F. Eagleton U.S. Courthouse in St. Louis to work with tough ex-offenders. On the outside, he wears a suit and tie. But on the inside, he has more in common with the former felons than most."}, {"num": "2", "$text": "Back in 1986, a skinny 17-year-old Porter went on trial there as an adult for robbing a post office at gunpoint. His sentence: 35 years."}, {"num": "3", "$text": "\"The hardest part of prison is when you get into year five,\" he says. \"That's when you start hearing the door close. You get these pangs of reality, and it's like, 'Wow, I've got a 35-year-sentence; I'm not going anywhere.\""}, {"num": "4", "$text": "Porter served 15 years. When released in 2001, he radically changed his life and enrolled at Washington University in St. Louis while still on probation. He then did the unthinkable and asked Doug Burris, the chief U.S. probation officer in the eastern district of Missouri, for a job."}, {"num": "5", "$text": "\"My initial reaction was, I laughed. And I thought, you know, that's the craziest idea you could ever come up with,\" Burris says."}, {"num": "6", "$text": "After all, Porter would be working with the very same people who put him in prison. They had pushed to try him as an adult, arguing that he was beyond hope."}, {"num": "7", "$text": "Before Burris could take a chance on Porter, he needed permission from then-Chief Judge Carol Jackson."}, {"num": "8", "$text": "\"She [was] either going to have me committed or throw me out of her office,\" says Burris. \"I was proposing that we hire a former violent felon who was prosecuted out of this district.\""}, {"num": "9", "$text": "But to Burris' surprise, Jackson agreed."}, {"num": "10", "$text": "Today, Porter works with a group of ex-offenders in an intense seven-month-long program that he helped design. The ex-felons are required to do community service, look for a job and participate in therapy. Most have drug offenses and face a daunting choice of employment in either \"McDonald's or dope,\" according to Porter."}, {"num": "11", "$text": "\"An uneducated black man growing up in the inner city ... You're going to choose the one that pays better. And dope pays sometimes,\" Porter says."}, {"num": "12", "$text": "He argues that revoking probation for not finding a job or for substance abuse is counterproductive."}, {"num": "13", "$text": "\"Did it serve our interest to lock him up? Or did it serve our interest to get him clean? Because if he's clean, we don't have to worry about him knocking somebody in the head for a shot of dope,\" Porter says."}, {"num": "14", "$text": "Lamont McGhee served 13 years in prison for drug conspiracy. He went through Porter's program and admits that Porter's job isn't an easy one."}, {"num": "15", "$text": "\"He's got to put up with a lot of knuckleheads. He's got to put up with a lot of people that's not going to listen,\" McGhee says. \"A lot of people that say he's one of them, meaning a probation officer.\""}, {"num": "16", "$text": "Criminologist Beth Huebner of the University of Missouri, St. Louis, researches recidivism among young offenders — the study of a person's relapse into criminal behavior after receiving punishments or interventions for a previous crime. She says ex-offenders are more successful in programs like Porter's because he was once just like them."}, {"num": "17", "$text": "\"There are some mentoring programs here or there, but there's no systematic development of this sort of program,\" she says. \"But this is something that I hear from offenders — that this is something that they want, that they need.\""}, {"num": "18", "$text": "Because of their success, Burris and Porter speak to groups across the country. Burris beams when recalling the time he sent Porter to attend a regional White House meeting."}, {"num": "19", "$text": "\"Because the last time the government paid for him to fly, he was in handcuffs and belly chains on his way to a maximum security prison. And he went from that to having the government pay for him to fly to a meeting with White House officials,\" Burris says."}, {"num": "20", "$text": "Porter says he knows it's a big responsibility to be a role model for offenders — and that some people are just waiting for him to mess up. But that won't happen, he says. <div class=\"fullattribution\">Copyright 2012 KWMU-FM. To see more, visit <a href=\"http://www.stlpublicradio.org\">http://www.stlpublicradio.org</a>.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=In+Freedom%2C+Ex-Felon+Becomes+Probation+Counselor+&utme=8(APIKey)9(API_KEY)\"/></div>"}]}}]}}
@@ -0,0 +1 @@
1
+ {"version": "0.94", "message": [{"id": "401", "level": "warning", "text": {"$text": "There were no results that matched your query criteria."}, "timestamp": {"$text": "1355298330.49"}}], "list": {"title": {"$text": "NPR: Stories from NPR"}, "teaser": {"$text": "Assorted stories from NPR"}, "miniTeaser": {"$text": "Custom NPR News Feed API. Visit http://www.npr.org/templates/apidoc/index.php for more information."}, "link": [{"type": "api", "$text": "http://api.npr.org/query?id=167016221&apiKey=API_KEY"}, {"type": "html", "$text": "http://www.npr.org/2012/12/11/167016221/3-dead-including-gunman-in-ore-mall-shooting?ft=3&f=167016221"}]}}