actionpack 3.0.6 → 3.0.7.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

Files changed (125) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/abstract_controller.rbc +541 -0
  3. data/lib/abstract_controller/asset_paths.rbc +293 -0
  4. data/lib/abstract_controller/base.rbc +2155 -0
  5. data/lib/abstract_controller/callbacks.rb +1 -1
  6. data/lib/abstract_controller/callbacks.rbc +1562 -0
  7. data/lib/abstract_controller/collector.rbc +686 -0
  8. data/lib/abstract_controller/helpers.rbc +2220 -0
  9. data/lib/abstract_controller/layouts.rbc +2981 -0
  10. data/lib/abstract_controller/logger.rbc +333 -0
  11. data/lib/abstract_controller/rendering.rbc +3072 -0
  12. data/lib/abstract_controller/translation.rbc +383 -0
  13. data/lib/abstract_controller/view_paths.rbc +1292 -0
  14. data/lib/action_controller.rbc +1199 -0
  15. data/lib/action_controller/base.rbc +996 -0
  16. data/lib/action_controller/caching.rbc +1263 -0
  17. data/lib/action_controller/caching/actions.rbc +2339 -0
  18. data/lib/action_controller/caching/fragments.rbc +1464 -0
  19. data/lib/action_controller/caching/pages.rbc +2579 -0
  20. data/lib/action_controller/caching/sweeping.rbc +1743 -0
  21. data/lib/action_controller/deprecated.rbc +136 -0
  22. data/lib/action_controller/deprecated/base.rbc +3156 -0
  23. data/lib/action_controller/log_subscriber.rbc +1424 -0
  24. data/lib/action_controller/metal.rbc +3137 -0
  25. data/lib/action_controller/metal/compatibility.rbc +1570 -0
  26. data/lib/action_controller/metal/conditional_get.rbc +963 -0
  27. data/lib/action_controller/metal/cookies.rbc +381 -0
  28. data/lib/action_controller/metal/exceptions.rbc +856 -0
  29. data/lib/action_controller/metal/flash.rbc +632 -0
  30. data/lib/action_controller/metal/head.rbc +744 -0
  31. data/lib/action_controller/metal/helpers.rbc +1409 -0
  32. data/lib/action_controller/metal/hide_actions.rbc +1192 -0
  33. data/lib/action_controller/metal/http_authentication.rbc +6009 -0
  34. data/lib/action_controller/metal/implicit_render.rb +10 -8
  35. data/lib/action_controller/metal/implicit_render.rbc +495 -0
  36. data/lib/action_controller/metal/instrumentation.rbc +1916 -0
  37. data/lib/action_controller/metal/mime_responds.rbc +2827 -0
  38. data/lib/action_controller/metal/rack_delegation.rbc +683 -0
  39. data/lib/action_controller/metal/redirecting.rbc +1306 -0
  40. data/lib/action_controller/metal/renderers.rbc +2378 -0
  41. data/lib/action_controller/metal/rendering.rbc +1197 -0
  42. data/lib/action_controller/metal/request_forgery_protection.rbc +1272 -0
  43. data/lib/action_controller/metal/rescue.rbc +548 -0
  44. data/lib/action_controller/metal/responder.rbc +2566 -0
  45. data/lib/action_controller/metal/session_management.rbc +225 -0
  46. data/lib/action_controller/metal/streaming.rbc +1586 -0
  47. data/lib/action_controller/metal/url_for.rbc +710 -0
  48. data/lib/action_controller/railtie.rbc +1940 -0
  49. data/lib/action_controller/record_identifier.rbc +777 -0
  50. data/lib/action_controller/vendor/html-scanner.rbc +480 -0
  51. data/lib/action_dispatch.rbc +1370 -0
  52. data/lib/action_dispatch/http/cache.rbc +2914 -0
  53. data/lib/action_dispatch/http/filter_parameters.rbc +1291 -0
  54. data/lib/action_dispatch/http/headers.rbc +706 -0
  55. data/lib/action_dispatch/http/mime_negotiation.rbc +1444 -0
  56. data/lib/action_dispatch/http/mime_type.rbc +4946 -0
  57. data/lib/action_dispatch/http/mime_types.rbc +520 -0
  58. data/lib/action_dispatch/http/parameters.rbc +1497 -0
  59. data/lib/action_dispatch/http/request.rbc +4880 -0
  60. data/lib/action_dispatch/http/response.rbc +3276 -0
  61. data/lib/action_dispatch/http/upload.rbc +1067 -0
  62. data/lib/action_dispatch/http/url.rbc +2115 -0
  63. data/lib/action_dispatch/middleware/best_standards_support.rbc +502 -0
  64. data/lib/action_dispatch/middleware/callbacks.rbc +972 -0
  65. data/lib/action_dispatch/middleware/cookies.rbc +4350 -0
  66. data/lib/action_dispatch/middleware/flash.rbc +3071 -0
  67. data/lib/action_dispatch/middleware/head.rbc +461 -0
  68. data/lib/action_dispatch/middleware/params_parser.rbc +1773 -0
  69. data/lib/action_dispatch/middleware/remote_ip.rbc +1400 -0
  70. data/lib/action_dispatch/middleware/session/abstract_store.rbc +5227 -0
  71. data/lib/action_dispatch/middleware/session/cookie_store.rbc +1345 -0
  72. data/lib/action_dispatch/middleware/show_exceptions.rbc +3627 -0
  73. data/lib/action_dispatch/middleware/stack.rbc +2159 -0
  74. data/lib/action_dispatch/middleware/static.rbc +987 -0
  75. data/lib/action_dispatch/railtie.rbc +383 -0
  76. data/lib/action_dispatch/routing.rbc +520 -0
  77. data/lib/action_dispatch/routing/deprecated_mapper.rbc +13190 -0
  78. data/lib/action_dispatch/routing/mapper.rbc +22006 -0
  79. data/lib/action_dispatch/routing/polymorphic_routes.rbc +2083 -0
  80. data/lib/action_dispatch/routing/route.rbc +1797 -0
  81. data/lib/action_dispatch/routing/route_set.rbc +11847 -0
  82. data/lib/action_dispatch/routing/url_for.rbc +735 -0
  83. data/lib/action_pack.rbc +53 -0
  84. data/lib/action_pack/version.rb +2 -2
  85. data/lib/action_pack/version.rbc +295 -0
  86. data/lib/action_view.rbc +864 -0
  87. data/lib/action_view/base.rbc +2257 -0
  88. data/lib/action_view/context.rbc +327 -0
  89. data/lib/action_view/helpers.rbc +1002 -0
  90. data/lib/action_view/helpers/active_model_helper.rbc +1680 -0
  91. data/lib/action_view/helpers/asset_tag_helper.rbc +8922 -0
  92. data/lib/action_view/helpers/atom_feed_helper.rbc +2872 -0
  93. data/lib/action_view/helpers/cache_helper.rbc +660 -0
  94. data/lib/action_view/helpers/capture_helper.rbc +1242 -0
  95. data/lib/action_view/helpers/csrf_helper.rbc +411 -0
  96. data/lib/action_view/helpers/date_helper.rbc +12404 -0
  97. data/lib/action_view/helpers/debug_helper.rbc +499 -0
  98. data/lib/action_view/helpers/form_helper.rbc +14903 -0
  99. data/lib/action_view/helpers/form_options_helper.rbc +6367 -0
  100. data/lib/action_view/helpers/form_tag_helper.rbc +5961 -0
  101. data/lib/action_view/helpers/javascript_helper.rbc +1611 -0
  102. data/lib/action_view/helpers/number_helper.rbc +6601 -0
  103. data/lib/action_view/helpers/prototype_helper.rbc +11921 -0
  104. data/lib/action_view/helpers/raw_output_helper.rbc +335 -0
  105. data/lib/action_view/helpers/record_tag_helper.rbc +684 -0
  106. data/lib/action_view/helpers/sanitize_helper.rbc +2571 -0
  107. data/lib/action_view/helpers/scriptaculous_helper.rbc +3434 -0
  108. data/lib/action_view/helpers/tag_helper.rbc +1856 -0
  109. data/lib/action_view/helpers/text_helper.rbc +5861 -0
  110. data/lib/action_view/helpers/translation_helper.rbc +1263 -0
  111. data/lib/action_view/helpers/url_helper.rbc +5487 -0
  112. data/lib/action_view/log_subscriber.rbc +732 -0
  113. data/lib/action_view/paths.rbc +1111 -0
  114. data/lib/action_view/railtie.rbc +1043 -0
  115. data/lib/action_view/render/layouts.rbc +943 -0
  116. data/lib/action_view/render/partials.rbc +3615 -0
  117. data/lib/action_view/render/rendering.rbc +1516 -0
  118. data/lib/action_view/template.rbc +3357 -0
  119. data/lib/action_view/template/handler.rbc +1112 -0
  120. data/lib/action_view/template/handlers.rbc +1177 -0
  121. data/lib/action_view/template/handlers/builder.rbc +458 -0
  122. data/lib/action_view/template/handlers/erb.rbc +2483 -0
  123. data/lib/action_view/template/handlers/rjs.rbc +490 -0
  124. data/lib/action_view/template/resolver.rbc +3587 -0
  125. metadata +144 -16
