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,1611 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 30
63
+ action_view/helpers/tag_helper
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 10
69
+ ActionView
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 10
82
+ ActionView
83
+ i
84
+ 28
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 65
91
+ 49
92
+ 1
93
+ 2
94
+ 13
95
+ 99
96
+ 12
97
+ 7
98
+ 2
99
+ 12
100
+ 7
101
+ 3
102
+ 12
103
+ 65
104
+ 12
105
+ 49
106
+ 4
107
+ 4
108
+ 15
109
+ 49
110
+ 2
111
+ 0
112
+ 11
113
+ I
114
+ 6
115
+ I
116
+ 0
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ n
122
+ p
123
+ 5
124
+ x
125
+ 7
126
+ Helpers
127
+ x
128
+ 11
129
+ open_module
130
+ x
131
+ 15
132
+ __module_init__
133
+ M
134
+ 1
135
+ n
136
+ n
137
+ x
138
+ 7
139
+ Helpers
140
+ i
141
+ 28
142
+ 5
143
+ 66
144
+ 99
145
+ 7
146
+ 0
147
+ 65
148
+ 49
149
+ 1
150
+ 2
151
+ 13
152
+ 99
153
+ 12
154
+ 7
155
+ 2
156
+ 12
157
+ 7
158
+ 3
159
+ 12
160
+ 65
161
+ 12
162
+ 49
163
+ 4
164
+ 4
165
+ 15
166
+ 49
167
+ 2
168
+ 0
169
+ 11
170
+ I
171
+ 6
172
+ I
173
+ 0
174
+ I
175
+ 0
176
+ I
177
+ 0
178
+ n
179
+ p
180
+ 5
181
+ x
182
+ 16
183
+ JavaScriptHelper
184
+ x
185
+ 11
186
+ open_module
187
+ x
188
+ 15
189
+ __module_init__
190
+ M
191
+ 1
192
+ n
193
+ n
194
+ x
195
+ 16
196
+ JavaScriptHelper
197
+ i
198
+ 173
199
+ 5
200
+ 66
201
+ 5
202
+ 45
203
+ 0
204
+ 1
205
+ 47
206
+ 49
207
+ 2
208
+ 1
209
+ 15
210
+ 65
211
+ 7
212
+ 3
213
+ 44
214
+ 43
215
+ 4
216
+ 4
217
+ 7
218
+ 49
219
+ 5
220
+ 1
221
+ 13
222
+ 7
223
+ 6
224
+ 64
225
+ 7
226
+ 7
227
+ 64
228
+ 49
229
+ 8
230
+ 2
231
+ 15
232
+ 13
233
+ 7
234
+ 9
235
+ 64
236
+ 7
237
+ 10
238
+ 64
239
+ 49
240
+ 8
241
+ 2
242
+ 15
243
+ 13
244
+ 7
245
+ 11
246
+ 64
247
+ 7
248
+ 12
249
+ 64
250
+ 49
251
+ 8
252
+ 2
253
+ 15
254
+ 13
255
+ 7
256
+ 13
257
+ 64
258
+ 7
259
+ 12
260
+ 64
261
+ 49
262
+ 8
263
+ 2
264
+ 15
265
+ 13
266
+ 7
267
+ 14
268
+ 64
269
+ 7
270
+ 12
271
+ 64
272
+ 49
273
+ 8
274
+ 2
275
+ 15
276
+ 13
277
+ 7
278
+ 15
279
+ 64
280
+ 7
281
+ 16
282
+ 64
283
+ 49
284
+ 8
285
+ 2
286
+ 15
287
+ 13
288
+ 7
289
+ 17
290
+ 64
291
+ 7
292
+ 18
293
+ 64
294
+ 49
295
+ 8
296
+ 2
297
+ 15
298
+ 49
299
+ 19
300
+ 2
301
+ 15
302
+ 99
303
+ 7
304
+ 20
305
+ 7
306
+ 21
307
+ 65
308
+ 67
309
+ 49
310
+ 22
311
+ 0
312
+ 49
313
+ 23
314
+ 4
315
+ 15
316
+ 99
317
+ 7
318
+ 24
319
+ 7
320
+ 25
321
+ 65
322
+ 67
323
+ 49
324
+ 22
325
+ 0
326
+ 49
327
+ 23
328
+ 4
329
+ 15
330
+ 99
331
+ 7
332
+ 26
333
+ 7
334
+ 27
335
+ 65
336
+ 67
337
+ 49
338
+ 22
339
+ 0
340
+ 49
341
+ 23
342
+ 4
343
+ 15
344
+ 99
345
+ 7
346
+ 28
347
+ 7
348
+ 29
349
+ 65
350
+ 67
351
+ 49
352
+ 22
353
+ 0
354
+ 49
355
+ 23
356
+ 4
357
+ 15
358
+ 99
359
+ 7
360
+ 30
361
+ 7
362
+ 31
363
+ 65
364
+ 67
365
+ 49
366
+ 22
367
+ 0
368
+ 49
369
+ 23
370
+ 4
371
+ 11
372
+ I
373
+ 6
374
+ I
375
+ 0
376
+ I
377
+ 0
378
+ I
379
+ 0
380
+ n
381
+ p
382
+ 32
383
+ x
384
+ 15
385
+ PrototypeHelper
386
+ n
387
+ x
388
+ 7
389
+ include
390
+ x
391
+ 13
392
+ JS_ESCAPE_MAP
393
+ x
394
+ 4
395
+ Hash
396
+ x
397
+ 16
398
+ new_from_literal
399
+ s
400
+ 1
401
+ \
402
+ s
403
+ 2
404
+ \\
405
+ x
406
+ 3
407
+ []=
408
+ s
409
+ 2
410
+ </
411
+ s
412
+ 3
413
+ <\/
414
+ s
415
+ 2
416
+
417
+
418
+ s
419
+ 2
420
+ \n
421
+ s
422
+ 1
423
+
424
+
425
+ s
426
+ 1
427
+
428
+ s
429
+ 1
430
+ "
431
+ s
432
+ 2
433
+ \"
434
+ s
435
+ 1
436
+ '
437
+ s
438
+ 2
439
+ \'
440
+ x
441
+ 9
442
+ const_set
443
+ x
444
+ 17
445
+ escape_javascript
446
+ M
447
+ 1
448
+ n
449
+ n
450
+ x
451
+ 17
452
+ escape_javascript
453
+ i
454
+ 35
455
+ 20
456
+ 0
457
+ 9
458
+ 31
459
+ 20
460
+ 0
461
+ 7
462
+ 0
463
+ 13
464
+ 70
465
+ 9
466
+ 24
467
+ 15
468
+ 44
469
+ 43
470
+ 1
471
+ 7
472
+ 2
473
+ 78
474
+ 49
475
+ 3
476
+ 2
477
+ 6
478
+ 0
479
+ 56
480
+ 4
481
+ 50
482
+ 5
483
+ 1
484
+ 8
485
+ 34
486
+ 7
487
+ 6
488
+ 64
489
+ 11
490
+ I
491
+ 5
492
+ I
493
+ 1
494
+ I
495
+ 1
496
+ I
497
+ 1
498
+ n
499
+ p
500
+ 7
501
+ n
502
+ x
503
+ 6
504
+ Regexp
505
+ s
506
+ 22
507
+ (\\|<\/|\r\n|[\n\r"'])
508
+ x
509
+ 3
510
+ new
511
+ M
512
+ 1
513
+ p
514
+ 2
515
+ x
516
+ 9
517
+ for_block
518
+ t
519
+ n
520
+ x
521
+ 17
522
+ escape_javascript
523
+ i
524
+ 13
525
+ 45
526
+ 0
527
+ 1
528
+ 4
529
+ 5
530
+ 78
531
+ 98
532
+ 2
533
+ 2
534
+ 49
535
+ 3
536
+ 1
537
+ 11
538
+ I
539
+ 4
540
+ I
541
+ 0
542
+ I
543
+ 0
544
+ I
545
+ 0
546
+ I
547
+ -2
548
+ p
549
+ 4
550
+ x
551
+ 13
552
+ JS_ESCAPE_MAP
553
+ n
554
+ x
555
+ 24
556
+ regexp_last_match_result
557
+ x
558
+ 2
559
+ []
560
+ p
561
+ 3
562
+ I
563
+ 0
564
+ I
565
+ 34
566
+ I
567
+ d
568
+ x
569
+ 92
570
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
571
+ p
572
+ 0
573
+ x
574
+ 4
575
+ gsub
576
+ s
577
+ 0
578
+
579
+ p
580
+ 9
581
+ I
582
+ -1
583
+ I
584
+ 32
585
+ I
586
+ 0
587
+ I
588
+ 33
589
+ I
590
+ 4
591
+ I
592
+ 34
593
+ I
594
+ 1f
595
+ I
596
+ 36
597
+ I
598
+ 23
599
+ x
600
+ 92
601
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
602
+ p
603
+ 1
604
+ x
605
+ 10
606
+ javascript
607
+ x
608
+ 17
609
+ method_visibility
610
+ x
611
+ 15
612
+ add_defn_method
613
+ x
614
+ 14
615
+ javascript_tag
616
+ M
617
+ 1
618
+ n
619
+ n
620
+ x
621
+ 14
622
+ javascript_tag
623
+ i
624
+ 111
625
+ 23
626
+ 0
627
+ 10
628
+ 8
629
+ 1
630
+ 19
631
+ 0
632
+ 15
633
+ 23
634
+ 1
635
+ 10
636
+ 22
637
+ 44
638
+ 43
639
+ 0
640
+ 78
641
+ 49
642
+ 1
643
+ 1
644
+ 19
645
+ 1
646
+ 15
647
+ 95
648
+ 19
649
+ 2
650
+ 15
651
+ 94
652
+ 9
653
+ 67
654
+ 20
655
+ 0
656
+ 45
657
+ 0
658
+ 2
659
+ 49
660
+ 3
661
+ 1
662
+ 9
663
+ 45
664
+ 20
665
+ 0
666
+ 19
667
+ 1
668
+ 8
669
+ 46
670
+ 1
671
+ 15
672
+ 5
673
+ 20
674
+ 2
675
+ 13
676
+ 70
677
+ 10
678
+ 61
679
+ 44
680
+ 43
681
+ 4
682
+ 12
683
+ 49
684
+ 5
685
+ 1
686
+ 47
687
+ 50
688
+ 6
689
+ 0
690
+ 8
691
+ 69
692
+ 20
693
+ 0
694
+ 19
695
+ 3
696
+ 15
697
+ 5
698
+ 7
699
+ 7
700
+ 5
701
+ 20
702
+ 3
703
+ 47
704
+ 49
705
+ 8
706
+ 1
707
+ 20
708
+ 1
709
+ 44
710
+ 43
711
+ 0
712
+ 79
713
+ 49
714
+ 1
715
+ 1
716
+ 13
717
+ 7
718
+ 9
719
+ 45
720
+ 10
721
+ 11
722
+ 43
723
+ 12
724
+ 49
725
+ 13
726
+ 2
727
+ 15
728
+ 49
729
+ 14
730
+ 1
731
+ 47
732
+ 49
733
+ 15
734
+ 3
735
+ 11
736
+ I
737
+ c
738
+ I
739
+ 4
740
+ I
741
+ 0
742
+ I
743
+ 2
744
+ n
745
+ p
746
+ 16
747
+ x
748
+ 4
749
+ Hash
750
+ x
751
+ 16
752
+ new_from_literal
753
+ n
754
+ x
755
+ 5
756
+ is_a?
757
+ x
758
+ 4
759
+ Proc
760
+ x
761
+ 14
762
+ __from_block__
763
+ x
764
+ 7
765
+ capture
766
+ x
767
+ 6
768
+ script
769
+ x
770
+ 24
771
+ javascript_cdata_section
772
+ x
773
+ 4
774
+ type
775
+ x
776
+ 4
777
+ Mime
778
+ n
779
+ x
780
+ 2
781
+ JS
782
+ x
783
+ 3
784
+ []=
785
+ x
786
+ 5
787
+ merge
788
+ x
789
+ 11
790
+ content_tag
791
+ p
792
+ 15
793
+ I
794
+ -1
795
+ I
796
+ 4e
797
+ I
798
+ 1a
799
+ I
800
+ 50
801
+ I
802
+ 1d
803
+ I
804
+ 51
805
+ I
806
+ 2f
807
+ I
808
+ 52
809
+ I
810
+ 43
811
+ I
812
+ 54
813
+ I
814
+ 45
815
+ I
816
+ 4f
817
+ I
818
+ 48
819
+ I
820
+ 57
821
+ I
822
+ 6f
823
+ x
824
+ 92
825
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
826
+ p
827
+ 4
828
+ x
829
+ 29
830
+ content_or_options_with_block
831
+ x
832
+ 12
833
+ html_options
834
+ x
835
+ 5
836
+ block
837
+ x
838
+ 7
839
+ content
840
+ x
841
+ 24
842
+ javascript_cdata_section
843
+ M
844
+ 1
845
+ n
846
+ n
847
+ x
848
+ 24
849
+ javascript_cdata_section
850
+ i
851
+ 29
852
+ 7
853
+ 0
854
+ 5
855
+ 7
856
+ 1
857
+ 20
858
+ 0
859
+ 47
860
+ 101
861
+ 2
862
+ 7
863
+ 0
864
+ 63
865
+ 3
866
+ 47
867
+ 49
868
+ 3
869
+ 1
870
+ 47
871
+ 101
872
+ 2
873
+ 7
874
+ 1
875
+ 63
876
+ 3
877
+ 49
878
+ 4
879
+ 0
880
+ 11
881
+ I
882
+ 6
883
+ I
884
+ 1
885
+ I
886
+ 1
887
+ I
888
+ 1
889
+ n
890
+ p
891
+ 5
892
+ s
893
+ 3
894
+
895
+ //
896
+ s
897
+ 1
898
+
899
+
900
+ x
901
+ 4
902
+ to_s
903
+ x
904
+ 13
905
+ cdata_section
906
+ x
907
+ 9
908
+ html_safe
909
+ p
910
+ 5
911
+ I
912
+ -1
913
+ I
914
+ 5a
915
+ I
916
+ 0
917
+ I
918
+ 5b
919
+ I
920
+ 1d
921
+ x
922
+ 92
923
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
924
+ p
925
+ 1
926
+ x
927
+ 7
928
+ content
929
+ x
930
+ 18
931
+ button_to_function
932
+ M
933
+ 1
934
+ n
935
+ n
936
+ x
937
+ 18
938
+ button_to_function
939
+ i
940
+ 144
941
+ 95
942
+ 19
943
+ 2
944
+ 15
945
+ 20
946
+ 1
947
+ 49
948
+ 0
949
+ 0
950
+ 49
951
+ 1
952
+ 0
953
+ 19
954
+ 3
955
+ 15
956
+ 94
957
+ 9
958
+ 38
959
+ 5
960
+ 20
961
+ 2
962
+ 13
963
+ 70
964
+ 10
965
+ 32
966
+ 44
967
+ 43
968
+ 2
969
+ 12
970
+ 49
971
+ 3
972
+ 1
973
+ 47
974
+ 50
975
+ 4
976
+ 0
977
+ 8
978
+ 51
979
+ 20
980
+ 1
981
+ 78
982
+ 49
983
+ 5
984
+ 1
985
+ 13
986
+ 10
987
+ 51
988
+ 15
989
+ 7
990
+ 6
991
+ 64
992
+ 19
993
+ 4
994
+ 15
995
+ 20
996
+ 3
997
+ 7
998
+ 7
999
+ 49
1000
+ 5
1001
+ 1
1002
+ 9
1003
+ 79
1004
+ 20
1005
+ 3
1006
+ 7
1007
+ 7
1008
+ 49
1009
+ 5
1010
+ 1
1011
+ 47
1012
+ 101
1013
+ 8
1014
+ 7
1015
+ 9
1016
+ 63
1017
+ 2
1018
+ 8
1019
+ 80
1020
+ 1
1021
+ 47
1022
+ 101
1023
+ 8
1024
+ 20
1025
+ 4
1026
+ 47
1027
+ 101
1028
+ 8
1029
+ 7
1030
+ 10
1031
+ 63
1032
+ 3
1033
+ 19
1034
+ 5
1035
+ 15
1036
+ 5
1037
+ 7
1038
+ 11
1039
+ 20
1040
+ 3
1041
+ 44
1042
+ 43
1043
+ 12
1044
+ 4
1045
+ 3
1046
+ 49
1047
+ 13
1048
+ 1
1049
+ 13
1050
+ 7
1051
+ 14
1052
+ 7
1053
+ 15
1054
+ 64
1055
+ 49
1056
+ 16
1057
+ 2
1058
+ 15
1059
+ 13
1060
+ 7
1061
+ 17
1062
+ 20
1063
+ 0
1064
+ 49
1065
+ 16
1066
+ 2
1067
+ 15
1068
+ 13
1069
+ 7
1070
+ 7
1071
+ 20
1072
+ 5
1073
+ 49
1074
+ 16
1075
+ 2
1076
+ 15
1077
+ 49
1078
+ 18
1079
+ 1
1080
+ 47
1081
+ 49
1082
+ 19
1083
+ 2
1084
+ 11
1085
+ I
1086
+ d
1087
+ I
1088
+ 6
1089
+ I
1090
+ 1
1091
+ I
1092
+ 1
1093
+ I
1094
+ 1
1095
+ p
1096
+ 20
1097
+ x
1098
+ 16
1099
+ extract_options!
1100
+ x
1101
+ 14
1102
+ symbolize_keys
1103
+ x
1104
+ 4
1105
+ Proc
1106
+ x
1107
+ 14
1108
+ __from_block__
1109
+ x
1110
+ 11
1111
+ update_page
1112
+ x
1113
+ 2
1114
+ []
1115
+ s
1116
+ 0
1117
+
1118
+ x
1119
+ 7
1120
+ onclick
1121
+ x
1122
+ 4
1123
+ to_s
1124
+ s
1125
+ 2
1126
+ ;
1127
+ s
1128
+ 1
1129
+ ;
1130
+ x
1131
+ 5
1132
+ input
1133
+ x
1134
+ 4
1135
+ Hash
1136
+ x
1137
+ 16
1138
+ new_from_literal
1139
+ x
1140
+ 4
1141
+ type
1142
+ s
1143
+ 6
1144
+ button
1145
+ x
1146
+ 3
1147
+ []=
1148
+ x
1149
+ 5
1150
+ value
1151
+ x
1152
+ 5
1153
+ merge
1154
+ x
1155
+ 3
1156
+ tag
1157
+ p
1158
+ 11
1159
+ I
1160
+ -1
1161
+ I
1162
+ 76
1163
+ I
1164
+ 4
1165
+ I
1166
+ 77
1167
+ I
1168
+ f
1169
+ I
1170
+ 79
1171
+ I
1172
+ 36
1173
+ I
1174
+ 7a
1175
+ I
1176
+ 5f
1177
+ I
1178
+ 7c
1179
+ I
1180
+ 90
1181
+ x
1182
+ 92
1183
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
1184
+ p
1185
+ 6
1186
+ x
1187
+ 4
1188
+ name
1189
+ x
1190
+ 4
1191
+ args
1192
+ x
1193
+ 5
1194
+ block
1195
+ x
1196
+ 12
1197
+ html_options
1198
+ x
1199
+ 8
1200
+ function
1201
+ x
1202
+ 7
1203
+ onclick
1204
+ x
1205
+ 16
1206
+ link_to_function
1207
+ M
1208
+ 1
1209
+ n
1210
+ n
1211
+ x
1212
+ 16
1213
+ link_to_function
1214
+ i
1215
+ 152
1216
+ 95
1217
+ 19
1218
+ 2
1219
+ 15
1220
+ 20
1221
+ 1
1222
+ 49
1223
+ 0
1224
+ 0
1225
+ 49
1226
+ 1
1227
+ 0
1228
+ 19
1229
+ 3
1230
+ 15
1231
+ 94
1232
+ 9
1233
+ 38
1234
+ 5
1235
+ 20
1236
+ 2
1237
+ 13
1238
+ 70
1239
+ 10
1240
+ 32
1241
+ 44
1242
+ 43
1243
+ 2
1244
+ 12
1245
+ 49
1246
+ 3
1247
+ 1
1248
+ 47
1249
+ 50
1250
+ 4
1251
+ 0
1252
+ 8
1253
+ 51
1254
+ 20
1255
+ 1
1256
+ 78
1257
+ 49
1258
+ 5
1259
+ 1
1260
+ 13
1261
+ 10
1262
+ 51
1263
+ 15
1264
+ 7
1265
+ 6
1266
+ 64
1267
+ 19
1268
+ 4
1269
+ 15
1270
+ 20
1271
+ 3
1272
+ 7
1273
+ 7
1274
+ 49
1275
+ 5
1276
+ 1
1277
+ 9
1278
+ 79
1279
+ 20
1280
+ 3
1281
+ 7
1282
+ 7
1283
+ 49
1284
+ 5
1285
+ 1
1286
+ 47
1287
+ 101
1288
+ 8
1289
+ 7
1290
+ 9
1291
+ 63
1292
+ 2
1293
+ 8
1294
+ 80
1295
+ 1
1296
+ 47
1297
+ 101
1298
+ 8
1299
+ 20
1300
+ 4
1301
+ 47
1302
+ 101
1303
+ 8
1304
+ 7
1305
+ 10
1306
+ 63
1307
+ 3
1308
+ 19
1309
+ 5
1310
+ 15
1311
+ 20
1312
+ 3
1313
+ 7
1314
+ 11
1315
+ 49
1316
+ 5
1317
+ 1
1318
+ 13
1319
+ 10
1320
+ 109
1321
+ 15
1322
+ 7
1323
+ 12
1324
+ 64
1325
+ 19
1326
+ 6
1327
+ 15
1328
+ 5
1329
+ 7
1330
+ 13
1331
+ 20
1332
+ 0
1333
+ 20
1334
+ 3
1335
+ 44
1336
+ 43
1337
+ 14
1338
+ 80
1339
+ 49
1340
+ 15
1341
+ 1
1342
+ 13
1343
+ 7
1344
+ 11
1345
+ 20
1346
+ 6
1347
+ 49
1348
+ 16
1349
+ 2
1350
+ 15
1351
+ 13
1352
+ 7
1353
+ 7
1354
+ 20
1355
+ 5
1356
+ 49
1357
+ 16
1358
+ 2
1359
+ 15
1360
+ 49
1361
+ 17
1362
+ 1
1363
+ 47
1364
+ 49
1365
+ 18
1366
+ 3
1367
+ 11
1368
+ I
1369
+ f
1370
+ I
1371
+ 7
1372
+ I
1373
+ 1
1374
+ I
1375
+ 1
1376
+ I
1377
+ 1
1378
+ p
1379
+ 19
1380
+ x
1381
+ 16
1382
+ extract_options!
1383
+ x
1384
+ 14
1385
+ symbolize_keys
1386
+ x
1387
+ 4
1388
+ Proc
1389
+ x
1390
+ 14
1391
+ __from_block__
1392
+ x
1393
+ 11
1394
+ update_page
1395
+ x
1396
+ 2
1397
+ []
1398
+ s
1399
+ 0
1400
+
1401
+ x
1402
+ 7
1403
+ onclick
1404
+ x
1405
+ 4
1406
+ to_s
1407
+ s
1408
+ 2
1409
+ ;
1410
+ s
1411
+ 15
1412
+ ; return false;
1413
+ x
1414
+ 4
1415
+ href
1416
+ s
1417
+ 1
1418
+ #
1419
+ x
1420
+ 1
1421
+ a
1422
+ x
1423
+ 4
1424
+ Hash
1425
+ x
1426
+ 16
1427
+ new_from_literal
1428
+ x
1429
+ 3
1430
+ []=
1431
+ x
1432
+ 5
1433
+ merge
1434
+ x
1435
+ 11
1436
+ content_tag
1437
+ p
1438
+ 13
1439
+ I
1440
+ -1
1441
+ I
1442
+ ab
1443
+ I
1444
+ 4
1445
+ I
1446
+ ac
1447
+ I
1448
+ f
1449
+ I
1450
+ ae
1451
+ I
1452
+ 36
1453
+ I
1454
+ af
1455
+ I
1456
+ 5f
1457
+ I
1458
+ b0
1459
+ I
1460
+ 70
1461
+ I
1462
+ b2
1463
+ I
1464
+ 98
1465
+ x
1466
+ 92
1467
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
1468
+ p
1469
+ 7
1470
+ x
1471
+ 4
1472
+ name
1473
+ x
1474
+ 4
1475
+ args
1476
+ x
1477
+ 5
1478
+ block
1479
+ x
1480
+ 12
1481
+ html_options
1482
+ x
1483
+ 8
1484
+ function
1485
+ x
1486
+ 7
1487
+ onclick
1488
+ x
1489
+ 4
1490
+ href
1491
+ p
1492
+ 31
1493
+ I
1494
+ 2
1495
+ I
1496
+ 26
1497
+ I
1498
+ b
1499
+ I
1500
+ 28
1501
+ I
1502
+ e
1503
+ I
1504
+ 2f
1505
+ I
1506
+ 17
1507
+ I
1508
+ 29
1509
+ I
1510
+ 22
1511
+ I
1512
+ 2a
1513
+ I
1514
+ 2d
1515
+ I
1516
+ 2b
1517
+ I
1518
+ 38
1519
+ I
1520
+ 2c
1521
+ I
1522
+ 43
1523
+ I
1524
+ 2d
1525
+ I
1526
+ 4e
1527
+ I
1528
+ 2e
1529
+ I
1530
+ 59
1531
+ I
1532
+ 2f
1533
+ I
1534
+ 67
1535
+ I
1536
+ 32
1537
+ I
1538
+ 75
1539
+ I
1540
+ 4e
1541
+ I
1542
+ 83
1543
+ I
1544
+ 5a
1545
+ I
1546
+ 91
1547
+ I
1548
+ 76
1549
+ I
1550
+ 9f
1551
+ I
1552
+ ab
1553
+ I
1554
+ ad
1555
+ x
1556
+ 92
1557
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
1558
+ p
1559
+ 0
1560
+ x
1561
+ 13
1562
+ attach_method
1563
+ p
1564
+ 3
1565
+ I
1566
+ 2
1567
+ I
1568
+ 25
1569
+ I
1570
+ 1c
1571
+ x
1572
+ 92
1573
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
1574
+ p
1575
+ 0
1576
+ x
1577
+ 13
1578
+ attach_method
1579
+ p
1580
+ 3
1581
+ I
1582
+ 2
1583
+ I
1584
+ 5
1585
+ I
1586
+ 1c
1587
+ x
1588
+ 92
1589
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
1590
+ p
1591
+ 0
1592
+ x
1593
+ 13
1594
+ attach_method
1595
+ p
1596
+ 5
1597
+ I
1598
+ 0
1599
+ I
1600
+ 1
1601
+ I
1602
+ 9
1603
+ I
1604
+ 3
1605
+ I
1606
+ 25
1607
+ x
1608
+ 92
1609
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/javascript_helper.rb
1610
+ p
1611
+ 0