upton 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,43 @@
1
+ # encoding: UTF-8
2
+
3
+ ##
4
+ # This module contains a collection of helpers for Upton
5
+ ##
6
+ module Upton
7
+
8
+ ##
9
+ # This class contains a collection of helpers for Upton
10
+ #
11
+ # Each method returns a Proc that (with an & ) can be used as the final
12
+ # argument to Upton's `scrape` and `scrape_to_csv`
13
+ ##
14
+ module Utils
15
+
16
+ ##
17
+ # Scrapes an HTML <table> element into an Array of Arrays. The header, if
18
+ # present, is returned as the first row.
19
+ ##
20
+ def self.table(table_selector, deprecated=nil)
21
+ return Proc.new do |instance_html|
22
+ html = ::Nokogiri::HTML(instance_html)
23
+ output = []
24
+ headers = html.search(table_selector).css("th").map &:text
25
+ output << headers
26
+
27
+ table = html.search(table_selector).css("tr").each{|tr| output << tr.css("td").map(&:text) }
28
+ output
29
+ end
30
+ end
31
+
32
+ ##
33
+ # Scrapes any set of HTML elements into an Array.
34
+ ##
35
+ def self.list(list_selector, deprecated=nil)
36
+ return Proc.new do |instance_html|
37
+ html = ::Nokogiri::HTML(instance_html)
38
+ html.search(list_selector).map{|list_element| list_element.text }
39
+ end
40
+ end
41
+
42
+ end
43
+ end
@@ -34,7 +34,7 @@
34
34
 
35
35
 
36
36
 
37
-
37
+
38
38
 
39
39
  <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
40
40
  <link rel="stylesheet" href="./ProPublica_files/reset.css" type="text/css" media="all" charset="utf-8">
@@ -192,14 +192,14 @@ rgba(255, 255, 255, .167969) 0 1px 0;display:inline-block;margin-top:3px;max-wid
192
192
  <a href="./ProPublica_files/ProPublica.html" id="dorothy" class="wNarrow"></a>
193
193
  <aside id="header-donate-mobile" class="wMed"><h1><a href="https://www.propublica.org/mobile/donate">Donate</a></h1></aside>
194
194
  <div id="h-wafer1">
195
- <div class="wrapper">
195
+ <div class="wrapper">
196
196
  <nav id="dont-miss">
197
197
  <div class="wrapper unwrapper"><p> Don't Miss:</p><ul class="fmenu"><li class="first"><a href="http://www.propublica.org/series/buried-secrets-gas-drillings-environmental-threat">Fracking</a></li><li><a href="http://www.propublica.org/article/six-facts-lost-in-irs-scandal">IRS</a></li><li><a href="http://projects.propublica.org/docdollars/">Dollars for Docs</a></li><li><a href="http://www.propublica.org/series/drones">Drones</a></li><li><a href="http://www.propublica.org/series/patient-safety">Patient Safety</a></li><li><a href="http://www.propublica.org/series/prescribers/">Medicare Prescriptions</a></li><li><a href="http://www.propublica.org/article/installment-loans-world-finance/">Installment Loans</a></li><li><a href="http://projects.propublica.org/nonprofits/">990s</a></li></ul>
198
198
  </div>
199
199
  </nav>
200
200
  </div><!-- /wrapper -->
201
- </div><!-- /h-wafer-1 -->
202
- <div id="h-wafer2">
201
+ </div><!-- /h-wafer-1 -->
202
+ <div id="h-wafer2">
203
203
  <div class="wrapper">
204
204
  <div class="donate">
205
205
  <h1><a href="https://www.propublica.org/donate/split/top_tag">Donate</a></h1>
@@ -246,7 +246,7 @@ googletag.pubads().setTargeting('type', 'homepage');
246
246
  </script>
247
247
  <script type="text/javascript" src="./ProPublica_files/google_ads.js" charset="utf-8"></script>
248
248
 
249
- <div id="h-wafer3">
249
+ <div id="h-wafer3">
250
250
  <div class="wrapper">
251
251
  <nav>
252
252
  <a href="./ProPublica_files/ProPublica.html" class="active">Home</a>
@@ -259,21 +259,21 @@ googletag.pubads().setTargeting('type', 'homepage');
259
259
  <aside class="fb">
260
260
  <img src="./ProPublica_files/icon-fb-top-nav.png">
261
261
  <div class="jspopper">
262
-
262
+
263
263
  <iframe src="./ProPublica_files/likebox.html" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:590px; background: #ffffff" allowtransparency="false"></iframe>
264
-
264
+
265
265
 
266
266
  </div>
267
267
  </aside>
268
268
  <aside class="tw">
269
269
  <img src="./ProPublica_files/icon-tw-top-nav.png">
270
270
  <div class="popper">
271
-
271
+
272
272
  <h1>ProPublica on Twitter</h1>
273
273
 
274
274
  <iframe id="twitter-widget-0" class="twitter-timeline twitter-timeline-rendered" scrolling="no" frameborder="0" allowtransparency="true" title="Twitter Timeline Widget" style="border: none; max-width: 100%; min-width: 180px;" width="285" height="350"></iframe>
275
275
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
276
-
276
+
277
277
 
278
278
  </div>
279
279
  </aside>
@@ -286,7 +286,7 @@ googletag.pubads().setTargeting('type', 'homepage');
286
286
  </form>
287
287
  </div>
288
288
  </div><!-- /wrapper -->
289
- </div><!-- /h-wafer-3 -->
289
+ </div><!-- /h-wafer-3 -->
290
290
  </header>
291
291
 
292
292
  <!-- Top_Pushdown -->
@@ -303,8 +303,8 @@ googletag.display('google-Top_Pushdown');
303
303
 
304
304
  <div class="fbox-medium">
305
305
  <section id="f1">
306
-
307
-
306
+
307
+
308
308
  <figure>
309
309
  <a href="http://www.propublica.org/article/as-need-for-new-flood-maps-rises-congress-and-obama-cut-funding/"><img src="./ProPublica_files/fema-maps-sd-390.jpg" width="300" class="wFull"><img src="./ProPublica_files/fema-maps-sd-300.jpg" class="wNarrow" width="278" height="185"></a>
310
310
  </figure>
@@ -320,11 +320,11 @@ googletag.display('google-Top_Pushdown');
320
320
  by <a href="http://www.propublica.org/site/author/theodoric_meyer/">Theodoric Meyer</a><br> ProPublica, May 24, 1:04 p.m.</p>
321
321
  </header>
322
322
  Funding to update the nation's decades-old flood maps has been cut in half in recent years, even as extreme weather has grown more frequent. <aside class="related">
323
-
323
+
324
324
  <a href=""></a>
325
325
  </aside>
326
-
327
-
326
+
327
+
328
328
  </div>
329
329
  <aside class="sharebar">
330
330
  <a href="http://www.propublica.org/#">Share</a>
@@ -389,7 +389,7 @@ by <a href="http://www.propublica.org/site/author/jesse_eisinger/">Jesse Eisinge
389
389
 
390
390
 
391
391
 
392
-
392
+
393
393
  <section id="f3">
394
394
  <figure>
