forked from ETF/media_frenzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_api.py
1977 lines (1815 loc) · 201 KB
/
test_api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
import unittest
from collections import namedtuple
from api import counts_pages_words
class MockRequestsNewYorkTimes(object):
def __getattr__(self, name):
#from nose.tools import set_trace; set_trace()
if name == 'url':
UrlMock = namedtuple('url', ['title'])
return UrlMock(title='article')
else:
return NYTIMES_GARBAGE
class TestCountsPagesWords(unittest.TestCase):
def test_counts_pages_words(self):
def mock_requests_get(url):
return MockRequestsNewYorkTimes()
import requests
old_requests_get = requests.get
requests.get = mock_requests_get
URL1 = "http://www.nytimes.com"
results = counts_pages_words(URL1)
found_words = [(u'Cadillac',3), (u'Hummer',2), (u'BAM',2)]
for fw in found_words:
self.assertIn(fw, results['freq_dist'])
requests.get = old_requests_get
NYTIMES_GARBAGE = """<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html lang="en" class="NYT5Style">
<head>
<title>The New York Times - Breaking News, World News & Multimedia</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="robots" content="noarchive,noodp,noydir">
<meta name="description" content="Find breaking news, multimedia, reviews & opinion on Washington, business, sports, movies, travel, books, jobs, education, real estate, cars & more at nytimes.com.">
<meta name="keywords" content="Congressional Budget Office,Patient Protection and Affordable Care Act (2010),Farm Bill (US),Snowden, Edward J,Rogers, Michael J (1963- ),House Committee on the Judiciary,Republican Party,Comey, James B,House Committee on Intelligence,Cole, James M,National Security Agency,Classified Information and State Secrets,News and News Media,United States Politics and Government,Surveillance of Citizens by Government,Goodlatte, Robert W,West Village (Manhattan, NY),Heroin,Police Department (NYC),Hoffman, Philip Seymour,de Blasio, Bill,St Patrick's Day,Bloomberg, Michael R,Giuliani, Rudolph W,Fifth Avenue (Manhattan, NY),Parades,Homosexuality,Dinkins, David N,Education (K-12),Computers and the Internet,ConnectED,Obama, Barack,United States Army,Art,Graffiti,Espionage and Intelligence Services,National Security Agency,Berlin (Germany),Teufelsberg,Cold War Era,Letters,Stanislaw Dziwisz,Roman Catholic Church,John Paul II,Books and Literature,Poland,South China Sea,Philippines,Czechoslovakia,World War II (1939-45),Aquino, Benigno S III,China,Community Colleges,Colleges and Universities,Tennessee,Tuition,Haslam, Bill,Gates, Bill,Nadella, Satya,Microsoft Corporation,Executives and Management (Theory),Ski Jumping,Olympic Games (2014),Japan,Bouley, David,TriBeCa (Manhattan, NY),Bouley Botanical,Agriculture and Farming">
<meta name="CG" content="Homepage">
<meta name="SCG" content="">
<meta name="PT" content="Homepage">
<meta name="PST" content="">
<meta name="HOMEPAGE_TEMPLATE_VERSION" content="300">
<meta name="application-name" content="The New York Times" />
<meta name="msapplication-starturl" content="http://www.nytimes.com/" />
<meta name="msapplication-task" content="name=Search;action-uri=http://query.nytimes.com/search/sitesearch?src=iepin;icon-uri=http://css.nyt.com/images/icons/search.ico" />
<meta name="msapplication-task" content="name=Most Popular;action-uri=http://www.nytimes.com/gst/mostpopular.html?src=iepin;icon-uri=http://css.nyt.com/images/icons/mostpopular.ico" />
<meta name="msapplication-task" content="name=Video;action-uri=http://video.nytimes.com/?src=iepin;icon-uri=http://css.nyt.com/images/icons/video.ico" />
<meta name="msapplication-task" content="name=Homepage;action-uri=http://www.nytimes.com?src=iepin&adxnnl=1;icon-uri=http://css.nyt.com/images/icons/homepage.ico" />
<link rel="shortcut icon" href="http://css.nyt.com/images/icons/nyt.ico" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml">
<link rel="alternate" media="handheld" href="http://mobile.nytimes.com">
<link rel="stylesheet" type="text/css" href="http://css.nyt.com/css/0.1/screen/build/homepage/styles.css">
<link rel="stylesheet" type="text/css" media="print" href="http://css.nyt.com/css/0.1/print/styles.css">
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="http://css.nyt.com/css/0.1/screen/build/homepage/ie.css?v=012611">
<![endif]-->
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="http://css.nyt.com/css/0.1/screen/build/homepage/ie6.css">
<![endif]-->
<!--[if lt IE 9]>
<script src="http://js.nyt.com/js/html5shiv.js"></script>
<![endif]-->
<script type="text/javascript" src="http://js.nyt.com/js2/build/sitewide/sitewide.js"></script>
<script type="text/javascript" src="http://js.nyt.com/js2/build/homepage/top.js"></script>
<script src="//typeface.nytimes.com/miq8eej.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
<!-- ADXINFO classification="blank-but-count-imps" campaign="KRUX_DIGITAL_CONTROL_SCRIPT_LIVE_HP" priority="9100" isInlineSafe="N" width="1" height="1" --><!-- BEGIN Krux Controltag -->
<script class="kxct" data-id="HrUwtkcl" data-version="async:1.7" type="text/javascript">
window.Krux||((Krux=function(){Krux.q.push(arguments)}).q=[]);
(function(){
var k=document.createElement('script');k.type='text/javascript';k.async=true;var m,src=(m=location.href.match(/\bkxsrc=([^&]+)\b/))&&decodeURIComponent(m[1]);
k.src=src||(location.protocol==='https:'?'https:':'http:')+'//cdn.krxd.net/controltag?confid=HrUwtkcl';
var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(k,s);
})();
</script>
<!-- END Krux Controltag -->
</head>
<body id="home">
<a name="top"></a>
<div id="shell">
<!-- ADXINFO classification="Text_Link" campaign="nyt2014_abTest_bar1_janhd_cookdpr" priority="9200" isInlineSafe="N" width="0" height="0" --><script>
document.cookie='bar1janhd=bau;domain=.nytimes.com;path=/';
</script>
<ul id="memberTools">
<!-- ADXINFO classification="Share_of_Voice_Tile_-_Left" campaign="nyt2014_bar1_digihd_nyt5bau_hpsf_3LWW7_3LWW8_3LWW9" priority="9000" isInlineSafe="Y" width="184" height="90" --><span class="ts-20140128-1133"></span>
<style type="text/css">
.NYT5Style .masthead-tools #duallink {
display: inline;
vertical-align: top;
}
#duallink {
border:none;
}
#duallink > a {
-moz-box-sizing: border-box;
background-color: #6288A5;
border: 1px solid #4D7B9F;
border-radius: 3px;
color: #FFFFFF;
display: inline-block;
font-size: 1em;
font-weight: bold;
font-family: nyt-franklin,nyt-franklin-1,'Helvetica Neue',Arial,sans-serif;
padding: 7px 10px 6px;
text-transform: uppercase;
text-decoration: none;
}
#duallink > a:hover {
background-color: #326891;
border: 1px solid #265E8B;
text-decoration: none;
}
#hovercard {
width: 450px;
height: 330px;
display: none;
z-index: 99999999;
background-color: #fff;
border: 1px solid #ccc;
position: absolute;
left: -290px;
top: 29px;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;
text-align: left;
}
#hovercard:before {
content: url(http://graphics8.nytimes.com/marketing/bar1jsimages/arrowup.png);
position: absolute;
left: 342px;
top: -9px;
width: 25px;
height: 18px;
display:block;
}
h3.hover-title {
font-style: normal;
font-size: 16px;
font-weight: 700;
line-height: 20px;
font-family: nyt-franklin,nyt-franklin-1,'Helvetica Neue',Arial,sans-serif;
color: #000;
width: 190px;
white-space: normal;
}
.split-dig {
width: 224px;
border-right: 1px solid #F1F1F1;
margin: 0;
padding: 0;
min-height: 330px;
background: #fff url('http://graphics8.nytimes.com/adx/images/ADS/36/05/ad.360598/devices_tri_201401_v2.png') center 34px no-repeat;
float: left;
position: relative;
}
.split-dig-content {
padding: 145px 0 0 17px;
}
.split-ada {
width: 225px;
margin: 0;
padding: 0;
min-height: 330px;
background: #fff url('http://graphics8.nytimes.com/adx/images/ADS/36/05/ad.360598/devices_paper_201401_v2.png') center 34px no-repeat;
float: right;
position: relative;
}
.split-ada-content {
padding: 145px 0 0 15px;
}
.split-dig:hover,
.split-ada:hover {
background-color: #F2F6F9;
}
.hover-subhead {
font-family: nyt-franklin, nyt-franklin-1, 'Helvetica Neue', Arial;
font-weight: 500;
font-size: 13px;
line-height: 18px;
color: #333;
margin-top: 14px;
width: 185px;
white-space: normal;
}
.split-ada-content .hover-subhead {
width: 200px;
}
a.nyt-button-actions {
background: #F7F7F5;
color: #6E6E6C;
width: 188px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #ccc !important;
text-transform: uppercase;
font: 11px nyt-franklin, nyt-franklin-1, "Helvetica Neue", Arial, sans-serif;
text-align: center;
padding: 6px 0;
cursor: pointer;
display: block;
position: absolute;
bottom:15px;
}
a.nyt-button-actions:hover {
background: #3C6791;
color: #fff !important;
text-decoration: none !important;
}
a.nyt-button-actions.highlightButton:link,
a.nyt-button-actions.highlightButton:visited {
color: #fff;
background: #3C6791;
text-decoration: none !important;
}
</style>
<li id="duallink" class="user-subscriptions-menu user-subscriptions-group"><a id="nyt-button-sub" class="" href="http://www.nytimes.com/adx/bin/adx_click.html?type=goto&opzn&page=homepage.nytimes.com/index.html&pos=Bar1&sn2=5b35bc29/49f095e7&sn1=64aeb60a/889a8ad3&camp=nyt2014_bar1_digihd_nyt5bau_hpsf_3LWW7_3LWW8_3LWW9&ad=bar1hover_nyt5_bau_hpsf_3LWW9_3LWW7_3LWW8&goto=http%3A%2F%2Fwww%2Enytimes%2Ecom%2Fsubscriptions%2FMultiproduct%2Flp3004%2Ehtml%3Fadxc%3D234206%26adxa%3D360598%26page%3Dhomepage.nytimes.com/index.html%26pos%3DBar1%26campaignId%3D3LWW9" target="_blank">Subscribe Now</a>
<div id="hovercard">
<div class="split split-dig">
<div class="split-dig-content">
<h3 class="hover-title">
Try a Digital Subscription Today for Just
99¢ for Your First 4 Weeks
</h3>
<p class="hover-subhead" style="margin-top:6px">Get unlimited access to NYTimes.com and NYTimes apps.
</p>
<a class="nyt-button-actions" href="http://www.nytimes.com/adx/bin/adx_click.html?type=goto&opzn&page=homepage.nytimes.com/index.html&pos=Bar1&sn2=5b35bc29/49f095e7&sn1=64aeb60a/889a8ad3&camp=nyt2014_bar1_digihd_nyt5bau_hpsf_3LWW7_3LWW8_3LWW9&ad=bar1hover_nyt5_bau_hpsf_3LWW9_3LWW7_3LWW8&goto=http%3A%2F%2Fwww%2Enytimes%2Ecom%2Fsubscriptions%2FMultiproduct%2Flp5558%2Ehtml%3Fadxc%3D234206%26adxa%3D360598%26page%3Dhomepage.nytimes.com/index.html%26pos%3DBar1%26campaignId%3D3LWW7" target="_blank">Get Digital</a>
</div>
</div>
<div class="split-ada">
<div class="split split-ada-content">
<h3 class="hover-title">
Get 50% Off 12 Weeks of Home Delivery and Free All Digital Access
</h3>
<p class="hover-subhead" style="margin-top:6px">
All print options include free, unlimited access to NYTimes.com and NYTimes apps.
</p>
<a class="nyt-button-actions" target="_blank" href="http://www.nytimes.com/adx/bin/adx_click.html?type=goto&opzn&page=homepage.nytimes.com/index.html&pos=Bar1&sn2=5b35bc29/49f095e7&sn1=28b4d37a/7d304080&camp=nyt2014_bar1_digihd_nyt5bau_hpsf_3LWW7_3LWW8_3LWW9&ad=bar1hover_nyt5_bau_hpsf_3LWW9_3LWW7_3LWW8&goto=https%3A%2F%2Fnytimesathome%2Ecom%2Fhd%2F205%3FMediaCode%3DWB7AA%26CMP%3D3LWW8">
Get Home Delivery
</a>
</div>
</div>
</div>
</li>
<script type="text/javascript">
(function ($, global) {
"use strict";
$('#duallink').mouseenter(function(){
$('#hovercard', this).fadeIn('fast');
});
$('#duallink').mouseleave(function(){
$('#hovercard', this).fadeOut('fast');
});
})(window.NYTD && window.NYTD.jQuery || window.jQuery, window);
</script>
<li><a href="/auth/login?URI=http://">Log In</a></li>
<li><a href="/gst/regi.html" onClick="dcsMultiTrack('WT.z_ract', 'Regnow', 'WT.z_rprod', 'Masthead','WT.z_dcsm','1');">Register Now</a></li>
</ul>
<div class="mainTabsContainer tabsContainer">
<ul id="mainTabs" class="mainTabs tabs">
<li class="first"><a href="http://www.nytimes.com/pages/todayspaper/index.html">Today's Paper</a></li>
<li><a href="http://video.nytimes.com/">Video</a></li>
<li><a href="http://www.nytimes.com/mostpopular">Most Popular</a></li>
</ul>
</div><!--close .tabsContainer -->
<div id="editionToggle" class="editionToggle">
Edition: <span id="editionToggleUS"><a href="http://www.nytimes.com" onmousedown="dcsMultiTrack('DCS.dcssip','www.nytimes.com','DCS.dcsuri','/toggleIHTtoNYT.html','WT.ti','toggleIHTtoNYT','WT.z_dcsm','1');" onclick="NYTD.EditionPref.setUS();">U.S.</a></span> / <span id="editionToggleGlobal"><a href="http://global.nytimes.com" onmousedown="dcsMultiTrack('DCS.dcssip','www.nytimes.com','DCS.dcsuri','/toggleNYTtoIHT.html','WT.ti','toggleNYTtoIHT','WT.z_dcsm','1');" onclick="NYTD.EditionPref.setGlobal();">Global</a></span>
</div><!--close editionToggle -->
<div id="page" class="tabContent active">
<div id="masthead">
<div class="singleAd" id="TopLeft">
<!-- ADXINFO classification="Share_of_Voice_Tile_-_Left" campaign="Marc_Jacobs_1917519_2014-nyt8" priority="8500" isInlineSafe="N" width="184" height="90" --><a href="http://www.nytimes.com/adx/bin/adx_click.html?type=goto&opzn&page=homepage.nytimes.com/index.html&pos=TopLeft&sn2=ab8a95f5/87622a3f&sn1=64816686/f2c0e1fa&camp=Marc_Jacobs_1917519_2014-nyt8&ad=Marc_Jacobs_Left_RetroFrames_Jan-Feb2014&goto=http%3A%2F%2Fwww%2Emarcjacobs%2Ecom%2Fmarc%2Dby%2Dmarc%2Djacobs%2Feyewear%2Fmmj389%2Fmarc%2Dby%2Dmarc%2Djacobs%2Dretro%2Dframe%3Fsort%3D%26utm%5Fsource%3Dnyt14%26utm%5Fmedium%3Dlefttile%26utm%5Fcampaign%3Dretroframe" target="_blank">
<img src="http://graphics8.nytimes.com/adx/images/ADS/36/28/ad.362832/NYT_RETROFRAMES_LEFT.jpg" width="184" height="90" border="0"></a>
</div>
<div class="singleAd" id="TopRight">
<!-- ADXINFO classification="Share_of_Voice_Tile_-_Right" campaign="Marc_Jacobs_1917519_2014-nyt8" priority="8500" isInlineSafe="N" width="184" height="90" --><a href="http://www.nytimes.com/adx/bin/adx_click.html?type=goto&opzn&page=homepage.nytimes.com/index.html&pos=TopRight&sn2=361d9a2f/d5c54928&sn1=8ffd4833/9a0eebfb&camp=Marc_Jacobs_1917519_2014-nyt8&ad=Marc_Jacobs_Right_RetroFrames_Jan-Feb2014&goto=http%3A%2F%2Fwww%2Emarcjacobs%2Ecom%2Fmarc%2Dby%2Dmarc%2Djacobs%2Feyewear%2Fmmj389%2Fmarc%2Dby%2Dmarc%2Djacobs%2Dretro%2Dframe%3Fsort%3D%26utm%5Fsource%3Dnyt14%26utm%5Fmedium%3Drighttile%26utm%5Fcampaign%3Dretroframe" target="_blank">
<img src="http://graphics8.nytimes.com/adx/images/ADS/36/28/ad.362833/NYT_RETROFRAMES_RIGHT.jpg" width="184" height="90" border="0"></a>
</div>
<script type="text/javascript">
if (/iPad|iPod|iPhone/.test(navigator.userAgent)){
document.write('<img id="mastheadLogo" width="379" height="64" alt="The New York Times" src="http://i1.nyt.com/svg/nytlogo_379x64.svg">');
} else {
document.write('<img id="mastheadLogo" width="379" height="64" alt="The New York Times" src="http://i1.nyt.com/images/misc/nytlogo379x64.gif">');
}
</script>
<noscript>
<img id="mastheadLogo" width="379" height="64" alt="The New York Times" src="http://i1.nyt.com/images/misc/nytlogo379x64.gif"/>
</noscript>
<div id="date"><p>Tuesday, February 4, 2014 <span id="lastUpdate">Last Update: </span><span class="timestamp">11:35 PM ET</span></p></div>
</div><!--end #masthead -->
<div id="toolbar">
<div id="toolbarSearchContainer">
<div id="toolbarSearch">
<div class="inlineSearchControl">
<form id="searchForm" name="searchForm" method="get" action="http://query.nytimes.com/gst/sitesearch_selector.html" enctype="application/x-www-form-urlencoded">
<input id="hpSearchQuery" name="query" class="text"/>
<input type="hidden" name="type" value="nyt"/>
<input id="searchSubmit" title="Search" width="40" height="19" alt="Search" type="image" src="http://graphics8.nytimes.com/images/global/global_search/search_button40x19.gif">
</form>
</div>
<div id="HPSiteSearch" style="display:none;"></div>
</div>
</div>
<div id="toolsHome">
<a href="http://www.nytimes.com/weather">Personalize Your Weather</a>
</div>
<div class="socialMediaModule">
<p class="listLabel">Follow Us</p>
<ul class="socialMediaTools flush"><li class="facebook"><a href="http://facebook.com/nytimes"><img class="facebookIcon" src="http://graphics8.nytimes.com/images/article/functions/facebook.gif" alt="Facebook"></a></li><li class="twitter"><a href="http://twitter.com/nytimes"><img class="twitterIcon" src="http://graphics8.nytimes.com/images/article/functions/twitter.gif" alt="Twitter"></a></li></ul>
<span class="pipe">|</span>
</div>
</div><!--end #toolbar -->
<div class="singleAd" id="Top">
<!-- ADXINFO classification="Doublebill" campaign="Sony-Monuments-Men-1905167" priority="9000" isInlineSafe="N" width="970" height="250" --><div>
<script type="text/javascript" src="http://graphics8.nytimes.com/ads/javascript/CookieUtil.js?b"></script>
<link rel="stylesheet" type="text/css" href="http://graphics8.nytimes.com/ads/css/doublebillclosebutton2.css" />
</div>
<SCRIPT type="text/javascript" SRC="http://ad.doubleclick.net/adj/N5811.6440.THENEWYORKTIMESCOMPAN/B7866441.2;sz=970x250;pc=nyt232917A362867;ord=2014.02.05.04.43.42?;click=http://www.nytimes.com/adx/bin/adx_click.html?type=goto&opzn&page=homepage.nytimes.com/index.html&pos=Top&camp=Sony-Monuments-Men-1905167&ad=Homepage-DoublebillRoadblockTuesday2-4-104757468&sn2=4ae2a1a8/f0b66a39&snr=doubleclick&snx=1391571156&sn1=3993977f/e04af4ad&goto=">
</SCRIPT>
<NOSCRIPT>
<A HREF="http://www.nytimes.com/adx/bin/adx_click.html?type=goto&opzn&page=homepage.nytimes.com/index.html&pos=Top&sn2=4ae2a1a8/f0b66a39&sn1=964a7aac/67ce1d0c&camp=Sony-Monuments-Men-1905167&ad=Homepage-DoublebillRoadblockTuesday2-4-104757468&goto=http://ad.doubleclick.net/jump/N5811.6440.THENEWYORKTIMESCOMPAN/B7866441.2;sz=970x250;pc=nyt232917A362867;ord=2014.02.05.04.43.42?" TARGET="_blank">
<IMG SRC="http://ad.doubleclick.net/ad/N5811.6440.THENEWYORKTIMESCOMPAN/B7866441.2;sz=970x250;pc=nyt232917A362867;ord=2014.02.05.04.43.42?"
BORDER=0 WIDTH=970 HEIGHT=250
ALT="Click Here"></A>
</NOSCRIPT>
<div id="dbcloseBtn">
<a href="http://www.nytimes.com/ " class="minimizeAd" title="Minimize these advertisements.">Collapse Ad</a>
</div>
<script>
NYTD.AdClose = (function($) {
$('#dbcloseBtn').click(function() {
$('#Top').css("display", "none");
$('#dbcloseBtn').css("display", "none");
CookieUtil.set("NYT-close", "true", new Date("February 5, 2014"));
});
})(NYTD.jQuery);
</script>
<!--MOAT Standard Analytics Code starts here-->
<script src="http://js.moatads.com/nyt952824751/moatad.js#moatClientLevel1=Studios&moatClientLevel2=Sony&moatClientLevel3=Sony-Monuments-Men-1905167&moatClientLevel4=Homepage-DoublebillRoadblockTuesday2-4-104757468&moatClientSlicer1=homepage.nytimes.com/index.html&zMoatAT=Standard" type="text/javascript"></script><noscript class="MOAT-nyt952824751?moatClientLevel1=Studios&moatClientLevel2=Sonyamp;moatClientLevel3=Sony-Monuments-Men-1905167&&moatClientLevel4=Homepage-DoublebillRoadblockTuesday2-4-104757468&moatClientSlicer1=homepage.nytimes.com/index.html&zMoatAT=Standard"></noscript>
<!--MOAT Standard Analytics Code ends here-->
</div>
<div id="main">
<div id="spanWholePageRegion">
<div class="columnGroup first">
<style><!--
body #insideNYTimes #insideNYTimesBrowser .story {padding: 0 5px !important;}
hr, .singleRuleDivider, .doubleRuleDivider{
margin-top: 10px;
margin-bottom: 6px;
}
hr, .singleRuleDivider {
height: 1px;
padding: 0;
background: #e2e2e2;
border: 0;
line-height: 0;
overflow: hidden;
}
--></style> <style type="text/css"><!--
#TopLeft img[height="1"],
#TopRight img[height="1"] {
display: none;
}
#TopLeft, #TopRight { height: 90px; }
#TopLeft .prWrap,
#TopRight .prWrap {
width: auto !important;
}
hr, .singleRuleDivider, .doubleRuleDivider{
margin-top: 10px;
margin-bottom: 6px;
}
hr, .singleRuleDivider {
height: 1px;
padding: 0;
background: #e2e2e2;
border: 0;
line-height: 0;
overflow: hidden;
}
--></style>
<script type="text/javascript">
var NYTD=NYTD||{};
</script> </div>
</div><!--close spanWholePageRegion -->
<div class="baseLayout wrap">
<div class="nav column">
<div class="hpLeftnav" id="HPLeftNav">
<div class="columnGroup fullWidth">
<div class="navigationHomeLede">
<ul class="flush featured">
<li id="navWorld"><a href="http://www.nytimes.com/pages/world/index.html">World</a></li>
<li id="navUS"><a href="http://www.nytimes.com/pages/national/index.html">U.S.</a></li>
<li id="navPolitics"><a href="http://www.nytimes.com/pages/politics/index.html">Politics</a></li>
<li id="navNYRegion"><a href="http://www.nytimes.com/pages/nyregion/index.html">New York</a></li>
<li id="navBusiness"><a href="http://www.nytimes.com/pages/business/index.html">Business</a></li>
<li id="navDealbook"><a href="http://dealbook.nytimes.com">Dealbook</a></li>
<li id="navTechnology"><a href="http://www.nytimes.com/pages/technology/index.html">Technology</a></li>
<li id="navSports"><a href="http://www.nytimes.com/pages/sports/index.html">Sports</a></li>
<li id="navScience"><a href="http://www.nytimes.com/pages/science/index.html">Science</a></li>
<li id="navHealth"><a href="http://www.nytimes.com/pages/health/index.html">Health</a></li>
<li id="navArts"><a href="http://www.nytimes.com/pages/arts/index.html">Arts</a></li>
<li id="navStyle"><a href="http://www.nytimes.com/pages/style/index.html">Style</a></li>
<li id="navOpinion"><a href="http://www.nytimes.com/pages/opinion/index.html">Opinion</a></li>
</ul>
</div>
</div>
<div class="columnGroup">
<div class="navigationHome">
<ul class="flush primary">
<li class="firstItem singleRule">
<ul class="secondary">
<li><a href="http://www.nytimes.com/pages/automobiles/index.html">Autos</a></li>
<li><a href="http://www.nytimes.com/ref/topnews/blog-index.html">Blogs</a></li>
<li><a href="http://www.nytimes.com/pages/books/index.html">Books</a></li>
<li><a href="http://wordplay.blogs.nytimes.com/cartoons/">Cartoons</a></li>
<li><a href="http://www.nytimes.com/ref/classifieds/?incamp=hpclassifiedsnav">Classifieds</a></li>
<li><a href="http://www.nytimes.com/crosswords/index.html">Crosswords</a></li>
<li><a href="http://www.nytimes.com/pages/dining/index.html">Dining & Wine</a></li>
<li><a href="http://www.nytimes.com/pages/education/index.html">Education</a></li>
<li><a href="http://www.nytimes.com/events/">Event Guide</a></li>
<li><a href="http://www.nytimes.com/pages/fashion/index.html">Fashion & Style</a></li>
<li><a href="http://www.nytimes.com/pages/garden/index.html">Home & Garden</a></li>
<li><a href="http://jobmarket.nytimes.com/pages/jobs/">Jobs</a></li>
<li><a href="http://www.nytimes.com/pages/magazine/index.html">Magazine</a></li>
<li><a href="http://www.nytimes.com/pages/business/media/index.html">Media</a></li>
<li><a href="http://www.nytimes.com/pages/movies/index.html">Movies</a></li>
<li><a href="http://www.nytimes.com/pages/arts/music/index.html">Music</a></li>
<li><a href="http://www.nytimes.com/pages/obituaries/index.html">Obituaries</a></li>
<li><a href="http://publiceditor.blogs.nytimes.com/">Public Editor</a></li>
<li><a href="http://www.nytimes.com/pages/realestate/index.html">Real Estate</a></li>
<li><a href="http://www.nytimes.com/pages/opinion/index.html#sundayreview">Sunday Review</a></li>
<li><a href="http://www.nytimes.com/pages/t-magazine/index.html">T Magazine</a></li>
<li><a href="http://www.nytimes.com/pages/arts/television/index.html">Television</a></li>
<li><a href="http://www.nytimes.com/pages/theater/index.html">Theater</a></li>
<li><a href="http://travel.nytimes.com">Travel</a></li>
<li><a href="http://www.nytimes.com/pages/fashion/weddings/index.html">Weddings / Celebrations</a></li>
</ul>
</li>
<li class="singleRule">
<h6 class="kickerBd">Multimedia</h6>
<ul class="secondary">
<li><a href="http://www.nytimes.com/pages/multimedia/index.html">Interactives</a></li>
<li><a href="http://lens.blogs.nytimes.com/">Photography</a></li>
<li><a href="http://video.nytimes.com/">Video</a></li>
</ul>
</li>
<li class="singleRule">
<h6 class="kickerBd">Tools & more</h6>
<ul class="secondary">
<li><a href="https://myaccount.nytimes.com/mem/tnt.html">Alerts</a></li>
<li><a href="http://beta620.nytimes.com/">Beta 620</a></li>
<li><a href="http://www.nytimes.com/pages/corrections/index.html">Corrections</a></li>
<li><a href="http://www.nytimes.com/nytmobile/">Mobile</a></li>
<li><a href="http://movies.nytimes.com/movies/showtimes.html">Movie Tickets</a></li>
<li><a href="http://www.nytimes.com/learning/index.html">Learning Network</a></li>
<li><a href="http://www.nytimes.com/marketing/newsletters/">Newsletters</a></li>
<li><a href="http://nytimes.whsites.net/timestalks/">NYT Events</a></li>
<li><a href="http://www.nytimes.com/nytstore/?utm_source=nytimes&utm_medium=HPB&utm_content=services_blk&utm_campaign=NYT-HP">NYT Store</a></li>
<li><a href="http://theater.nytimes.com/gst/theater/tabclist.html">Theater Tickets</a></li>
<li><a href="http://timesmachine.nytimes.com/">Times Machine</a></li>
<li><a href="http://www.nytimes.com/timesskimmer/">Times Skimmer</a></li>
<li><a href="http://www.nytimes.com/pages/topics/">Times Topics</a></li>
<li><a href="http://www.nytimes.com/timeswire">Times Wire</a></li>
</ul>
</li>
<li class="singleRule">
<h6 class="kickerBd">Subscriptions</h6>
<ul class="flush secondary multiline">
<li><a href="http://www.nytimes.com/hdleftnav">Home Delivery</a></li>
<li><a href="http://www.nytimes.com/digitalleftnav">Digital Subscriptions</a></li>
<li><a href="http://www.nytimes.com/giftleftnav">Gift Subscriptions</a></li>
<li><a href="http://www.nytimes.com/corporateleftnav">Corporate Subscriptions</a></li>
<li><a href="http://www.nytimes.com/educationleftnav">Education Rate</a></li>
<li><a href="http://www.nytimes.com/crosswordsleftnav">Crosswords</a></li>
<li><a href="http://homedelivery.nytimes.com/HDS/HDSHome.do?mode=HDSHome">Home Delivery Customer Care</a></li>
<li><a href="http://eedition.nytimes.com/cgi-bin/signup.cgi?cc=37FYY">Replica Edition</a></li>
<li><a href="https://subscribe.inyt.com">INYT Home Delivery</a></li>
</ul>
</li>
<li class="lastItem singleRule">
<h6 class="kickerBd">Company info</h6>
<ul class="secondary multiline">
<li><a href="http://www.nytco.com/">About NYT Co.</a></li>
<li><a href="http://www.nytimes.whsites.net/mediakit/">Advertise</a></li>
</ul>
</li>
</ul>
</div><!--close navigationHome -->
</div><!--close columnGroup -->
</div> <div class="columnGroup singleRule">
</div>
</div><!--close nav -->
<div id="spanABCRegion" class="abcColumn opening">
<div class="columnGroup first">
<style type="text/css">
.alertsContainer { margin-left: 10px; margin-right: 9px; padding: 0; border-top: none; margin-top: 0px; }
body.globalEditionHome .alertsContainer { border-top: 1px solid #797979; margin: -1px 0 0 0; padding: 0 9px 0 10px; }
#alertsRegion { font-family: 'nyt-franklin', Arial, sans-serif; color:#808080; }
.wf-loading #alertsRegion { visibility: hidden; }
#alertsRegion h2 { font-size:1.5em; line-height:1.4em; margin-bottom: .0667em; }
#alertsRegion h2 a {color: black; }
#alertsRegion .summary, #alertsRegion li { font-size:1.3em; line-height: 1.31em; width: 580px; background-position: left .55em; }
#alertsRegion p { margin-bottom: 1px; }
#alertsRegion li {margin-bottom: .2em; }
#alertsRegion li:last-child {margin-bottom: 0; }
.newsAlert td, .breakingNewsAlert tr td { padding: 4px 0 8px 0; }
.newsAlertMeta, .breakingNewsAlert td.breakingNewsAlertMeta { padding-top: 9px; }
</style>
<div id="extendedNewsAlertText" style="display:none"><dl>
<dt class='headline'>U.S. Capitol Is Locked Down After Reports of Gunfire
</dt>
<dd class='summary'>Witnesses reported hearing gunshots outside the Capitol after 2 p.m., sparking a huge police response and heightened security inside the Capitol, which was already tense during shutdown negotiations. Members not near their own offices were asked to go to the nearest office, and shelter there.
</dd>
<dd class='bullet'>
</dd>
<dd class='bullet'>
</dd>
<dd class='bullet'>
</dd>
</dl></div>
<script type="text/javascript">
(function($) {
var run = function() {
var matchingHeadline = $.trim($("#extendedNewsAlertText > dl > dt.headline").text());
$("#alertsRegion .breakingNewsAlert h2").each(function(i, alertNode) {
if($.trim($(alertNode).text()) == matchingHeadline) {
$("#extendedNewsAlertText > dl > dd.summary").each(function(i, summaryNode) {
$(alertNode).parent().append("<p class='summary'>" + $(summaryNode).html() + "</p>");
});
var ul = null;
$("#extendedNewsAlertText > dl > dd.bullet").each(function(i, bulletNode) {
if ($.trim($(bulletNode).html()) != "") {
if(ul == null) {
ul = $("<ul></ul>");
$(alertNode).parent().append(ul);
}
ul.append("<li>" + $(bulletNode).html() + "</li>");
}
});
}
});
};
$("#spanABCRegion").removeClass("opening");
if($("#alertsRegion .breakingNewsAlert h2").length > 0) {
run();
} else {
$(run);
}
$(function() {
if($("#spanABCRegion .columnGroup div").not($("#extendedNewsAlertText")).length > 0) {
$("#spanABCRegion").addClass("opening");
}
});
})(NYTD.jQuery);
</script> </div>
</div><!--close abcColumn -->
<div class="column last">
<div class="spanAB">
<div class="abColumn">
<!--start lede package -->
<div class="wideB module">
<div class="aColumn opening">
<div class="columnGroup first">
<div class="story">
<h2><a href="http://www.nytimes.com/2014/02/05/us/politics/budget-office-revises-estimates-of-health-care-enrollment.html?hp">
Health Law Is
Seen as Leading
Some to Leave
Work Force</a></h2>
<h6 class="byline">
By ANNIE LOWREY and JONATHAN WEISMAN <span class="timestamp" data-eastern-timestamp=" 8:29 PM" data-utc-timestamp="1391563741000"></span>
</h6>
<p class="summary">
The expansion of insurance coverage will lead to a reduction of work hours, totaling the equivalent of 2.5 million full-time positions by 2024, according to a report. </p>
<ul class="refer commentsRefer">
<li style="background-image: none; padding-left: 0pt;"><span class="commentCountLink" articleid="http://www.nytimes.com/2014/02/05/us/politics/budget-office-revises-estimates-of-health-care-enrollment.html" overflowurl="http://community.nytimes.com/comments/www.nytimes.com/2014/02/05/us/politics/budget-office-revises-estimates-of-health-care-enrollment.html?hp&target=comments" articletitle="Health Law Is
Seen as Leading
Some to Leave
Work Force"></span></li>
</ul>
</div>
<div class="singleRuleDivider"></div> </div>
<div class="columnGroup ">
<div class="story">
<h3><a href="http://www.nytimes.com/2014/02/05/us/politics/senate-passes-long-stalled-farm-bill.html?hp">
Senate Passes Farm Bill With Clear Winners and Losers</a></h3>
<h6 class="byline">
By RON NIXON <span class="timestamp" data-eastern-timestamp=" 8:34 PM" data-utc-timestamp="1391564093000"></span>
</h6>
<p class="summary">
Over all, agribusiness fared far better than the poor in the long-stalled farm bill, which represents nearly $1 trillion in spending over the next 10 years and passed on a rare bipartisan vote. </p>
<ul class="refer commentsRefer">
<li style="background-image: none; padding-left: 0pt;"><span class="commentCountLink" articleid="http://www.nytimes.com/2014/02/05/us/politics/senate-passes-long-stalled-farm-bill.html" overflowurl="http://community.nytimes.com/comments/www.nytimes.com/2014/02/05/us/politics/senate-passes-long-stalled-farm-bill.html?hp&target=comments" articletitle="Senate Passes Farm Bill With Clear Winners and Losers"></span></li>
</ul>
</div>
<div class="singleRuleDivider"></div> </div>
<div class="columnGroup ">
<div class="story">
<h3><a href="http://www.nytimes.com/2014/02/05/us/politics/republicans-spar-on-leaks-and-surveillance-underscoring-partisan-shake-up.html?hp">
Republicans Spar on Leaks and Secret Surveillance</a></h3>
<h6 class="byline">
By CHARLIE SAVAGE <span class="timestamp" data-eastern-timestamp=" 8:33 PM" data-utc-timestamp="1391564039000"></span>
</h6>
<p class="summary">
House Republicans offered sharply divergent views about secret surveillance programs and the leaks that made them public, underscoring the unsettled nature of a political debate that has scrambled the usual partisan lines. </p>
<ul class="refer commentsRefer">
<li><a href="http://www.nytimes.com/2014/02/05/books/the-snowden-files-by-luke-harding.html">Books of The Times: 'The Snowden Files'</a></li>
</ul>
</div>
<div class="singleRuleDivider"></div> </div>
<div class="columnGroup last">
<h6 class="kicker">More News</h6>
<div class="story">
<ul class="headlinesOnly">
<li>
<h5><a href="http://www.nytimes.com/2014/02/05/nyregion/test-of-substance-in-hoffmans-home-finds-heroin-without-additive.html?hp">
No Additive in Heroin Found in Hoffman’s Home</a>
<span class="timestamp" data-eastern-timestamp="10:22 PM" data-utc-timestamp="1391570522000"></span>
</h5>
</li>
<li>
<h5><a href="http://www.nytimes.com/2014/02/05/nyregion/de-blasio-to-skip-st-patricks-day-parade-cites-exclusion-of-gay-groups.html?hp">
De Blasio to Skip St. Patrick’s Day Parade</a>
</h5>
</li>
<li>
<h5><a href="http://www.nytimes.com/2014/02/05/us/politics/obama-announces-pledges-of-750-million-for-student-technology.html?hp">
$750 Million Pledged for Student Technology</a>
<span class="timestamp" data-eastern-timestamp=" 2:20 PM" data-utc-timestamp="1391541639000"></span>
</h5>
</li>
<div style="margin-top: -6px;"></div> </ul>
</div>
</div>
</div><!--close aColumn -->
<div class="bColumn opening">
<div id="photoSpotRegion">
<div class="columnGroup first">
<script>function getFlexData() { return {"data":{"backgroundImage":"http:\/\/graphics8.nytimes.com\/images\/2014\/01\/29\/multimedia\/berlin-teufelsberg-nsa\/berlin-teufelsberg-nsa-videoHpMedium-v2.jpg","photoCredit":"Erik Olsen","shareURL":"http:\/\/www.nytimes.com\/2014\/02\/05\/world\/europe\/where-nsa-kept-watch-in-cold-war-artists-now-find-refuge.html","videoID":100000002678359}}; }var NYTD=NYTD || {}; NYTD.FlexTypes = NYTD.FlexTypes || []; NYTD.FlexTypes.push({"target":"FT100000002689065","type":"HP5 Video Embed 375","data":{"backgroundImage":"http:\/\/graphics8.nytimes.com\/images\/2014\/01\/29\/multimedia\/berlin-teufelsberg-nsa\/berlin-teufelsberg-nsa-videoHpMedium-v2.jpg","photoCredit":"Erik Olsen","shareURL":"http:\/\/www.nytimes.com\/2014\/02\/05\/world\/europe\/where-nsa-kept-watch-in-cold-war-artists-now-find-refuge.html","videoID":100000002678359}});</script><style><!--
div#photospotVideoPlayerCreditContainer {height:16px;}
.ledePhoto {display:none;}
--></style>
<div id="photospotVideoPlayerContainer" style="height: 211px; width: 375px; background-color: rgb(39, 39, 39);"></div>
<div id="photospotVideoPlayerCreditContainer">
<h6 class="credit" id="photospotVideoPlayerCredit"></h6>
</div>
<script type="text/javascript" src="http://js.nyt.com/js2/build/video/2.0/videofactory.js"></script>
<script type='text/javascript'>
(function() {
var hpVideoEmbedFlexData = getFlexData().data;
NYTD.Video.Factory.loadDependencies(function(success) {
var video = NYTD.Video.Factory.create({
container: 'photospotVideoPlayerContainer',
id: 'photospotVideoPlayer',
playerId: '2028569413001',
videoId: hpVideoEmbedFlexData.videoID,
width: 375,
height: 211,
autoStart: false,
autoRender: false,
playerType: 'photospot',
bgcolor: '#000000',
quality: 'high',
shareURL: hpVideoEmbedFlexData.shareURL,
overlay: {
backgroundImage: hpVideoEmbedFlexData.backgroundImage,
bumper: '',
buttonPosition: 'bottomLeft', // where to anchor the button
buttonAnimated: true, // should the button animate
buttonExpandBy: 80, // how wide should the button animate
buttonFontColor: '#FFF', // color of the text in the button
buttonFontSize: '12px', // size of the text in the button
buttonPaddingLeftRight: 20,
buttonPaddingTopBottom: 20,
photoCredit: hpVideoEmbedFlexData.photoCredit,
photoCreditContainer: "photospotVideoPlayerCredit"
}
});
});
})();
</script>
<div id="FT100000002689065"></div><div class="story">
<div class="ledePhoto" id="ledePhoto">
<div class="image">
<a href="http://www.nytimes.com/2014/02/05/world/europe/where-nsa-kept-watch-in-cold-war-artists-now-find-refuge.html?hp"><img src="http://i1.nyt.com/images/2014/01/29/multimedia/berlin-teufelsberg-nsa/berlin-teufelsberg-nsa-largeHorizontal375.jpg" width="375" height="250" alt="" /></a>
</div>
<h6 class="credit">Erik Olsen</h6>
</div>
<h3><a href="http://www.nytimes.com/2014/02/05/world/europe/where-nsa-kept-watch-in-cold-war-artists-now-find-refuge.html?hp">
Artists Find Refuge in Cold War Ruins</a></h3>
<h6 class="byline">
By MELISSA EDDY <span class="timestamp" data-eastern-timestamp=" 9:05 PM" data-utc-timestamp="1391565945000"></span>
</h6>
<p class="summary">
More than two decades after the United States pulled up its final cables from Field Station Berlin, the complex still holds a mystical attraction for history buffs, artists and tourists. </p>
</div>
</div>
</div>
<div class="doubleRuleDivider insetH"></div>
<div class="columnGroup first">
<div class="story">
<h5><a href="http://www.nytimes.com/2014/02/05/world/europe/entrusted-to-burn-john-paul-iis-notes-cardinal-publishes-them-instead.html?hp">
Cardinal Publishes Pope John Paul II’s Notes</a></h5>
<h6 class="byline">
By DAN BILEFSKY <span class="timestamp" data-eastern-timestamp="11:11 PM" data-utc-timestamp="1391573476000"></span>
</h6>
<p class="summary">
Cardinal Stanislaw Dziwisz, who was the pontiff’s secretary, defied the pope’s order in his will to burn his notes. </p>
</div>
<div class="singleRuleDivider"></div> </div>
<div class="columnGroup ">
<div class = "story">
<h5><a href = "http://www.nytimes.com/2014/02/05/world/asia/philippine-leader-urges-international-help-in-resisting-chinas-sea-claims.html?hp">
Philippines Seeks Help on China’s Sea Claims</a></h5>
<div class = "thumbnail runaroundRight" style = "margin-top: 4px">
<a href = "http://www.nytimes.com/2014/02/05/world/asia/philippine-leader-urges-international-help-in-resisting-chinas-sea-claims.html?hp">
<img src = "http://i1.nyt.com/images/2014/02/04/multimedia/aquino-interview/aquino-interview-thumbStandard-v4.jpg" width = "75"
height = "75"
alt = "Benigno S. Aquino III, the Philippine president." border = "0" />
</a>
</div>
<h6 class = "byline">
By KEITH BRADSHER <span class="timestamp" data-eastern-timestamp=" 5:25 PM" data-utc-timestamp="1391552711000"></span>
</h6>
<p class="summary">
Benigno S. Aquino III, the Philippine president, compared China’s claims to the seas near his country to Hitler’s demands for Czech land in 1938. </p>
<ul class = "refer commentsRefer">
<li style = "background-image: none; padding-left: 0pt;">
<span class = "commentCountLink" articleid = "http://www.nytimes.com/2014/02/05/world/asia/philippine-leader-urges-international-help-in-resisting-chinas-sea-claims.html"
overflowurl = "http://community.nytimes.com/comments/2014/02/05/world/asia/philippine-leader-urges-international-help-in-resisting-chinas-sea-claims.html?hp&target=comments" articletitle="Philippines Seeks Help on China’s Sea Claims"></span>
</li>
</ul>
</div> </div>
<div class="columnGroup ">
<div class="singleRuleDivider"></div>
<div class = "story">
<h5><a href = "http://www.nytimes.com/2014/02/05/education/tennessee-governor-urges-2-free-years-of-community-college-and-technical-school.html?hp">
Tennessee Proposes 2 Years of Free College Courses</a></h5>
<div class = "thumbnail runaroundRight" style = "margin-top: 4px">
<a href = "http://www.nytimes.com/2014/02/05/education/tennessee-governor-urges-2-free-years-of-community-college-and-technical-school.html?hp">
<img src = "http://i1.nyt.com/images/2014/02/05/us/TENNESSEE/TENNESSEE-thumbStandard-v2.jpg" width = "75"
height = "75"
alt = "Gov. Bill Haslam, left, with legislators on Monday night in Nashville, proposed bolstering Tennessee’s work force with two years of free schooling." border = "0" />
</a>
</div>
<h6 class = "byline">
By RICHARD PÉREZ-PEÑA <span class="timestamp" data-eastern-timestamp=" 8:26 PM" data-utc-timestamp="1391563602000"></span>
</h6>
<p class="summary">
Tennessee would be the only state in the country to charge no tuition or fees to incoming community college students under the proposal by Gov. Bill Haslam. </p>
<ul class = "refer commentsRefer">
<li><a href="http://www.nytimes.com/interactive/2014/01/28/us/28-stateofstates.html">State of the States</a></li>
</ul>
</div> </div>
<div class="columnGroup ">
<div class="singleRuleDivider"></div> <div class="story">
<h5><a href="http://www.nytimes.com/2014/02/05/technology/new-boss-at-microsoft-with-gates-at-his-side.html?hp">
New Boss at Microsoft, With Gates at His Side</a></h5>
<h6 class="byline">
By NICK WINGFIELD <span class="timestamp" data-eastern-timestamp=" 8:59 PM" data-utc-timestamp="1391565544000"></span>
</h6>
<p class="summary">
Bill Gates will return part-time to the company after the new chief executive, Satya Nadella, asked him to be his adviser. </p>
</div>
<div class="singleRuleDivider"></div> </div>
<div class="columnGroup last">
<style>
#nytDesignSochiHeaderWideCenter {
margin-bottom: 8px;
text-align: center;
}
#nytDesignSochiHeaderWideCenter h6 {
display: inline-block;
position: relative;
margin: 0 auto;
padding: 0 8px;
text-transform: uppercase;
font-size: 13px;
font-weight: 700;
letter-spacing: 1px;
font-family: nyt-franklin,arial,helvetica,sans-serif;
font-weight: bold;
}
#nytDesignSochiHeaderWideCenter h6 a.nytDesignSochiHeaderLink,
#nytDesignSochiHeaderNarrowLeft h6 a.nytDesignSochiHeaderLink:visited {
text-decoration: none;
position: relative;
margin-bottom: 8px;
color: #1a1a1a;
}
#nytDesignSochiHeaderWideCenter h6 a i {
position: absolute;
display: block;
height: 2px;
left: -2px;
bottom: -4px;
border-left: 21px #257EB8 solid;
border-right: 22px #E4B05E solid;
}
#nytDesignSochiHeaderWideCenter h6 a i.second {
left: auto;
right: -2px;
border-left-color: #22A254;
border-right-color: #D73A39;
}
</style>
<div id="nytDesignSochiHeaderWideCenter">
<h6><a class="nytDesignSochiHeaderLink" href="http://www.nytimes.com/pages/sports/olympics/index.html">Sochi 2014<i class="first"></i><i class="second"></i></a></h6>
</div>
<div class = "story">
<h5><a href = "http://www.nytimes.com/2014/02/05/sports/olympics/japan-is-a-land-of-rising-hopes-for-ski-jumping.html?hp">
Japan Is a Land of Rising Hopes for Ski Jumping</a></h5>
<div class = "thumbnail runaroundRight" style = "margin-top: 4px">
<a href = "http://www.nytimes.com/2014/02/05/sports/olympics/japan-is-a-land-of-rising-hopes-for-ski-jumping.html?hp">
<img src = "http://i1.nyt.com/images/2014/02/05/sports/olySKIJUMP1/olySKIJUMP1-thumbStandard.jpg" width = "75"
height = "75"
alt = "The ski jumper Yuki Ito trained in Nayoro, Japan, last summer." border = "0" />
</a>
</div>
<h6 class = "byline">
By KEN BELSON <span class="timestamp" data-eastern-timestamp=" 4:52 PM" data-utc-timestamp="1391550730000"></span>
</h6>
<p class="summary">
Japan’s once-thriving ski jumping program is seeking a revival, and Yuki Ito and Sara Takanashi have a key role as their sport makes its Olympic debut for women. </p>
</div><style>
.nytDesignSochiEmail {
font-family: "nyt-franklin",helvetica,arial,sans-serif;
font-size: 10px;
font-weight: 500;
text-align: center;
}
.nytDesignSochiEmail .singleRuleDivider {
width: 50%;
margin: 12px auto;
}
.nytDesignSochiEmail a,
.nytDesignSochiEmail a:visited,
.nytDesignSochiEmail a:hover,
.nytDesignSochiEmail a:active {
color: #909090;
text-decoration: none;
}
.nytDesignSochiEmail a strong {
display: inline-block;
font-weight: 500;
color: #326891;
}
.nytDesignSochiEmail a:hover strong {
text-decoration: underline;
}
.nytDesignSochiEmail .icon {
position: relative;
top: -1px;
padding-top: 1px;
}
.nytDesignSochiEmail .emailAlert {
background-image: url('http://graphics8.nytimes.com/packages/images/nytdesign/2014/olympics/homepage/icons/icon-media-email-alert-12x12-6389A5.gif');
}
.nytDesignSochiEmail a:hover .emailAlert {
background-image: url('http://graphics8.nytimes.com/packages/images/nytdesign/2014/olympics/homepage/icons/icon-media-email-alert-12x12-326891.gif');
}
</style>
<div class="nytDesignSochiEmail">
<div class="singleRuleDivider"></div>
<p><a href="http://sochi2014.nytimes.com/email?hp"><span class="media icon emailAlert"> </span>Sign up for a <strong>daily recap</strong> of highlights from the Winter Games.</a></p>
</div> </div>
</div><!--close bColumn -->
</div><!--close wideB -->
<div id="spanABBottomRegion">
<div class="columnGroup first">
<div class="doubleRuleDivider"></div> <div style="margin-top:10px"></div> <script>function getFlexData() { return {"data":{"1":{"url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","hed":"Territorial Dispute","img":"http:\/\/graphics8.nytimes.com\/images\/2014\/02\/04\/world\/islands-dispute-minute\/islands-dispute-minute--videoHpMedium.jpg"},"2":{"url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","hed":"Army Recruitment Scam","img":"http:\/\/graphics8.nytimes.com\/images\/2014\/02\/04\/pageoneplus\/Army-Recruit\/Army-Recruit-videoHpMedium.jpg"},"3":{"url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","hed":"Health Care Report","img":"http:\/\/graphics8.nytimes.com\/images\/2014\/02\/05\/us\/05health_top\/05health_top-videoHpMedium.jpg"},"timestamp":"","url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","rotation":true}}; }var NYTD=NYTD || {}; NYTD.FlexTypes = NYTD.FlexTypes || []; NYTD.FlexTypes.push({"target":"FT100000002688334","type":"TimesMinute Rotating Promo","data":{"1":{"url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","hed":"Territorial Dispute","img":"http:\/\/graphics8.nytimes.com\/images\/2014\/02\/04\/world\/islands-dispute-minute\/islands-dispute-minute--videoHpMedium.jpg"},"2":{"url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","hed":"Army Recruitment Scam","img":"http:\/\/graphics8.nytimes.com\/images\/2014\/02\/04\/pageoneplus\/Army-Recruit\/Army-Recruit-videoHpMedium.jpg"},"3":{"url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","hed":"Health Care Report","img":"http:\/\/graphics8.nytimes.com\/images\/2014\/02\/05\/us\/05health_top\/05health_top-videoHpMedium.jpg"},"timestamp":"","url":"http:\/\/www.nytimes.com\/news\/minute\/2014\/02\/04\/times-minute-army-recruitment-scam","rotation":true}});</script><link rel="stylesheet" type="text/css" href="http://graphics8.nytimes.com/packages/js/nytint/projects/times_minute/timesminute.css?v1.7" />
<script type="text/html" id="timesminute">
<div id="timesMinuteContainer">
<div class="story">
<a href="#">
<div class="thumbnail runaroundLeft">
<img src="http://graphics8.nytimes.com/images/misc/spacer.gif">
<div class="vidOverlay"></div>
<hr />
</div>
<h5><nobr>Times <span>Minute</span></nobr> <span class="timestamp"></span></h5>
<ul class="flush"><li></li><li></li><li></li></ul>
</a>
</div>
</div>
</script>
<script type="text/html" id="timesminuteAB">
<div id="timesMinuteContainer">
<div class="story">
<a href="#">
<div class="lede">
<h5>Times <span>Minute</span> <span class="timestamp"></span></h5>
<p>Catch up on the day’s news, in 60 seconds.</p>
</div>
<ul class="flush">
<li>
<div class="thumbnail">
<img src="http://graphics8.nytimes.com/images/misc/spacer.gif">
<div class="vidOverlay"></div>
</div>