summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/herald-sun-1/source.html
blob: 050bed449c2d72855d18da7a5f26a7735d2e5f9a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
<!--?xml version="1.0" encoding="UTF-8" ?--><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en-au" xml:lang="en-au"><head>
				
				
				
				
		
		
				
					
						
								
							
					
				
						
								
							
						
					
				
						
						
						
					
			
	
		
<!-- site: HeraldSun esi: true breachflag: true channel: mobile -->
		
		
		
		
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
	<meta name="HandheldFriendly" content="true"/>
	<meta name="MobileOptimized" content="320"/>
	<meta http-equiv="cleartype" content="on"/>
	<meta name="format-detection" content="telephone=no"/>
	<meta name="format-detection" content="address=no"/>
	<!--thisPage::>1226616041343 thisMobilePage::>1226586877147 -->
    	
    			<script>bruce_rtget={"sno": "1", "snol": "h,e,g", "tmstamp": "2015-03-21 11:30:02.973988"};</script>
    		
    	
    			<script type="text/javascript">
(function() {
    var useSSL = 'https:' == document.location.protocol;
    var src = (useSSL ? 'https:' : 'http:') + '//tags.news.com.au/prod/utrack/utrack.js?cb='+ (new Date()).getTime();
    document.write('&lt;scr' + 'ipt src="' + src + '">&lt;/scr' + 'ipt>');
 })();
</script><script src="http://tags.news.com.au/prod/utrack/utrack.js?cb=1426898115317"></script>

    		
					<title>Angry media won’t buckle over new surveillance laws
						| Herald Sun</title>
					<meta name="description" content="A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed."/>
					<meta name="keywords" content=" mandatory data retention, legitimate concerns, investigative journalism, journalistic sources, freedom concerns, federal Government team, Inspector General, News Corporation, House of Representatives, RSPCA, Tony Abbott, Bill Shorten, media organisations, national security, media union, press freedom, Government team, Angry media, telecommunications service providers, national security legislation, immediate action, media regulation, national security adviser, journalism foundation, surveillance legislation, media bosses, political editor, exempt journalists, law enforcement agencies, ,,,United Kingdom, Malcolm Bligh Turnbull, George Brandis, Justin Bassi, Andrew Colvin, Stephen Conroy, Laurie Oakes"/>
							<!--  primary is not empty-->
										<meta property="og:image" content="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium"/>
					<meta name="twitter:card" content="summary_large_image"/>
						<meta name="twitter:image:src" content="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium"/>
					<meta property="og:title" content="Angry media won’t buckle over new surveillance laws"/>
					<meta property="og:type" content="article"/>
					<meta property="og:url" content="http://www.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014"/>
					<meta property="og:site_name" content="HeraldSun"/>
					<meta property="fb:app_id" content="135469303148773"/>
					<meta property="og:description" content="A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed."/>
					<meta property="og:country-name" content="Australia"/>
					<meta name="article:publisher" content="News Limited"/>
					<meta name="article:author" content="Laurie Oakes"/>
					<meta name="article:publicationdate" content="Fri Mar 13 21:30:09 EST 2015"/>
		<meta property="fb:admins" content=",100000875899514"/>
			<link rel="canonical" href="http://www.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014"/>
			<meta name="twitter:site" content="@theheraldsun"/>
			<meta name="twitter:site:id" content="@theheraldsun"/>
	<script type="text/javascript">
		//<![CDATA[
			window.ndm = window.ndm || {};
			window.ndm.fwResourcesNewscdn = 'http://resources.newscdn.com.au';
			window.ndm.social = window.ndm.social || {};
			window.ndm.social.activity = "{'activitycenter':'','historytab':'','quicklinks':'','readlist':''}";
			window.ndm.social.section = {
				    'url': '/news/opinion/laurie-oakes/',
				    'sections': ["News","Opinion","Laurie Oakes"],
				    'sectionpath':'/section/heraldsun.com.au/news/opinion/laurie-oakes/'
				};
			var overrideNdmPageSite, overrideNdmPageUs, overridePageType, overrideNdmPageCustom, overrideNdmPageAdsenseGoogleAdClient, overrideNdmPageAdsenseGoogleAdChannel;
				ndm.account = {
					urls: { login: "http://www.heraldsun.com.au/login", signup: "http://subscription.news.com.au/heraldsun/offers", account: "https://myaccount.news.com.au/heraldsun/viewAccount" }
				};
						
						
						
							
								
							
						window.ndm = window.ndm || {};window.ndm.cam = {'status': 'logged-out', 'memtype': 'anonymous'};ndm.config = {idp: {relayState: 'http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061',samlLoc: 'http://saml.cam.idmndm.com',channel: 'msite',site: 'HeraldSun'}, metered: {mode: 'free',state: {'max': 5, 'access': 'true', 'count': 1},endpoint: {registration: 'https://idp.news.com.au/idp/Authn/rest',products: 'http://digitalpass.heraldsun.com.au'},productInfo: {offerCode: '2_1_',sourceCode: 'HSWEB_MOB100_a'}}};
				window.ndm.idp = window.ndm.idp || {};
				window.ndm.idp.socialEnabled = !window.ndm.cam.paywalldisabled;
				window.ndm.idp.channel    = "msite";
				window.ndm.idp.domain  = "https://idp.news.com.au/";
				window.ndm.idp.activity = true;
				window.ndm.idp.frictionless = false;
				window.ndm.idp.sitename = "HeraldSun";
				window.ndm.idp.location = "http://saml.cam.idmndm.com";
				window.ndm.idp.linkerror = "http://m.heraldsun.com.au/linkerror";
				window.ndm.idp.registrationUrl = "http://m.heraldsun.com.au/signupfinal";
			ndm.cam = ndm.cam || {};
		//]]>
	</script>
	<!--default position [{id=1226636939151, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1226636960308, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1226305922727, type=News_Javascript}, {id=1226636894336, type=News_Resources_Group}, {id=1226641842346, type=News_Resources_Group}, {id=1226766835979, type=News_Resources_Group}, {id=1226814635510, type=News_Stylesheet}]-->
<!-- Resource Included [{id=1226636896198, type=News_Javascript}, {id=1226768825469, type=News_Javascript}, {id=1226636896348, type=News_Javascript}, {id=1226636941781, type=News_Stylesheet}, {id=1226636941933, type=News_Stylesheet}, {id=1226975215417, type=News_Resources_Group}, {id=1226636898522, type=News_Resources_Group}, {id=1226717662103, type=News_Resources_Group}, {id=1227125508198, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1226975215371, type=News_Javascript}]-->
<!-- Resource Included [{id=1226636898905, type=News_Javascript}]-->
<!-- Resource Included [{id=1227075473855, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1227023921688, type=News_Javascript}, {id=1227023921564, type=News_Stylesheet}]-->
<!-- Resource Included [{id=1227125511995, type=News_Javascript}]-->
<!-- Resource Included [{id=1226641837720, type=News_Javascript}, {id=1226641840116, type=News_Stylesheet}]-->
<!-- Resource Included [{id=1226866557087, type=News_Stylesheet}, {id=1226766829330, type=News_Javascript}, {id=1226858257711, type=News_Javascript}, {id=1226766829929, type=News_Javascript}]-->
	<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/css/site/m.heraldsun/v3/base.css"/>
	<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/css/site/m.heraldsun/v3/story.css"/>
	<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/video/stable/build/player.css"/>
	<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/social/latest/css/base-mobile.css"/>
	<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/metered/current/deployBucketA/themes/default/css/mobile/metered.css"/>
	<link rel="stylesheet" media="screen" type="text/css" href="http://media.news.com.au/nnd/mobile-fixes/hideformobile-module-rule-hotfix.css"/>
	<script type="text/javascript" src="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/lib/mobile-vendors-concat-min.js"></script>
	<script type="text/javascript" src="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/js/channel/mobile/brandify-concat-min.js"></script>
	<script type="text/javascript" async="true" src="http://resources.newscdn.com.au/cs/social/latest/js/main.r.min.js"></script>
	<script type="text/javascript" src="http://subscription.news.com.au/landingpages/mastheadresources/mobile/heraldsun_metered/1/js/hs-mm-config.js"></script>
		<script type="text/javascript">
	                 //<![CDATA[
					//]]>