@@ -0,0 +1,2571 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 55
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 99
41
+ 7
42
+ 4
43
+ 65
44
+ 49
45
+ 5
46
+ 2
47
+ 13
48
+ 99
49
+ 12
50
+ 7
51
+ 6
52
+ 12
53
+ 7
54
+ 7
55
+ 12
56
+ 65
57
+ 12
58
+ 49
59
+ 8
60
+ 4
61
+ 15
62
+ 49
63
+ 6
64
+ 0
65
+ 15
66
+ 2
67
+ 11
68
+ I
69
+ 6
70
+ I
71
+ 0
72
+ I
73
+ 0
74
+ I
75
+ 0
76
+ n
77
+ p
78
+ 9
79
+ s
80
+ 34
81
+ active_support/core_ext/object/try
82
+ x
83
+ 7
84
+ require
85
+ s
86
+ 37
87
+ action_controller/vendor/html-scanner
88
+ s
89
+ 30
90
+ action_view/helpers/tag_helper
91
+ x
92
+ 10
93
+ ActionView
94
+ x
95
+ 11
96
+ open_module
97
+ x
98
+ 15
99
+ __module_init__
100
+ M
101
+ 1
102
+ n
103
+ n
104
+ x
105
+ 10
106
+ ActionView
107
+ i
108
+ 28
109
+ 5
110
+ 66
111
+ 99
112
+ 7
113
+ 0
114
+ 65
115
+ 49
116
+ 1
117
+ 2
118
+ 13
119
+ 99
120
+ 12
121
+ 7
122
+ 2
123
+ 12
124
+ 7
125
+ 3
126
+ 12
127
+ 65
128
+ 12
129
+ 49
130
+ 4
131
+ 4
132
+ 15
133
+ 49
134
+ 2
135
+ 0
136
+ 11
137
+ I
138
+ 6
139
+ I
140
+ 0
141
+ I
142
+ 0
143
+ I
144
+ 0
145
+ n
146
+ p
147
+ 5
148
+ x
149
+ 7
150
+ Helpers
151
+ x
152
+ 11
153
+ open_module
154
+ x
155
+ 15
156
+ __module_init__
157
+ M
158
+ 1
159
+ n
160
+ n
161
+ x
162
+ 7
163
+ Helpers
164
+ i
165
+ 28
166
+ 5
167
+ 66
168
+ 99
169
+ 7
170
+ 0
171
+ 65
172
+ 49
173
+ 1
174
+ 2
175
+ 13
176
+ 99
177
+ 12
178
+ 7
179
+ 2
180
+ 12
181
+ 7
182
+ 3
183
+ 12
184
+ 65
185
+ 12
186
+ 49
187
+ 4
188
+ 4
189
+ 15
190
+ 49
191
+ 2
192
+ 0
193
+ 11
194
+ I
195
+ 6
196
+ I
197
+ 0
198
+ I
199
+ 0
200
+ I
201
+ 0
202
+ n
203
+ p
204
+ 5
205
+ x
206
+ 14
207
+ SanitizeHelper
208
+ x
209
+ 11
210
+ open_module
211
+ x
212
+ 15
213
+ __module_init__
214
+ M
215
+ 1
216
+ n
217
+ n
218
+ x
219
+ 14
220
+ SanitizeHelper
221
+ i
222
+ 95
223
+ 5
224
+ 66
225
+ 5
226
+ 45
227
+ 0
228
+ 1
229
+ 43
230
+ 2
231
+ 47
232
+ 49
233
+ 3
234
+ 1
235
+ 15
236
+ 99
237
+ 7
238
+ 4
239
+ 7
240
+ 5
241
+ 65
242
+ 67
243
+ 49
244
+ 6
245
+ 0
246
+ 49
247
+ 7
248
+ 4
249
+ 15
250
+ 99
251
+ 7
252
+ 8
253
+ 7
254
+ 9
255
+ 65
256
+ 67
257
+ 49
258
+ 6
259
+ 0
260
+ 49
261
+ 7
262
+ 4
263
+ 15
264
+ 99
265
+ 7
266
+ 10
267
+ 7
268
+ 11
269
+ 65
270
+ 67
271
+ 49
272
+ 6
273
+ 0
274
+ 49
275
+ 7
276
+ 4
277
+ 15
278
+ 99
279
+ 7
280
+ 12
281
+ 7
282
+ 13
283
+ 65
284
+ 67
285
+ 49
286
+ 6
287
+ 0
288
+ 49
289
+ 7
290
+ 4
291
+ 15
292
+ 99
293
+ 7
294
+ 14
295
+ 65
296
+ 49
297
+ 15
298
+ 2
299
+ 13
300
+ 99
301
+ 12
302
+ 7
303
+ 16
304
+ 12
305
+ 7
306
+ 17
307
+ 12
308
+ 65
309
+ 12
310
+ 49
311
+ 18
312
+ 4
313
+ 15
314
+ 49
315
+ 16
316
+ 0
317
+ 11
318
+ I
319
+ 6
320
+ I
321
+ 0
322
+ I
323
+ 0
324
+ I
325
+ 0
326
+ n
327
+ p
328
+ 19
329
+ x
330
+ 13
331
+ ActiveSupport
332
+ n
333
+ x
334
+ 7
335
+ Concern
336
+ x
337
+ 6
338
+ extend
339
+ x
340
+ 8
341
+ sanitize
342
+ M
343
+ 1
344
+ n
345
+ n
346
+ x
347
+ 8
348
+ sanitize
349
+ i
350
+ 34
351
+ 23
352
+ 1
353
+ 10
354
+ 14
355
+ 44
356
+ 43
357
+ 0
358
+ 78
359
+ 49
360
+ 1
361
+ 1
362
+ 19
363
+ 1
364
+ 15
365
+ 5
366
+ 49
367
+ 2
368
+ 0
369
+ 49
370
+ 3
371
+ 0
372
+ 20
373
+ 0
374
+ 20
375
+ 1
376
+ 49
377
+ 4
378
+ 2
379
+ 7
380
+ 5
381
+ 49
382
+ 6
383
+ 1
384
+ 11
385
+ I
386
+ 5
387
+ I
388
+ 2
389
+ I
390
+ 1
391
+ I
392
+ 2
393
+ n
394
+ p
395
+ 7
396
+ x
397
+ 4
398
+ Hash
399
+ x
400
+ 16
401
+ new_from_literal
402
+ x
403
+ 5
404
+ class
405
+ x
406
+ 20
407
+ white_list_sanitizer
408
+ x
409
+ 8
410
+ sanitize
411
+ x
412
+ 9
413
+ html_safe
414
+ x
415
+ 3
416
+ try
417
+ p
418
+ 5
419
+ I
420
+ -1
421
+ I
422
+ 3c
423
+ I
424
+ e
425
+ I
426
+ 3d
427
+ I
428
+ 22
429
+ x
430
+ 90
431
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
432
+ p
433
+ 2
434
+ x
435
+ 4
436
+ html
437
+ x
438
+ 7
439
+ options
440
+ x
441
+ 17
442
+ method_visibility
443
+ x
444
+ 15
445
+ add_defn_method
446
+ x
447
+ 12
448
+ sanitize_css
449
+ M
450
+ 1
451
+ n
452
+ n
453
+ x
454
+ 12
455
+ sanitize_css
456
+ i
457
+ 13
458
+ 5
459
+ 49
460
+ 0
461
+ 0
462
+ 49
463
+ 1
464
+ 0
465
+ 20
466
+ 0
467
+ 49
468
+ 2
469
+ 1
470
+ 11
471
+ I
472
+ 3
473
+ I
474
+ 1
475
+ I
476
+ 1
477
+ I
478
+ 1
479
+ n
480
+ p
481
+ 3
482
+ x
483
+ 5
484
+ class
485
+ x
486
+ 20
487
+ white_list_sanitizer
488
+ x
489
+ 12
490
+ sanitize_css
491
+ p
492
+ 5
493
+ I
494
+ -1
495
+ I
496
+ 41
497
+ I
498
+ 0
499
+ I
500
+ 42
501
+ I
502
+ d
503
+ x
504
+ 90
505
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
506
+ p
507
+ 1
508
+ x
509
+ 5
510
+ style
511
+ x
512
+ 10
513
+ strip_tags
514
+ M
515
+ 1
516
+ n
517
+ n
518
+ x
519
+ 10
520
+ strip_tags
521
+ i
522
+ 18
523
+ 5
524
+ 49
525
+ 0
526
+ 0
527
+ 49
528
+ 1
529
+ 0
530
+ 20
531
+ 0
532
+ 49
533
+ 2
534
+ 1
535
+ 7
536
+ 3
537
+ 49
538
+ 4
539
+ 1
540
+ 11
541
+ I
542
+ 3
543
+ I
544
+ 1
545
+ I
546
+ 1
547
+ I
548
+ 1
549
+ n
550
+ p
551
+ 5
552
+ x
553
+ 5
554
+ class
555
+ x
556
+ 14
557
+ full_sanitizer
558
+ x
559
+ 8
560
+ sanitize
561
+ x
562
+ 9
563
+ html_safe
564
+ x
565
+ 3
566
+ try
567
+ p
568
+ 5
569
+ I
570
+ -1
571
+ I
572
+ 53
573
+ I
574
+ 0
575
+ I
576
+ 54
577
+ I
578
+ 12
579
+ x
580
+ 90
581
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
582
+ p
583
+ 1
584
+ x
585
+ 4
586
+ html
587
+ x
588
+ 11
589
+ strip_links
590
+ M
591
+ 1
592
+ n
593
+ n
594
+ x
595
+ 11
596
+ strip_links
597
+ i
598
+ 13
599
+ 5
600
+ 49
601
+ 0
602
+ 0
603
+ 49
604
+ 1
605
+ 0
606
+ 20
607
+ 0
608
+ 49
609
+ 2
610
+ 1
611
+ 11
612
+ I
613
+ 3
614
+ I
615
+ 1
616
+ I
617
+ 1
618
+ I
619
+ 1
620
+ n
621
+ p
622
+ 3
623
+ x
624
+ 5
625
+ class
626
+ x
627
+ 14
628
+ link_sanitizer
629
+ x
630
+ 8
631
+ sanitize
632
+ p
633
+ 5
634
+ I
635
+ -1
636
+ I
637
+ 62
638
+ I
639
+ 0
640
+ I
641
+ 63
642
+ I
643
+ d
644
+ x
645
+ 90
646
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
647
+ p
648
+ 1
649
+ x
650
+ 4
651
+ html
652
+ x
653
+ 12
654
+ ClassMethods
655
+ x
656
+ 11
657
+ open_module
658
+ x
659
+ 15
660
+ __module_init__
661
+ M
662
+ 1
663
+ n
664
+ n
665
+ x
666
+ 12
667
+ ClassMethods
668
+ i
669
+ 308
670
+ 5
671
+ 66
672
+ 5
673
+ 7
674
+ 0
675
+ 7
676
+ 1
677
+ 7
678
+ 2
679
+ 47
680
+ 49
681
+ 3
682
+ 3
683
+ 15
684
+ 99
685
+ 7
686
+ 4
687
+ 7
688
+ 5
689
+ 65
690
+ 67
691
+ 49
692
+ 6
693
+ 0
694
+ 49
695
+ 7
696
+ 4
697
+ 15
698
+ 99
699
+ 7
700
+ 8
701
+ 7
702
+ 9
703
+ 65
704
+ 67
705
+ 49
706
+ 6
707
+ 0
708
+ 49
709
+ 7
710
+ 4
711
+ 15
712
+ 99
713
+ 7
714
+ 10
715
+ 7
716
+ 11
717
+ 65
718
+ 67
719
+ 49
720
+ 6
721
+ 0
722
+ 49
723
+ 7
724
+ 4
725
+ 15
726
+ 99
727
+ 7
728
+ 12
729
+ 7
730
+ 13
731
+ 65
732
+ 67
733
+ 49
734
+ 6
735
+ 0
736
+ 49
737
+ 7
738
+ 4
739
+ 15
740
+ 99
741
+ 7
742
+ 14
743
+ 7
744
+ 15
745
+ 65
746
+ 67
747
+ 49
748
+ 6
749
+ 0
750
+ 49
751
+ 7
752
+ 4
753
+ 15
754
+ 99
755
+ 7
756
+ 16
757
+ 7
758
+ 17
759
+ 65
760
+ 67
761
+ 49
762
+ 6
763
+ 0
764
+ 49
765
+ 7
766
+ 4
767
+ 15
768
+ 99
769
+ 7
770
+ 18
771
+ 7
772
+ 19
773
+ 65
774
+ 67
775
+ 49
776
+ 6
777
+ 0
778
+ 49
779
+ 7
780
+ 4
781
+ 15
782
+ 99
783
+ 7
784
+ 20
785
+ 7
786
+ 21
787
+ 65
788
+ 67
789
+ 49
790
+ 6
791
+ 0
792
+ 49
793
+ 7
794
+ 4
795
+ 15
796
+ 99
797
+ 7
798
+ 22
799
+ 7
800
+ 23
801
+ 65
802
+ 67
803
+ 49
804
+ 6
805
+ 0
806
+ 49
807
+ 7
808
+ 4
809
+ 15
810
+ 99
811
+ 7
812
+ 24
813
+ 7
814
+ 25
815
+ 65
816
+ 67
817
+ 49
818
+ 6
819
+ 0
820
+ 49
821
+ 7
822
+ 4
823
+ 15
824
+ 99
825
+ 7
826
+ 0
827
+ 7
828
+ 26
829
+ 65
830
+ 67
831
+ 49
832
+ 6
833
+ 0
834
+ 49
835
+ 7
836
+ 4
837
+ 15
838
+ 99
839
+ 7
840
+ 1
841
+ 7
842
+ 27
843
+ 65
844
+ 67
845
+ 49
846
+ 6
847
+ 0
848
+ 49
849
+ 7
850
+ 4
851
+ 15
852
+ 99
853
+ 7
854
+ 2
855
+ 7
856
+ 28
857
+ 65
858
+ 67
859
+ 49
860
+ 6
861
+ 0
862
+ 49
863
+ 7
864
+ 4
865
+ 15
866
+ 99
867
+ 7
868
+ 29
869
+ 7
870
+ 30
871
+ 65
872
+ 67
873
+ 49
874
+ 6
875
+ 0
876
+ 49
877
+ 7
878
+ 4
879
+ 15
880
+ 99
881
+ 7
882
+ 31
883
+ 7
884
+ 32
885
+ 65
886
+ 67
887
+ 49
888
+ 6
889
+ 0
890
+ 49
891
+ 7
892
+ 4
893
+ 15
894
+ 99
895
+ 7
896
+ 33
897
+ 7
898
+ 34
899
+ 65
900
+ 67
901
+ 49
902
+ 6
903
+ 0
904
+ 49
905
+ 7
906
+ 4
907
+ 15
908
+ 99
909
+ 7
910
+ 35
911
+ 7
912
+ 36
913
+ 65
914
+ 67
915
+ 49
916
+ 6
917
+ 0
918
+ 49
919
+ 7
920
+ 4
921
+ 15
922
+ 99
923
+ 7
924
+ 37
925
+ 7
926
+ 38
927
+ 65
928
+ 67
929
+ 49
930
+ 6
931
+ 0
932
+ 49
933
+ 7
934
+ 4
935
+ 15
936
+ 99
937
+ 7
938
+ 39
939
+ 7
940
+ 40
941
+ 65
942
+ 67
943
+ 49
944
+ 6
945
+ 0
946
+ 49
947
+ 7
948
+ 4
949
+ 15
950
+ 99
951
+ 7
952
+ 41
953
+ 7
954
+ 42
955
+ 65
956
+ 67
957
+ 49
958
+ 6
959
+ 0
960
+ 49
961
+ 7
962
+ 4
963
+ 15
964
+ 99
965
+ 7
966
+ 43
967
+ 7
968
+ 44
969
+ 65
970
+ 67
971
+ 49
972
+ 6
973
+ 0
974
+ 49
975
+ 7
976
+ 4
977
+ 11
978
+ I
979
+ 5
980
+ I
981
+ 0
982
+ I
983
+ 0
984
+ I
985
+ 0
986
+ n
987
+ p
988
+ 45
989
+ x
990
+ 14
991
+ full_sanitizer
992
+ x
993
+ 14
994
+ link_sanitizer
995
+ x
996
+ 20
997
+ white_list_sanitizer
998
+ x
999
+ 11
1000
+ attr_writer
1001
+ x
1002
+ 28
1003
+ sanitized_protocol_separator
1004
+ M
1005
+ 1
1006
+ n
1007
+ n
1008
+ x
1009
+ 28
1010
+ sanitized_protocol_separator
1011
+ i
1012
+ 7
1013
+ 5
1014
+ 48
1015
+ 0
1016
+ 49
1017
+ 1
1018
+ 0
1019
+ 11
1020
+ I
1021
+ 1
1022
+ I
1023
+ 0
1024
+ I
1025
+ 0
1026
+ I
1027
+ 0
1028
+ n
1029
+ p
1030
+ 2
1031
+ x
1032
+ 20
1033
+ white_list_sanitizer
1034
+ x
1035
+ 18
1036
+ protocol_separator
1037
+ p
1038
+ 5
1039
+ I
1040
+ -1
1041
+ I
1042
+ 69
1043
+ I
1044
+ 0
1045
+ I
1046
+ 6a
1047
+ I
1048
+ 7
1049
+ x
1050
+ 90
1051
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1052
+ p
1053
+ 0
1054
+ x
1055
+ 17
1056
+ method_visibility
1057
+ x
1058
+ 15
1059
+ add_defn_method
1060
+ x
1061
+ 24
1062
+ sanitized_uri_attributes
1063
+ M
1064
+ 1
1065
+ n
1066
+ n
1067
+ x
1068
+ 24
1069
+ sanitized_uri_attributes
1070
+ i
1071
+ 7
1072
+ 5
1073
+ 48
1074
+ 0
1075
+ 49
1076
+ 1
1077
+ 0
1078
+ 11
1079
+ I
1080
+ 1
1081
+ I
1082
+ 0
1083
+ I
1084
+ 0
1085
+ I
1086
+ 0
1087
+ n
1088
+ p
1089
+ 2
1090
+ x
1091
+ 20
1092
+ white_list_sanitizer
1093
+ x
1094
+ 14
1095
+ uri_attributes
1096
+ p
1097
+ 5
1098
+ I
1099
+ -1
1100
+ I
1101
+ 6d
1102
+ I
1103
+ 0
1104
+ I
1105
+ 6e
1106
+ I
1107
+ 7
1108
+ x
1109
+ 90
1110
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1111
+ p
1112
+ 0
1113
+ x
1114
+ 18
1115
+ sanitized_bad_tags
1116
+ M
1117
+ 1
1118
+ n
1119
+ n
1120
+ x
1121
+ 18
1122
+ sanitized_bad_tags
1123
+ i
1124
+ 7
1125
+ 5
1126
+ 48
1127
+ 0
1128
+ 49
1129
+ 1
1130
+ 0
1131
+ 11
1132
+ I
1133
+ 1
1134
+ I
1135
+ 0
1136
+ I
1137
+ 0
1138
+ I
1139
+ 0
1140
+ n
1141
+ p
1142
+ 2
1143
+ x
1144
+ 20
1145
+ white_list_sanitizer
1146
+ x
1147
+ 8
1148
+ bad_tags
1149
+ p
1150
+ 5
1151
+ I
1152
+ -1
1153
+ I
1154
+ 71
1155
+ I
1156
+ 0
1157
+ I
1158
+ 72
1159
+ I
1160
+ 7
1161
+ x
1162
+ 90
1163
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1164
+ p
1165
+ 0
1166
+ x
1167
+ 22
1168
+ sanitized_allowed_tags
1169
+ M
1170
+ 1
1171
+ n
1172
+ n
1173
+ x
1174
+ 22
1175
+ sanitized_allowed_tags
1176
+ i
1177
+ 7
1178
+ 5
1179
+ 48
1180
+ 0
1181
+ 49
1182
+ 1
1183
+ 0
1184
+ 11
1185
+ I
1186
+ 1
1187
+ I
1188
+ 0
1189
+ I
1190
+ 0
1191
+ I
1192
+ 0
1193
+ n
1194
+ p
1195
+ 2
1196
+ x
1197
+ 20
1198
+ white_list_sanitizer
1199
+ x
1200
+ 12
1201
+ allowed_tags
1202
+ p
1203
+ 5
1204
+ I
1205
+ -1
1206
+ I
1207
+ 75
1208
+ I
1209
+ 0
1210
+ I
1211
+ 76
1212
+ I
1213
+ 7
1214
+ x
1215
+ 90
1216
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1217
+ p
1218
+ 0
1219
+ x
1220
+ 28
1221
+ sanitized_allowed_attributes
1222
+ M
1223
+ 1
1224
+ n
1225
+ n
1226
+ x
1227
+ 28
1228
+ sanitized_allowed_attributes
1229
+ i
1230
+ 7
1231
+ 5
1232
+ 48
1233
+ 0
1234
+ 49
1235
+ 1
1236
+ 0
1237
+ 11
1238
+ I
1239
+ 1
1240
+ I
1241
+ 0
1242
+ I
1243
+ 0
1244
+ I
1245
+ 0
1246
+ n
1247
+ p
1248
+ 2
1249
+ x
1250
+ 20
1251
+ white_list_sanitizer
1252
+ x
1253
+ 18
1254
+ allowed_attributes
1255
+ p
1256
+ 5
1257
+ I
1258
+ -1
1259
+ I
1260
+ 79
1261
+ I
1262
+ 0
1263
+ I
1264
+ 7a
1265
+ I
1266
+ 7
1267
+ x
1268
+ 90
1269
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1270
+ p
1271
+ 0
1272
+ x
1273
+ 32
1274
+ sanitized_allowed_css_properties
1275
+ M
1276
+ 1
1277
+ n
1278
+ n
1279
+ x
1280
+ 32
1281
+ sanitized_allowed_css_properties
1282
+ i
1283
+ 7
1284
+ 5
1285
+ 48
1286
+ 0
1287
+ 49
1288
+ 1
1289
+ 0
1290
+ 11
1291
+ I
1292
+ 1
1293
+ I
1294
+ 0
1295
+ I
1296
+ 0
1297
+ I
1298
+ 0
1299
+ n
1300
+ p
1301
+ 2
1302
+ x
1303
+ 20
1304
+ white_list_sanitizer
1305
+ x
1306
+ 22
1307
+ allowed_css_properties
1308
+ p
1309
+ 5
1310
+ I
1311
+ -1
1312
+ I
1313
+ 7d
1314
+ I
1315
+ 0
1316
+ I
1317
+ 7e
1318
+ I
1319
+ 7
1320
+ x
1321
+ 90
1322
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1323
+ p
1324
+ 0
1325
+ x
1326
+ 30
1327
+ sanitized_allowed_css_keywords
1328
+ M
1329
+ 1
1330
+ n
1331
+ n
1332
+ x
1333
+ 30
1334
+ sanitized_allowed_css_keywords
1335
+ i
1336
+ 7
1337
+ 5
1338
+ 48
1339
+ 0
1340
+ 49
1341
+ 1
1342
+ 0
1343
+ 11
1344
+ I
1345
+ 1
1346
+ I
1347
+ 0
1348
+ I
1349
+ 0
1350
+ I
1351
+ 0
1352
+ n
1353
+ p
1354
+ 2
1355
+ x
1356
+ 20
1357
+ white_list_sanitizer
1358
+ x
1359
+ 20
1360
+ allowed_css_keywords
1361
+ p
1362
+ 5
1363
+ I
1364
+ -1
1365
+ I
1366
+ 81
1367
+ I
1368
+ 0
1369
+ I
1370
+ 82
1371
+ I
1372
+ 7
1373
+ x
1374
+ 90
1375
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1376
+ p
1377
+ 0
1378
+ x
1379
+ 34
1380
+ sanitized_shorthand_css_properties
1381
+ M
1382
+ 1
1383
+ n
1384
+ n
1385
+ x
1386
+ 34
1387
+ sanitized_shorthand_css_properties
1388
+ i
1389
+ 7
1390
+ 5
1391
+ 48
1392
+ 0
1393
+ 49
1394
+ 1
1395
+ 0
1396
+ 11
1397
+ I
1398
+ 1
1399
+ I
1400
+ 0
1401
+ I
1402
+ 0
1403
+ I
1404
+ 0
1405
+ n
1406
+ p
1407
+ 2
1408
+ x
1409
+ 20
1410
+ white_list_sanitizer
1411
+ x
1412
+ 24
1413
+ shorthand_css_properties
1414
+ p
1415
+ 5
1416
+ I
1417
+ -1
1418
+ I
1419
+ 85
1420
+ I
1421
+ 0
1422
+ I
1423
+ 86
1424
+ I
1425
+ 7
1426
+ x
1427
+ 90
1428
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1429
+ p
1430
+ 0
1431
+ x
1432
+ 27
1433
+ sanitized_allowed_protocols
1434
+ M
1435
+ 1
1436
+ n
1437
+ n
1438
+ x
1439
+ 27
1440
+ sanitized_allowed_protocols
1441
+ i
1442
+ 7
1443
+ 5
1444
+ 48
1445
+ 0
1446
+ 49
1447
+ 1
1448
+ 0
1449
+ 11
1450
+ I
1451
+ 1
1452
+ I
1453
+ 0
1454
+ I
1455
+ 0
1456
+ I
1457
+ 0
1458
+ n
1459
+ p
1460
+ 2
1461
+ x
1462
+ 20
1463
+ white_list_sanitizer
1464
+ x
1465
+ 17
1466
+ allowed_protocols
1467
+ p
1468
+ 5
1469
+ I
1470
+ -1
1471
+ I
1472
+ 89
1473
+ I
1474
+ 0
1475
+ I
1476
+ 8a
1477
+ I
1478
+ 7
1479
+ x
1480
+ 90
1481
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1482
+ p
1483
+ 0
1484
+ x
1485
+ 29
1486
+ sanitized_protocol_separator=
1487
+ M
1488
+ 1
1489
+ n
1490
+ n
1491
+ x
1492
+ 29
1493
+ sanitized_protocol_separator=
1494
+ i
1495
+ 13
1496
+ 5
1497
+ 48
1498
+ 0
1499
+ 20
1500
+ 0
1501
+ 13
1502
+ 18
1503
+ 2
1504
+ 49
1505
+ 1
1506
+ 1
1507
+ 15
1508
+ 11
1509
+ I
1510
+ 4
1511
+ I
1512
+ 1
1513
+ I
1514
+ 1
1515
+ I
1516
+ 1
1517
+ n
1518
+ p
1519
+ 2
1520
+ x
1521
+ 20
1522
+ white_list_sanitizer
1523
+ x
1524
+ 19
1525
+ protocol_separator=
1526
+ p
1527
+ 5
1528
+ I
1529
+ -1
1530
+ I
1531
+ 8d
1532
+ I
1533
+ 0
1534
+ I
1535
+ 8e
1536
+ I
1537
+ d
1538
+ x
1539
+ 90
1540
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1541
+ p
1542
+ 1
1543
+ x
1544
+ 5
1545
+ value
1546
+ M
1547
+ 1
1548
+ n
1549
+ n
1550
+ x
1551
+ 14
1552
+ full_sanitizer
1553
+ i
1554
+ 35
1555
+ 39
1556
+ 0
1557
+ 13
1558
+ 10
1559
+ 34
1560
+ 15
1561
+ 45
1562
+ 1
1563
+ 2
1564
+ 43
1565
+ 3
1566
+ 13
1567
+ 71
1568
+ 4
1569
+ 47
1570
+ 9
1571
+ 29
1572
+ 47
1573
+ 49
1574
+ 5
1575
+ 0
1576
+ 13
1577
+ 47
1578
+ 49
1579
+ 6
1580
+ 0
1581
+ 15
1582
+ 8
1583
+ 32
1584
+ 49
1585
+ 4
1586
+ 0
1587
+ 38
1588
+ 0
1589
+ 11
1590
+ I
1591
+ 2
1592
+ I
1593
+ 0
1594
+ I
1595
+ 0
1596
+ I
1597
+ 0
1598
+ n
1599
+ p
1600
+ 7
1601
+ x
1602
+ 15
1603
+ @full_sanitizer
1604
+ x
1605
+ 4
1606
+ HTML
1607
+ n
1608
+ x
1609
+ 13
1610
+ FullSanitizer
1611
+ x
1612
+ 3
1613
+ new
1614
+ x
1615
+ 8
1616
+ allocate
1617
+ x
1618
+ 10
1619
+ initialize
1620
+ p
1621
+ 5
1622
+ I
1623
+ -1
1624
+ I
1625
+ 98
1626
+ I
1627
+ 0
1628
+ I
1629
+ 99
1630
+ I
1631
+ 23
1632
+ x
1633
+ 90
1634
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1635
+ p
1636
+ 0
1637
+ M
1638
+ 1
1639
+ n
1640
+ n
1641
+ x
1642
+ 14
1643
+ link_sanitizer
1644
+ i
1645
+ 35
1646
+ 39
1647
+ 0
1648
+ 13
1649
+ 10
1650
+ 34
1651
+ 15
1652
+ 45
1653
+ 1
1654
+ 2
1655
+ 43
1656
+ 3
1657
+ 13
1658
+ 71
1659
+ 4
1660
+ 47
1661
+ 9
1662
+ 29
1663
+ 47
1664
+ 49
1665
+ 5
1666
+ 0
1667
+ 13
1668
+ 47
1669
+ 49
1670
+ 6
1671
+ 0
1672
+ 15
1673
+ 8
1674
+ 32
1675
+ 49
1676
+ 4
1677
+ 0
1678
+ 38
1679
+ 0
1680
+ 11
1681
+ I
1682
+ 2
1683
+ I
1684
+ 0
1685
+ I
1686
+ 0
1687
+ I
1688
+ 0
1689
+ n
1690
+ p
1691
+ 7
1692
+ x
1693
+ 15
1694
+ @link_sanitizer
1695
+ x
1696
+ 4
1697
+ HTML
1698
+ n
1699
+ x
1700
+ 13
1701
+ LinkSanitizer
1702
+ x
1703
+ 3
1704
+ new
1705
+ x
1706
+ 8
1707
+ allocate
1708
+ x
1709
+ 10
1710
+ initialize
1711
+ p
1712
+ 5
1713
+ I
1714
+ -1
1715
+ I
1716
+ a3
1717
+ I
1718
+ 0
1719
+ I
1720
+ a4
1721
+ I
1722
+ 23
1723
+ x
1724
+ 90
1725
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1726
+ p
1727
+ 0
1728
+ M
1729
+ 1
1730
+ n
1731
+ n
1732
+ x
1733
+ 20
1734
+ white_list_sanitizer
1735
+ i
1736
+ 35
1737
+ 39
1738
+ 0
1739
+ 13
1740
+ 10
1741
+ 34
1742
+ 15
1743
+ 45
1744
+ 1
1745
+ 2
1746
+ 43
1747
+ 3
1748
+ 13
1749
+ 71
1750
+ 4
1751
+ 47
1752
+ 9
1753
+ 29
1754
+ 47
1755
+ 49
1756
+ 5
1757
+ 0
1758
+ 13
1759
+ 47
1760
+ 49
1761
+ 6
1762
+ 0
1763
+ 15
1764
+ 8
1765
+ 32
1766
+ 49
1767
+ 4
1768
+ 0
1769
+ 38
1770
+ 0
1771
+ 11
1772
+ I
1773
+ 2
1774
+ I
1775
+ 0
1776
+ I
1777
+ 0
1778
+ I
1779
+ 0
1780
+ n
1781
+ p
1782
+ 7
1783
+ x
1784
+ 21
1785
+ @white_list_sanitizer
1786
+ x
1787
+ 4
1788
+ HTML
1789
+ n
1790
+ x
1791
+ 18
1792
+ WhiteListSanitizer
1793
+ x
1794
+ 3
1795
+ new
1796
+ x
1797
+ 8
1798
+ allocate
1799
+ x
1800
+ 10
1801
+ initialize
1802
+ p
1803
+ 5
1804
+ I
1805
+ -1
1806
+ I
1807
+ ae
1808
+ I
1809
+ 0
1810
+ I
1811
+ af
1812
+ I
1813
+ 23
1814
+ x
1815
+ 90
1816
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1817
+ p
1818
+ 0
1819
+ x
1820
+ 25
1821
+ sanitized_uri_attributes=
1822
+ M
1823
+ 1
1824
+ n
1825
+ n
1826
+ x
1827
+ 25
1828
+ sanitized_uri_attributes=
1829
+ i
1830
+ 14
1831
+ 45
1832
+ 0
1833
+ 1
1834
+ 43
1835
+ 2
1836
+ 49
1837
+ 3
1838
+ 0
1839
+ 20
1840
+ 0
1841
+ 49
1842
+ 4
1843
+ 1
1844
+ 11
1845
+ I
1846
+ 3
1847
+ I
1848
+ 1
1849
+ I
1850
+ 1
1851
+ I
1852
+ 1
1853
+ n
1854
+ p
1855
+ 5
1856
+ x
1857
+ 4
1858
+ HTML
1859
+ n
1860
+ x
1861
+ 18
1862
+ WhiteListSanitizer
1863
+ x
1864
+ 14
1865
+ uri_attributes
1866
+ x
1867
+ 5
1868
+ merge
1869
+ p
1870
+ 5
1871
+ I
1872
+ -1
1873
+ I
1874
+ b8
1875
+ I
1876
+ 0
1877
+ I
1878
+ b9
1879
+ I
1880
+ e
1881
+ x
1882
+ 90
1883
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1884
+ p
1885
+ 1
1886
+ x
1887
+ 10
1888
+ attributes
1889
+ x
1890
+ 19
1891
+ sanitized_bad_tags=
1892
+ M
1893
+ 1
1894
+ n
1895
+ n
1896
+ x
1897
+ 19
1898
+ sanitized_bad_tags=
1899
+ i
1900
+ 14
1901
+ 45
1902
+ 0
1903
+ 1
1904
+ 43
1905
+ 2
1906
+ 49
1907
+ 3
1908
+ 0
1909
+ 20
1910
+ 0
1911
+ 49
1912
+ 4
1913
+ 1
1914
+ 11
1915
+ I
1916
+ 3
1917
+ I
1918
+ 1
1919
+ I
1920
+ 1
1921
+ I
1922
+ 1
1923
+ n
1924
+ p
1925
+ 5
1926
+ x
1927
+ 4
1928
+ HTML
1929
+ n
1930
+ x
1931
+ 18
1932
+ WhiteListSanitizer
1933
+ x
1934
+ 8
1935
+ bad_tags
1936
+ x
1937
+ 5
1938
+ merge
1939
+ p
1940
+ 5
1941
+ I
1942
+ -1
1943
+ I
1944
+ c2
1945
+ I
1946
+ 0
1947
+ I
1948
+ c3
1949
+ I
1950
+ e
1951
+ x
1952
+ 90
1953
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
1954
+ p
1955
+ 1
1956
+ x
1957
+ 10
1958
+ attributes
1959
+ x
1960
+ 23
1961
+ sanitized_allowed_tags=
1962
+ M
1963
+ 1
1964
+ n
1965
+ n
1966
+ x
1967
+ 23
1968
+ sanitized_allowed_tags=
1969
+ i
1970
+ 14
1971
+ 45
1972
+ 0
1973
+ 1
1974
+ 43
1975
+ 2
1976
+ 49
1977
+ 3
1978
+ 0
1979
+ 20
1980
+ 0
1981
+ 49
1982
+ 4
1983
+ 1
1984
+ 11
1985
+ I
1986
+ 3
1987
+ I
1988
+ 1
1989
+ I
1990
+ 1
1991
+ I
1992
+ 1
1993
+ n
1994
+ p
1995
+ 5
1996
+ x
1997
+ 4
1998
+ HTML
1999
+ n
2000
+ x
2001
+ 18
2002
+ WhiteListSanitizer
2003
+ x
2004
+ 12
2005
+ allowed_tags
2006
+ x
2007
+ 5
2008
+ merge
2009
+ p
2010
+ 5
2011
+ I
2012
+ -1
2013
+ I
2014
+ cc
2015
+ I
2016
+ 0
2017
+ I
2018
+ cd
2019
+ I
2020
+ e
2021
+ x
2022
+ 90
2023
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2024
+ p
2025
+ 1
2026
+ x
2027
+ 10
2028
+ attributes
2029
+ x
2030
+ 29
2031
+ sanitized_allowed_attributes=
2032
+ M
2033
+ 1
2034
+ n
2035
+ n
2036
+ x
2037
+ 29
2038
+ sanitized_allowed_attributes=
2039
+ i
2040
+ 14
2041
+ 45
2042
+ 0
2043
+ 1
2044
+ 43
2045
+ 2
2046
+ 49
2047
+ 3
2048
+ 0
2049
+ 20
2050
+ 0
2051
+ 49
2052
+ 4
2053
+ 1
2054
+ 11
2055
+ I
2056
+ 3
2057
+ I
2058
+ 1
2059
+ I
2060
+ 1
2061
+ I
2062
+ 1
2063
+ n
2064
+ p
2065
+ 5
2066
+ x
2067
+ 4
2068
+ HTML
2069
+ n
2070
+ x
2071
+ 18
2072
+ WhiteListSanitizer
2073
+ x
2074
+ 18
2075
+ allowed_attributes
2076
+ x
2077
+ 5
2078
+ merge
2079
+ p
2080
+ 5
2081
+ I
2082
+ -1
2083
+ I
2084
+ d6
2085
+ I
2086
+ 0
2087
+ I
2088
+ d7
2089
+ I
2090
+ e
2091
+ x
2092
+ 90
2093
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2094
+ p
2095
+ 1
2096
+ x
2097
+ 10
2098
+ attributes
2099
+ x
2100
+ 33
2101
+ sanitized_allowed_css_properties=
2102
+ M
2103
+ 1
2104
+ n
2105
+ n
2106
+ x
2107
+ 33
2108
+ sanitized_allowed_css_properties=
2109
+ i
2110
+ 14
2111
+ 45
2112
+ 0
2113
+ 1
2114
+ 43
2115
+ 2
2116
+ 49
2117
+ 3
2118
+ 0
2119
+ 20
2120
+ 0
2121
+ 49
2122
+ 4
2123
+ 1
2124
+ 11
2125
+ I
2126
+ 3
2127
+ I
2128
+ 1
2129
+ I
2130
+ 1
2131
+ I
2132
+ 1
2133
+ n
2134
+ p
2135
+ 5
2136
+ x
2137
+ 4
2138
+ HTML
2139
+ n
2140
+ x
2141
+ 18
2142
+ WhiteListSanitizer
2143
+ x
2144
+ 22
2145
+ allowed_css_properties
2146
+ x
2147
+ 5
2148
+ merge
2149
+ p
2150
+ 5
2151
+ I
2152
+ -1
2153
+ I
2154
+ e0
2155
+ I
2156
+ 0
2157
+ I
2158
+ e1
2159
+ I
2160
+ e
2161
+ x
2162
+ 90
2163
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2164
+ p
2165
+ 1
2166
+ x
2167
+ 10
2168
+ attributes
2169
+ x
2170
+ 31
2171
+ sanitized_allowed_css_keywords=
2172
+ M
2173
+ 1
2174
+ n
2175
+ n
2176
+ x
2177
+ 31
2178
+ sanitized_allowed_css_keywords=
2179
+ i
2180
+ 14
2181
+ 45
2182
+ 0
2183
+ 1
2184
+ 43
2185
+ 2
2186
+ 49
2187
+ 3
2188
+ 0
2189
+ 20
2190
+ 0
2191
+ 49
2192
+ 4
2193
+ 1
2194
+ 11
2195
+ I
2196
+ 3
2197
+ I
2198
+ 1
2199
+ I
2200
+ 1
2201
+ I
2202
+ 1
2203
+ n
2204
+ p
2205
+ 5
2206
+ x
2207
+ 4
2208
+ HTML
2209
+ n
2210
+ x
2211
+ 18
2212
+ WhiteListSanitizer
2213
+ x
2214
+ 20
2215
+ allowed_css_keywords
2216
+ x
2217
+ 5
2218
+ merge
2219
+ p
2220
+ 5
2221
+ I
2222
+ -1
2223
+ I
2224
+ ea
2225
+ I
2226
+ 0
2227
+ I
2228
+ eb
2229
+ I
2230
+ e
2231
+ x
2232
+ 90
2233
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2234
+ p
2235
+ 1
2236
+ x
2237
+ 10
2238
+ attributes
2239
+ x
2240
+ 35
2241
+ sanitized_shorthand_css_properties=
2242
+ M
2243
+ 1
2244
+ n
2245
+ n
2246
+ x
2247
+ 35
2248
+ sanitized_shorthand_css_properties=
2249
+ i
2250
+ 14
2251
+ 45
2252
+ 0
2253
+ 1
2254
+ 43
2255
+ 2
2256
+ 49
2257
+ 3
2258
+ 0
2259
+ 20
2260
+ 0
2261
+ 49
2262
+ 4
2263
+ 1
2264
+ 11
2265
+ I
2266
+ 3
2267
+ I
2268
+ 1
2269
+ I
2270
+ 1
2271
+ I
2272
+ 1
2273
+ n
2274
+ p
2275
+ 5
2276
+ x
2277
+ 4
2278
+ HTML
2279
+ n
2280
+ x
2281
+ 18
2282
+ WhiteListSanitizer
2283
+ x
2284
+ 24
2285
+ shorthand_css_properties
2286
+ x
2287
+ 5
2288
+ merge
2289
+ p
2290
+ 5
2291
+ I
2292
+ -1
2293
+ I
2294
+ f4
2295
+ I
2296
+ 0
2297
+ I
2298
+ f5
2299
+ I
2300
+ e
2301
+ x
2302
+ 90
2303
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2304
+ p
2305
+ 1
2306
+ x
2307
+ 10
2308
+ attributes
2309
+ x
2310
+ 28
2311
+ sanitized_allowed_protocols=
2312
+ M
2313
+ 1
2314
+ n
2315
+ n
2316
+ x
2317
+ 28
2318
+ sanitized_allowed_protocols=
2319
+ i
2320
+ 14
2321
+ 45
2322
+ 0
2323
+ 1
2324
+ 43
2325
+ 2
2326
+ 49
2327
+ 3
2328
+ 0
2329
+ 20
2330
+ 0
2331
+ 49
2332
+ 4
2333
+ 1
2334
+ 11
2335
+ I
2336
+ 3
2337
+ I
2338
+ 1
2339
+ I
2340
+ 1
2341
+ I
2342
+ 1
2343
+ n
2344
+ p
2345
+ 5
2346
+ x
2347
+ 4
2348
+ HTML
2349
+ n
2350
+ x
2351
+ 18
2352
+ WhiteListSanitizer
2353
+ x
2354
+ 17
2355
+ allowed_protocols
2356
+ x
2357
+ 5
2358
+ merge
2359
+ p
2360
+ 5
2361
+ I
2362
+ -1
2363
+ I
2364
+ fe
2365
+ I
2366
+ 0
2367
+ I
2368
+ ff
2369
+ I
2370
+ e
2371
+ x
2372
+ 90
2373
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2374
+ p
2375
+ 1
2376
+ x
2377
+ 10
2378
+ attributes
2379
+ p
2380
+ 45
2381
+ I
2382
+ 2
2383
+ I
2384
+ 67
2385
+ I
2386
+ e
2387
+ I
2388
+ 69
2389
+ I
2390
+ 1c
2391
+ I
2392
+ 6d
2393
+ I
2394
+ 2a
2395
+ I
2396
+ 71
2397
+ I
2398
+ 38
2399
+ I
2400
+ 75
2401
+ I
2402
+ 46
2403
+ I
2404
+ 79
2405
+ I
2406
+ 54
2407
+ I
2408
+ 7d
2409
+ I
2410
+ 62
2411
+ I
2412
+ 81
2413
+ I
2414
+ 70
2415
+ I
2416
+ 85
2417
+ I
2418
+ 7e
2419
+ I
2420
+ 89
2421
+ I
2422
+ 8c
2423
+ I
2424
+ 8d
2425
+ I
2426
+ 9a
2427
+ I
2428
+ 98
2429
+ I
2430
+ a8
2431
+ I
2432
+ a3
2433
+ I
2434
+ b6
2435
+ I
2436
+ ae
2437
+ I
2438
+ c4
2439
+ I
2440
+ b8
2441
+ I
2442
+ d2
2443
+ I
2444
+ c2
2445
+ I
2446
+ e0
2447
+ I
2448
+ cc
2449
+ I
2450
+ ee
2451
+ I
2452
+ d6
2453
+ I
2454
+ fc
2455
+ I
2456
+ e0
2457
+ I
2458
+ 10a
2459
+ I
2460
+ ea
2461
+ I
2462
+ 118
2463
+ I
2464
+ f4
2465
+ I
2466
+ 126
2467
+ I
2468
+ fe
2469
+ I
2470
+ 134
2471
+ x
2472
+ 90
2473
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2474
+ p
2475
+ 0
2476
+ x
2477
+ 13
2478
+ attach_method
2479
+ p
2480
+ 13
2481
+ I
2482
+ 2
2483
+ I
2484
+ b
2485
+ I
2486
+ d
2487
+ I
2488
+ 3c
2489
+ I
2490
+ 1b
2491
+ I
2492
+ 41
2493
+ I
2494
+ 29
2495
+ I
2496
+ 53
2497
+ I
2498
+ 37
2499
+ I
2500
+ 62
2501
+ I
2502
+ 45
2503
+ I
2504
+ 66
2505
+ I
2506
+ 5f
2507
+ x
2508
+ 90
2509
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2510
+ p
2511
+ 0
2512
+ x
2513
+ 13
2514
+ attach_method
2515
+ p
2516
+ 3
2517
+ I
2518
+ 2
2519
+ I
2520
+ a
2521
+ I
2522
+ 1c
2523
+ x
2524
+ 90
2525
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2526
+ p
2527
+ 0
2528
+ x
2529
+ 13
2530
+ attach_method
2531
+ p
2532
+ 3
2533
+ I
2534
+ 2
2535
+ I
2536
+ 7
2537
+ I
2538
+ 1c
2539
+ x
2540
+ 90
2541
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2542
+ p
2543
+ 0
2544
+ x
2545
+ 13
2546
+ attach_method
2547
+ p
2548
+ 9
2549
+ I
2550
+ 0
2551
+ I
2552
+ 1
2553
+ I
2554
+ 9
2555
+ I
2556
+ 2
2557
+ I
2558
+ 12
2559
+ I
2560
+ 3
2561
+ I
2562
+ 1b
2563
+ I
2564
+ 5
2565
+ I
2566
+ 37
2567
+ x
2568
+ 90
2569
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb
2570
+ p
2571
+ 0