395
395
  <a href="http://www.propublica.org/getinvolved/item/help-us-hire-an-intern-for-our-internships-investigation/"><img src="./ProPublica_files/kickstarterinternships-140X140.jpg" alt="Help Us Tell the Story of the Intern Economy"></a>
@@ -426,29 +426,29 @@ by <a href="http://www.propublica.org/site/author/blair_hickman/">Blair Hickman<
426
426
  </div>
427
427
  </aside>
428
428
  </section>
429
-
430
-
431
- <section id="neapolitan">
429
+
430
+
431
+ <section id="neapolitan">
432
432
  <section id="chocolate">
433
433
  <style>
434
434
 
435
435
  .muckreads-neapolitan-header {
436
436
  width: 186px;
437
437
  height: 25px;
438
- margin-left: 3px;
438
+ margin-left: 3px;
439
439
  padding: 6px;
440
440
  margin-bottom: -10px;
441
441
  z-index: 10;
442
442
  background: #06417a;
443
443
  background: -webkit-gradient(linear, left top, left bottom, from(#06417a), to(#05386a));
444
444
  background: -moz-linear-gradient(top, #06417a, #05386a);
445
- background: -ms-linear-gradient(top, #06417a, #05386a);
445
+ background: -ms-linear-gradient(top, #06417a, #05386a);
446
446
  }
447
447
  .muckreads-neapolitan-header a {
448
448
  font-family: ff-meta-serif-web-1, ff-meta-serif-web-2, Georgia, serif;
449
449
  font-weight: normal;
450
450
  font-size: 20px;
451
- color: #fff;
451
+ color: #fff;
452
452
  }
453
453
  #muckreads-embed {
454
454
  background-color: white;
@@ -462,9 +462,9 @@ width:186;
462
462
  <a href="http://projects.propublica.org/muckreads">MuckReads</a>
463
463
  </aside>
464
464
 
465
- <iframe height="287px" width="100%" scrolling="auto" frameborder="0" src="./ProPublica_files/saved_resource.html" class="rebelmouse-embed-iframe fixed" id="rebelmouse-embed-iframe"></iframe>
465
+ <iframe height="287px" width="100%" scrolling="auto" frameborder="0" src="./ProPublica_files/saved_resource.html" class="rebelmouse-embed-iframe fixed" id="rebelmouse-embed-iframe"></iframe>
466
466
  </section>
467
-
467
+
468
468
  <section id="vanilla">
469
469
  <div class="docdollars">
470
470
  <img alt="Dollars for Docs logo" src="./ProPublica_files/docdollars-trans.png" width="54" height="50">
@@ -535,9 +535,9 @@ width:186;
535
535
  <input class="btn-input" type="submit" value="Search" style="padding: 2px 10px; width: 179px; margin-left: 0px;">
536
536
  </form>
537
537
  <p>Example searches: <br><a href="http://projects.propublica.org/docdollars/search?period=&services=&state%5Bid%5D=&term=Klein">Klein</a>, <a href="http://projects.propublica.org/docdollars/search?period=&services=&state%5Bid%5D=&term=Duke%2BUniversity">Duke University</a>, <a href="http://projects.propublica.org/docdollars/search?period=&services=&state%5Bid%5D=&term=Miami">Miami</a></p>
538
- </div>
538
+ </div>
539
539
  </section>
540
-
540
+
541
541
  <section id="strawberry">
542
542
  <div id="neapolitan-officials-say" class="officials-say">
543
543
  <header>
@@ -546,10 +546,10 @@ width:186;
546
546
  </header>
547
547
  <div class="quote"><a href="http://officialssay.tumblr.com/post/51171239784/none-no-reaction-none-look-my-face-didnt">None. No reaction. None. Look, my face didn’t move. No reaction.</a></div>
548
548
  <div class="source"><a href="http://officialssay.tumblr.com/post/51171239784/none-no-reaction-none-look-my-face-didnt">New York Governor Andrew Cuomo, on the news that Anthony Wei...</a></div>
549
- </div>
549
+ </div>
550
550
  </section>
551
551
  </section>
552
-
552
+
553
553
 
554
554
 
555
555
 
@@ -572,53 +572,53 @@ aside.module-mini p.more { margin-top: 1.5em; font: italic 12px/1.2 "Georgia", s
572
572
 
573
573
  <div id="jamb" class="wNarrow">
574
574
 
575
-
576
575
 
577
-
576
+
577
+
578
578
  <aside class="module-accordion-small">
579
-
579
+
580
580
  <div class="accordion-header">
581
581
  <h2>Major Projects</h2>
582
582
  <p><a href="http://www.propublica.org/investigations">see all »</a></p>
583
583
  </div>
584
-
585
-
584
+
585
+
586
586
  <a href="http://www.propublica.org/series/prescribers/"><div class="ac-tab">
587
587
  <h3 class="title-link">The Prescribers</h3>
588
588
  <h4 class="title-link">Inside the Government's Drug Data</h4>
589
589
  </div></a>
590
-
591
-
590
+
591
+
592
592
  <a href="http://www.propublica.org/series/debt-inc/"><div class="ac-tab">
593
593
  <h3 class="title-link">Debt Inc.</h3>
594
594
  <h4 class="title-link">Lending and Collecting in America</h4>
595
595
  </div></a>
596
-
597
-
596
+
597
+
598
598
  <a href="http://www.propublica.org/series/out-of-order/"><div class="ac-tab">
599
599
  <h3 class="title-link">Out of Order</h3>
600
600
  <h4 class="title-link">When Prosecutors Cross the Line</h4>
601
601
  </div></a>
602
-
603
-
602
+
603
+
604
604
  <a href="http://www.propublica.org/series/living-apart/"><div class="ac-tab">
605
605
  <h3 class="title-link">Living Apart</h3>
606
606
  <h4 class="title-link">Fair Housing in America</h4>
607
607
  </div></a>
608
-
609
-
608
+
609
+
610
610
  <a href="http://www.propublica.org/series/dollars-for-docs/"><div class="ac-tab">
611
611
  <h3 class="title-link">Dollars for Doctors</h3>
612
612
  <h4 class="title-link">How Industry Money Reaches Physicians </h4>
613
613
  </div></a>
614
-
615
-
614
+
615
+
616
616
  <a href="http://www.propublica.org/series/patient-safety/"><div class="ac-tab">
617
617
  <h3 class="title-link">Patient Safety</h3>
618
618
  <h4 class="title-link">Exploring Quality of Care in the U.S.</h4>
619
619
  </div></a>
620
-
621
-
620
+
621
+
622
622
  </aside>
623
623
  <aside class="ad">
624
624
  <!-- Rt_Sdbr_Non-Mobile-Only300x250 -->
@@ -628,7 +628,7 @@ aside.module-mini p.more { margin-top: 1.5em; font: italic 12px/1.2 "Georgia", s
628
628
  </script>
629
629
  </div>
630
630
  </aside>
631
-
631
+
632
632
 
633
633
 
634
634
 
@@ -658,7 +658,7 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
658
658
  <h1><a href="http://www.propublica.org/podcast">Podcast</a></h1>
659
659
  <p><a href="http://www.propublica.org/podcast/item/propublica-and-the-irs-scandal/">Podcast: ProPublica and the IRS Scandal</a></p>
660
660
  </aside>
661
-
661
+
662
662
  <aside class="module-mini">
663
663
 
664
664
  <figure><a href="http://www.propublica.org/ebooks"><img src="./ProPublica_files/livingapart_ebook_cover_140x186-70x93.jpg" width="70" height="93" alt="Living Apart: How the Government Betrayed a Landmark Civil Rights Law"></a></figure>
@@ -695,7 +695,7 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
695
695
  </aside>
696
696
 
697
697
  <!--googleoff: snippet-->
698
- <aside class="module-tabbed-2011">
698
+ <aside class="module-tabbed-2011">
699
699
  <h1 class="module-title">Our Hottest Stories</h1>
700
700
  <ul class="tabs">
701
701
  <li><a href="http://www.propublica.org/#most-read" class="active">Most Read</a></li>
@@ -708,55 +708,55 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
708
708
  </div>
709
709
  <div class="tab-content" id="most-emailed" style="display: none;">
710
710
  <ul>
711
-
712
- <li class="first"><a href="http://127.0.0.1:9876/sixfacts.html">Six Facts Lost in the IRS Scandal</a></li>
713
-
711
+
712
+ <li class="first"><a href="sixfacts.html">Six Facts Lost in the IRS Scandal</a></li>
713
+
714
714
  <li><a href="http://www.propublica.org/article/a-closer-look-sound-fury-and-the-irs-mess/">Sound, Fury and the IRS Mess</a></li>
715
-
716
- <li><a href="http://127.0.0.1:9876/prosecutor.html">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></li>
717
-
715
+
716
+ <li><a href="prosecutor.html">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></li>
717
+
718
718
  <li><a href="http://www.propublica.org/article/a-prolonged-stay-the-reasons-behind-the-slow-pace-of-executions/">A Prolonged Stay: The Reasons Behind the Slow Pace of Executions</a></li>
719
-
719
+
720
720
  <li><a href="http://www.propublica.org/article/the-most-important-muckreads-on-rape-in-the-military/">The Most Important #Muckreads on Rape in the Military</a></li>
721
-
721
+
722
722
  <li><a href="http://www.propublica.org/article/congressmen-to-hagel-where-are-the-missing-war-records/">Congressmen to Hagel: Where Are the Missing War Records?</a></li>
723
-
723
+
724
724
  <li><a href="http://www.propublica.org/article/as-need-for-new-flood-maps-rises-congress-and-obama-cut-funding/">As Need for New Flood Maps Rises, Congress and Obama Cut Funding</a></li>
725
-
725
+
726
726
  <li><a href="http://www.propublica.org/article/the-story-behind-our-hospital-interactive/">The Story Behind Our Hospital Interactive</a></li>
727
-
727
+
728
728
  <li><a href="http://www.propublica.org/article/how-irs-nonprofit-division-got-so-dysfunctional/">How the IRS’s Nonprofit Division Got So Dysfunctional</a></li>
729
-
729
+
730
730
  </ul>
731
731
  </div>
732
732
  <div class="tab-content" id="most-commented" style="display: none;">
733
733
  <ul>
734
-
734
+
735
735
  <li class="first"><a href="http://www.propublica.org/article/six-facts-lost-in-irs-scandal">Six Facts Lost in the IRS Scandal</a></li>
736
-
736
+
737
737
  <li><a href="http://www.propublica.org/article/how-irs-nonprofit-division-got-so-dysfunctional">How the IRS’s Nonprofit Division Got So Dysfunctional</a></li>
738
-
738
+
739
739
  <li><a href="http://www.propublica.org/article/a-closer-look-sound-fury-and-the-irs-mess">Sound, Fury and the IRS Mess</a></li>
740
-
740
+
741
741
  <li><a href="http://www.propublica.org/article/the-most-important-muckreads-on-rape-in-the-military">The Most Important #Muckreads on Rape in the Military</a></li>
742
-
742
+
743
743
  <li><a href="http://www.propublica.org/article/congressmen-to-hagel-where-are-the-missing-war-records">Congressmen to Hagel: Where Are the Missing War Records?</a></li>
744
-
744
+
745
745
  <li><a href="http://www.propublica.org/article/as-need-for-new-flood-maps-rises-congress-and-obama-cut-funding">As Need for New Flood Maps Rises, Congress and Obama Cut Funding</a></li>
746
-
746
+
747
747
  <li><a href="http://www.propublica.org/article/a-prosecutor-a-wrongful-conviction-and-a-question-of-justice">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></li>
748
-
748
+
749
749
  <li><a href="http://www.propublica.org/article/a-prolonged-stay-the-reasons-behind-the-slow-pace-of-executions">A Prolonged Stay: The Reasons Behind the Slow Pace of Executions</a></li>
750
-
750
+
751
751
  <li><a href="http://www.propublica.org/article/the-story-behind-our-hospital-interactive">The Story Behind Our Hospital Interactive</a></li>
752
-
752
+
753
753
  <li><a href="http://www.propublica.org/article/irs-test-charts-for-embedding">irs-test-charts-for-embedding</a></li>
754
-
754
+
755
755
  </ul>
756
756
  </div>
757
757
  </div>
758
758
  </aside>
759
- <!--googleon: snippet-->
759
+ <!--googleon: snippet-->
760
760
 
761
761
 
762
762
 
@@ -766,7 +766,7 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
766
766
  <h1>Safeguard the public interest</h1>
767
767
  <div>
768
768
  <p>Support ProPublica’s award-winning investigative journalism.</p>
769
- <p class="btn-row"><a href="https://www.propublica.org/mobile/donate" class="btn-ios">Donate</a></p>
769
+ <p class="btn-row"><a href="https://www.propublica.org/mobile/donate" class="btn-ios">Donate</a></p>
770
770
  </div>
771
771
  </aside>
772
772
  <aside id="metastack-mailinglist" class="toggler">
@@ -809,21 +809,21 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
809
809
  </section><!-- /meta-stack -->
810
810
  <section id="archive">
811
811
  <section id="ghost">
812
-
812
+
813
813
  <aside class="module-updates rss">
814
814
  <a href="http://feeds.propublica.org/propublica/main"><img src="./ProPublica_files/icon-16-rss.png"></a><a href="http://feeds.propublica.org/propublica/main">Updates over RSS</a>
815
- </aside>
816
-
815
+ </aside>
816
+
817
817
  <aside class="module-updates email">
818
818
  <a href="http://www.propublica.org/forms/newsletter_daily_email"><img src="./ProPublica_files/icon-16-mail.png"></a><a href="http://www.propublica.org/#"></a><a href="http://www.propublica.org/forms/newsletter_daily_email">Updates by email</a>
819
819
  </aside>
820
-
820
+
821
821
  <aside class="module-donate">
822
822
  <h1>Safeguard the public interest.</h1>
823
823
  <p>Support ProPublica’s award-winning investigative journalism.</p>
824
824
  <p class="btn-row"><a href="http://www.propublica.org/site/donate/" class="btn-input">Donate</a></p>
825
825
  </aside>
826
-
826
+
827
827
 
828
828
  <aside class="module-medium awards">
829
829
  <a href="http://www.propublica.org/awards/"><img src="./ProPublica_files/awards-module-full.png"></a>
@@ -839,21 +839,21 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
839
839
 
840
840
  </section>
841
841
  <section id="river">
842
- <h1>More Stories</h1>
842
+ <h1>More Stories</h1>
843
+
843
844
 
844
-
845
845
  <section>
846
846
  <div class="river-meta">
847
- <p><a href="http://127.0.0.1:9876/webinar.html">Yesterday, 12:28 p.m.</a></p>
847
+ <p><a href="webinar.html">Yesterday, 12:28 p.m.</a></p>
848
848
  <aside class="sharebar">
849
849
  <a href="http://www.propublica.org/#">Share</a>
850
850
  <div class="popper">
851
851
  <div class="popper-balloon">
852
852
  <div class="chiclets-wrapper">
853
- <a href="http://www.facebook.com/sharer.php?u=http://127.0.0.1:9876/webinar.html" class="facebook-img" target="_blank">
853
+ <a href="http://www.facebook.com/sharer.php?u=webinar.html" class="facebook-img" target="_blank">
854
854
  <img src="./ProPublica_files/facebook-recommend.png">
855
855
  </a>
856
- <a class="tweet-link" href="https://twitter.com/intent/tweet?url=http://127.0.0.1:9876/webinar.html&via=propublica" target="_blank">
856
+ <a class="tweet-link" href="https://twitter.com/intent/tweet?url=webinar.html&via=propublica" target="_blank">
857
857
  <img src="./ProPublica_files/tweet-chiclet.png">
858
858
  </a>
859
859
  <div class="email-link-gradient">
@@ -867,18 +867,18 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
867
867
  </div>
868
868
  <div class="box-feature-text">
869
869
  <header>
870
- <h1><a href="http://127.0.0.1:9876/webinar.html" class="title-link">Webinar: How to Use Prescriber Checkup to Power Your Reporting</a></h1>
870
+ <h1><a href="webinar.html" class="title-link">Webinar: How to Use Prescriber Checkup to Power Your Reporting</a></h1>
871
871
  </header>
872
- </div>
872
+ </div>
873
873
  </section>
874
-
875
874
 
876
875
 
877
-
876
+
877
+
878
878
  <section>
879
879
  <div class="river-meta">
880
880
  <figure>
881
- <a href="http://127.0.0.1:9876/discussion.html">
881
+ <a href="discussion.html">
882
882
  <img src="./ProPublica_files/mpmh_victory_drive_140x140_130514_1-70x70.jpg" width="70" height="70" alt="Discussion: Military Lending and Debt">
883
883
  </a>
884
884
  </figure>
@@ -887,10 +887,10 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
887
887
  <div class="popper">
888
888
  <div class="popper-balloon">
889
889
  <div class="chiclets-wrapper">
890
- <a href="http://www.facebook.com/sharer.php?u=http://127.0.0.1:9876/discussion.html" class="facebook-img" target="_blank">
890
+ <a href="http://www.facebook.com/sharer.php?u=discussion.html" class="facebook-img" target="_blank">
891
891
  <img src="./ProPublica_files/facebook-recommend.png">
892
892
  </a>
893
- <a class="tweet-link" href="https://twitter.com/intent/tweet?url=http://127.0.0.1:9876/discussion.html&via=propublica" target="_blank">
893
+ <a class="tweet-link" href="https://twitter.com/intent/tweet?url=discussion.html&via=propublica" target="_blank">
894
894
  <img src="./ProPublica_files/tweet-chiclet.png">
895
895
  </a>
896
896
  <div class="email-link-gradient">
@@ -903,10 +903,10 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
903
903
  </aside>
904
904
  </div>
905
905
  <div class="box-feature-text">
906
-
907
-
906
+
907
+
908
908
  <header>
909
- <h1><a href="http://127.0.0.1:9876/discussion.html" class="title-link">Discussion: Military Lending and Debt</a></h1>
909
+ <h1><a href="discussion.html" class="title-link">Discussion: Military Lending and Debt</a></h1>
910
910
  <p class="byline">
911
911
 
912
912
 
@@ -916,16 +916,16 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
916
916
  by <a href="http://www.propublica.org/site/author/blair_hickman/">Blair Hickman</a><br> ProPublica, May 23, 9:21 a.m.</p>
917
917
  </header>
918
918
  <p>Join us Friday at 2 PM ET for a discussion on issues facing military members in debt. </p>
919
- </div>
919
+ </div>
920
920
  </section>
921
-
922
921
 
923
922
 
924
-
923
+
924
+
925
925
  <section>
926
926
  <div class="river-meta">
927
927
  <figure>
928
- <a href="http://127.0.0.1:9876/prosecutor.html">
928
+ <a href="prosecutor.html">
929
929
  <img src="./ProPublica_files/ppdn_vecchione_center_140x140_130522-70x70.jpg" width="70" height="70" alt="A Prosecutor, a Wrongful Conviction and a Question of Justice">
930
930
  </a>
931
931
  </figure>
@@ -934,10 +934,10 @@ by <a href="http://www.propublica.org/site/author/blair_hickman/">Blair Hickman<
934
934
  <div class="popper">
935
935
  <div class="popper-balloon">
936
936
  <div class="chiclets-wrapper">
937
- <a href="http://www.facebook.com/sharer.php?u=http://127.0.0.1:9876/prosecutor.html" class="facebook-img" target="_blank">
937
+ <a href="http://www.facebook.com/sharer.php?u=prosecutor.html" class="facebook-img" target="_blank">
938
938
  <img src="./ProPublica_files/facebook-recommend.png">
939
939
  </a>
940
- <a class="tweet-link" href="https://twitter.com/intent/tweet?url=http://127.0.0.1:9876/prosecutor.html&via=propublica" target="_blank">
940
+ <a class="tweet-link" href="https://twitter.com/intent/tweet?url=prosecutor.html&via=propublica" target="_blank">
941
941
  <img src="./ProPublica_files/tweet-chiclet.png">
942
942
  </a>
943
943
  <div class="email-link-gradient">
@@ -950,14 +950,14 @@ by <a href="http://www.propublica.org/site/author/blair_hickman/">Blair Hickman<
950
950
  </aside>
951
951
  </div>
952
952
  <div class="box-feature-text">
953
-
953
+
954
954
  <aside class="topic">
955
955
  <a href="http://www.propublica.org/series/out-of-order/">Out of Order</a>
956
956
  </aside>
957
-
958
-
957
+
958
+
959
959
  <header>
960
- <h1><a href="http://127.0.0.1:9876/prosecutor.html" class="title-link">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></h1>
960
+ <h1><a href="prosecutor.html" class="title-link">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></h1>
961
961
  <p class="byline">
962
962
 
963
963
 
@@ -967,16 +967,16 @@ by <a href="http://www.propublica.org/site/author/blair_hickman/">Blair Hickman<
967
967
  by <a href="http://www.propublica.org/site/author/joaquin_sapien/">Joaquin Sapien</a><br> ProPublica, May 23, 9 a.m.</p>
968
968
  </header>
969
969
  <p>Jabbar Collins spent 16 years in prison for murder before he won his freedom and a chance to take on the man who put him behind bars. ProPublica examines the career of that prosecutor, Michael Vecchione, the allegations against him, and what strikes many as an inexplicable lack of accountability.</p>
970
- </div>
970
+ </div>
971
971
  </section>
972
-
973
972
 
974
973
 
975
-
974
+
975
+
976
976
  <section>
977
977
  <div class="river-meta">
978
978
  <figure>
979
- <a href="http://127.0.0.1:9876/sixfacts.html">
979
+ <a href="sixfacts.html">
980
980
  <img src="./ProPublica_files/tea-party-irs-140x140-70x70.jpg" width="70" height="70" alt="Six Facts Lost in the IRS Scandal">
981
981
  </a>
982
982
  </figure>
@@ -985,10 +985,10 @@ by <a href="http://www.propublica.org/site/author/joaquin_sapien/">Joaquin Sapie
985
985
  <div class="popper">
986
986
  <div class="popper-balloon">
987
987
  <div class="chiclets-wrapper">
988
- <a href="http://www.facebook.com/sharer.php?u=http://127.0.0.1:9876/sixfacts.html" class="facebook-img" target="_blank">
988
+ <a href="http://www.facebook.com/sharer.php?u=sixfacts.html" class="facebook-img" target="_blank">
989
989
  <img src="./ProPublica_files/facebook-recommend.png">
990
990
  </a>
991
- <a class="tweet-link" href="https://twitter.com/intent/tweet?url=http://127.0.0.1:9876/sixfacts.html&via=propublica" target="_blank">
991
+ <a class="tweet-link" href="https://twitter.com/intent/tweet?url=sixfacts.html&via=propublica" target="_blank">
992
992
  <img src="./ProPublica_files/tweet-chiclet.png">
993
993
  </a>
994
994
  <div class="email-link-gradient">
@@ -1001,10 +1001,10 @@ by <a href="http://www.propublica.org/site/author/joaquin_sapien/">Joaquin Sapie
1001
1001
  </aside>
1002
1002
  </div>
1003
1003
  <div class="box-feature-text">
1004
-
1005
-
1004
+
1005
+
1006
1006
  <header>
1007
- <h1><a href="http://127.0.0.1:9876/sixfacts.html" class="title-link">Six Facts Lost in the IRS Scandal</a></h1>
1007
+ <h1><a href="sixfacts.html" class="title-link">Six Facts Lost in the IRS Scandal</a></h1>
1008
1008
  <p class="byline">
1009
1009
 
1010
1010
 
@@ -1014,147 +1014,147 @@ by <a href="http://www.propublica.org/site/author/joaquin_sapien/">Joaquin Sapie
1014
1014
  by <a href="http://www.propublica.org/site/author/kim_barker/" title="View Kim Barker&#39;s other articles">Kim Barker</a> and <a href="http://www.propublica.org/site/author/justin_elliott/" title="View Justin Elliott&#39;s other articles">Justin Elliott</a><br> ProPublica, May 22, 1:44 p.m.</p>
1015
1015
  </header>
1016
1016
  <p>As Congress probes why the IRS flagged Tea Party applications, we offer some context on the rise of political social welfare nonprofits.</p>
1017
- </div>
1017
+ </div>
1018
1018
  </section>
1019
-
1020
-
1021
1019
 
1022
- <form id="archive_form" class="search_form article-list-search">
1023
- <a href="http://www.propublica.org/archive/index">« Story Archive</a> | or Browse
1020
+
1021
+
1022
+ <form id="archive_form" class="search_form article-list-search">
1023
+ <a href="http://www.propublica.org/archive/index">« Story Archive</a> | or Browse
1024
1024
  <select id="archive_select">
1025
1025
  <option>by month</option>
1026
-
1026
+
1027
1027
  <option value="2013/05">May 2013</option>
1028
-
1028
+
1029
1029
  <option value="2013/04">April 2013</option>
1030
-
1030
+
1031
1031
  <option value="2013/03">March 2013</option>
1032
-
1032
+
1033
1033
  <option value="2013/02">February 2013</option>
1034
-
1034
+
1035
1035
  <option value="2013/01">January 2013</option>
1036
-
1036
+
1037
1037
  <option value="2012/12">December 2012</option>
1038
-
1038
+
1039
1039
  <option value="2012/11">November 2012</option>
1040
-
1040
+
1041
1041
  <option value="2012/10">October 2012</option>
1042
-
1042
+
1043
1043
  <option value="2012/09">September 2012</option>
1044
-
1044
+
1045
1045
  <option value="2012/08">August 2012</option>
1046
-
1046
+
1047
1047
  <option value="2012/07">July 2012</option>
1048
-
1048
+
1049
1049
  <option value="2012/06">June 2012</option>
1050
-
1050
+
1051
1051
  <option value="2012/05">May 2012</option>
1052
-
1052
+
1053
1053
  <option value="2012/04">April 2012</option>
1054
-
1054
+
1055
1055
  <option value="2012/03">March 2012</option>
1056
-
1056
+
1057
1057
  <option value="2012/02">February 2012</option>
1058
-
1058
+
1059
1059
  <option value="2012/01">January 2012</option>
1060
-
1060
+
1061
1061
  <option value="2011/12">December 2011</option>
1062
-
1062
+
1063
1063
  <option value="2011/11">November 2011</option>
1064
-
1064
+
1065
1065
  <option value="2011/10">October 2011</option>
1066
-
1066
+
1067
1067
  <option value="2011/09">September 2011</option>
1068
-
1068
+
1069
1069
  <option value="2011/08">August 2011</option>
1070
-
1070
+
1071
1071
  <option value="2011/07">July 2011</option>
1072
-
1072
+
1073
1073
  <option value="2011/06">June 2011</option>
1074
-
1074
+
1075
1075
  <option value="2011/05">May 2011</option>
1076
-
1076
+
1077
1077
  <option value="2011/04">April 2011</option>
1078
-
1078
+
1079
1079
  <option value="2011/03">March 2011</option>
1080
-
1080
+
1081
1081
  <option value="2011/02">February 2011</option>
1082
-
1082
+
1083
1083
  <option value="2011/01">January 2011</option>
1084
-
1084
+
1085
1085
  <option value="2010/12">December 2010</option>
1086
-
1086
+
1087
1087
  <option value="2010/11">November 2010</option>
1088
-
1088
+
1089
1089
  <option value="2010/10">October 2010</option>
1090
-
1090
+
1091
1091
  <option value="2010/09">September 2010</option>
1092
-
1092
+
1093
1093
  <option value="2010/08">August 2010</option>
1094
-
1094
+
1095
1095
  <option value="2010/07">July 2010</option>
1096
-
1096
+
1097
1097
  <option value="2010/06">June 2010</option>
1098
-
1098
+
1099
1099
  <option value="2010/05">May 2010</option>
1100
-
1100
+
1101
1101
  <option value="2010/04">April 2010</option>
1102
-
1102
+
1103
1103
  <option value="2010/03">March 2010</option>
1104
-
1104
+
1105
1105
  <option value="2010/02">February 2010</option>
1106
-
1106
+
1107
1107
  <option value="2010/01">January 2010</option>
1108
-
1108
+
1109
1109
  <option value="2009/12">December 2009</option>
1110
-
1110
+
1111
1111
  <option value="2009/11">November 2009</option>
1112
-
1112
+
1113
1113
  <option value="2009/10">October 2009</option>
1114
-
1114
+
1115
1115
  <option value="2009/09">September 2009</option>
1116
-
1116
+
1117
1117
  <option value="2009/08">August 2009</option>
1118
-
1118
+
1119
1119
  <option value="2009/07">July 2009</option>
1120
-
1120
+
1121
1121
  <option value="2009/06">June 2009</option>
1122
-
1122
+
1123
1123
  <option value="2009/05">May 2009</option>
1124
-
1124
+
1125
1125
  <option value="2009/04">April 2009</option>
1126
-
1126
+
1127
1127
  <option value="2009/03">March 2009</option>
1128
-
1128
+
1129
1129
  <option value="2009/02">February 2009</option>
1130
-
1130
+
1131
1131
  <option value="2009/01">January 2009</option>
1132
-
1132
+
1133
1133
  <option value="2008/12">December 2008</option>
1134
-
1134
+
1135
1135
  <option value="2008/11">November 2008</option>
1136
-
1136
+
1137
1137
  <option value="2008/10">October 2008</option>
1138
-
1138
+
1139
1139
  <option value="2008/09">September 2008</option>
1140
-
1140
+
1141
1141
  <option value="2008/08">August 2008</option>
1142
-
1142
+
1143
1143
  <option value="2008/07">July 2008</option>
1144
-
1144
+
1145
1145
  <option value="2008/06">June 2008</option>
1146
-
1146
+
1147
1147
  <option value="2008/05">May 2008</option>
1148
-
1148
+
1149
1149
  <option value="2008/04">April 2008</option>
1150
-
1150
+
1151
1151
  </select>
1152
1152
  <input type="submit" id="archive_form_go" value="go">
1153
1153
  </form>
1154
-
1154
+
1155
1155
  </section><!-- river -->
1156
- </section><!-- /archive -->
1157
- </div><!-- /meat -->
1156
+ </section><!-- /archive -->
1157
+ </div><!-- /meat -->
1158
1158
  <script src="./ProPublica_files/all(1).js"></script>
1159
1159
  <div id="fb-root"></div>
1160
1160
  <script>
@@ -1172,173 +1172,173 @@ aside.module-mini p.more { margin-top: 1.5em; font: italic 12px/1.2 "Georgia", s
1172
1172
 
1173
1173
  <div id="jamb" class="wFull">
1174
1174
 
1175
-
1175
+
1176
1176
  <div id="accordion-2011">
1177
-
1177
+
1178
1178
  <div class="accordion-header">
1179
1179
  <h2>Major Projects</h2>
1180
1180
  <p><a href="http://www.propublica.org/investigations">see all »</a></p>
1181
1181
  </div>
1182
-
1182
+
1183
1183
  <div class="ac-tab current">
1184
-
1184
+
1185
1185
  <h3 class="title-link">The Prescribers</h3>
1186
1186
  <h4 class="title-link">Inside the Government's Drug Data</h4>
1187
-
1187
+
1188
1188
  <div class="accordion-toggle"><!-- --></div>
1189
1189
  </div>
1190
1190
 
1191
1191
  <div class="pane" style="display: block; height: 479px;">
1192
-
1192
+
1193
1193
  <div class="pane-wrap">
1194
-
1194
+
1195
1195
  <p><a href="http://www.propublica.org/series/prescribers/"><img src="./ProPublica_files/iStock_000011414579_280x180.jpg" alt="The Prescribers" width="280" height="180"></a></p> <p>Never-before-released government prescription records shows that some doctors and other health professionals across the country prescribe large quantities of drugs known to be potentially harmful, disorienting or addictive for their patients. And officials have done little to detect or deter these hazardous prescribing patterns.
1196
1196
  </p>
1197
1197
  <p><strong>5 Stories in the Series. Latest:</strong></p>
1198
-
1198
+
1199
1199
  <p><a href="http://www.propublica.org/article/how-we-analyzed-medicares-drug-data-long-methodology/">How We Analyzed Medicare’s Drug Data</a></p>
1200
-
1201
-
1200
+
1201
+
1202
1202
  <p class="utility-text"><a href="http://www.propublica.org/series/prescribers/">See entire series »</a></p>
1203
1203
  </div>
1204
-
1204
+
1205
1205
  </div>
1206
-
1206
+
1207
1207
  <div class="ac-tab">
1208
-
1208
+
1209
1209
  <h3 class="title-link">Debt Inc.</h3>
1210
1210
  <h4 class="title-link">Lending and Collecting in America</h4>
1211
-
1211
+
1212
1212
  <div class="accordion-toggle"><!-- --></div>
1213
1213
  </div>
1214
1214
 
1215
1215
  <div class="pane" style="height: 479px;">
1216
-
1216
+
1217
1217
  <div class="pane-wrap">
1218
-
1218
+
1219
1219
  <p><a href="http://www.propublica.org/series/debt-inc/"><img src="./ProPublica_files/flickr_adotmanda_debt_in_280x180.jpg" alt="Debt Inc." width="280" height="180"></a></p> <p>Payday loans represent only one part of a high-cost lending industry that targets lower income consumers, trapping many in deep debt. When regulators and lawmakers try to crack down, lenders tweak their products to get around the law.
1220
1220
  </p>
1221
1221
  <p><strong>2 Stories in the Series. Latest:</strong></p>
1222
-
1222
+
1223
1223
  <p><a href="http://www.propublica.org/article/on-victory-drive-soldiers-defeated-by-debt/">On Victory Drive, Soldiers Defeated by Debt</a></p>
1224
-
1225
-
1224
+
1225
+
1226
1226
  <p class="utility-text"><a href="http://www.propublica.org/series/debt-inc/">See entire series »</a></p>
1227
1227
  </div>
1228
-
1228
+
1229
1229
  </div>
1230
-
1230
+
1231
1231
  <div class="ac-tab">
1232
-
1232
+
1233
1233
  <h3 class="title-link">Out of Order</h3>
1234
1234
  <h4 class="title-link">When Prosecutors Cross the Line</h4>
1235
-
1235
+
1236
1236
  <div class="accordion-toggle"><!-- --></div>
1237
1237
  </div>
1238
1238
 
1239
1239
  <div class="pane" style="height: 479px;">
1240
-
1240
+
1241
1241
  <div class="pane-wrap">
1242
1242
  <a href="http://www.propublica.org/article/a-prosecutor-a-wrongful-conviction-and-a-question-of-justice" class="accordion-image">
1243
1243
  <img src="./ProPublica_files/ppdn_vecchione_center_300x200_130522.jpg" width="278" height="179" alt="A Prosecutor, a Wrongful Conviction and a Question of Justice">
1244
1244
  </a>
1245
1245
  <h3><a href="http://www.propublica.org/article/a-prosecutor-a-wrongful-conviction-and-a-question-of-justice" class="title-link">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></h3>
1246
1246
  <p class="byline">
1247
-
1248
1247
 
1249
1248
 
1250
1249
 
1251
1250
 
1252
1251
 
1253
- by <a href="http://www.propublica.org/site/author/joaquin_sapien/">Joaquin Sapien</a><br> ProPublica,
1252
+
1253
+ by <a href="http://www.propublica.org/site/author/joaquin_sapien/">Joaquin Sapien</a><br> ProPublica,
1254
1254
  May 23, 9 a.m.</p>
1255
1255
  <p>Jabbar Collins spent 16 years in prison for murder before he won his freedom and a chance to take on the man who put him behind bars. ProPublica examines the career of that prosecutor, Michael Vecchione, the allegations against him, and what strikes many as an inexplicable lack of accountability.</p>
1256
1256
 
1257
1257
  <p class="utility-text"><a href="http://www.propublica.org/series/out-of-order/">See entire series »</a></p>
1258
1258
  </div>
1259
-
1259
+
1260
1260
  </div>
1261
-
1261
+
1262
1262
  <div class="ac-tab">
1263
-
1263
+
1264
1264
  <h3 class="title-link">Living Apart</h3>
1265
1265
  <h4 class="title-link">Fair Housing in America</h4>
1266
-
1266
+
1267
1267
  <div class="accordion-toggle"><!-- --></div>
1268
1268
  </div>
1269
1269
 
1270
1270
  <div class="pane" style="height: 479px;">
1271
-
1271
+
1272
1272
  <div class="pane-wrap">
1273
-
1274
- <p><a href="http://www.propublica.org/series/living-apart/"><img src="./ProPublica_files/gt_fairhousing_series_image_280x180.jpg" alt="Living Apart" width="280" height="180"></a></p> <p>The authors of the 1968 Fair Housing Act wanted to reverse decades of government-fostered segregation. But leaders from both parties failed to effectively enforce the law and integrate housing.
1273
+
1274
+ <p><a href="http://www.propublica.org/series/living-apart/"><img src="./ProPublica_files/gt_fairhousing_series_image_280x180.jpg" alt="Living Apart" width="280" height="180"></a></p> <p>The authors of the 1968 Fair Housing Act wanted to reverse decades of government-fostered segregation. But leaders from both parties failed to effectively enforce the law and integrate housing.
1275
1275
  </p>
1276
1276
  <p><strong>13 Stories in the Series. Latest:</strong></p>
1277
-
1277
+
1278
1278
  <p><a href="http://www.propublica.org/article/feds-turn-up-heat-on-westchester/">Feds Turn Up Heat on Westchester</a></p>
1279
-
1280
-
1279
+
1280
+
1281
1281
  <p class="utility-text"><a href="http://www.propublica.org/series/living-apart/">See entire series »</a></p>
1282
1282
  </div>
1283
-
1283
+
1284
1284
  </div>
1285
-
1285
+
1286
1286
  <div class="ac-tab">
1287
-
1287
+
1288
1288
  <h3 class="title-link">Dollars for Doctors</h3>
1289
1289
  <h4 class="title-link">How Industry Money Reaches Physicians </h4>
1290
-
1290
+
1291
1291
  <div class="accordion-toggle"><!-- --></div>
1292
1292
  </div>
1293
1293
 
1294
1294
  <div class="pane" style="height: 479px;">
1295
-
1295
+
1296
1296
  <div class="pane-wrap">
1297
-
1297
+
1298
1298
  <p><a href="http://www.propublica.org/series/dollars-for-docs/"><img src="./ProPublica_files/dollars4docs_280x180.jpg" alt="Dollars for Doctors" width="280" height="180"></a></p> <p>ProPublica is tracking the financial ties between doctors and medical companies.
1299
1299
  </p>
1300
1300
  <p><strong>43 Stories in the Series. Latest:</strong></p>
1301
-
1301
+
1302
1302
  <p><a href="http://www.propublica.org/article/pay-to-prescribe-two-dozen-doctors-named-in-novartis-kickback-case/">Pay to Prescribe? Two Dozen Doctors Named in Novartis Kickback Case</a></p>
1303
-
1304
-
1303
+
1304
+
1305
1305
  <p class="utility-text"><a href="http://www.propublica.org/series/dollars-for-docs/">See entire series »</a></p>
1306
1306
  </div>
1307
-
1307
+
1308
1308
  </div>
1309
-
1309
+
1310
1310
  <div class="ac-tab">
1311
-
1311
+
1312
1312
  <h3 class="title-link">Patient Safety</h3>
1313
1313
  <h4 class="title-link">Exploring Quality of Care in the U.S.</h4>
1314
-
1314
+
1315
1315
  <div class="accordion-toggle"><!-- --></div>
1316
1316
  </div>
1317
1317
 
1318
1318
  <div class="pane" style="height: 479px;">
1319
-
1319
+
1320
1320
  <div class="pane-wrap">
1321
1321
  <a href="http://www.propublica.org/article/the-story-behind-our-hospital-interactive" class="accordion-image">
1322
1322
  <img src="./ProPublica_files/hospital-hackathon-300.jpg" width="278" height="179" alt="The Story Behind Our Hospital Interactive">
1323
1323
  </a>
1324
1324
  <h3><a href="http://www.propublica.org/article/the-story-behind-our-hospital-interactive" class="title-link">The Story Behind Our Hospital Interactive</a></h3>
1325
1325
  <p class="byline">
1326
-
1327
1326
 
1328
1327
 
1329
1328
 
1330
1329
 
1331
1330
 
1332
- by <a href="http://www.propublica.org/site/author/Tom_Detzel/">Tom Detzel</a><br> ProPublica,
1331
+
1332
+ by <a href="http://www.propublica.org/site/author/Tom_Detzel/">Tom Detzel</a><br> ProPublica,
1333
1333
  May 17, 1:15 p.m.</p>
1334
1334
  <p>In a five-day hackathon, ProPublica and PBS Frontline team up to create an interactive story exploring six myths about hospitals and patient safety.</p>
1335
1335
 
1336
1336
  <p class="utility-text"><a href="http://www.propublica.org/series/patient-safety/">See entire series »</a></p>
1337
1337
  </div>
1338
-
1338
+
1339
1339
  </div>
1340
-
1341
-
1340
+
1341
+
1342
1342
  </div>
1343
1343
 
1344
1344
  <aside class="ad">
@@ -1349,9 +1349,9 @@ by <a href="http://www.propublica.org/site/author/Tom_Detzel/">Tom Detzel</a><b
1349
1349
  </script>
1350
1350
  </div>
1351
1351
  </aside>
1352
-
1353
1352
 
1354
-
1353
+
1354
+
1355
1355
 
1356
1356
 
1357
1357
 
@@ -1381,7 +1381,7 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
1381
1381
  <h1><a href="http://www.propublica.org/podcast">Podcast</a></h1>
1382
1382
  <p><a href="http://www.propublica.org/podcast/item/propublica-and-the-irs-scandal/">Podcast: ProPublica and the IRS Scandal</a></p>
1383
1383
  </aside>
1384
-
1384
+
1385
1385
  <aside class="module-mini">
1386
1386
 
1387
1387
  <figure><a href="http://www.propublica.org/ebooks"><img src="./ProPublica_files/livingapart_ebook_cover_140x186-70x93.jpg" width="70" height="93" alt="Living Apart: How the Government Betrayed a Landmark Civil Rights Law"></a></figure>
@@ -1418,7 +1418,7 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
1418
1418
  </aside>
1419
1419
 
1420
1420
  <!--googleoff: snippet-->
1421
- <aside class="module-tabbed-2011">
1421
+ <aside class="module-tabbed-2011">
1422
1422
  <h1 class="module-title">Our Hottest Stories</h1>
1423
1423
  <ul class="tabs">
1424
1424
  <li><a href="http://www.propublica.org/#most-read" class="active">Most Read</a></li>
@@ -1431,55 +1431,55 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
1431
1431
  </div>
1432
1432
  <div class="tab-content" id="most-emailed" style="display: none;">
1433
1433
  <ul>
1434
-
1435
- <li class="first"><a href="http://127.0.0.1:9876/sixfacts.html">Six Facts Lost in the IRS Scandal</a></li>
1436
-
1434
+
1435
+ <li class="first"><a href="sixfacts.html">Six Facts Lost in the IRS Scandal</a></li>
1436
+
1437
1437
  <li><a href="http://www.propublica.org/article/a-closer-look-sound-fury-and-the-irs-mess/">Sound, Fury and the IRS Mess</a></li>
1438
-
1439
- <li><a href="http://127.0.0.1:9876/prosecutor.html">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></li>
1440
-
1438
+
1439
+ <li><a href="prosecutor.html">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></li>
1440
+
1441
1441
  <li><a href="http://www.propublica.org/article/a-prolonged-stay-the-reasons-behind-the-slow-pace-of-executions/">A Prolonged Stay: The Reasons Behind the Slow Pace of Executions</a></li>
1442
-
1442
+
1443
1443
  <li><a href="http://www.propublica.org/article/the-most-important-muckreads-on-rape-in-the-military/">The Most Important #Muckreads on Rape in the Military</a></li>
1444
-
1444
+
1445
1445
  <li><a href="http://www.propublica.org/article/congressmen-to-hagel-where-are-the-missing-war-records/">Congressmen to Hagel: Where Are the Missing War Records?</a></li>
1446
-
1446
+
1447
1447
  <li><a href="http://www.propublica.org/article/as-need-for-new-flood-maps-rises-congress-and-obama-cut-funding/">As Need for New Flood Maps Rises, Congress and Obama Cut Funding</a></li>
1448
-
1448
+
1449
1449
  <li><a href="http://www.propublica.org/article/the-story-behind-our-hospital-interactive/">The Story Behind Our Hospital Interactive</a></li>
1450
-
1450
+
1451
1451
  <li><a href="http://www.propublica.org/article/how-irs-nonprofit-division-got-so-dysfunctional/">How the IRS’s Nonprofit Division Got So Dysfunctional</a></li>
1452
-
1452
+
1453
1453
  </ul>
1454
1454
  </div>
1455
1455
  <div class="tab-content" id="most-commented" style="display: none;">
1456
1456
  <ul>
1457
-
1457
+
1458
1458
  <li class="first"><a href="http://www.propublica.org/article/six-facts-lost-in-irs-scandal">Six Facts Lost in the IRS Scandal</a></li>
1459
-
1459
+
1460
1460
  <li><a href="http://www.propublica.org/article/how-irs-nonprofit-division-got-so-dysfunctional">How the IRS’s Nonprofit Division Got So Dysfunctional</a></li>
1461
-
1461
+
1462
1462
  <li><a href="http://www.propublica.org/article/a-closer-look-sound-fury-and-the-irs-mess">Sound, Fury and the IRS Mess</a></li>
1463
-
1463
+
1464
1464
  <li><a href="http://www.propublica.org/article/the-most-important-muckreads-on-rape-in-the-military">The Most Important #Muckreads on Rape in the Military</a></li>
1465
-
1465
+
1466
1466
  <li><a href="http://www.propublica.org/article/congressmen-to-hagel-where-are-the-missing-war-records">Congressmen to Hagel: Where Are the Missing War Records?</a></li>
1467
-
1467
+
1468
1468
  <li><a href="http://www.propublica.org/article/as-need-for-new-flood-maps-rises-congress-and-obama-cut-funding">As Need for New Flood Maps Rises, Congress and Obama Cut Funding</a></li>
1469
-
1469
+
1470
1470
  <li><a href="http://www.propublica.org/article/a-prosecutor-a-wrongful-conviction-and-a-question-of-justice">A Prosecutor, a Wrongful Conviction and a Question of Justice</a></li>
1471
-
1471
+
1472
1472
  <li><a href="http://www.propublica.org/article/a-prolonged-stay-the-reasons-behind-the-slow-pace-of-executions">A Prolonged Stay: The Reasons Behind the Slow Pace of Executions</a></li>
1473
-
1473
+
1474
1474
  <li><a href="http://www.propublica.org/article/the-story-behind-our-hospital-interactive">The Story Behind Our Hospital Interactive</a></li>
1475
-
1475
+
1476
1476
  <li><a href="http://www.propublica.org/article/irs-test-charts-for-embedding">irs-test-charts-for-embedding</a></li>
1477
-
1477
+
1478
1478
  </ul>
1479
1479
  </div>
1480
1480
  </div>
1481
1481
  </aside>
1482
- <!--googleon: snippet-->
1482
+ <!--googleon: snippet-->
1483
1483
 
1484
1484
 
1485
1485
 
@@ -1516,7 +1516,7 @@ aside.nerd_blog p a:hover{ text-decoration: none; color:black;}
1516
1516
  </ul>
1517
1517
  <section class="republish">
1518
1518
  <a href="http://www.propublica.org/about/steal-our-stories" id="foot-tab-republish">Steal Our Stories</a>
1519
- <p>Unless otherwise noted, you can republish our stories for free if you <a href="http://www.propublica.org/about/steal-our-stories">follow these rules</a>.</p>
1519
+ <p>Unless otherwise noted, you can republish our stories for free if you <a href="http://www.propublica.org/about/steal-our-stories">follow these rules</a>.</p>
1520
1520
  <!-- cc_ad -->
1521
1521
  <div id="google-cc_ad">
1522
1522
  <script type="text/javascript">
@@ -1539,7 +1539,7 @@ googletag.display('google-cc_ad');
1539
1539
  </div><!-- /wrapper -->
1540
1540
  </footer>
1541
1541
 
1542
-
1542
+
1543
1543
 
1544
1544
 
1545
1545
  <script type="text/javascript" src="./ProPublica_files/beacons.js"></script>
@@ -1551,4 +1551,4 @@ googletag.display('google-cc_ad');
1551
1551
  <script src="./ProPublica_files/ss-standard.js"></script>
1552
1552
 
1553
1553
 
1554
- <script src="./ProPublica_files/telephoneline" async=""></script><iframe id="rufous-sandbox" scrolling="no" frameborder="0" allowtransparency="true" style="display: none;"></iframe><iframe id="rdbIndicator" width="100%" height="270" border="0" src="./ProPublica_files/indicator.html" style="display: none; border: 0; position: fixed; left: 0; top: 0; z-index: 2147483647"></iframe></body></html>
1554
+ <script src="./ProPublica_files/telephoneline" async=""></script><iframe id="rufous-sandbox" scrolling="no" frameborder="0" allowtransparency="true" style="display: none;"></iframe><iframe id="rdbIndicator" width="100%" height="270" border="0" src="./ProPublica_files/indicator.html" style="display: none; border: 0; position: fixed; left: 0; top: 0; z-index: 2147483647"></iframe></body></html>