</script>
<link rel="shortcut icon" href="http://resources.news.com.au/cs/heraldsun/images/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="http://resources.news.com.au/cs/heraldsun/images/favicon.ico" type="image/x-icon"/>
    <!-- Icons for Mobile Devices -->
    <!-- For third-generation iPad with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-144x144-precomposed.png"/>
    <!-- For iPhone with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-144x144-precomposed.png"/>
    <!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-72x72-precomposed.png"/>
    <!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-precomposed.png"/>
<script type="text/javascript">
//<![CDATA[
	                 //]]>
		</script>
		<script type="text/javascript">
	                 //<![CDATA[
					$.config.init({
    "location": {
        "postcode": 3000,
        "localised": true,
        "geo": true,
        "weather-url": "http://m.weather.heraldsun.com.au/"
    },
    "search": {
        "adPublisherID": "ca-nd-heraldsun_js",
        "cx": "012148326047351459851:r3aolj9uplk",
        "drawLightForm": true,
        "container": "#mobile-footer-nav",
        "pre": true,
        "useLegacySearch": true
    }
});
	                 //]]>
		</script>
		<script type="text/javascript">
	                 //<![CDATA[
					window.envoy_config = window.envoy_config || {};
window.envoy_config.identity = {
    ninbar: {
         'subscribe-url': 'http://m.heraldsun.com.au/subscribe/news/1/?sourceCode=HSWEB_MOB538'
    }
};
(function(i, s, o, g, r, a, m){
    i[r]={};a=s.createElement(o),m=s.getElementsByTagName(o)[0],
    g=('https:'===document.location.protocol?'https://envoyssl.':
    'http://envoy.')+g;a.async=1;a.src=g;m.parentNode.insertBefore(a,m);
    })(window, document, 'script', 'newscdn.com.au/service/concat.js?envoy&identity/latest&siteid=hsm', 'newscdn');
	                 //]]>
		</script>
		<script type="text/javascript">
	                 //<![CDATA[
					(function (global) {
    var msite = global.msite || {};
    msite.config = {
        site: 'hwt.mobile',
        name: 'heraldsun',
        section: 'VIDEO',
        ads: true
    };
    // Export
    global.msite = msite;
}(window));
	                 //]]>
		</script>
		<script type="text/javascript">
	                 //<![CDATA[
                   //]]>
					</script>
 <style>
  .story .text-g-other-news-stories .story-block:last-child {
  border-bottom: none;
}
.story .affiliate-strip h3 {
  background: none !important;
}
.story .affiliate-inner {
  min-height: 115px;
}
 </style>
<script>
	                 //]]>
		</script>
		<script type="text/javascript">
			//<![CDATA[
			ndm.page.section = "NEWS.OPINION.LAURIE-OAKES";
			//]]>
		</script>
<!-- Resource Included []-->
			
				
        <!-- new.adkit -->
		    <script type="text/javascript">
                //<![CDATA[
                (function() {
                 var useSSL = 'https:' == document.location.protocol;
                 var src = (useSSL ? 'https:' : 'http:') +
                 '//tags.news.com.au/prod/utrack/utrack.js?cb='+ (new Date()).getTime();
                 document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
                 })();
                //]]>
            </script>
		<script type="text/javascript">
                //<![CDATA[
                <!-- new.adkit -->
                utag_data = window.utag_data || {};
                utag_data.ad_pagetype = overridePageType || "story";
                utag_data.adsense_client = overrideNdmPageAdsenseGoogleAdClient || "ca-nd-heraldsun_js";
                utag_data.adsense_client_intl = overrideNdmPageAdsenseGoogleAdClient || "ca-nd-heraldsun-st-intl_js";
                utag_data.adsense_channel = overrideNdmPageAdsenseGoogleAdChannel || "news";
                //]]>
            </script>
	<script type="text/javascript">
            //<![CDATA[
            window.ndm = window.ndm || {};
            window.ndm.page = window.ndm.page || {};
            ndm.page.site = overrideNdmPageSite 	|| "HWT";
            ndm.page.us  = overrideNdmPageUs		|| "ndmheraldsun";
            ndm.page.runads = true;
            ndm.page.adstyles = "auto";
            ndm.page.type = overridePageType		|| "story";
                ndm.page.shareid = "62096b8e16f25e2422eca8e6ed13572a";
                ndm.page.storyid = "1227261886014";
				utag_data.net_article_date="2015-03-13 20:19:42";
				utag_data.net_article_updated_time="2015-03-13 21:30:09";
            //]]>
        </script>
                     
<script src="http://tags.news.com.au/prod/trending/hs_m.js?id=1227261886014"></script>
	<meta http-equiv="X-UA-Compatible" content="IE=8"/>
	<meta name="robots" content="noarchive"/>
		<script type="text/javascript">
				//<![CDATA[
					ndm.cam.contentTypeRule = 'NON_PREMIUM' === 'PREMIUM' ? 'restricted' : 'free';
					ndm.cam.contentTypeGranted = 'full';
				//]]>
			</script>
        <script type="text/javascript">
            //<![CDATA[
                ndm.page.msrelatedlinks = false;
            //]]>
        </script>
