forked from grangier/python-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_issue32.html
More file actions
1654 lines (1153 loc) · 61.8 KB
/
Copy pathtest_issue32.html
File metadata and controls
1654 lines (1153 loc) · 61.8 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="ctl00_Head1"><title>
Plan to restrict public-records data draws mounting opposition | Tulsa World
</title><link href="/includes/css/main.css?wpc=3" rel="stylesheet" type="text/css" /><link rel="SHORTCUT ICON" href="/favicon.ico" />
<script src="/includes/js/main.js" type="text/javascript" language="javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/themes/redmond/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.5.1.min.js" type="text/javascript"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.cycle/2.94/jquery.cycle.all.min.js" type="text/javascript"></script>
<script src="/includes/js/galleria/galleria-1.2.4.min.js" type="text/javascript"></script>
<script src="/includes/js/slideembed.js" type="text/javascript"></script>
<script src="/includes/js/json2.min.js" type="text/javascript"></script>
<script src="/includes/js/expandoAd.min.js" type="text/javascript" language="javascript"></script>
<lnk rel="image_src" href="/images/TW_logo-blue-footer.gif" />
<meta name="keywords" content="COURT RULE INFORMATION RECORDS DISTRICT OKLAHOMA PERSONAL PROPOSAL PROPOSED REASONS" />
<script src="/includes/js/FlashObject.js" type="text/javascript" language="javascript"></script>
<script type="text/javascript" src="/includes/super/swfobject-2.2.min.js"></script><script type="text/javascript" src="/includes/super/super.js?r=1"></script>
<script type="text/javascript" language="javascript" defer="defer">
var sc = new superc();
sc.get("MEYED");
</script>
</head>
<body >
<!-- SiteCatalyst code version: H.13.
Copyright 1997-2007 Omniture, Inc. More info available at
http://www.omniture.com -->
<script language="JavaScript" src="/includes/js/s_code.js"></script>
<script language="JavaScript"><!--
/* You may give each page an identifying name, server, and channel on
the next lines. */
s.pageName = "Opinion: Editorials: Plan to restrict public-records data draws mounting opposition"
s.server = "www.tulsaworld.com"
s.channel = "Opinion"
s.pageType = ""
s.prop1 = ""
s.prop2 = ""
s.prop3 = "Plan to restrict public-records data draws mounting opposition"
s.prop4 = "20111118_61_A16_Opposi344152"
s.prop5 = "Article"
s.prop6 = "Opinion"
s.prop7 = "Opinion: Editorials"
s.prop8 = "Opinion: Editorials"
s.prop9 = "Opinion: Editorials"
s.prop10 = ""
s.prop11 = ""
s.prop12 = ""
s.prop14 = ""
s.prop17 = "False"
/* Conversion Variables */
s.campaign = ""
s.state = ""
s.zip = ""
s.events = ""
s.products = ""
s.purchaseID = ""
s.eVar1 = ""
s.eVar2 = ""
s.eVar3 = ""
s.eVar4 = ""
s.eVar5 = ""
s.eVar6 = ""
s.eVar7 = ""
s.eVar8 = ""
s.eVar9 = ""
s.eVar10 = ""
s.eVar11 = ""
s.eVar12 = ""
s.eVar16 = ""
/* Hierarchy Variables */
s.hier1 = "Opinion,Editorials"
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--></script>
<script language="JavaScript"><!--
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//--></script><!--/DO NOT REMOVE/-->
<!-- End SiteCatalyst code version: H.13. -->
<!-- Start Quantcast tag -->
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<script type="text/javascript">_qacct="p-58byflJLqmsZ2";quantserve();</script>
<noscript>
<a href="http://www.quantcast.com/p-58byflJLqmsZ2" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-58byflJLqmsZ2.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></a>
</noscript>
<!-- End Quantcast tag -->
<script type="text/javascript"><!--
yld_mgr = {};
yld_mgr.slots = {};
yld_mgr.container_type = "js";
yld_mgr.request_type = "ac";
yld_mgr.pub_id = "22174654439";
yld_mgr.cstm_sctn_list=["Article"];
yld_mgr.site_name = "TulsaWorld.com";
yld_mgr.content_topic_id_list= ["20281501"];
//--></script>
<script type="text/javascript"><!--
yld_mgr.slots.Leaderboard = {};
yld_mgr.slots.Leaderboard.content_type_list = ["fn_news"];
yld_mgr.slots.Leaderboard.ad_delivery_mode = "ipstf";
yld_mgr.slots.Leaderboard.ad_size_list = ["728x90"];
yld_mgr.slots.Leaderboard.cstm_content_cat_list = ["20111118_61_A16_Opposi344152"];
//--></script>
<script type="text/javascript"><!--
yld_mgr.slots.BigBox = {};
yld_mgr.slots.BigBox.content_type_list = ["fn_news"];
yld_mgr.slots.BigBox.ad_delivery_mode = "ipatf";
yld_mgr.slots.BigBox.ad_size_list = ["300x250"];
yld_mgr.slots.BigBox.cstm_content_cat_list = ["20111118_61_A16_Opposi344152"];
//--></script>
<script type="text/javascript"><!--
yld_mgr.slots.BigBox2 = {};
yld_mgr.slots.BigBox2.content_type_list = ["fn_news"];
yld_mgr.slots.BigBox2.ad_delivery_mode = "ipstf";
yld_mgr.slots.BigBox2.ad_size_list = ["300x250"];
yld_mgr.slots.BigBox2.cstm_content_cat_list = ["20111118_61_A16_Opposi344152"];
//--></script>
<script type="text/javascript"><!--
yld_mgr.slots.Skyscraper = {};
yld_mgr.slots.Skyscraper.content_type_list = ["fn_news"];
yld_mgr.slots.Skyscraper.ad_delivery_mode = "ipstf";
yld_mgr.slots.Skyscraper.ad_size_list = ["300x600"];
yld_mgr.slots.Skyscraper.cstm_content_cat_list = ["20111118_61_A16_Opposi344152"];
//--></script>
<script type="text/javascript"><!--
yld_mgr.slots.InContent = {};
yld_mgr.slots.InContent.content_type_list = ["fn_news"];
yld_mgr.slots.InContent.ad_delivery_mode = "ipbtf";
yld_mgr.slots.InContent.ad_size_list = ["300x250"];
yld_mgr.slots.InContent.cstm_content_cat_list = ["20111118_61_A16_Opposi344152"];
//--></script>
<script type="text/javascript"><!--
yld_mgr.slots.CommentsTop = {};
yld_mgr.slots.CommentsTop.content_type_list = ["fn_news"];
yld_mgr.slots.CommentsTop.ad_delivery_mode = "ipstf";
yld_mgr.slots.CommentsTop.ad_size_list = ["645x60"];
yld_mgr.slots.CommentsTop.cstm_content_cat_list = ["20111118_61_A16_Opposi344152"];
//--></script>
<script type="text/javascript"><!--
yld_mgr.slots.CommentsBottom = {};
yld_mgr.slots.CommentsBottom.content_type_list = ["fn_news"];
yld_mgr.slots.CommentsBottom.ad_delivery_mode = "ipbtf";
yld_mgr.slots.CommentsBottom.ad_size_list = ["645x60"];
yld_mgr.slots.CommentsBottom.cstm_content_cat_list = ["20111118_61_A16_Opposi344152"];
//--></script>
<script type="text/javascript" src="http://e.yieldmanager.net/script.js"></script>
<form name="aspnetForm" method="post" action="article.aspx?subjectid=61&articleid=20111118_61_A16_Opposi344152&rss_lnk=7" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTg1MTUzMDMyMmQYAgUrY3RsMDAkYm9keTEkQ29tbWVudENvbnRyb2wxJENhcHRjaGFDb250cm9sMQ8FJGNmMjI5NTkzLTg4N2YtNDc0OS1hZTA4LTA5Mjk1ODEwZWYxZmQFJmN0bDAwJGJvZHkxJENvbW1lbnRDb250cm9sMSRsc3RDb21tZW50DzwrAAoCBxQrAANkZGQIAgNkZGPYtDzSg5i6NH4ASYZana45xOI=" />
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<script src="/WebResource.axd?d=j7Jl_dnoBjH5-1DXbx8U-d4dqLZCd2QtKVdnO_WGsD8GDbj3fCTxUdNNlXD9c5GarfgFyKx6caMsmxa_-2VdFBUb1m81&t=634540179750082500" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=NaY1zrnD0ObNOObIvy3VgSrcDKDNwaWsbEWfGWgQbgvX9b3CYBu-GqmwHIgWsgEAzAf8So2W751Voj2yLk4p7HeuE9PSNF3Xio25nH_KvR9tHK2KsbAwsYhPj6YWmEnWO-AjitbhLFSJDyVjELxBP0bwPsQ1&t=717bb48f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=S5oXR8hwvUjXpUVHVoH_oGiddY2jjN3pzoKw26yfeR8AhJkNBZokLzh1bmysgxdI5vcORhO-wp6ch_v9MyknqgW9QVqIRWvsPHzjD3iOUenAwJrEj8eUra6S1cw3s6VSDOqxz9Pl-RexI2-MqjuIAp6gSsg1&t=fffffffff040d6d6" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=MX90wJEqNbGtvgpae3aAadOhW1r_rGw7oK7JkUytqp8chiq0dIpD-8ZmAY0P9UpyiK1X_dFm9etwPFiX5So-mWJp6I3Z1cyLF1Jqt9I7SQJruOz0Qcxuo6_MO4H_i0HpzJ2FzGC09udzR41mg2IIBukQboRVDNmB-im2wjzr6Tktsip30&t=fffffffff040d6d6" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false;
return true;
}
//]]>
</script>
<div>
<input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
<input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWDQLA+MbuDwKzw+f6CAL2nubFCAL6+526DQL1gIOeDwLc3+vxDAKeicn8BQKk1qKhBALF2IVfAt+1qv4GAuib+IYDAuPByNgFAtiywbwO2RqUeFPWr8TC/4VdgMALJSpTKKg=" />
</div>
<noscript>
<meta http-equiv='refresh' content='0;url=/site/support/javascript.aspx' />
</noscript>
<div id="swfcontainer"></div>
<input type="hidden" name="ctl00$ctl04$hidM" id="ctl00_ctl04_hidM" value="37613394" />
<center>
<!-- <span id="ctl00_h1_lblServer">
*** Server 2 - www.tulsaworld.com ***
</span> -->
<!-- Header Begin (do not remove) -->
<script type="text/javascript" src="/includes/js/siteheader.js" ></script>
<a href="/site/subscriber/activateprintsubscription.aspx"><img src="/images/header/activate.gif" alt="" width="980" height="30" border="0" /></a><br />
<table cellpadding="0" cellspacing="0" width="980" border="0">
<tr>
<td width="390" class="customtitle">
<a href="/news/headlines.aspx">READ TODAY'S STORIES AND E-EDITION</a>
</td>
<td style="text-align:right;" width="590" class="customtitle">
<span style="display:inline;">
<a href="/site/subscriber/purchase.aspx" class="customtitle">SUBSCRIBE</a> |
<a href="/site/support/contact.aspx" class="customtitle">CONTACT US</a> |
<a href="/profile/login/" class="customtitle">SIGN IN</a>
</span>
</td>
</tr>
</table>
<!-- GRAY NAV -->
<link href="/includes/css/header.css" rel="stylesheet" type="text/css" />
<div id="ctl00_h1_PencilHdr_divGrayNav" style="width:100%; margin-bottom:3px; background-image: url(/images/header/graybg.jpg);">
<div style="width:980px; margin: 0 auto 0 auto;">
<table cellpadding="0" cellspacing="0">
<tr valign="middle">
<td>
<img src="/images/spacer.gif" width="5" height="1" /><a href="/"><img src="/images/header/twlogo.png" class="pngfix" alt="Tulsa World" title="Tulsa World" style="border-style:none; height:27px; width:123px;" /></a>
</td>
<td>
<img src="/images/spacer.gif" width="10" height="1" />
</td>
<td valign="middle" class="whitenav">
<a href="/news/">News</a> |
<a href="/sportsextra/">Sports</a> |
<a href="/business/">Business</a> |
<a href="/scene/">Scene</a> |
<a href="/opinion/">Opinion</a> |
<a href="/ourlives/">Obits</a> |
<a href="/blogs/">Blogs</a> |
<a href="/site/games/comicskingdom.aspx">Comics</a> |
<a href="/multimedia">Multimedia</a> |
<a href="/weather">Weather</a> |
<a href="/classifieds/jobs/">Jobs</a> |
<a href="/classifieds/autos/">Autos</a> |
<a href="/classifieds/realestate/">Homes</a> |
<a href="/pets">Pets</a> |
<a href="/classifieds">Classifieds</a> |
<a href ="/search">Search</a>
</td>
</tr>
</table>
</div>
</div>
<!-- END GRAY NAV -->
<div id="ctl00_h1_divHead" class="divhead" name="divHead">
<div style="height:90px; width:235px; float:left;">
<div style="height:69px;">
<img id="ctl00_h1_imgHeader" title="Opinion" class="pngfix" alt="News" title="News" border="0" src="/images/header/opinion.png" alt="Opinion" style="height:35px;width:245px;border-width:0px;margin:10px 0 0px 7px; float:left;" /><br />
<a id="ctl00_h1_lnkPoweredBy" href="/site/support/contact.aspx"><img id="ctl00_h1_imgPoweredby" class="pngfix" alt="Largest News Staff" title="Largest News Staff" border="0" src="/images/header/poweredby.png" style="height:34px;width:235px;border-width:0px;margin-left:7px; float:left;" /></a>
</div>
</div>
<div style="float:right; height:90px; width:728px;">
<script type="text/javascript"><!--
yld_mgr.place_ad_here("Leaderboard");
//--></script>
</div>
<div style="height:24px; width:980px; float:left;" class="w" id="navdiv">
<ul id="ctl00_h1_ulOpinion">
<li><a href="/opinion/list.aspx?l=editorials"><h2>Editorials</h2></a></li>
<li><a href="/opinion/list.aspx?l=letters"><h2>Letters</h2></a></li>
<li><a href="/opinion/list.aspx?l=readers"><h2>Readers Forum</h2></a></li>
<li><a href="/opinion/list.aspx?l=averill"><h2>David Averill</h2></a></li>
<li><a href="/opinion/list.aspx?l=jones"><h2>Mike Jones</h2></a></li>
<li><a href="/opinion/list.aspx?l=pearson"><h2>Janet Pearson</h2></a></li>
<li><a href="/opinion/list.aspx?l=delcour"><h2>Julie DelCour</h2></a></li>
<li><a href="/opinion/cartoon.aspx"><h2>Bruce Plante</h2></a></li>
</ul>
</div>
</div>
<!-- Header End (do not remove) -->
<div style="width:980px;">
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$scriptManMaster', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
//]]>
</script>
<div style="display:inline-block; width:980px;"> <!-- Wrapper div for the page content -->
<div style="width:660px; float:left;">
<script type="text/javascript" language="javascript">
$(document).ready(function () {
var h2Text = '';
$('span[id$="lblHeadline"]').each(function (index) {
h2Text = $(this).text().replace(/ (\w+)$/, ' $1');
$(this).html(h2Text);
});
});
</script>
<style type="text/css">
.articleByline {
color:#000000;
font-size:9pt;
font-family:Helvetica;
}
.articleCorrection {
color:#000000;
font-size:12pt;
font-family:Palatino Linotype;
}
.articleDate {
color:#000000;
font-size:8pt;
font-family:Helvetica;
}
.articleHeadline, .articleHeadline h1 {
font-weight:normal;
color:#000000;
font-size:24pt;
font-family:Helvetica;
display:inline;
}
.articleImageLabel {
color:#000000;
font-size:8pt;
font-family:Helvetica;
}
.articleKicker, .articleKicker h2 {
font-weight:normal;
color:#000000;
font-size:16pt;
font-family:Helvetica;
display:inline;
}
.articleNotes {
color:#000000;
font-size:12pt;
font-family:Palatino Linotype;
}
.articleRelatedHeadline {
color:#000000;
font-size:14pt;
font-family:Helvetica;
}
.articleRelatedLink {
color:#000000;
font-size:12pt;
font-family:Helvetica;
}
.articleText, .articleText p, .articleText a, .articleText li, .articleText b {
color:#000000;
font-size:12pt;
font-family:Palatino Linotype;
}
.leadp, .leadp h2 {
color:#000000;
font-size:12pt;
font-family:Palatino Linotype;
font-weight:bold;
display:inline;
}
hr {
margin-left:0px;
margin-right:0px;
}
#divCopyTextButton {
background-color:White;
cursor:pointer;
height:15px;
width:100px;
}
#divCopyTextButton.hover {
background-color:#EEEEEE;
}
#divCopyTextButton.hover {
background-color:#AAAAAA;
}
#txtCopyTxt {
border:none 0px transparent;
color:White;
display:block;
height:1px;
overflow:hidden;
position:absolute;
width:1px;
z-index:-10;
}
</style>
<script src="/includes/js/articleText.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
//$.fx.speeds._default = 1000;
$(function () {
$("#dialog").dialog({
autoOpen: false,
zIndex: 11000,
resizable: false,
height: 330,
width: 500
});
$('a[id$="lnkBookmark"]').click(function () {
$("#dialog").dialog("open");
$("#dialog").attr("style", "visibility:visible");
$('#dialog').parent().appendTo($("form:first"));
$("iframe").hide();
$("object").hide();
return false;
});
$('#dialog').bind('dialogclose', function (event) {
$("iframe").show();
$("object").show();
});
});
</script>
<div style="vertical-align:middle;">
<table border="0" cellpadding="0" cellspacing="0" align="left">
<tr>
<td valign="middle" style="vertical-align:middle;"><a id="ctl00_body1_ArticleControl_Toolbar1_lnkPrintIcon" href="/site/printerfriendlystory.aspx?articleid=20111118_61_A16_Opposi344152"><img src="/images/icons/print.jpg" border="0" alt="Print" title="Print" /></a></td>
<td valign="middle" style="vertical-align:middle;"><a id="ctl00_body1_ArticleControl_Toolbar1_lnkEmailIcon" href="/site/emailarticle.aspx?articleid=20111118_61_A16_Opposi344152"><img src="/images/icons/email.jpg" border="0" alt="Email" title="Email" style="padding:0px 4px 0px 6px;" /></a></td>
<td valign="middle" style="vertical-align:middle;"><a href="#" onclick="javascript:window.open('/site/sharer.aspx?IsTwitter=1&headline=Plan to restrict public-records data draws mounting opposition&articleid=20111118_61_A16_Opposi344152', 'TwitterWindow', 'resizable=1,width=600,height=350');return false;"><img src="/images/icons/twitter.jpg" border="0" alt="Twitter" title="Twitter" /></a></td>
<td valign="middle" style="vertical-align:middle;"><a href="#" onclick="javascript:window.open('/site/sharer.aspx?IsFacebook=1&headline=Plan to restrict public-records data draws mounting opposition&articleid=20111118_61_A16_Opposi344152', 'FacebookWindow', 'resizable=1,width=600,height=400,toolbar=false');return false;"><img src="/images/icons/facebook.jpg" border="0" alt="Facebook" title="Facebook" /></a></td>
<td valign="middle" style="vertical-align:middle;"></td>
</tr>
</table>
</div>
<div style="clear:both;"></div>
<div id="dialog" style="display:none;" title="Create new bookmark">
<table>
<tr>
<td colspan="2">
Your bookmark will appear on your Profile page. Please give it a title,<br />
and short description so that visitors to your page will understand where<br />
the bookmark leads.
<br /><br />
</td>
</tr>
<tr>
<td valign="middle">
<span id="ctl00_body1_ArticleControl_Toolbar1_lblTitle">Bookmark Title : </span>
</td>
<td valign="middle">
<input name="ctl00$body1$ArticleControl$Toolbar1$txtTitle" type="text" id="ctl00_body1_ArticleControl_Toolbar1_txtTitle" style="width:300px;" />
</td>
</tr>
<tr><td colspan="2"> </td></tr>
<tr>
<td valign="top">
<span id="ctl00_body1_ArticleControl_Toolbar1_lblText">Bookmark Text : </span>
</td>
<td valign="top">
<textarea name="ctl00$body1$ArticleControl$Toolbar1$txtText" rows="2" cols="20" id="ctl00_body1_ArticleControl_Toolbar1_txtText" style="height:100px;width:300px;"></textarea>
</td>
</tr>
<tr><td colspan="2"> </td></tr>
<tr>
<td colspan="2">
<span id="ctl00_body1_ArticleControl_Toolbar1_bookmarkErrorLbl"></span>
<br /><br />
</td>
</tr>
</table>
<input type="submit" name="ctl00$body1$ArticleControl$Toolbar1$butSave" value="Save" id="ctl00_body1_ArticleControl_Toolbar1_butSave" />
</div>
<div style="height:5px;"></div>
<div id="ctl00_body1_ArticleControl_divArticleText" style="display:block;">
<div id="ctl00_body1_ArticleControl_divAPNewsItem" class="hnews hentry item">
<span id="ctl00_body1_ArticleControl_lblHeadline" class="articleHeadline"><h1>Plan to restrict public-records data draws mounting opposition</h1></span>
<div style="clear:both;"></div>
<span id="ctl00_body1_ArticleControl_brBylineTop"><div style="height:10px;"></div></span>
<span id="ctl00_body1_ArticleControl_lblByline1" class="articleByline"><a href="/site/authors.aspx?a=WORLD'S-EDITORIAL-WRITERS" class="articleByline">By<span class="author vcard"><span class="fn" > World's Editorial Writers</span></span></a></span>
<span id="ctl00_body1_ArticleControl_brBylinePubDate"><br /></span>
<span id="ctl00_body1_ArticleControl_lblPubDate" class="articleDate">Published: <span class="published" title="11/18/2011 8:27:07 AM"> 11/18/2011 2:27 AM</span></span>
<span id="ctl00_body1_ArticleControl_brBylineModDate"><br /></span>
<span id="ctl00_body1_ArticleControl_lblModDate" class="articleDate">Last Modified: <span class="updated" title="2011-11-18T04:06:42.170Z"> 11/18/2011 4:06 AM<br /></span></span>
<span id="ctl00_body1_ArticleControl_brCorrection"><br /></span>
<span id="ctl00_body1_ArticleControl_lblCorrection" class="articleCorrection"></span>
<span id="ctl00_body1_ArticleControl_lblNotes" class="articleNotes"></span>
<div id="ctl00_body1_ArticleControl_divAPArticle" Class="entry-content">
<span id="ctl00_body1_ArticleControl_lblArticleText" class="articleText"><span class="leadp"><h2>Opposition to a proposal to remove certain personal data from court records is mounting and with good reason. Or good reasons, we should say.</h2></span>
<br><br>
The Oklahoma Supreme Court has proposed what's known as Rule 31, which would lead to the removal of such information as dates of birth and addresses from court records. The court has sought public comment on the proposal, and it sure got an earful.
<br><br>
We in the news business have long opposed the move because it would make it more difficult for reporters and editors to verify identities and uncover background information on people in the news.
<br><br>
But now, members of law enforcement, district attorneys' offices and the business community have come out against the proposal, for varying reasons.
<br><br>
Oklahoma Attorney General Scott Pruitt wrote the court, saying his office is concerned "about our ability as a law enforcement agency to correctly identify a suspect prior to arrest or a defendant in the courtroom or a proper prior conviction with only partial data available."
<br><br>
The staff in the District 12 district attorneys office, which represents Rogers, Craig and Mayes counties, also spoke up.
<br><br>
District 12 District Attorney Janice Steidley called the proposed rules "an injustice to criminal prosecution."
<br><br>
Assistant District Attorney Donald Palik said that redacting personal information from criminal records would make it difficult or impossible for prosecutors to prove to a jury that a person who was convicted of a prior offense is the same person who is on trial.
<br><br>
The Oklahoma Sheriffs' Association Board of Directors also opposes the proposal, arguing in its letter that the information now available assures law officers "they are locating, arresting and detaining the proper person."
<br><br>
The Greater Oklahoma City Chamber wrote that the proposed rule "would be detrimental to the numerous businesses which both provide as a product and utilize during the hiring process detailed court records to prevent the employment of convicted felons."
<br><br>
Other responses noted that identity theft arising from personal information in court records has not proven to be a big problem.
<br><br>
And, another complaint was that restricting such personal information would lead to higher fees for people needing to conduct investigations. An official with a background screening company said the rule could even result in more discrimination against minorities if employers cannot obtain the information they need on an applicant's background.
<br><br>
Does the court need any more reasons to jettison this proposed rule? We think not.
<!-- SUBHEAD:
Records change plan opposed
editorials
--><img src="http://analytics.apnewsregistry.com/analytics/v2/image.svc/tulsaworld/CAI/20111118_61_A16_Opposi344152/CVI/v2/RWS/tulsaworld.com/MAI/20111118_61_A16_Opposi344152/E/prod/AT/A/PC/basic" alt="" width="1" height="1" style="display:none" /> </span>
</div>
<span id="ctl00_body1_ArticleControl_lblPrintHeadline"><br><br><b>Original Print Headline: More reasons</b><br><br></span>
<div style="text-align:center;">
<span id="ctl00_body1_ArticleControl_lblByline2" class="articleByline"><a href="/site/authors.aspx?a=WORLD'S-EDITORIAL-WRITERS" class="articleByline">By<span class="author vcard"><span class="fn" > World's Editorial Writers</span></span></a></span>
</div>
<br /><a rel="item-license" href="#license-D8506D28-3EC3-4D2C-9C01-000327B93C10" id="license-D8506D28-3EC3-4D2C-9C01-000327B93C10">Copyright 2011 World Publishing Co. All rights reserved. This material may not be published, broadcast, rewritten or redistributed.</a><br />
</div>
</div>
<div id="ctl00_body1_ArticleControl_divRelatedStories" style="margin-top:20px;">
<hr id="ctl00_body1_ArticleControl_hrRelatedStoriesHeader" size="1" class="articleRelatedHR"></hr>
<span id="ctl00_body1_ArticleControl_lblRelatedStoriesHeadline" class="articleRelatedHeadline">Other Tulsa World Editorials Stories</span>
<table id="ctl00_body1_ArticleControl_lstRelatedStories" cellspacing="0" border="0" style="width:100%;border-collapse:collapse;">
<tr>
<td>
<div style="padding:5px 0px 5px 0px;text-align:left;">
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="width:100%;">
<tr>
<td style="width:20px;"> </td>
<td style="width:5px;" valign="top"><img src="/images/icons/bullet.jpg" border="0" style="margin-top:7px;" /></td>
<td style="width:7px;"> </td>
<td><a id="ctl00_body1_ArticleControl_lstRelatedStories_ctl00_lnkHeadline" class="articleRelatedLink" href="/site/articlepath.aspx?subjectid=61&articleid=20111119_61_A24_Itsnot421879">Editorial: Another tragic blow to OSU</a></td>
</tr>
</table>
</div>
</td>
</tr><tr>
<td>
<div style="padding:5px 0px 5px 0px;text-align:left;">
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="width:100%;">
<tr>
<td style="width:20px;"> </td>
<td style="width:5px;" valign="top"><img src="/images/icons/bullet.jpg" border="0" style="margin-top:7px;" /></td>
<td style="width:7px;"> </td>
<td><a id="ctl00_body1_ArticleControl_lstRelatedStories_ctl01_lnkHeadline" class="articleRelatedLink" href="/site/articlepath.aspx?subjectid=61&articleid=20111119_61_A24_CUTLIN861954">Traffic enforcement to be beefed up over holiday.</a></td>
</tr>
</table>
</div>
</td>
</tr><tr>
<td>
<div style="padding:5px 0px 5px 0px;text-align:left;">
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="width:100%;">
<tr>
<td style="width:20px;"> </td>
<td style="width:5px;" valign="top"><img src="/images/icons/bullet.jpg" border="0" style="margin-top:7px;" /></td>
<td style="width:7px;"> </td>
<td><a id="ctl00_body1_ArticleControl_lstRelatedStories_ctl02_lnkHeadline" class="articleRelatedLink" href="/site/articlepath.aspx?subjectid=61&articleid=20111118_61_A16_StateS917909">Would the state do better operating under-performilng schools?</a></td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<textarea id="txtCopyTxt"></textarea>
<br /><br />
<style type="text/css">
.comment {
color:#000000;
font-size:9pt;
font-family:Arial, Verdana;
}
.commentBackground {
background-color:#FFFFFF;
}
.commentBackgroundAlternate {
background-color:#E8E8E8;
}
.commentBackgroundBar {
background-color:#0f2a59;
padding:2px;
}
.commentBackgroundBarBottom {
background-color:#0f2a59;
}
.commentBackgroundUnapproved {
background-color:#F7F700;
}
.commentBar {
font-weight:bold;
color:#FFFFFF;
font-size:10pt;
font-family:Arial,Verdana;
}
.commentTitle, commentTitle a {
font-weight:bold;
color:#0f2a59;
font-size:12pt;
font-family:Arial,Verdana;
}
.commentLink, commentLink a {
color:#000000;
font-size:8pt;
font-family:Arial,Verdana;
vertical-align:bottom;
}
.commentAdminLink {
font-size:8pt;
color:#736F6E;
font-family:Arial,Verdana;
padding-right:5px;
}
.commentAdminLink a {
font-size:8pt;
color:#736F6E;
font-family:Arial,Verdana;
text-decoration:underline;
}
.commentAdminLink a:hover {
color:#3c68e1;
}
.commentError, .commentError li {
font-weight:bold;
color:Red;
font-family:Arial, Verdana;
padding-bottom:3px;
}
.commentError ul {
padding-left:5px;
margin-left:10px;
}
.commentHR {
color:#0f2a59;
background-color:#0f2a59;
border:0px solid #0f2a59;
}
.commentAvatarImage {
padding:5px 0px 5px 0px;
margin:5px;
text-align:left;
vertical-align:middle;
}
</style>
<script language="javascript" type="text/javascript">
function buttonDisable() {
if (Page_ClientValidate()) {
document.getElementById('divSubmit').style.display = 'none';
document.getElementById('divProcess').style.display = 'inline';
}
}
function htmlEncode() {
if (Page_ClientValidate()) {
//alert('hiya');
FindControl('txtComment', 'object').value = clearText(FindControl('txtComment', 'object').value);
}
}
function clearText(strTemp) {
strTemp = strTemp.replace(/</g, "<");
strTemp = strTemp.replace(/>/g, ">");
return strTemp;
}
</script>
<input type="hidden" name="ctl00$body1$CommentControl1$HFStrCommentDestinationURL" id="ctl00_body1_CommentControl1_HFStrCommentDestinationURL" value="20111118_61_A16_Opposi344152" />
<input type="hidden" name="ctl00$body1$CommentControl1$HFBooShowAll" id="ctl00_body1_CommentControl1_HFBooShowAll" />
<input type="hidden" name="ctl00$body1$CommentControl1$HFBooIsArticle" id="ctl00_body1_CommentControl1_HFBooIsArticle" value="True" />
<input type="hidden" name="ctl00$body1$CommentControl1$HFBooIsBlog" id="ctl00_body1_CommentControl1_HFBooIsBlog" />
<input type="hidden" name="ctl00$body1$CommentControl1$HFBooDelayedLoad" id="ctl00_body1_CommentControl1_HFBooDelayedLoad" />
<input type="hidden" name="ctl00$body1$CommentControl1$HFBooUseRedirect" id="ctl00_body1_CommentControl1_HFBooUseRedirect" />
<table id="ctl00_body1_CommentControl1_tblTitle" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" width="50%">
<span id="ctl00_body1_CommentControl1_lblTitle" class="commentTitle">Reader Comments</span>
</td>
<td align="right" valign="bottom" width="50%" style="text-align:right;">
<span id="ctl00_body1_CommentControl1_lblTopTotal" class="commentTitle">3 Total</span>
</td>
</tr>
</table>
<hr id="ctl00_body1_CommentControl1_hrTitle" size="1" class="commentHR"></hr>
<table id="ctl00_body1_CommentControl1_tblLinks" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" width="33%" class="commentLink">
<div id="ctl00_body1_CommentControl1_divSort">
<span id="ctl00_body1_CommentControl1_spnShow" class="commentLink" style="font-size:8pt;color:#000000;font-family:Arial,Verdana;vertical-align:bottom;">Show: </span>
<a id="ctl00_body1_CommentControl1_lnkSort" class="commentLink" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body1$CommentControl1$lnkSort", "", true, "", "", false, true))" style="font-size:8pt;color:#000000;font-family:Arial,Verdana;vertical-align:bottom;">Newest First</a>
</div>
</td>
<td width="34%" style="text-align:center;vertical-align:bottom;" class="commentLink">
</td>
<td align="right" width="33%" class="commentLink" style="text-align:right;">
<a id="ctl00_body1_CommentControl1_lnkReport" class="commentLink" href="/profile/commentpolicy.aspx">Learn About Our Comment Policy</a>
</td>
</tr>
</table>
<div style="text-align:center;padding-top:5px;padding-bottom:12px;width:100%;"><script type="text/javascript">yld_mgr.place_ad_here("CommentsTop");</script></div>
<a name="comments"></a>
<!--<div id="ctl00_body1_CommentControl1_lstComment_divCommentBar" class="commentBackgroundBar">
<span id="ctl00_body1_CommentControl1_lstComment_lblCommentBar" class="commentBar" style="font-weight:bold;color:#FFFFFF;font-size:10pt;font-family:Arial,Verdana;">Comments</span>
</div>-->
<table id="ctl00_body1_CommentControl1_lstComment_ctrl0_tblOdd" border="0" cellpadding="0" cellspacing="0" width="100%" class="commentBackgroundAlternate">
<tr>
<td id="ctl00_body1_CommentControl1_lstComment_ctrl0_tdAvatar" valign="top">
<a name="2790048"></a>
<a href="/profile/profile.aspx?id=162465">
<img id="ctl00_body1_CommentControl1_lstComment_ctrl0_imgAvatar" class="commentAvatarImage" src="/images/avatars/user162465423201012010176.jpg" style="height:50px;width:50px;border-width:0px;" /></a>
</td>
<td id="ctl00_body1_CommentControl1_lstComment_ctrl0_tdComment" width="100%">
<div style="padding-top:5px;padding-bottom:2px;">
<div id="ctl00_body1_CommentControl1_lstComment_ctrl0_divCommentAdminLinks" class="commentAdminLink" style="float:right;"><a href="#" style="font-size:8pt;color:#736F6E;font-family:Arial,Verdana;text-decoration:underline;" onclick="javascript:window.open('/profile/popups/reportcomment.aspx?CommentID=2790048&CommentNoun=comment&IsArticle=True&DestinationID=20111118_61_A16_Opposi344152', 'Report', 'width=550, height=630');return false;">Report Comment</a></div>
<a id="ctl00_body1_CommentControl1_lstComment_ctrl0_lnkScreenName" class="comment" href="/profile/profile.aspx?id=162465" style="font-weight:bold;">Richard Hart</a>
<span id="ctl00_body1_CommentControl1_lstComment_ctrl0_lblCommentDate" class="comment">(1 day ago)</span>
</div>
<div class="comment" style="padding:2px 0px 5px 8px;">
Simply ghastly. I side with the World's Editors on this one. <br /><br />Look, if there's a problem with identity theft, then divert some of the trillions of dollars wasted on the war on drugs and fund a branch of the FBI that would concern itself with identity theft crimes. Deal with the bad guys; don't invite a looming data catastrophe. <br /><br />Whose flippin' idea was this anyway?
</div>
</td>
</tr>
</table>
<table id="ctl00_body1_CommentControl1_lstComment_ctrl1_tblEven" border="0" cellpadding="0" cellspacing="0" width="100%" class="commentBackground">
<tr>
<td id="ctl00_body1_CommentControl1_lstComment_ctrl1_tdAvatar" valign="top">
<a name="2790111"></a>
<a href="/profile/profile.aspx?id=66141">
<img id="ctl00_body1_CommentControl1_lstComment_ctrl1_imgAvatar" class="commentAvatarImage" src="../images/avatars/user66141103120081920085331.jpg" style="height:50px;width:50px;border-width:0px;" /></a>
</td>
<td id="ctl00_body1_CommentControl1_lstComment_ctrl1_tdComment" width="100%">
<div style="padding-top:5px;padding-bottom:2px;">