</head>
<body class="heraldsun story story-1227261886014 no-js  news news-opinion news-opinion-laurie-oakes  news-opinion-laurie-oakes-index   cam user-anonymous paywall source-heraldsun ">
<div id="page">
	<div id="header">
	<div id="header-logo">
		<strong><a href="http://m.heraldsun.com.au">m.heraldsun.com.au</a></strong>
	</div>
	<div id="mobile-nav" class="site-nav">
		<!-- support 3 tiers/levels of m sites navigation -->
				<!-- esi true once login 1226622207516-->
					
    <div class="module navigation-module primaryholder-nav sectionref-header-nav   id1226622207516 ">
        <div class="module-content">
		<ul class=" tier-1">
			<li class="sectionref-news    first">
								<a href="/news">News</a>
		<ul class=" tier-2">
			<li class="first">
								<a href="/news/breaking-news">Breaking News</a>
			</li>
			<li>
								<a href="/leader">Local</a>
			</li>
			<li>
								<a href="/news/victoria">Victoria</a>
			</li>
			<li>
								<a href="/news/national">National</a>
			</li>
			<li>
								<a href="/news/world">World</a>
			</li>
			<li>
								<a href="/news/law-order" class="law-order-home">Law &amp; Order</a>
			</li>
			<li>
								<a href="/news/weird">Weird</a>
			</li>
			<li>
								<a href="/technology">Technology</a>
			</li>
			<li class="active">
								<a href="/news/opinion">Opinion</a>
			</li>
			<li class="last">
								<a href="/news/photos">Photos</a>
			</li>
		</ul>
		<!-- // .tier-2 -->
			</li>
			<li class="sectionref-sport">
								<a href="/sport">Sport</a>
		<ul class=" tier-2">
			<li class="first">
								<a href="/sport/afl" class="afl-new-style">AFL</a>
			</li>
			<li>
								<a href="/sport/cricket" class="sport-tier-3">Cricket</a>
			</li>
			<li>
								<a href="/sport/nrl" class="nrl-home">NRL</a>
			</li>
			<li>
								<a href="/sport/football" class="sport-tier-3">Football</a>
			</li>
			<li>
								<a href="/sport/rugby">Rugby</a>
			</li>
			<li>
								<a href="/sport/superracing" class="srlogo">Racing</a>
			</li>
			<li>
								<a href="/sport/tennis" class="sport-tier-3">Tennis</a>
			</li>
			<li>
								<a href="/sport/motor-sport" class="sport-tier-3">Motor</a>
			</li>
			<li>
								<a href="/sport/golf">Golf</a>
			</li>
			<li>
								<a href="/sport/netball" class="sport-tier-3">Netball</a>
			</li>
			<li>
								<a href="/sport/more-sports">More Sports</a>
			</li>
			<li>
								<a href="/video/sport">Video</a>
			</li>
			<li class="last">
								<a href="/sport/photos">Photos</a>
			</li>
		</ul>
		<!-- // .tier-2 -->
			</li>
			<li class="sectionref-entertainment">
								<a href="/entertainment">Entertainment</a>
		<ul class=" tier-2">
			<li class="first">
								<a href="/entertainment/confidential">Confidential</a>
			</li>
			<li>
								<a href="/entertainment/photos">Photos</a>
			</li>
			<li>
								<a href="/entertainment/movies">Movies</a>
			</li>
			<li>
								<a href="/entertainment/television">Television</a>
			</li>
			<li>
								<a href="/entertainment/arts">Arts</a>
			</li>
			<li>
								<a href="/entertainment/music">Music</a>
			</li>
			<li>
								<a href="/entertainment/books">Books</a>
			</li>
			<li>
								<a href="/entertainment/competitions">Competitions</a>
			</li>
			<li class="last">
								<a href="/entertainment/awards">Awards</a>
			</li>
		</ul>
		<!-- // .tier-2 -->
			</li>
			<li class="sectionref-business">
								<a href="/business">Business</a>
		<ul class=" tier-2">
			<li class="first">
								<a href="/business/breaking-news">Breaking</a>
			</li>
			<li>
								<a href="/business/markets">Markets</a>
			</li>
			<li>
								<a href="/business/economy">Economy</a>
			</li>
			<li>
								<a href="/business/work">Work</a>
			</li>
			<li>
								<a href="/business/companies">Companies</a>
			</li>
			<li>
								<a href="/business/terry-mccrann">Terry McCrann</a>
			</li>
			<li>
								<a href="/business/barefoot-investor">Barefoot Investor</a>
			</li>
			<li>
								<a href="/business/in-the-black">In The Black</a>
			</li>
			<li class="last">
								<a href="/business/your-hip-pocket">Your Hip Pocket</a>
			</li>
		</ul>
		<!-- // .tier-2 -->
			</li>
			<li class="sectionref-lifestyle">
								<a href="/lifestyle" class="lifestyle-nlm">Lifestyle</a>
		<ul class=" tier-2">
			<li class="first">
								<a href="/lifestyle/melbourne">Melbourne</a>
			</li>
			<li>
								<a href="/realestate" class="sectionref-realestate">Real Estate</a>
			</li>
			<li>
								<a href="/travel">Travel</a>
			</li>
			<li>
									<a href="http://m.moneysaverhq.heraldsun.com.au/">Money</a>
			</li>
			<li class="health      linkto-group-1226683145977">
								<a href="/lifestyle/health" class="block-header-highlight">Health</a>
			</li>
			<li class="food      linkto-group-1226683144505">
								<a href="/lifestyle/food" class="block-header-highlight">Food</a>
			</li>
			<li class="fashion      linkto-group-1226683144895">
								<a href="/lifestyle/fashion" class="block-header-highlight">Fashion</a>
			</li>
			<li class="parenting      linkto-group-1226683146103">
								<a href="/lifestyle/parenting" class="block-header-highlight">Parenting</a>
			</li>
			<li>
								<a href="/lifestyle/relationships">Relationships</a>
			</li>
			<li class="home-garden      linkto-group-1226683147384">
								<a href="/lifestyle/home-garden" class="block-header-highlight"> Home</a>
			</li>
			<li class="last">
								<a href="/lifestyle/horoscopes">Horoscopes</a>
			</li>
		</ul>
		<!-- // .tier-2 -->
			</li>
			<li class="sectionref-video     last">
									<a href="http://m.video.heraldsun.com.au">Video</a>
			</li>
		</ul>
		<!-- // .tier-1 -->
        </div><!-- // .module-content -->
    </div><!-- // .module.navigation-module -->

			 <div class="nav-login">
			 	
						<div class="module form-module form-module-cam-login">
							<div class="module-header">
								<ul class="more-links">
									<li class="first"><a class="login" href="http://www.heraldsun.com.au/login#header-nav-login-lightbox">Login</a></li>
									        <li class="last"><a class="signup" href="http://www.heraldsun.com.au/subscribe/offers/1/?sourceCode=HSWEB_MOB100_a">Subscribe</a></li>
								</ul>
							</div>
							<div class="module-content">
								<div class="content-item" id="header-nav-login-lightbox">
								      <div class="ci-header">

 <h4 class="heading">Login using your social network</h4>
	<form action="https://idp.news.com.au/idp/Authn/social" method="GET">
		<fieldset>
			<legend><span class="legend">Social Login</span></legend>
			<div class="form-item fpos-1 frpos-3">
	            <fieldset class="form-radio-group">
	                <legend>
	                    <span class="legend-text">Social Network
	                    	<span class="required">
	                        	<abbr title="required">*</abbr>
	                    	</span>
	                	</span>
	                </legend>
	                <div class="form-radio-item signin signin-facebook">
	                    <input type="radio" id="service-facebook" value="facebook.com" name="service" class="radio required-field"/>
	                    <label for="service-facebook" class="radio">
	                        <span class="label-text">Login with Facebook</span>
	                    </label>
	                </div>
	                <div class="form-radio-item signin signin-twitter">
	                    <input type="radio" id="service-twitter" value="twitter.com" name="service" class="radio required-field"/>
	                    <label for="service-twitter" class="radio">
	                        <span class="label-text">Login with Twitter</span>
	                    </label>
	                </div>
	                 <div class="form-radio-item signin signin-linkedin">
	                    <input type="radio" id="service-linkedin" value="linkedin.com" name="service" class="radio required-field"/>
	                    <label for="service-linkedin" class="radio">
	                        <span class="label-text">Login with LinkedIn</span>
	                    </label>
	                </div>
	                <div class="form-radio-item signin signin-google">
	                    <input type="radio" id="service-google" value="google.com" name="service" class="radio required-field"/>
	                    <label for="service-google" class="radio">
	                        <span class="label-text">Login with Google</span>
	                    </label>
	                </div>
	            </fieldset>
	        </div>
			<div class="form-item fipos-3 frpos-1 form-item-submit">
				  <input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
				<input type="hidden" name="channel" value="msite"/>
				<input type="hidden" name="authMethod" value="social"/>
				<input type="hidden" name="site" value="HeraldSun"/>
				<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
				<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
				<button type="submit" class="button-submit"><span>Login</span></button>
			</div><!-- // .form-item -->
		</fieldset>
	</form>

									  </div>
									<div class="ci-content">

<h4 class="heading">Login using your Newspass account</h4>
<form action="https://idp.news.com.au/idp/Authn/rest" method="POST" class="formBuilder">
	<fieldset>
		<legend><span class="legend">User Login</span></legend>
		<div class="form-item fipos-1">
			<label for="cam_username">Username <span class="required"><abbr title="required">*</abbr></span></label>
			<input type="text" id="cam_username" name="username" class="required-field email"/>
		</div>
		<div class="form-item fipos-2">
			<label for="cam_password">Password <span class="required"><abbr title="required">*</abbr></span></label>
			<input type="password" id="cam_password" name="password" class="required-field password"/>
		</div>
		<div class="form-item fipos-3">
			<div class="form-checkbox-item">
				<input type="checkbox" id="cam_remember_me" name="remember_me" checked=""/>
				<label for="cam_remember_me">Remember me</label>
			</div>
		</div>
		<div class="form-item fipos-4 form-item-submit">
			<input type="hidden" name="channel" value="msite"/>
			<input type="hidden" name="site" value="HeraldSun"/>
			<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
			<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
			<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
			<button type="submit" class="button-submit"><span>Login</span></button>
		</div>
	</fieldset>
</form>

									</div>
									<div class="ci-related">
										<ul class="related">
											<li><a class="password" href="https://myaccount.news.com.au/heraldsun/forgotPassword">Forgot your password?</a></li>
										</ul>
									</div>
									<div class="ci-footer">
										<ul class="more-links">
											<li>Subscribe now to access Herald Sun.</li>
											<li class="btn-subscribe"><a class="subscribe" href="http://subscription.news.com.au/heraldsun/offers">Subscribe</a></li>
										</ul>
									</div>
								</div>
							</div>
						</div>
			 		
			</div>
	</div>
            <div id="headerAd">
                            <!-- new.adkit -->
                            <div class="ad-block ad-m-banner" id="ad-m-banner"></div>
	    </div>
	</div>
    <div id="content">
		<div id="section-header">
				<div id="section-header-logo">
							<h2>Opinion</h2>
				</div><!-- // #section-header-logo -->
			</div><!-- // #section-header -->
		<div id="story">
							
	<div class="story-header">
		<div class="story-section">
			<h2 class="heading">
				<a href="/news/opinion/laurie-oakes"><p>Laurie Oakes</p></a>
			</h2>
		</div>
		<div class="story-headline">
			<h1 class="heading">
						Angry media won’t buckle over new surveillance laws
			</h1>
		</div>
		<div class="story-info">
			<ul>
						<li class="byline first ">
								<span class="source-prefix">by:</span>
										<cite class="author  author-laurie-oakes "> Laurie Oakes</cite>
						</li>
						<li class="source  ">
							<span class="source-prefix">From:</span>
							<cite>
	        Herald Sun
							</cite>
						</li>
					 	<li class="date-and-time  last" title="2015-03-13T21:00:00+11:00">
								<span class="datestamp">March 13, 2015</span>
								<span class="timestamp">9:00PM</span>
						</li>
			</ul>
		</div>
	</div>
<div class="story-body ">
		<div class="article-media article-media-main">
								<div class="image">
									<div class="image-frame">
										<img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium" alt="A new Bill would require telecommunications service providers to store so-called ‘metadat"/>
									</div>
										<p class="caption">
											<span id="imgCaption" class="caption-text">A new Bill would require telecommunications service providers to store so-called ‘metadata’ for two years.</span>
											<span class="image-source"><em>Source:</em>
											Supplied</span>
										</p>
								</div>
		</div>
			<div class="story-intro">
				<p><strong>
				A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed.
				</strong></p>
			</div>
		<p>The roadshow featured the Prime Minister’s national security adviser, Andrew Shearer, Justin Bassi, who advises Attorney-General George Brandis on crime and security matters, and Australian Federal Police Commissioner Andrew Colvin. Staffers from the office of Communications Minister Malcolm Turnbull also took part.</p><p>They held meetings with executives from News Corporation and Fairfax, representatives of the TV networks, the ABC top brass and a group from the media union and the Walkley journalism foundation. I was involved as a member of the Walkley board.</p><p>The initiative, from Tony Abbott’s office, is evidence that the Government has been alarmed by the strength of criticism from media of the Data Retention Bill it wants passed before Parliament rises in a fortnight. Bosses, journalists, even the Press Council, are up in arms, not only over this measure, but also over aspects of two earlier pieces of national security legislation that interfere with the ability of the media to hold government to account.</p>
		
				<div class="story-promo story-promo-middle">
				</div>
		  
<div id="read-more">
    <div id="read-more-link">
        <a href="">Read more</a>
    </div>
    <div id="middleAd">
        <!-- new.adkit -->
        <div class="ad-block ad-m-mrec" id="ad-m-mrec"></div>
    </div>
    <div id="read-more-content">
        <p>The Bill would require telecommunications service providers to store so-called “metadata” — the who, where, when and how of a communication, but not its content — for two years so security and law enforcement agencies can access it without warrant. Few would argue against the use of such material to catch criminals or terrorists. But, as Parliament’s Joint Committee on Intelligence and Security has pointed out, it would also be used “for the purpose of determining the identity of a journalist’s sources”.</p><p>And that should ring warning bells for anyone genuinely concerned with the health of our democracy. Without the ability to protect the identity of sources, journalists would be greatly handicapped in exposing corruption, dishonesty, waste, incompetence and misbehaviour by public officials.</p><p>The Press Council is concerned the laws would crush investigative journalism.</p><p>“These legitimate concerns cannot be addressed effectively short of exempting journalists and media organisations,” says president David Weisbrot.</p><p>The media union is adamant journalists’ metadata must be exempted from the law. That’s what media bosses want, too, though they have a fallback position based on new safeguards being implemented in Britain.</p><p>That would prevent access to the metadata of journalists or media organisations without a judicial warrant. There would be a code including — according to the explanatory notes of the British Bill — “provision to protect the public interest in the confidentiality of journalistic sources”.</p><p>In their meetings this week, the government team boasted of concessions in the new Data Retention Bill. The number of agencies able to access metadata will be reduced by excluding such organisations as the RSPCA and local councils. And whenever an authorisation is issued for access to information about a journalist’s sources, the Ombudsman (or, where ASIO is involved, the Inspector-General of Intelligence and Security) will receive a copy.</p><p>That does nothing to solve the problem. The Government has effectively admitted as much by agreeing that the parliamentary committee should conduct a separate review of how to deal with the issue of journalists’ sources.</p><p>But another inquiry would be a waste of time — the committee has already received and considered dozens of submissions on the subject. The bottom line is that the Government does not deny that the legislation is flawed, but is demanding it be passed anyway with the possibility left open of a repair job down the track. That is a ridiculous approach.</p><p>Claims that immediate action is imperative do not stand up. These are measures that won’t come into full effect for two years. Anyway, amending the Bill to either exempt journalists or adopt the UK model could be done quickly, without any risk to national security.</p><p>AS Opposition Leader Bill Shorten said in a letter to Abbott last month: “Press freedom concerns about mandatory data retention would ideally be addressed in this Bill to avoid the need for future additional amendments or procedures to be put in place in the future.”</p><p>The Data Retention Bill will be debated in the House of Representatives this week. Then, on Friday, CEOs from leading media organisations will front the parliamentary committee to air their concerns before the legislation goes to the Senate.</p><p>Those CEOs should make it clear they are just as angry about this as they were about Stephen Conroy’s attempt to impinge on press freedom through media regulation under the previous Labor government.</p><p>Memories of the grief Conroy brought down on his head would undoubtedly make Abbott sit up and take notice.</p><p><b>LAURIE OAKES IS THE NINE NETWORK POLITICAL EDITOR </b></p>
    </div>
</div>
</div>
<div class="share-tools share-tools-story">
</div>
<!-- new.adkit adsense -->
<div class="ad-block ad-adsense-medium" id="ad-adsense-medium-1"></div>
<!-- End new.adkit adsense -->
	    <div id="social-comments" data-livefyre-collectionmeta="eyJhbGciOiJIUzI1NiJ9.eyJ0YWdzIjoiTGF1cmllIE9ha2VzLExhdXJpZSBPYWtlcyIsInRpdGxlIjoiQW5ncnkgbWVkaWEgd29uJiM4MjE3O3QgYnVja2xlIG9uIHN1cnZlaWxsYW5jZSBsYXdzIiwiY2hlY2tzdW0iOiIwZmRhYWVkYzY0Nzk4NDYyMWM0M2FjODNkODE4ZDk5ZSIsImFydGljbGVJZCI6IkZXMTIyNzI2MTg4NjAxNCIsInVybCI6Imh0dHA6Ly93d3cuaGVyYWxkc3VuLmNvbS5hdS9uZXdzL29waW5pb24vYW5ncnktbWVkaWEtd29udC1idWNrbGUtb3Zlci1uZXctc3VydmVpbGxhbmNlLWxhd3Mvc3RvcnktZm5pMGZoYTYtMTIyNzI2MTg4NjAxNCJ9.sA4RqU0tVSYKJUzSFIHvG-JBw6I5jMf2Jj9Wb4Hz4lY" data-livefyre-checksum="0fdaaedc647984621c43ac83d818d99e" data-articleid="FW1227261886014" data-siteid="342836">
	   </div>
	   <script type="text/javascript">
		    utag_data = window.utag_data || {};
		    utag_data.net_content_type = (utag_data.net_content_type ? utag_data.net_content_type + "+" : "") + "comments";
	   </script>
	
			<div class="story-promo story-promo-bottom">
			</div>
	  
								
				
<!-- [Group:1226671432961] on [fwprodcontent02.ni.news.com.au] @ [March 21, 2015 11:05AM] -->
<div class="group   text-g-news-ms-group-adsense-medium item-count-1  group-id-1226671432961">
		<div class="group-content">
			<div class="item ipos-1 irpos-1">
	<div class="custom-html   ">
		<div class="ad-block ad-adsense-medium" id="ad-adsense-medium-1"></div>
	</div><!-- // .custom-html -->
			</div><!-- // .item ipos-1 irpos-1 -->
		</div><!-- // .group-content.item-count-1 -->
</div><!-- // .group -->

				
<!-- [Group:1226721033461] on [fwprodcontent10.ni.news.com.au] @ [March 21, 2015 11:30AM] -->
<div class="group outbrain-group   text-g-more-stories item-count-1  group-id-1226721033461">
		<div class="group-header">
					<h2 class="heading">more stories</h2>
		</div><!-- // .group-header -->
		<div class="group-content">
			<div class="item ipos-1 irpos-1">
	<div class="custom-html   ">
	</div><!-- // .custom-html -->
			</div><!-- // .item ipos-1 irpos-1 -->
		</div><!-- // .group-content.item-count-1 -->
</div><!-- // .group -->

				
<!-- [Group:1226615951541] on [fwprodcontent08.ni.news.com.au] @ [March 21, 2015 11:26AM] -->
<div class="group   text-g-other-opinion-columns item-count-1  group-id-1226615951541">
		<div class="group-header">
					<h2 class="heading">Other Opinion Columns</h2>
		</div><!-- // .group-header -->
		<div class="group-content">
			<div class="item ipos-1 irpos-1">
		<div class="module default   sectionref-hs-opinion   first-image-100w75h  collection mpos-1 mrpos-1 text-m-nn-mob-pmnt-news-opinion-story-x5 id1226615938269" id="id1226615938269">
			<div class="module-content ">
			<div class="story-block    sectionref-news sbpos-1 sbrpos-5 id1227272078989">
			<!-- PC related summary IDs: 1227272078989 -->
			<!-- PC related summary IDs: 1227272078989 -->
	<!-- PC related summary IDs: 1227272078989 -->
		<h4 class="heading">
				<strong class="kicker">Editorial</strong>
			      <a href="/news/opinion/malcolm-frasers-lasting-legacy/story-fni0ffsx-1227272078989">Fraser’s lasting legacy</a>
		</h4>
					<a href="/news/opinion/malcolm-frasers-lasting-legacy/story-fni0ffsx-1227272078989" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272077962?format=jpg&amp;group=iphone&amp;size=small" alt="Fraser’s lasting legacy" class="thumbnail"/></a>
    <!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
	<p class="standfirst">
			<span class="article-info">
				<span class="date-and-time" title="2015-03-21T00:00:00+11:00">
				</span> <!-- // .date-and-time -->
					<em class="byline"> </em>
			</span> <!-- // .article-info -->
				MALCOLM Fraser — an effective prime minister controversially installed, soundly elected and re-elected, a relentless contributor, thinker and reformer, a blue-blooded egalitarian.
	</p> <!-- // .standfirst11 -->
		<div class="storyblock-footer">
				<span class="share"></span>
			<span class="bookmark"></span>
		<ul class="related related-media">
		</ul>
		</div>
	<!-- PC related summary IDs: 1227272078989 -->
			</div> <!-- // .story-block   pos-1 rpos-5 id1227272078989 -->
			<div class="story-block    sectionref-news sbpos-2 sbrpos-4 id1227272060915">
			<!-- PC related summary IDs: 1227272060915 -->
			<!-- PC related summary IDs: 1227272060915 -->
	<!-- PC related summary IDs: 1227272060915 -->
		<h4 class="heading">
				<strong class="kicker">Wave of stupidity</strong>
			      <a href="/news/opinion/doctor-knows-best-not-starbeam-fantapants/story-fni0ffsx-1227272060915">Doctor knows best, not Starbeam Fantapants</a>
		</h4>
					<a href="/news/opinion/doctor-knows-best-not-starbeam-fantapants/story-fni0ffsx-1227272060915" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272071432?format=jpg&amp;group=iphone&amp;size=small" alt="Doctor knows best, not Starbeam Fantapants" class="thumbnail"/></a>
    <!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
	<p class="standfirst">
			<span class="article-info">
				<span class="date-and-time" title="2015-03-21T00:00:00+11:00">
				</span> <!-- // .date-and-time -->
					<em class="byline">JOE HILDEBRAND </em>
			</span> <!-- // .article-info -->
				HOW is it that ideas and philosophies that are patently absurd capture people’s imagination? It seems we’re being swamped by a wave of stupidity.
	</p> <!-- // .standfirst11 -->
		<div class="storyblock-footer">
				<span class="share"></span>
			<span class="bookmark"></span>
		<ul class="related related-media">
					 <li class="comments">
					  <a href="/news/opinion/doctor-knows-best-not-starbeam-fantapants/story-fni0ffsx-1227272060915">
						 <span class="livefyre-commentcount" data-lf-site-id="342836" data-lf-article-id="FW1227272060915"></span>
					 </a>
					</li>
		</ul>
		</div>
	<!-- PC related summary IDs: 1227272060915 -->
			</div> <!-- // .story-block   pos-2 rpos-4 id1227272060915 -->
			<div class="story-block    sectionref-news sbpos-3 sbrpos-3 id1227272050794">
			<!-- PC related summary IDs: 1227272050794 -->
			<!-- PC related summary IDs: 1227272050794 -->
	<!-- PC related summary IDs: 1227272050794 -->
		<h4 class="heading">
				<strong class="kicker">Ikea challenge</strong>
			      <a href="/news/opinion/ikea-is-good-for-some-but-im-not-buying-it/story-fni0fhie-1227272050794">Good for some, but I’m not buying it</a>
		</h4>
					<a href="/news/opinion/ikea-is-good-for-some-but-im-not-buying-it/story-fni0fhie-1227272050794" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272050710?format=jpg&amp;group=iphone&amp;size=small" alt="Good for some, but I’m not buying it" class="thumbnail"/></a>
    <!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
	<p class="standfirst">
			<span class="article-info">
				<span class="date-and-time" title="2015-03-21T00:00:00+11:00">
				</span> <!-- // .date-and-time -->
					<em class="byline">SUSIE O’BRIEN </em>
			</span> <!-- // .article-info -->
				THE good thing about Ikea is that it’s cheap and good quality. The bad thing is the whole, exhausting business of shopping at their stores.
	</p> <!-- // .standfirst11 -->
		<div class="storyblock-footer">
				<span class="share"></span>
			<span class="bookmark"></span>
		<ul class="related related-media">
					 <li class="comments">
					  <a href="/news/opinion/ikea-is-good-for-some-but-im-not-buying-it/story-fni0fhie-1227272050794">
						 <span class="livefyre-commentcount" data-lf-site-id="342836" data-lf-article-id="FW1227272050794"></span>
					 </a>
					</li>
		</ul>
		</div>
	<!-- PC related summary IDs: 1227272050794 -->
			</div> <!-- // .story-block   pos-3 rpos-3 id1227272050794 -->
			<div class="story-block    sectionref-news sbpos-4 sbrpos-2 id1227272039501">
			<!-- PC related summary IDs: 1227272039501 -->
			<!-- PC related summary IDs: 1227272039501 -->
	<!-- PC related summary IDs: 1227272039501 -->
		<h4 class="heading">
				<strong class="kicker">True liberal</strong>
			      <a href="/news/opinion/malcolm-fraser-was-a-man-of-contrasts/story-fni0fha6-1227272039501">Ex-PM a man of contrasts</a>
		</h4>
					<a href="/news/opinion/malcolm-fraser-was-a-man-of-contrasts/story-fni0fha6-1227272039501" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272037318?format=jpg&amp;group=iphone&amp;size=small" alt="Ex-PM a man of contrasts" class="thumbnail"/></a>
    <!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
	<p class="standfirst">
			<span class="article-info">
				<span class="date-and-time" title="2015-03-21T00:00:00+11:00">
				</span> <!-- // .date-and-time -->
					<em class="byline">LAURIE OAKES </em>
			</span> <!-- // .article-info -->
				IT was said that Malcolm Fraser moved to the Left after losing office but the former PM didn’t change - he was always a “small l” liberal.
	</p> <!-- // .standfirst11 -->
		<div class="storyblock-footer">
				<span class="share"></span>
			<span class="bookmark"></span>
		<ul class="related related-media">
					 <li class="comments">
					  <a href="/news/opinion/malcolm-fraser-was-a-man-of-contrasts/story-fni0fha6-1227272039501">
						 <span class="livefyre-commentcount" data-lf-site-id="342836" data-lf-article-id="FW1227272039501"></span>
					 </a>
					</li>
		</ul>
		</div>
	<!-- PC related summary IDs: 1227272039501 -->
			</div> <!-- // .story-block   pos-4 rpos-2 id1227272039501 -->
			<div class="story-block    sectionref-news sbpos-5 sbrpos-1 id1227272010784">
			<!-- PC related summary IDs: 1227272010784 -->
			<!-- PC related summary IDs: 1227272010784 -->
	<!-- PC related summary IDs: 1227272010784 -->
		<h4 class="heading">
				<strong class="kicker">Own backyard</strong>
			      <a href="/news/opinion/lets-make-local-issues-a-priority/story-fni0ffsx-1227272010784">Let’s make local issues a priority</a>
		</h4>
					<a href="/news/opinion/lets-make-local-issues-a-priority/story-fni0ffsx-1227272010784" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272009394?format=jpg&amp;group=iphone&amp;size=small" alt="Let’s make local issues a priority" class="thumbnail"/></a>
    <!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
	<p class="standfirst">
			<span class="article-info">
				<span class="date-and-time" title="2015-03-21T00:00:00+11:00">
				</span> <!-- // .date-and-time -->
					<em class="byline">TOM ELLIOTT </em>
			</span> <!-- // .article-info -->
				IT’S nice to think Australia is a player on the world stage but, really, we’re not. So forget global posturing and let’s sort out our own backyard.
	</p> <!-- // .standfirst11 -->
		<div class="storyblock-footer">
				<span class="share"></span>
			<span class="bookmark"></span>
		<ul class="related related-media">
					 <li class="comments">
					  <a href="/news/opinion/lets-make-local-issues-a-priority/story-fni0ffsx-1227272010784">
						 <span class="livefyre-commentcount" data-lf-site-id="342836" data-lf-article-id="FW1227272010784"></span>
					 </a>
					</li>
		</ul>
		</div>
	<!-- PC related summary IDs: 1227272010784 -->
			</div> <!-- // .story-block   pos-5 rpos-1 id1227272010784 -->
			</div> <!-- // .module-content -->
		</div> <!-- // .module .collection -->
			</div><!-- // .item ipos-1 irpos-1 -->
		</div><!-- // .group-content.item-count-1 -->
</div><!-- // .group -->

				
<!-- [Group:1226586873038] on [fwprodcontent07.ni.news.com.au] @ [March 21, 2015 11:30AM] -->
<div class="group collection   text-g-nn-mob-group-mostread item-count-1  group-id-1226586873038">
		<div class="group-content">
			<div class="item ipos-1 irpos-1">
			<div class="esi_fragment">
			        <div class="most-popular"><div class="module-header"><h3 class="heading">Most Popular Stories</h3></div> <div class="module most-popular "><div class="module-content"><ol><li class="lipos-1 lirpos-5"><a href="http://www.heraldsun.com.au/entertainment/confidential/wifes-fury-at-hawthorn-husbands-million-dollar-gamble/story-fnn7ma1h-1227271771330?sv=df95c2a03e18b583f7f54541951f2017">Wife’s fury at hubby’s million dollar gamble</a></li><li class="lipos-2 lirpos-4"><a href="http://www.heraldsun.com.au/sport/cricket/australia-v-pakistan-live-coverage-of-cricket-world-cup-2015-quarter-final-at-adelaide-oval/story-fnq1ugvn-1227271183293?sv=95140b10c5a6b3327f331184667b7101">Australia passes fierce Pakistan test</a></li><li class="lipos-3 lirpos-3"><a href="http://www.heraldsun.com.au/news/law-order/masa-vukotics-brave-dad-comes-face-to-face-with-accused-killer-sean-christian-price/story-fni0fee2-1227272036011?sv=abb755bd4ae48d7229b821ba9bd37c4b">Masa’s brave dad faces accused killer</a></li><li class="lipos-4 lirpos-2"><a href="http://www.heraldsun.com.au/news/law-order/police-allege-masa-vukotics-accused-killer-sean-christian-price-went-on-orgy-of-violence-before-surrender/story-fni0fee2-1227271332272?sv=19cd7b2abf1a89d6eb84d5b52580aa8">Police allege Price went on 90-minute rampage</a></li><li class="lipos-5 lirpos-1"><a href="http://www.heraldsun.com.au/news/law-order/fallen-afl-star-ben-cousins-dodges-bullet-with-latest-drug-relapse/story-fni0fee2-1227271552942?sv=5053c480d78ab9737e526145e7efff47">This time Cousins really dodged a bullet</a></li></ol></div></div>
<img src="http://tcog.news.com.au/track/news/content/v1/?category=/section/heraldsun.com.au/collection/popular-content/all/24hours/&amp;format=module&amp;t_product=most-popular-mobile&amp;maxRelated=5&amp;t_template=popular-plain&amp;origin=omniture&amp;domain=heraldsun.com.au" style="opacity:0; height:0px; width:0px; position:absolute;" width="0" height="0"/>
</div>
			</div>
			</div><!-- // .item ipos-1 irpos-1 -->
		</div><!-- // .group-content.item-count-1 -->
</div><!-- // .group -->

        </div><!-- // #story -->
    </div><!-- // #content -->
	<div id="footer">
                <div id="footerAd">
                                <!-- new.adkit -->
                                <div class="ad-block ad-m-banner" id="ad-m-banner-1"></div>
                </div>
			<div id="network-account">
				
					 <div class="network-login">
					 	
								<div class="module form-module form-module-cam-login">
									<div class="module-header">
										<ul class="more-links">
											<li class="first"><a class="login" href="http://www.heraldsun.com.au/login#header-nav-login-lightbox">Login</a></li>
											        <li class="last"><a class="signup" href="http://www.heraldsun.com.au/subscribe/offers/1/?sourceCode=HSWEB_MOB100_a">Subscribe</a></li>
										</ul>
									</div>
									<div class="module-content">
										<div class="content-item" id="header-nav-login-lightbox">
										      <div class="ci-header">

 <h4 class="heading">Login using your social network</h4>
	<form action="https://idp.news.com.au/idp/Authn/social" method="GET">
		<fieldset>
			<legend><span class="legend">Social Login</span></legend>
			<div class="form-item fpos-1 frpos-3">
	            <fieldset class="form-radio-group">
	                <legend>
	                    <span class="legend-text">Social Network
	                    	<span class="required">
	                        	<abbr title="required">*</abbr>
	                    	</span>
	                	</span>
	                </legend>
	                <div class="form-radio-item signin signin-facebook">
	                    <input type="radio" id="service-facebook" value="facebook.com" name="service" class="radio required-field"/>
	                    <label for="service-facebook" class="radio">
	                        <span class="label-text">Login with Facebook</span>
	                    </label>
	                </div>
	                <div class="form-radio-item signin signin-twitter">
	                    <input type="radio" id="service-twitter" value="twitter.com" name="service" class="radio required-field"/>
	                    <label for="service-twitter" class="radio">
	                        <span class="label-text">Login with Twitter</span>
	                    </label>
	                </div>
	                 <div class="form-radio-item signin signin-linkedin">
	                    <input type="radio" id="service-linkedin" value="linkedin.com" name="service" class="radio required-field"/>
	                    <label for="service-linkedin" class="radio">
	                        <span class="label-text">Login with LinkedIn</span>
	                    </label>
	                </div>
	                <div class="form-radio-item signin signin-google">
	                    <input type="radio" id="service-google" value="google.com" name="service" class="radio required-field"/>
	                    <label for="service-google" class="radio">
	                        <span class="label-text">Login with Google</span>
	                    </label>
	                </div>
	            </fieldset>
	        </div>
			<div class="form-item fipos-3 frpos-1 form-item-submit">
				  <input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
				<input type="hidden" name="channel" value="msite"/>
				<input type="hidden" name="authMethod" value="social"/>
				<input type="hidden" name="site" value="HeraldSun"/>
				<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
				<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
				<button type="submit" class="button-submit"><span>Login</span></button>
			</div><!-- // .form-item -->
		</fieldset>
	</form>

											  </div>
											<div class="ci-content">

<h4 class="heading">Login using your Newspass account</h4>
<form action="https://idp.news.com.au/idp/Authn/rest" method="POST" class="formBuilder">
	<fieldset>
		<legend><span class="legend">User Login</span></legend>
		<div class="form-item fipos-1">
			<label for="cam_username">Username <span class="required"><abbr title="required">*</abbr></span></label>
			<input type="text" id="cam_username" name="username" class="required-field email"/>
		</div>
		<div class="form-item fipos-2">
			<label for="cam_password">Password <span class="required"><abbr title="required">*</abbr></span></label>
			<input type="password" id="cam_password" name="password" class="required-field password"/>
		</div>
		<div class="form-item fipos-3">
			<div class="form-checkbox-item">
				<input type="checkbox" id="cam_remember_me" name="remember_me" checked=""/>
				<label for="cam_remember_me">Remember me</label>
			</div>
		</div>
		<div class="form-item fipos-4 form-item-submit">
			<input type="hidden" name="channel" value="msite"/>
			<input type="hidden" name="site" value="HeraldSun"/>
			<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
			<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
			<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
			<button type="submit" class="button-submit"><span>Login</span></button>
		</div>
	</fieldset>
</form>

											</div>
											<div class="ci-related">
												<ul class="related">
													<li><a class="password" href="https://myaccount.news.com.au/heraldsun/forgotPassword">Forgot your password?</a></li>
												</ul>
											</div>
											<div class="ci-footer">
												<ul class="more-links">
													<li>Subscribe now to access Herald Sun.</li>
													<li class="btn-subscribe"><a class="subscribe" href="http://subscription.news.com.au/heraldsun/offers">Subscribe</a></li>
												</ul>
											</div>
										</div>
									</div>
								</div>
					 		
					</div> <!-- .network-login -->
			</div> <!-- .network-account -->
			<div id="mobile-footer-nav" class="site-nav">
							
    <div class="module navigation-module footer-nav follow-us sectionref-footer-top   id1226899054033 ">
        <div class="module-content">
		<ul class=" tier-1">
			<li class="first">
								<span>Follow Us</span>
		<ul class=" tier-2">
			<li class="facebook" title="Facebook" data-class="    first">
									<a href="http://www.facebook.com/heraldsun">facebook</a>
			</li>
			<li class="twitter" title="Twitter">
									<a href="http://twitter.com/theheraldsun">twitter</a>
			</li>
			<li class="instagram" title="Instagram">
									<a href="http://instagram.com/heraldsunphoto">instagram</a>
			</li>
			<li class="gplus" title="Google+">
									<a href="https://plus.google.com/103153711572615333666/posts">google+</a>
			</li>
			<li class="email" title="Email" data-class="     last">
									<a href="http://pages.e.newsdigitalmedia.com.au/GPC?a=HeraldSun">email</a>
			</li>
		</ul>
		<!-- // .tier-2 -->
			</li>
			<li class="footertop-nav     last">
								
		<ul class=" tier-2">
			<li class="backtotop-nav    first">
									<a href="#page">Back To Top</a>
			</li>
	
			<li class="login">
								<a href="/login">Log In</a>
			</li>
		
			<li class="signup-nav">
									<a href="http://m.heraldsun.com.au/subscribe/news/1/?sourceCode=HSWEB_MOB539">Subscribe</a>
			</li>
			<li class="logout-nav">
									<a href="https://sslcam.news.com.au/cam/logout?url=http://m.heraldsun.com.au">Log Out</a>
			</li>
			<li class="nav-external myaccount     last">
									<a href="https://myaccount.news.com.au/heraldsun/viewAccount">My Account</a>
			</li>
		</ul>
		<!-- // .tier-2 -->
			</li>
		</ul>
		<!-- // .tier-1 -->
        </div><!-- // .module-content -->
    </div><!-- // .module.navigation-module -->

			</div>
			<div id="footer-tools-fonts">
				<ul><li id="footer-tools-small"><a name="footer-tools-small">Small</a></li>
					<li id="footer-tools-default"><a name="footer-tools-default">Default</a></li>
					<li id="footer-tools-large"><a name="footer-tools-large">Large</a></li></ul>
			</div>
			<div id="footer-legals">
    <div class="module navigation-module sectionref-footer-bottom   id1226612506289 ">
        <div class="module-content">
		<ul class=" tier-1">
			<li class="footer-disclaimer    first">
								<a href="http://www.newscorpaustraliaprivacy.com">find out more about our policy and your choices, including how to opt-out here</a>
			</li>
			<li class="desktop">
									<a href="http://www.heraldsun.com.au">Desktop Site</a>
			</li>
			<li class="digitalprint">
									<a href="/digitalprinteditions">Digital Print Edition</a>
			</li>
			<li>
									<a href="http://www.newscorpaustraliaprivacy.com ">Privacy Policy</a>
			</li>
			<li>
									<a href="http://www.newscorpaustraliaprivacy.com/index.html#optout">Relevant Ads Opt-out</a>
			</li>
			<li>
									<a href="http://www.newscorpaustraliaprivacy.com/index.html#collect">Cookie Policy</a>
			</li>
			<li>
								<a href="/help">Help</a>
			</li>
			<li>
								<a href="/help/contact-us">Contact Us</a>
			</li>
			<li>
									<a href="/network">More News Corp Sites</a>
			</li>
			<li>
								<a href="/help/termsconditions">Terms of Use</a>
			</li>
			<li>
								<a href="/help/sitemap">Site Map</a>
			</li>
			<li>
								<a href="/help/subscription-terms">Subscription Terms</a>
			</li>
			<li>
									<a href="http://www.heraldsun.com.au/group">Group Subscription Terms</a>
			</li>
			<li class="last">
								Copyright Herald and Weekly Times. All times AEST (GMT +10:00)
			</li>
		</ul>
		<!-- // .tier-1 -->
        </div><!-- // .module-content -->
    </div><!-- // .module.navigation-module -->
					<p class="copyright">© Herald and Weekly Times. All times AEDT (GMT +11:00) </p>
			</div>
	</div>
    <div id="resources">
	<!-- Site includes [HeraldSun:null] last generated at Sat Mar 21 11:31:27 EST 2015 -->
<!-- site include -->
<!-- Resource Included [{id=1226636939151, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1226305922727, type=News_Javascript}, {id=1226636894336, type=News_Resources_Group}, {id=1226641842346, type=News_Resources_Group}, {id=1226766835979, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1226636896198, type=News_Javascript}, {id=1226768825469, type=News_Javascript}, {id=1226636896348, type=News_Javascript}, {id=1226636941781, type=News_Stylesheet}, {id=1226636941933, type=News_Stylesheet}, {id=1226975215417, type=News_Resources_Group}, {id=1226636898522, type=News_Resources_Group}, {id=1226717662103, type=News_Resources_Group}, {id=1227125508198, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1226975215371, type=News_Javascript}]-->
<!-- Resource Included [{id=1226636898905, type=News_Javascript}]-->
<!-- Resource Included [{id=1227075473855, type=News_Resources_Group}]-->
<!-- Resource Included [{id=1227023921688, type=News_Javascript}, {id=1227023921564, type=News_Stylesheet}]-->
<!-- Resource Included [{id=1227125511995, type=News_Javascript}]-->
<!-- Resource Included [{id=1226641837720, type=News_Javascript}, {id=1226641840116, type=News_Stylesheet}]-->
<!-- Resource Included [{id=1226866557087, type=News_Stylesheet}, {id=1226766829330, type=News_Javascript}, {id=1226858257711, type=News_Javascript}, {id=1226766829929, type=News_Javascript}]-->
<!-- //site include -->
	<script type="text/javascript" src="http://resources.newscdn.com.au/cs/video/stable/build/player.js"></script>
	<script type="text/javascript" src="http://resources.newscdn.com.au/cs/metered/current/deployBucketA/js/metered.min.js"></script>
		<script type="text/javascript">
	                 //<![CDATA[
					$(function(){
  if (typeof(ndm) !== 'undefined' && ndm.metered && ndm.metered.init) {
    ndm.metered.init();
  }
});
	                 //]]>
		</script>
    </div><!-- // # resources -->
    <div id="stats">
        <!-- Start Tealium -->
        <script type="text/javascript">
            var utagSections = [];
            if (window.ndm && window.ndm.page && window.ndm.page.section) {
                utagSections = ndm.page.section.toLowerCase().split(".");
            }
            utag_data = window.utag_data || {};
            utag_data.pn = "heraldsun | news | story | angry media won8217t buckle over new surveillance laws";
           	utag_data.net_section = utagSections[0];
        	utag_data.net_subsec = utagSections[1];
        	utag_data.net_subsubsec = utagSections[2];
        	utag_data.net_subsubsubsec = utagSections[3];
        	utag_data.net_subsubsubsubsec = utagSections[4];
        	utag_data.net_content_type = (utag_data.net_content_type ? utag_data.net_content_type + "+" : "") + "story";
            	utag_data.mp_story_id = "1227261886014";
            	utag_data.mp_section_id  = "1226617568574";
            	utag_data.mp_mlc_path  = "/news/opinion/laurieoakes/story";
            	utag_data.net_article_id = "1227261886014";
            	utag_data.net_article_byline = "Laurie Oakes";
            	utag_data.net_article_headline = "Angry media won&#8217;t buckle on surveillance laws";
            	utag_data.net_platform = "mobile";
            	utag_data.net_article_source = "HeraldSun";
        </script>
        <script type="text/javascript" src="//tags.tiqcdn.com/utag/newsltd/hwt.mobile/prod/utag.js"></script>
        <!-- End Tealium -->
    </div><!-- // # stats -->
</div><!-- // #page -->


</body></html>