public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
normalize author names in changelogs [#1495 state:committed]

Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
fxn (author)
Tue Dec 09 15:53:32 -0800 2008
dhh (committer)
Tue Dec 16 05:33:32 -0800 2008
commit  46c7dd234807b2d24c8c742acb18c633b69e385d
tree    3a048c3396ae99d7846892ea520a900bfe6bc495
parent  9e2b4a10f7f091868b3c3701efb4c04048455706
...
12
13
14
15
 
16
17
18
...
24
25
26
27
 
28
29
30
...
36
37
38
39
 
40
41
42
...
45
46
47
48
 
49
50
 
51
52
 
53
54
55
...
84
85
86
87
 
88
89
90
...
104
105
106
107
 
108
109
110
...
12
13
14
 
15
16
17
18
...
24
25
26
 
27
28
29
30
...
36
37
38
 
39
40
41
42
...
45
46
47
 
48
49
 
50
51
 
52
53
54
55
...
84
85
86
 
87
88
89
90
...
104
105
106
 
107
108
109
110
0
@@ -12,7 +12,7 @@
0
 
0
 *2.2.0 [RC1] (October 24th, 2008)*
0
 
0
-* Add layout functionality to mailers [Pratik]
0
+* Add layout functionality to mailers [Pratik Naik]
0
 
0
   Mailer layouts behaves just like controller layouts, except layout names need to
0
   have '_mailer' postfix for them to be automatically picked up.
0
@@ -24,7 +24,7 @@
0
 
0
 * Less verbose mail logging: just recipients for :info log level; the whole email for :debug only.  #8000 [iaddict, Tarmo Tänav]
0
 
0
-* Updated TMail to version 1.2.1 [raasdnil]
0
+* Updated TMail to version 1.2.1 [Mikel Lindsaar]
0
 
0
 * Fixed that you don't have to call super in ActionMailer::TestCase#setup #10406 [jamesgolick]
0
 
0
@@ -36,7 +36,7 @@
0
 
0
 *2.0.1* (December 7th, 2007)
0
 
0
-* Update ActionMailer so it treats ActionView the same way that ActionController does.  Closes #10244 [rick]
0
+* Update ActionMailer so it treats ActionView the same way that ActionController does.  Closes #10244 [Rick Olson]
0
 
0
   * Pass the template_root as an array as ActionView's view_path
0
   * Request templates with the "#{mailer_name}/#{action}" as opposed to just "#{action}"
0
@@ -45,11 +45,11 @@
0
 
0
 * Update README to use new smtp settings configuration API. Closes #10060 [psq]
0
 
0
-* Allow ActionMailer subclasses to individually set their delivery method (so two subclasses can have different delivery methods) #10033 [zdennis]
0
+* Allow ActionMailer subclasses to individually set their delivery method (so two subclasses can have different delivery methods) #10033 [Zach Dennis]
0
 
0
-* Update TMail to v1.1.0.  Use an updated version of TMail if available.  [mikel]
0
+* Update TMail to v1.1.0.  Use an updated version of TMail if available.  [Mikel Lindsaar]
0
 
0
-* Introduce a new base test class for testing Mailers.  ActionMailer::TestCase [Koz]
0
+* Introduce a new base test class for testing Mailers.  ActionMailer::TestCase [Michael Koziarski]
0
 
0
 * Fix silent failure of rxml templates.  #9879 [jstewart]
0
 
0
@@ -84,7 +84,7 @@
0
 
0
 *1.3.2* (February 5th, 2007)
0
 
0
-* Deprecate server_settings renaming it to smtp_settings,  add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Koz]
0
+* Deprecate server_settings renaming it to smtp_settings,  add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Michael Koziarski]
0
 
0
 
0
 *1.3.1* (January 16th, 2007)
0
@@ -104,7 +104,7 @@
0
 
0
 * Tighten rescue clauses.  #5985 [james@grayproductions.net]
0
 
0
-* Automatically included ActionController::UrlWriter, such that URL generation can happen within ActionMailer controllers. [DHH]
0
+* Automatically included ActionController::UrlWriter, such that URL generation can happen within ActionMailer controllers. [David Heinemeier Hansson]
0
 
0
 * Replace Reloadable with Reloadable::Deprecated. [Nicholas Seckar]
0
 
...
6
7
8
9
 
10
11
 
12
13
14
15
 
16
17
18
19
20
21
 
22
23
24
...
34
35
36
37
 
38
39
 
40
41
42
...
53
54
55
56
 
57
58
59
...
63
64
65
66
 
67
68
 
69
70
71
...
76
77
78
79
 
80
81
82
...
126
127
128
129
 
130
131
 
132
133
 
134
135
 
136
137
138
...
156
157
158
159
 
160
161
162
...
190
191
192
193
 
194
195
196
...
253
254
255
256
 
257
258
259
...
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
...
317
318
319
320
 
321
322
323
324
325
326
327
 
328
329
330
...
336
337
338
339
 
340
341
342
343
 
344
345
346
347
 
348
349
 
350
351
352
...
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
...
414
415
416
417
 
418
419
420
...
422
423
424
425
 
426
427
428
429
430
431
 
432
433
 
434
435
436
...
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
...
476
477
478
479
 
480
481
482
...
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
...
551
552
553
554
 
555
556
557
...
561
562
563
564
 
565
566
567
...
569
570
571
572
 
573
574
575
576
 
577
578
 
579
580
581
582
583
584
 
585
586
587
588
 
589
590
591
...
601
602
603
604
 
605
606
 
607
608
609
610
 
611
612
613
...
619
620
621
622
 
623
624
 
625
626
 
627
628
629
630
 
631
632
633
...
635
636
637
638
 
639
640
 
641
642
643
644
 
645
646
647
...
650
651
652
653
 
654
655
656
...
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
...
718
719
720
721
 
722
723
724
...
730
731
732
733
 
734
735
736
...
740
741
742
743
 
744
745
 
746
747
748
749
750
751
752
 
753
754
 
755
756
 
757
758
759
...
764
765
766
767
 
768
769
 
770
771
772
...
776
777
778
779
 
780
781
782
783
 
784
785
 
786
787
 
788
789
790
...
792
793
794
795
 
796
797
798
...
804
805
806
807
 
808
809
810
811
 
812
813
 
814
815
816
...
818
819
820
821
 
822
823
824
825
 
826
827
828
...
838
839
840
841
 
842
843
844
...
858
859
860
861
 
862
863
864
865
866
867
 
868
869
870
...
882
883
884
885
 
886
887
888
889
 
890
891
892
893
 
894
895
896
897
898
899
 
900
901
902
...
905
906
907
908
 
909
910
911
912
913
914
 
915
916
917
...
937
938
939
940
 
941
942
943
...
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
...
992
993
994
995
 
996
997
 
998
999
1000
1001
1002
1003
 
1004
1005
1006
1007
1008
1009
1010
 
1011
1012
 
1013
1014
1015
...
1027
1028
1029
1030
 
1031
1032
1033
...
1045
1046
1047
1048
 
1049
1050
1051
...
1059
1060
1061
1062
 
1063
1064
1065
1066
1067
 
1068
1069
1070
1071
 
1072
1073
1074
1075
 
1076
1077
 
1078
1079
 
1080
1081
1082
1083
 
1084
1085
1086
...
1093
1094
1095
1096
 
1097
1098
 
1099
1100
 
1101
1102
1103
1104
 
1105
1106
 
1107
1108
 
1109
1110
 
1111
1112
1113
...
1137
1138
1139
1140
 
1141
1142
 
1143
1144
1145
1146
 
1147
1148
1149
1150
1151
1152
 
1153
1154
1155
...
1161
1162
1163
1164
 
1165
1166
1167
...
1182
1183
1184
1185
 
1186
1187
1188
...
1197
1198
1199
1200
 
1201
1202
 
1203
1204
 
1205
1206
 
1207
1208
1209
...
1216
1217
1218
1219
 
1220
1221
 
1222
1223
1224
 
1225
1226
1227
1228
 
1229
1230
1231
...
1233
1234
1235
1236
 
1237
1238
 
1239
1240
1241
1242
1243
1244
 
1245
1246
1247
...
1257
1258
1259
1260
 
1261
1262
1263
...
1277
1278
1279
1280
 
1281
1282
1283
...
1289
1290
1291
1292
 
1293
1294
1295
1296
 
1297
1298
1299
...
1339
1340
1341
1342
 
1343
1344
1345
...
1362
1363
1364
1365
 
1366
1367
1368
...
1372
1373
1374
1375
 
1376
1377
 
1378
1379
1380
1381
1382
1383
 
1384
1385
1386
...
1390
1391
1392
1393
 
1394
1395
 
1396
1397
1398
...
1441
1442
1443
1444
 
1445
1446
 
1447
1448
 
1449
1450
 
1451
1452
1453
...
1456
1457
1458
1459
 
1460
1461
 
1462
1463
 
1464
1465
 
1466
1467
1468
...
1472
1473
1474
1475
 
1476
1477
 
1478
1479
1480
...
1500
1501
1502
1503
 
1504
1505
1506
...
1514
1515
1516
1517
 
1518
1519
1520
...
1555
1556
1557
1558
 
1559
1560
1561
...
1563
1564
1565
1566
 
1567
1568
 
1569
1570
1571
...
1600
1601
1602
1603
 
1604
1605
1606
...
1610
1611
1612
1613
 
1614
1615
1616
...
1631
1632
1633
1634
 
1635
1636
1637
...
1641
1642
1643
1644
 
1645
1646
1647
1648
1649
 
1650
1651
 
1652
1653
 
1654
1655
1656
...
1668
1669
1670
1671
 
1672
1673
1674
...
1678
1679
1680
1681
 
1682
1683
 
1684
1685
1686
1687
1688
1689
 
1690
1691
1692
...
1714
1715
1716
1717
 
1718
1719
1720
...
1734
1735
1736
1737
 
1738
1739
1740
...
1742
1743
1744
1745
 
1746
1747
1748
1749
1750
1751
 
1752
1753
1754
...
1757
1758
1759
1760
 
1761
1762
1763
1764
1765
1766
 
1767
1768
1769
...
1773
1774
1775
1776
 
1777
1778
1779
1780
 
1781
1782
1783
1784
1785
1786
 
1787
1788
1789
1790
 
1791
1792
1793
...
1805
1806
1807
1808
 
1809
1810
 
1811
1812
 
1813
1814
1815
...
1823
1824
1825
1826
 
1827
1828
1829
...
1856
1857
1858
1859
 
1860
1861
 
1862
1863
1864
1865
 
1866
1867
1868
...
1872
1873
1874
1875
 
1876
1877
1878
...
1884
1885
1886
1887
 
1888
1889
1890
...
1896
1897
1898
1899
 
1900
1901
 
1902
1903
1904
...
1906
1907
1908
1909
 
1910
1911
1912
1913
1914
 
1915
1916
 
1917
1918
1919
1920
1921
 
1922
1923
1924
1925
1926
1927
 
1928
1929
1930
...
1940
1941
1942
1943
 
1944
1945
1946
1947
1948
1949
1950
 
1951
1952
1953
...
1969
1970
1971
1972
 
1973
1974
1975
...
1985
1986
1987
1988
 
1989
1990
1991
1992
 
1993
1994
1995
...
2031
2032
2033
2034
 
2035
2036
2037
...
2043
2044
2045
2046
 
2047
2048
 
2049
2050
2051
...
2085
2086
2087
2088
 
2089
2090
 
2091
2092
 
2093
2094
 
2095
2096
2097
...
2100
2101
2102
2103
 
2104
2105
 
2106
2107
 
2108
2109
 
2110
2111
2112
...
2116
2117
2118
2119
 
2120
2121
 
2122
2123
2124
...
2138
2139
2140
2141
 
2142
2143
2144
...
2152
2153
2154
2155
 
2156
2157
2158
...
2191
2192
2193
2194
 
2195
2196
2197
...
2199
2200
2201
2202
 
2203
2204
 
2205
2206
2207
...
2230
2231
2232
2233
 
2234
2235
2236
...
2238
2239
2240
2241
 
2242
2243
2244
...
2255
2256
2257
2258
 
2259
2260
2261
...
2265
2266
2267
2268
 
2269
2270
 
2271
2272
 
2273
2274
 
2275
2276
2277
...
2291
2292
2293
2294
 
2295
2296
 
2297
2298
2299
...
2319
2320
2321
2322
 
2323
2324
2325
...
2333
2334
2335
2336
 
2337
2338
2339
...
2341
2342
2343
2344
 
2345
2346
2347
2348
2349
2350
 
2351
2352
2353
...
2356
2357
2358
2359
 
2360
2361
2362
2363
 
2364
2365
2366
...
2368
2369
2370
2371
 
2372
2373
2374
2375
 
2376
2377
2378
2379
2380
2381
 
2382
2383
2384
2385
 
2386
2387
2388
...
2398
2399
2400
2401
 
2402
2403
 
2404
2405
 
2406
2407
2408
...
2416
2417
2418
2419
 
2420
2421
2422
...
2449
2450
2451
2452
 
2453
2454
 
2455
2456
2457
2458
 
2459
2460
2461
...
2463
2464
2465
2466
 
2467
2468
2469
...
2473
2474
2475
2476
 
2477
2478
2479
2480
2481
 
2482
2483
2484
2485
2486
 
2487
2488
2489
...
2504
2505
2506
2507
 
2508
2509
 
2510
2511
2512
...
2547
2548
2549
2550
 
2551
2552
2553
...
2555
2556
2557
2558
 
2559
2560
2561
...
2589
2590
2591
2592
 
2593
2594
 
2595
2596
2597
...
2626
2627
2628
2629
 
2630
2631
 
2632
2633
2634
...
2644
2645
2646
2647
 
2648
2649
 
2650
2651
 
2652
2653
2654
...
2662
2663
2664
2665
 
2666
2667
2668
...
2679
2680
2681
2682
 
2683
2684
 
2685
2686
2687
...
2701
2702
2703
2704
 
2705
2706
2707
...
2731
2732
2733
2734
 
2735
2736
2737
2738
 
2739
2740
2741
...
2781
2782
2783
2784
 
2785
2786
2787
...
2803
2804
2805
2806
 
2807
2808
2809
2810
2811
2812
 
2813
2814
2815
...
2849
2850
2851
2852
 
2853
2854
 
2855
2856
 
2857
2858
 
2859
2860
 
2861
2862
2863
...
2875
2876
2877
2878
 
2879
2880
2881
...
2897
2898
2899
2900
 
2901
2902
2903
...
2905
2906
2907
2908
 
2909
2910
2911
...
2923
2924
2925
2926
 
2927
2928
2929
...
2945
2946
2947
2948
 
2949
2950
2951
...
2975
2976
2977
2978
 
2979
2980
 
2981
2982
2983
...
3010
3011
3012
3013
 
3014
3015
3016
...
3018
3019
3020
3021
 
3022
3023
 
3024
3025
3026
...
3035
3036
3037
3038
 
3039
3040
3041
...
3045
3046
3047
3048
 
3049
3050
3051
...
3064
3065
3066
3067
 
3068
3069
3070
...
3080
3081
3082
3083
 
3084
3085
3086
...
3088
3089
3090
3091
 
3092
3093
3094
...
3096
3097
3098
3099
 
3100
3101
3102
3103
 
3104
3105
3106
...
3118
3119
3120
3121
 
3122
3123
3124
...
3130
3131
3132
3133
 
3134
3135
 
3136
3137
3138
...
3146
3147
3148
3149
 
3150
3151
3152
3153
 
3154
3155
 
3156
3157
3158
...
3170
3171
3172
3173
 
3174
3175
3176
...
3220
3221
3222
3223
 
3224
3225
3226
...
3237
3238
3239
3240
 
3241
3242
3243
3244
 
3245
3246
 
3247
3248
3249
...
3259
3260
3261
3262
 
3263
3264
3265
...
3287
3288
3289
3290
 
3291
3292
3293
...
3314
3315
3316
3317
 
3318
3319
3320
...
3352
3353
3354
3355
 
3356
3357
 
3358
3359
3360
...
3371
3372
3373
3374
 
3375
3376
3377
...
3415
3416
3417
3418
 
3419
3420
3421
...
3427
3428
3429
3430
 
3431
3432
3433
...
3453
3454
3455
3456
 
3457
3458
3459
3460
 
3461
3462
3463
...
3471
3472
3473
3474
 
3475
3476
3477
...
3585
3586
3587
3588
 
3589
3590
3591
...
3690
3691
3692
3693
 
3694
3695
3696
...
3714
3715
3716
3717
 
3718
3719
3720
...
3734
3735
3736
3737
 
3738
3739
3740
...
3777
3778
3779
3780
 
3781
3782
3783
...
3791
3792
3793
3794
 
3795
3796
 
3797
3798
3799
...
3810
3811
3812
3813
 
3814
3815
3816
...
3869
3870
3871
3872
 
3873
3874
3875
...
4005
4006
4007
4008
 
4009
4010
4011
...
4095
4096
4097
4098
 
4099
4100
4101
4102
 
4103
4104
 
4105
4106
4107
...
4133
4134
4135
4136
 
4137
4138
4139
...
4167
4168
4169
4170
 
4171
4172
4173
...
4177
4178
4179
4180
 
4181
4182
4183
...
4197
4198
4199
4200
 
4201
4202
4203
...
4214
4215
4216
4217
 
4218
4219
4220
...
4259
4260
4261
4262
 
4263
4264
4265
4266
 
4267
4268
4269
...
4283
4284
4285
4286
 
4287
4288
4289
4290
 
4291
4292
4293
...
4444
4445
4446
4447
 
4448
4449
 
4450
4451
4452
...
4566
4567
4568
4569
 
4570
4571
4572
...
6
7
8
 
9
10
 
11
12
13
14
 
15
16
17
18
19
20
 
21
22
23
24
...
34
35
36
 
37
38
 
39
40
41
42
...
53
54
55
 
56
57
58
59
...
63
64
65
 
66
67
 
68
69
70
71
...
76
77
78
 
79
80
81
82
...
126
127
128
 
129
130
 
131
132
 
133
134
 
135
136
137
138
...
156
157
158
 
159
160
161
162
...
190
191
192
 
193
194
195
196
...
253
254
255
 
256
257
258
259
...
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
...
317
318
319
 
320
321
322
323
324
325
326
 
327
328
329
330
...
336
337
338
 
339
340
341
342
 
343
344
345
346
 
347
348
 
349
350
351
352
...
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
...
414
415
416
 
417
418
419
420
...
422
423
424
 
425
426
427
428
429
430
 
431
432
 
433
434
435
436
...
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
...
476
477
478
 
479
480
481
482
...
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
...
551
552
553
 
554
555
556
557
...
561
562
563
 
564
565
566
567
...
569
570
571
 
572
573
574
575
 
576
577
 
578
579
580
581
582
583
 
584
585
586
587
 
588
589
590
591
...
601
602
603
 
604
605
 
606
607
608
609
 
610
611
612
613
...
619
620
621
 
622
623
 
624
625
 
626
627
628
629
 
630
631
632
633
...
635
636
637
 
638
639
 
640
641
642
643
 
644
645
646
647
...
650
651
652
 
653
654
655
656
...
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
...
718
719
720
 
721
722
723
724
...
730
731
732
 
733
734
735
736
...
740
741
742
 
743
744
 
745
746
747
748
749
750
751
 
752
753
 
754
755
 
756
757
758
759
...
764
765
766
 
767
768
 
769
770
771
772
...
776
777
778
 
779
780
781
782
 
783
784
 
785
786
 
787
788
789
790
...
792
793
794
 
795
796
797
798
...
804
805
806
 
807
808
809
810
 
811
812
 
813
814
815
816
...
818
819
820
 
821
822
823
824
 
825
826
827
828
...
838
839
840
 
841
842
843
844
...
858
859
860
 
861
862
863
864
865
866
 
867
868
869
870
...
882
883
884
 
885
886
887
888
 
889
890
891
892
 
893
894
895
896
897
898
 
899
900
901
902
...
905
906
907
 
908
909
910
911
912
913
 
914
915
916
917
...
937
938
939
 
940
941
942
943
...
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
...
992
993
994
 
995
996
 
997
998
999
1000
1001
1002
 
1003
1004
1005
1006
1007
1008
1009
 
1010
1011
 
1012
1013
1014
1015
...
1027
1028
1029
 
1030
1031
1032
1033
...
1045
1046
1047
 
1048
1049
1050
1051
...
1059
1060
1061
 
1062
1063
1064
1065
1066
 
1067
1068
1069
1070
 
1071
1072
1073
1074
 
1075
1076
 
1077
1078
 
1079
1080
1081
1082
 
1083
1084
1085
1086
...
1093
1094
1095
 
1096
1097
 
1098
1099
 
1100
1101
1102
1103
 
1104
1105
 
1106
1107
 
1108
1109
 
1110
1111
1112
1113
...
1137
1138
1139
 
1140
1141
 
1142
1143
1144
1145
 
1146
1147
1148
1149
1150
1151
 
1152
1153
1154
1155
...
1161
1162
1163
 
1164
1165
1166
1167
...
1182
1183
1184
 
1185
1186
1187
1188
...
1197
1198
1199
 
1200
1201
 
1202
1203
 
1204
1205
 
1206
1207
1208
1209
...
1216
1217
1218
 
1219
1220
 
1221
1222
1223
 
1224
1225
1226
1227
 
1228
1229
1230
1231
...
1233
1234
1235
 
1236
1237
 
1238
1239
1240
1241
1242
1243
 
1244
1245
1246
1247
...
1257
1258
1259
 
1260
1261
1262
1263
...
1277
1278
1279
 
1280
1281
1282
1283
...
1289
1290
1291
 
1292
1293
1294
1295
 
1296
1297
1298
1299
...
1339
1340
1341
 
1342
1343
1344
1345
...
1362
1363
1364
 
1365
1366
1367
1368
...
1372
1373
1374
 
1375
1376
 
1377
1378
1379
1380
1381
1382
 
1383
1384
1385
1386
...
1390
1391
1392
 
1393
1394
 
1395
1396
1397
1398
...
1441
1442
1443
 
1444
1445
 
1446
1447
 
1448
1449
 
1450
1451
1452
1453
...
1456
1457
1458
 
1459
1460
 
1461
1462
 
1463
1464
 
1465
1466
1467
1468
...
1472
1473
1474
 
1475
1476
 
1477
1478
1479
1480
...
1500
1501
1502
 
1503
1504
1505
1506
...
1514
1515
1516
 
1517
1518
1519
1520
...
1555
1556
1557
 
1558
1559
1560
1561
...
1563
1564
1565
 
1566
1567
 
1568
1569
1570
1571
...
1600
1601
1602
 
1603
1604
1605
1606
...
1610
1611
1612
 
1613
1614
1615
1616
...
1631
1632
1633
 
1634
1635
1636
1637
...
1641
1642
1643
 
1644
1645
1646
1647
1648
 
1649
1650
 
1651
1652
 
1653
1654
1655
1656
...
1668
1669
1670
 
1671
1672
1673
1674
...
1678
1679
1680
 
1681
1682
 
1683
1684
1685
1686
1687
1688
 
1689
1690
1691
1692
...
1714
1715
1716
 
1717
1718
1719
1720
...
1734
1735
1736
 
1737
1738
1739
1740
...
1742
1743
1744
 
1745
1746
1747
1748
1749
1750
 
1751
1752
1753
1754
...
1757
1758
1759
 
1760
1761
1762
1763
1764
1765
 
1766
1767
1768
1769
...
1773
1774
1775
 
1776
1777
1778
1779
 
1780
1781
1782
1783
1784
1785
 
1786
1787
1788
1789
 
1790
1791
1792
1793
...
1805
1806
1807
 
1808
1809
 
1810
1811
 
1812
1813
1814
1815
...
1823
1824
1825
 
1826
1827
1828
1829
...
1856
1857
1858
 
1859
1860
 
1861
1862
1863
1864
 
1865
1866
1867
1868
...
1872
1873
1874
 
1875
1876
1877
1878
...
1884
1885
1886
 
1887
1888
1889
1890
...
1896
1897
1898
 
1899
1900
 
1901
1902
1903
1904
...
1906
1907
1908
 
1909
1910
1911
1912
1913
 
1914
1915
 
1916
1917
1918
1919
1920
 
1921
1922
1923
1924
1925
1926
 
1927
1928
1929
1930
...
1940
1941
1942
 
1943
1944
1945
1946
1947
1948
1949
 
1950
1951
1952
1953
...
1969
1970
1971
 
1972
1973
1974
1975
...
1985
1986
1987
 
1988
1989
1990
1991
 
1992
1993
1994
1995
...
2031
2032
2033
 
2034
2035
2036
2037
...
2043
2044
2045
 
2046
2047
 
2048
2049
2050
2051
...
2085
2086
2087
 
2088
2089
 
2090
2091
 
2092
2093
 
2094
2095
2096
2097
...
2100
2101
2102
 
2103
2104
 
2105
2106
 
2107
2108
 
2109
2110
2111
2112
...
2116
2117
2118
 
2119
2120
 
2121
2122
2123
2124
...
2138
2139
2140
 
2141
2142
2143
2144
...
2152
2153
2154
 
2155
2156
2157
2158
...
2191
2192
2193
 
2194
2195
2196
2197
...
2199
2200
2201
 
2202
2203
 
2204
2205
2206
2207
...
2230
2231
2232
 
2233
2234
2235
2236
...
2238
2239
2240
 
2241
2242
2243
2244
...
2255
2256
2257
 
2258
2259
2260
2261
...
2265
2266
2267
 
2268
2269
 
2270
2271
 
2272
2273
 
2274
2275
2276
2277
...
2291
2292
2293
 
2294
2295
 
2296
2297
2298
2299
...
2319
2320
2321
 
2322
2323
2324
2325
...
2333
2334
2335
 
2336
2337
2338
2339
...
2341
2342
2343
 
2344
2345
2346
2347
2348
2349
 
2350
2351
2352
2353
...
2356
2357
2358
 
2359
2360
2361
2362
 
2363
2364
2365
2366
...
2368
2369
2370
 
2371
2372
2373
2374
 
2375
2376
2377
2378
2379
2380
 
2381
2382
2383
2384
 
2385
2386
2387
2388
...
2398
2399
2400
 
2401
2402
 
2403
2404
 
2405
2406
2407
2408
...
2416
2417
2418
 
2419
2420
2421
2422
...
2449
2450
2451
 
2452
2453
 
2454
2455
2456
2457
 
2458
2459
2460
2461
...
2463
2464
2465
 
2466
2467
2468
2469
...
2473
2474
2475
 
2476
2477
2478
2479
2480
 
2481
2482
2483
2484
2485
 
2486
2487
2488
2489
...
2504
2505
2506
 
2507
2508
 
2509
2510
2511
2512
...
2547
2548
2549
 
2550
2551
2552
2553
...
2555
2556
2557
 
2558
2559
2560
2561
...
2589
2590
2591
 
2592
2593
 
2594
2595
2596
2597
...
2626
2627
2628
 
2629
2630
 
2631
2632
2633
2634
...
2644
2645
2646
 
2647
2648
 
2649
2650
 
2651
2652
2653
2654
...
2662
2663
2664
 
2665
2666
2667
2668
...
2679
2680
2681
 
2682
2683
 
2684
2685
2686
2687
...
2701
2702
2703
 
2704
2705
2706
2707
...
2731
2732
2733
 
2734
2735
2736
2737
 
2738
2739
2740
2741
...
2781
2782
2783
 
2784
2785
2786
2787
...
2803
2804
2805
 
2806
2807
2808
2809
2810
2811
 
2812
2813
2814
2815
...
2849
2850
2851
 
2852
2853
 
2854
2855
 
2856
2857
 
2858
2859
 
2860
2861
2862
2863
...
2875
2876
2877
 
2878
2879
2880
2881
...
2897
2898
2899
 
2900
2901
2902
2903
...
2905
2906
2907
 
2908
2909
2910
2911
...
2923
2924
2925
 
2926
2927
2928
2929
...
2945
2946
2947
 
2948
2949
2950
2951
...
2975
2976
2977
 
2978
2979
 
2980
2981
2982
2983
...
3010
3011
3012
 
3013
3014
3015
3016
...
3018
3019
3020
 
3021
3022
 
3023
3024
3025
3026
...
3035
3036
3037
 
3038
3039
3040
3041
...
3045
3046
3047
 
3048
3049
3050
3051
...
3064
3065
3066
 
3067
3068
3069
3070
...
3080
3081
3082
 
3083
3084
3085
3086
...
3088
3089
3090
 
3091
3092
3093
3094
...
3096
3097
3098
 
3099
3100
3101
3102
 
3103
3104
3105
3106
...
3118
3119
3120
 
3121
3122
3123
3124
...
3130
3131
3132
 
3133
3134
 
3135
3136
3137
3138
...
3146
3147
3148
 
3149
3150
3151
3152
 
3153
3154
 
3155
3156
3157
3158
...
3170
3171
3172
 
3173
3174
3175
3176
...
3220
3221
3222
 
3223
3224
3225
3226
...
3237
3238
3239
 
3240
3241
3242
3243
 
3244
3245
 
3246
3247
3248
3249
...
3259
3260
3261
 
3262
3263
3264
3265
...
3287
3288
3289
 
3290
3291
3292
3293
...
3314
3315
3316
 
3317
3318
3319
3320
...
3352
3353
3354
 
3355
3356
 
3357
3358
3359
3360
...
3371
3372
3373
 
3374
3375
3376
3377
...
3415
3416
3417
 
3418
3419
3420
3421
...
3427
3428
3429
 
3430
3431
3432
3433
...
3453
3454
3455
 
3456
3457
3458
3459
 
3460
3461
3462
3463
...
3471
3472
3473
 
3474
3475
3476
3477
...
3585
3586
3587
 
3588
3589
3590
3591
...
3690
3691
3692
 
3693
3694
3695
3696
...
3714
3715
3716
 
3717
3718
3719
3720
...
3734
3735
3736
 
3737
3738
3739
3740
...
3777
3778
3779
 
3780
3781
3782
3783
...
3791
3792
3793
 
3794
3795
 
3796
3797
3798
3799
...
3810
3811
3812
 
3813
3814
3815
3816
...
3869
3870
3871
 
3872
3873
3874
3875
...
4005
4006
4007
 
4008
4009
4010
4011
...
4095
4096
4097
 
4098
4099
4100
4101
 
4102
4103
 
4104
4105
4106
4107
...
4133
4134
4135
 
4136
4137
4138
4139
...
4167
4168
4169
 
4170
4171
4172
4173
...
4177
4178
4179
 
4180
4181
4182
4183
...
4197
4198
4199
 
4200
4201
4202
4203
...
4214
4215
4216
 
4217
4218
4219
4220
...
4259
4260
4261
 
4262
4263
4264
4265
 
4266
4267
4268
4269
...
4283
4284
4285
 
4286
4287
4288
4289
 
4290
4291
4292
4293
...
4444
4445
4446
 
4447
4448
 
4449
4450
4451
4452
...
4566
4567
4568
 
4569
4570
4571
4572
0
@@ -6,19 +6,19 @@
0
 
0
 * Deprecated formatted_polymorphic_url.  [Jeremy Kemper]
0
 
0
-* Added the option to declare an asset_host as an object that responds to call (see http://github.com/dhh/asset-hosting-with-minimum-ssl for an example) [DHH]
0
+* Added the option to declare an asset_host as an object that responds to call (see http://github.com/dhh/asset-hosting-with-minimum-ssl for an example) [David Heinemeier Hansson]
0
 
0
-* Added support for multiple routes.rb files (useful for plugin engines). This also means that draw will no longer clear the route set, you have to do that by hand (shouldn't make a difference to you unless you're doing some funky stuff) [DHH]
0
+* Added support for multiple routes.rb files (useful for plugin engines). This also means that draw will no longer clear the route set, you have to do that by hand (shouldn't make a difference to you unless you're doing some funky stuff) [David Heinemeier Hansson]
0
 
0
 * Dropped formatted_* routes in favor of just passing in :format as an option. This cuts resource routes generation in half #1359 [aaronbatalion]
0
 
0
-* Remove support for old double-encoded cookies from the cookie store.  These values haven't been generated since before 2.1.0, and any users who have visited the app in the intervening 6 months will have had their cookie upgraded. [Koz]
0
+* Remove support for old double-encoded cookies from the cookie store.  These values haven't been generated since before 2.1.0, and any users who have visited the app in the intervening 6 months will have had their cookie upgraded. [Michael Koziarski]
0
 
0
 * Allow helpers directory to be overridden via ActionController::Base.helpers_dir #1424 [Sam Pohlenz]
0
 
0
 * Remove deprecated ActionController::Base#assign_default_content_type_and_charset
0
 
0
-* Changed the default of ActionView#render to assume partials instead of files when not given an options hash [DHH]. Examples:
0
+* Changed the default of ActionView#render to assume partials instead of files when not given an options hash [David Heinemeier Hansson]. Examples:
0
 
0
     # Instead of <%= render :partial => "account" %>
0
     <%= render "account" %>
0
@@ -34,9 +34,9 @@
0
     # <%= render :partial => "posts/post", :collection => @posts %>
0
     <%= render(@posts) %>
0
 
0
-* Remove deprecated render_component. Please use the plugin from http://github.com/rails/render_component/tree/master [Pratik]
0
+* Remove deprecated render_component. Please use the plugin from http://github.com/rails/render_component/tree/master [Pratik Naik]
0
 
0
-* Fixed RedCloth and BlueCloth shouldn't preload. Instead just assume that they're available if you want to use textilize and markdown and let autoload require them [DHH]
0
+* Fixed RedCloth and BlueCloth shouldn't preload. Instead just assume that they're available if you want to use textilize and markdown and let autoload require them [David Heinemeier Hansson]
0
 
0
 
0
 *2.2.2 (November 21st, 2008)*
0
@@ -53,7 +53,7 @@
0
      product.resources :images, :except => :destroy
0
    end
0
 
0
-* Added render :js for people who want to render inline JavaScript replies without using RJS [DHH]
0
+* Added render :js for people who want to render inline JavaScript replies without using RJS [David Heinemeier Hansson]
0
 
0
 * Fixed that polymorphic_url should compact given array #1317 [hiroshi]
0
 
0
@@ -63,9 +63,9 @@
0
 
0
 * Fix regression bug that made date_select and datetime_select raise a Null Pointer Exception when a nil date/datetime was passed and only month and year were displayed #1289 [Bernardo Padua/Tor Erik]
0
 
0
-* Simplified the logging format for parameters (don't include controller, action, and format as duplicates) [DHH]
0
+* Simplified the logging format for parameters (don't include controller, action, and format as duplicates) [David Heinemeier Hansson]
0
 
0
-* Remove the logging of the Session ID when the session store is CookieStore [DHH]
0
+* Remove the logging of the Session ID when the session store is CookieStore [David Heinemeier Hansson]
0
 
0
 * Fixed regex in redirect_to to fully support URI schemes #1247 [Seth Fitzsimmons]
0
 
0
@@ -76,7 +76,7 @@
0
 
0
 * Fix incorrect closing CDATA delimiter and that HTML::Node.parse would blow up on unclosed CDATA sections [packagethief]
0
 
0
-* Added stale? and fresh_when methods to provide a layer of abstraction above request.fresh? and friends [DHH]. Example:
0
+* Added stale? and fresh_when methods to provide a layer of abstraction above request.fresh? and friends [David Heinemeier Hansson]. Example:
0
 
0
     class ArticlesController < ApplicationController
0
       def show_with_respond_to_block
0
@@ -126,13 +126,13 @@
0
 
0
 * Fixed FormTagHelper#submit_tag with :disable_with option wouldn't submit the button's value when was clicked #633 [Jose Fernandez]
0
 
0
-* Stopped logging template compiles as it only clogs up the log [DHH]
0
+* Stopped logging template compiles as it only clogs up the log [David Heinemeier Hansson]
0
 
0
-* Changed the X-Runtime header to report in milliseconds [DHH]
0
+* Changed the X-Runtime header to report in milliseconds [David Heinemeier Hansson]
0
 
0
-* Changed BenchmarkHelper#benchmark to report in milliseconds [DHH]
0
+* Changed BenchmarkHelper#benchmark to report in milliseconds [David Heinemeier Hansson]
0
 
0
-* Changed logging format to be millisecond based and skip misleading stats [DHH]. Went from:
0
+* Changed logging format to be millisecond based and skip misleading stats [David Heinemeier Hansson]. Went from:
0
 
0
     Completed in 0.10000 (4 reqs/sec) | Rendering: 0.04000 (40%) | DB: 0.00400 (4%) | 200 OK [http://example.com]
0
 
0
@@ -156,7 +156,7 @@
0
 
0
 * Added button_to_remote helper.  #3641 [Donald Piret, Tarmo Tänav]
0
 
0
-* Deprecate render_component. Please use render_component plugin from http://github.com/rails/render_component/tree/master [Pratik]
0
+* Deprecate render_component. Please use render_component plugin from http://github.com/rails/render_component/tree/master [Pratik Naik]
0
 
0
 * Routes may be restricted to lists of HTTP methods instead of a single method or :any.  #407 [Brennan Dunn, Gaius Centus Novus]
0
     map.resource :posts, :collection => { :search => [:get, :post] }
0
@@ -190,7 +190,7 @@
0
 
0
 * All 2xx requests are considered successful [Josh Peek]
0
 
0
-* Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host along with the source or per-request proc's won't run [DHH]
0
+* Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host along with the source or per-request proc's won't run [David Heinemeier Hansson]
0
 
0
 * Removed config.action_view.cache_template_loading, use config.cache_classes instead [Josh Peek]
0
 
0
@@ -253,7 +253,7 @@
0
 
0
 * Replaced TemplateFinder abstraction with ViewLoadPaths [Josh Peek]
0
 
0
-* Added block-call style to link_to [Sam Stephenson/DHH]. Example:
0
+* Added block-call style to link_to [Sam Stephenson/David Heinemeier Hansson]. Example:
0
 
0
     <% link_to(@profile) do %>
0
       <strong><%= @profile.name %></strong> -- <span>Check it out!!</span>
0
@@ -284,30 +284,30 @@
0
 
0
 * Added session(:on) to turn session management back on in a controller subclass if the superclass turned it off (Peter Jones) [#136]
0
 
0
-* Change the request forgery protection to go by Content-Type instead of request.format so that you can't bypass it by POSTing to "#{request.uri}.xml" [rick]
0
+* Change the request forgery protection to go by Content-Type instead of request.format so that you can't bypass it by POSTing to "#{request.uri}.xml" [Rick Olson]
0
 * InstanceTag#default_time_from_options with hash args uses Time.current as default; respects hash settings when time falls in system local spring DST gap [Geoff Buesing]
0
 
0
 * select_date defaults to Time.zone.today when config.time_zone is set [Geoff Buesing]
0
 
0
 * Fixed that TextHelper#text_field would corrypt when raw HTML was used as the value (mchenryc, Kevin Glowacz) [#80]
0
 
0
-* Added ActionController::TestCase#rescue_action_in_public! to control whether the action under test should use the regular rescue_action path instead of simply raising the exception inline (great for error testing) [DHH]
0
+* Added ActionController::TestCase#rescue_action_in_public! to control whether the action under test should use the regular rescue_action path instead of simply raising the exception inline (great for error testing) [David Heinemeier Hansson]
0
 
0
-* Reduce number of instance variables being copied from controller to view. [Pratik]
0
+* Reduce number of instance variables being copied from controller to view. [Pratik Naik]
0
 
0
 * select_datetime and select_time default to Time.zone.now when config.time_zone is set [Geoff Buesing]
0
 
0
 * datetime_select defaults to Time.zone.now when config.time_zone is set [Geoff Buesing]
0
 
0
-* Remove ActionController::Base#view_controller_internals flag. [Pratik]
0
+* Remove ActionController::Base#view_controller_internals flag. [Pratik Naik]
0
 
0
 * Add conditional options to caches_page method. [Paul Horsfall]
0
 
0
-* Move missing template logic to ActionView. [Pratik]
0
+* Move missing template logic to ActionView. [Pratik Naik]
0
 
0
-* Introduce ActionView::InlineTemplate class. [Pratik]
0
+* Introduce ActionView::InlineTemplate class. [Pratik Naik]
0
 
0
-* Automatically parse posted JSON content for Mime::JSON requests.  [rick]
0
+* Automatically parse posted JSON content for Mime::JSON requests.  [Rick Olson]
0
 
0
   POST /posts
0
   {"post": {"title": "Breaking News"}}
0
@@ -317,14 +317,14 @@
0
     # ...
0
   end
0
 
0
-* add json_escape ERB util to escape html entities in json strings that are output in HTML pages. [rick]
0
+* add json_escape ERB util to escape html entities in json strings that are output in HTML pages. [Rick Olson]
0
 
0
 * Provide a helper proxy to access helper methods from outside views. Closes #10839 [Josh Peek]
0
   e.g. ApplicationController.helpers.simple_format(text)
0
 
0
 * Improve documentation. [Xavier Noria, leethal, jerome]
0
 
0
-* Ensure RJS redirect_to doesn't html-escapes string argument. Closes #8546 [josh, eventualbuddha, Pratik]
0
+* Ensure RJS redirect_to doesn't html-escapes string argument. Closes #8546 [Josh Peek, eventualbuddha, Pratik Naik]
0
 
0
 * Support render :partial => collection of heterogeneous elements.  #11491 [Zach Dennis]
0
 
0
@@ -336,17 +336,17 @@
0
 
0
 * Fixed HTML::Tokenizer (used in sanitize helper) didn't handle unclosed CDATA tags #10071 [esad, packagethief]
0
 
0
-* Improve documentation. [Radar, Jan De Poorter, chuyeow, xaviershay, danger, miloops, Xavier Noria,  Sunny Ripert]
0
+* Improve documentation. [Ryan Bigg, Jan De Poorter, Cheah Chu Yeow, Xavier Shay, Jack Danger Canty, Emilio Tagua, Xavier Noria,  Sunny Ripert]
0
 
0
 * Fixed that FormHelper#radio_button would produce invalid ids #11298 [harlancrystal]
0
 
0
-* Added :confirm option to submit_tag #11415 [miloops]
0
+* Added :confirm option to submit_tag #11415 [Emilio Tagua]
0
 
0
 * Fixed NumberHelper#number_with_precision to properly round in a way that works equally on Mac, Windows, Linux (closes #11409, #8275, #10090, #8027) [zhangyuanyi]
0
 
0
-* Allow the #simple_format text_helper to take an html_options hash for each paragraph.  #2448 [Francois Beausoleil, thechrisoshow]
0
+* Allow the #simple_format text_helper to take an html_options hash for each paragraph.  #2448 [François Beausoleil, Chris O'Sullivan]
0
 
0
-* Fix regression from filter refactoring where re-adding a skipped filter resulted in it being called twice.  [rick]
0
+* Fix regression from filter refactoring where re-adding a skipped filter resulted in it being called twice.  [Rick Olson]
0
 
0
 * Refactor filters to use Active Support callbacks.  #11235 [Josh Peek]
0
 
0
@@ -362,43 +362,43 @@
0
 
0
 * Fix nested parameter hash parsing bug.  #10797 [thomas.lee]
0
 
0
-* Allow using named routes in ActionController::TestCase before any request has been made. Closes #11273 [alloy]
0
+* Allow using named routes in ActionController::TestCase before any request has been made. Closes #11273 [Eloy Duran]
0
 
0
-* Fixed that sweepers defined by cache_sweeper will be added regardless of the perform_caching setting. Instead, control whether the sweeper should be run with the perform_caching setting. This makes testing easier when you want to turn perform_caching on/off [DHH]
0
+* Fixed that sweepers defined by cache_sweeper will be added regardless of the perform_caching setting. Instead, control whether the sweeper should be run with the perform_caching setting. This makes testing easier when you want to turn perform_caching on/off [David Heinemeier Hansson]
0
 
0
 * Make MimeResponds::Responder#any work without explicit types. Closes #11140 [jaw6]
0
 
0
 * Better error message for type conflicts when parsing params.  Closes #7962 [spicycode, matt]
0
 
0
-* Remove unused ActionController::Base.template_class. Closes #10787 [Pratik]
0
+* Remove unused ActionController::Base.template_class. Closes #10787 [Pratik Naik]
0
 
0
-* Moved template handlers related code from ActionView::Base to ActionView::Template. [Pratik]
0
+* Moved template handlers related code from ActionView::Base to ActionView::Template. [Pratik Naik]
0
 
0
-* Tests for div_for and content_tag_for helpers. Closes #11223 [thechrisoshow]
0
+* Tests for div_for and content_tag_for helpers. Closes #11223 [Chris O'Sullivan]
0
 
0
 * Allow file uploads in Integration Tests.  Closes #11091 [RubyRedRick]
0
 
0
-* Refactor partial rendering into a PartialTemplate class. [Pratik]
0
+* Refactor partial rendering into a PartialTemplate class. [Pratik Naik]
0
 
0
-* Added that requests with JavaScript as the priority mime type in the accept header and no format extension in the parameters will be treated as though their format was :js when it comes to determining which template to render. This makes it possible for JS requests to automatically render action.js.rjs files without an explicit respond_to block  [DHH]
0
+* Added that requests with JavaScript as the priority mime type in the accept header and no format extension in the parameters will be treated as though their format was :js when it comes to determining which template to render. This makes it possible for JS requests to automatically render action.js.rjs files without an explicit respond_to block  [David Heinemeier Hansson]
0
 
0
-* Tests for distance_of_time_in_words with TimeWithZone instances. Closes #10914 [ernesto.jimenez]
0
+* Tests for distance_of_time_in_words with TimeWithZone instances. Closes #10914 [Ernesto Jimenez]
0
 
0
 * Remove support for multivalued (e.g., '&'-delimited) cookies. [Jamis Buck]
0
 
0
 * Fix problem with render :partial collections, records, and locals. #11057 [lotswholetime] 
0
 
0
-* Added support for naming concrete classes in sweeper declarations [DHH]
0
+* Added support for naming concrete classes in sweeper declarations [David Heinemeier Hansson]
0
 
0
-* Remove ERB trim variables from trace template in case ActionView::Base.erb_trim_mode is changed in the application.  #10098 [tpope, kampers]
0
+* Remove ERB trim variables from trace template in case ActionView::Base.erb_trim_mode is changed in the application.  #10098 [Tim Pope, Chris Kampmeier]
0
 
0
-* Fix typo in form_helper documentation.  #10650 [xaviershay, kampers]
0
+* Fix typo in form_helper documentation.  #10650 [Xavier Shay, Chris Kampmeier]
0
 
0
 * Fix bug with setting Request#format= after the getter has cached the value.  #10889 [cch1]
0
 
0
-* Correct inconsistencies in RequestForgeryProtection docs.  #11032 [mislav]
0
+* Correct inconsistencies in RequestForgeryProtection docs.  #11032 [Mislav Marohnić]
0
 
0
-* Introduce a Template class to ActionView.  #11024 [lifofifo]
0
+* Introduce a Template class to ActionView.  #11024 [Pratik Naik]
0
 
0
 * Introduce the :index option for form_for and fields_for to simplify multi-model forms (see http://railscasts.com/episodes/75).  #9883 [rmm5t]
0
 
0
@@ -414,7 +414,7 @@
0
   e.g.  map.dashboard '/dashboard', :controller=>'dashboard'
0
         map.root      :dashboard
0
 
0
-* Handle corner case with image_tag when passed 'messed up' image names. #9018 [duncanbeevers, mpalmer]
0
+* Handle corner case with image_tag when passed 'messed up' image names. #9018 [Duncan Beevers, mpalmer]
0
 
0
 * Add label_tag helper for generating elements. #10802 [DefV]
0
 
0
@@ -422,15 +422,15 @@
0
 
0
 * Performance: optimize route recognition. Large speedup for apps with many resource routes.  #10835 [oleganza]
0
 
0
-* Make render :partial recognise form builders and use the _form partial.  #10814 [djanowski]
0
+* Make render :partial recognise form builders and use the _form partial.  #10814 [Damian Janowski]
0
 
0
 * Allow users to declare other namespaces when using the atom feed helpers. #10304 [david.calavera]
0
 
0
 * Introduce send_file :x_sendfile => true to send an X-Sendfile response header.  [Jeremy Kemper]
0
 
0
-* Fixed ActionView::Helpers::ActiveRecordHelper::form for when protect_from_forgery is used #10739 [jeremyevans]
0
+* Fixed ActionView::Helpers::ActiveRecordHelper::form for when protect_from_forgery is used #10739 [Jeremy Evans]
0
 
0
-* Provide nicer access to HTTP Headers.  Instead of request.env["HTTP_REFERRER"] you can now use request.headers["Referrer"]. [Koz]
0
+* Provide nicer access to HTTP Headers.  Instead of request.env["HTTP_REFERRER"] you can now use request.headers["Referrer"]. [Michael Koziarski]
0
 
0
 * UrlWriter respects relative_url_root.  #10748 [Cheah Chu Yeow]
0
 
0
@@ -440,26 +440,26 @@
0
 
0
 * assert_response failures include the exception message.  #10688 [Seth Rasmussen]
0
 
0
-* All fragment cache keys are now by default prefixed with the "views/" namespace [DHH]
0
+* All fragment cache keys are now by default prefixed with the "views/" namespace [David Heinemeier Hansson]
0
 
0
-* Moved the caching stores from ActionController::Caching::Fragments::* to ActiveSupport::Cache::*. If you're explicitly referring to a store, like ActionController::Caching::Fragments::MemoryStore, you need to update that reference with ActiveSupport::Cache::MemoryStore [DHH]
0
+* Moved the caching stores from ActionController::Caching::Fragments::* to ActiveSupport::Cache::*. If you're explicitly referring to a store, like ActionController::Caching::Fragments::MemoryStore, you need to update that reference with ActiveSupport::Cache::MemoryStore [David Heinemeier Hansson]
0
 
0
-* Deprecated ActionController::Base.fragment_cache_store for ActionController::Base.cache_store [DHH]
0
+* Deprecated ActionController::Base.fragment_cache_store for ActionController::Base.cache_store [David Heinemeier Hansson]
0
 
0
-* Made fragment caching in views work for rjs and builder as well #6642 [zsombor]
0
+* Made fragment caching in views work for rjs and builder as well #6642 [Dee Zsombor]
0
 
0
 * Fixed rendering of partials with layout when done from site layout #9209 [antramm]
0
 
0
-* Fix atom_feed_helper to comply with the atom spec.  Closes #10672 [xaviershay]
0
+* Fix atom_feed_helper to comply with the atom spec.  Closes #10672 [Xavier Shay]
0
 
0
   * The tags created do not contain a date (http://feedvalidator.org/docs/error/InvalidTAG.html)
0
   * IDs are not guaranteed unique
0
   * A default self link was not provided, contrary to the documentation
0
   * NOTE:  This changes tags for existing atom entries, but at least they validate now.
0
 
0
-* Correct indentation in tests.  Closes #10671 [l.guidi]
0
+* Correct indentation in tests.  Closes #10671 [Luca Guidi]
0
 
0
-* Fix that auto_link looks for ='s in url paths (Amazon urls have them).  Closes #10640 [bgreenlee]
0
+* Fix that auto_link looks for ='s in url paths (Amazon urls have them).  Closes #10640 [Brad Greenlee]
0
 
0
 * Ensure that test case setup is run even if overridden.  #10382 [Josh Peek]
0
 
0
@@ -476,7 +476,7 @@
0
 
0
 * Added OPTIONS to list of default accepted HTTP methods #10449 [holoway]
0
 
0
-* Added option to pass proc to ActionController::Base.asset_host for maximum configurability #10521 [chuyeow]. Example:
0
+* Added option to pass proc to ActionController::Base.asset_host for maximum configurability #10521 [Cheah Chu Yeow]. Example:
0
 
0
     ActionController::Base.asset_host = Proc.new { |source|
0
       if source.starts_with?('/images')
0
@@ -505,45 +505,45 @@
0
 
0
 * Fixed send_file/binary_content for testing #8044 [tolsen]
0
 
0
-* When a NonInferrableControllerError is raised, make the proposed fix clearer in the error message. Closes #10199 [danger]
0
+* When a NonInferrableControllerError is raised, make the proposed fix clearer in the error message. Closes #10199 [Jack Danger Canty]
0
 
0
 * Update Prototype to 1.6.0.1.  [sam]
0
 
0
 * Update script.aculo.us to 1.8.0.1.  [madrobby]
0
 
0
-* Add 'disabled' attribute to <OPTION> separators used in time zone and country selects.  Closes #10354 [hasmanyjosh]
0
+* Add 'disabled' attribute to <OPTION> separators used in time zone and country selects.  Closes #10354 [Josh Susser]
0
 
0
-* Added the same record identification guessing rules to fields_for as form_for has [DHH]
0
+* Added the same record identification guessing rules to fields_for as form_for has [David Heinemeier Hansson]
0
 
0
-* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [DHH]
0
+* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [David Heinemeier Hansson]
0
 
0
 * Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [Tarmo Tänav]
0
 
0
 * Update to Prototype -r8232.  [sam]
0
 
0
-* Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager, Koz] #10292
0
+* Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager, Michael Koziarski] #10292
0
 
0
 * Added protection from trailing slashes on page caching #10229 [devrieda]
0
 
0
-* Asset timestamps are appended, not prepended. Closes #10276 [mnaberez]
0
+* Asset timestamps are appended, not prepended. Closes #10276 [Mike Naberezny]
0
 
0
 * Minor inconsistency in description of render example. Closes #10029 [ScottSchram]
0
 
0
-* Add #prepend_view_path and #append_view_path instance methods on ActionController::Base for consistency with the class methods.  [rick]
0
+* Add #prepend_view_path and #append_view_path instance methods on ActionController::Base for consistency with the class methods.  [Rick Olson]
0
 
0
-* Refactor sanitizer helpers into HTML classes and make it easy to swap them out with custom implementations.  Closes #10129.  [rick]
0
+* Refactor sanitizer helpers into HTML classes and make it easy to swap them out with custom implementations.  Closes #10129.  [Rick Olson]
0
 
0
-* Add deprecation for old subtemplate syntax for ActionMailer templates, use render :partial [rick]
0
+* Add deprecation for old subtemplate syntax for ActionMailer templates, use render :partial [Rick Olson]
0
 
0
-* Fix TemplateError so it doesn't bomb on exceptions while running tests [rick]
0
+* Fix TemplateError so it doesn't bomb on exceptions while running tests [Rick Olson]
0
 
0
-* Fixed that named routes living under resources shouldn't have double slashes #10198 [isaacfeliu]
0
+* Fixed that named routes living under resources shouldn't have double slashes #10198 [Isaac Feliu]
0
 
0
-* Make sure that cookie sessions use a secret that is at least 30 chars in length. [Koz]
0
+* Make sure that cookie sessions use a secret that is at least 30 chars in length. [Michael Koziarski]
0
 
0
 * Fixed that partial rendering should look at the type of the first render to determine its own type if no other clues are available (like when using text.plain.erb as the extension in AM) #10130 [java]
0
 
0
-* Fixed that has_many :through associations should render as collections too #9051 [mathie/danger]
0
+* Fixed that has_many :through associations should render as collections too #9051 [mathie/Jack Danger Canty]
0
 
0
 * Added :mouseover short-cut to AssetTagHelper#image_tag for doing easy image swaps #6893 [joost]
0
 
0
@@ -551,7 +551,7 @@
0
 
0
 * Fix syntax error in documentation example for cycle method. Closes #8735 [foca]
0
 
0
-* Document :with option for link_to_remote. Closes #8765 [ryanb]
0
+* Document :with option for link_to_remote. Closes #8765 [Ryan Bates]
0
 
0
 * Document :minute_step option for time_select. Closes #8814 [brupm]
0
 
0
@@ -561,7 +561,7 @@
0
 
0
 * Fix broken tag in assert_tag documentation. Closes #9037 [mfazekas]
0
 
0
-* Add documentation for route conditions. Closes #9041 [innu, manfred]
0
+* Add documentation for route conditions. Closes #9041 [innu, Manfred Stienstra]
0
 
0
 * Fix typo left over from previous typo fix in url helper. Closes #9414 [Henrik N]
0
 
0
@@ -569,23 +569,23 @@
0
 
0
 * Update Prototype to 1.6.0 and script.aculo.us to 1.8.0.  [sam, madrobby]
0
 
0
-* Expose the cookie jar as a helper method (before the view would just get the raw cookie hash) [DHH]
0
+* Expose the cookie jar as a helper method (before the view would just get the raw cookie hash) [David Heinemeier Hansson]
0
 
0
 * Integration tests: get_ and post_via_redirect take a headers hash.  #9130 [simonjefford]
0
 
0
-* Simplfy #view_paths implementation.  ActionView templates get the exact object, not a dup.  [Rick]
0
+* Simplfy #view_paths implementation.  ActionView templates get the exact object, not a dup.  [Rick Olson]
0
 
0
-* Update tests for ActiveSupport's JSON escaping change.  [rick]
0
+* Update tests for ActiveSupport's JSON escaping change.  [Rick Olson]
0
 
0
 * FormHelper's auto_index should use #to_param instead of #id_before_type_cast.  Closes #9994 [mattly]
0
 
0
 * Doc typo fixes for ActiveRecordHelper. Closes #9973 [mikong]
0
 
0
-* Make example parameters in restful routing docs idiomatic. Closes #9993 [danger]
0
+* Make example parameters in restful routing docs idiomatic. Closes #9993 [Jack Danger Canty]
0
 
0
 * Make documentation comment for mime responders match documentation example.  Closes #9357 [yon]
0
 
0
-* Introduce a new test case class for functional tests.  ActionController::TestCase. [Koz]
0
+* Introduce a new test case class for functional tests.  ActionController::TestCase. [Michael Koziarski]
0
 
0
 * Fix incorrect path in helper rdoc. Closes #9926 [viktor tron]
0
 
0
@@ -601,13 +601,13 @@
0
 
0
 * Disabled checkboxes don't submit a form value.  #9301 [vladr, robinjfisher]
0
 
0
-* Added tests for options to ActiveRecordHelper#form. Closes #7213 [richcollins, mikong, mislav]
0
+* Added tests for options to ActiveRecordHelper#form. Closes #7213 [richcollins, mikong, Mislav Marohnić]
0
 
0
-* Changed before_filter halting to happen automatically on render or redirect but no longer on simply returning false [DHH]
0
+* Changed before_filter halting to happen automatically on render or redirect but no longer on simply returning false [David Heinemeier Hansson]
0
 
0
 * Ensure that cookies handle array values correctly.  Closes #9937 [queso]
0
 
0
-* Make sure resource routes don't clash with internal helpers like javascript_path, image_path etc.  #9928 [gbuesing]
0
+* Make sure resource routes don't clash with internal helpers like javascript_path, image_path etc.  #9928 [Geoff Buesing]
0
 
0
 * caches_page uses a single after_filter instead of one per action.  #9891 [Pratik Naik]
0
 
0
@@ -619,15 +619,15 @@
0
 
0
 * error_messages_for also takes :message and :header_message options which defaults to the old "There were problems with the following fields:" and "<count> errors prohibited this <object_name> from being saved".  #8270 [rmm5t, zach-inglis-lt3]
0
 
0
-* Make sure that custom inflections are picked up by map.resources.  #9815 [mislav]
0
+* Make sure that custom inflections are picked up by map.resources.  #9815 [Mislav Marohnić]
0
 
0
-* Changed SanitizeHelper#sanitize to only allow the custom attributes and tags when specified in the call [DHH]
0
+* Changed SanitizeHelper#sanitize to only allow the custom attributes and tags when specified in the call [David Heinemeier Hansson]
0
 
0
-* Extracted sanitization methods from TextHelper to SanitizeHelper [DHH]
0
+* Extracted sanitization methods from TextHelper to SanitizeHelper [David Heinemeier Hansson]
0
 
0
 * rescue_from accepts :with => lambda { |exception| ... } or a normal block.  #9827 [Pratik Naik]
0
 
0
-* Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [codahale, chasgrundy]
0
+* Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [Coda Hale, chasgrundy]
0
 
0
 * Add link_to :back which uses your referrer with a fallback to a javascript link. #7366 [eventualbuddha, Tarmo Tänav]
0
 
0
@@ -635,13 +635,13 @@
0
 
0
 * Fix url_for, redirect_to, etc. with :controller => :symbol instead of 'string'.  #8562, #9525 [Justin Lynn, Tarmo Tänav, shoe]
0
 
0
-* Use #require_library_or_gem to load the memcache library for the MemCache session and fragment cache stores.  Closes #8662. [Rick]
0
+* Use #require_library_or_gem to load the memcache library for the MemCache session and fragment cache stores.  Closes #8662. [Rick Olson]
0
 
0
-* Move ActionController::Routing.optimise_named_routes to ActionController::Base.optimise_named_routes.  Now you can set it in the config. [Rick]
0
+* Move ActionController::Routing.optimise_named_routes to ActionController::Base.optimise_named_routes.  Now you can set it in the config. [Rick Olson]
0
 
0
   config.action_controller.optimise_named_routes = false
0
 
0
-* ActionController::Routing::DynamicSegment#interpolation_chunk should call #to_s on all values before calling URI.escape.  [Rick]
0
+* ActionController::Routing::DynamicSegment#interpolation_chunk should call #to_s on all values before calling URI.escape.  [Rick Olson]
0
 
0
 * Only accept session ids from cookies, prevents session fixation attacks.  [bradediger] 
0
 
0
@@ -650,7 +650,7 @@
0
 
0
 * Fixed that render template did not honor exempt_from_layout #9698 [pezra]
0
 
0
-* Better error messages if you leave out the :secret option for request forgery protection.  Closes #9670 [rick]
0
+* Better error messages if you leave out the :secret option for request forgery protection.  Closes #9670 [Rick Olson]
0
 
0
 * Allow ability to disable request forgery protection, disable it in test mode by default.  Closes #9693 [Pratik Naik]
0
 
0
@@ -662,40 +662,40 @@
0
 
0
 * Cache asset ids.  [Jeremy Kemper]
0
 
0
-* Optimized named routes respect AbstractRequest.relative_url_root.  #9612 [danielmorrison, Jeremy Kemper]
0
+* Optimized named routes respect AbstractRequest.relative_url_root.  #9612 [Daniel Morrison, Jeremy Kemper]
0
 
0
 * Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public.  #9449 [Norbert Crombach]
0
 
0
-* Rename some RequestForgeryProtection methods.  The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'.  [Rick]
0
+* Rename some RequestForgeryProtection methods.  The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'.  [Rick Olson]
0
 
0
-* Merge csrf_killer plugin into rails.  Adds RequestForgeryProtection model that verifies session-specific _tokens for non-GET requests.  [Rick]
0
+* Merge csrf_killer plugin into rails.  Adds RequestForgeryProtection model that verifies session-specific _tokens for non-GET requests.  [Rick Olson]
0
 
0
-* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks.  Closes #8877. [Rick, Pratik Naik, Jacques Distler]
0
+* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks.  Closes #8877. [Rick Olson, Pratik Naik, Jacques Distler]
0
 
0
   This merges and renames the popular white_list helper (along with some css sanitizing from Jacques Distler version of the same plugin).
0
   Also applied updated versions of #strip_tags and #strip_links from #8877.
0
 
0
 * Remove use of & logic operator. Closes #8114. [watson]
0
 
0
-* Fixed JavaScriptHelper#escape_javascript to also escape closing tags #8023 [rubyruy]
0
+* Fixed JavaScriptHelper#escape_javascript to also escape closing tags #8023 [Ruy Asan]
0
 
0
 * Fixed TextHelper#word_wrap for multiline strings with extra carrier returns #8663 [seth]
0
 
0
 * Fixed that setting the :host option in url_for would automatically turn off :only_path (since :host would otherwise not be shown) #9586 [Bounga]
0
 
0
-* Added FormHelper#label.  #8641, #9850 [jcoglan, jarkko]
0
+* Added FormHelper#label.  #8641, #9850 [jcoglan, Jarkko Laine]
0
 
0
-* Added AtomFeedHelper (slightly improved from the atom_feed_helper plugin) [DHH]
0
+* Added AtomFeedHelper (slightly improved from the atom_feed_helper plugin) [David Heinemeier Hansson]
0
 
0
-* Prevent errors when generating routes for uncountable resources, (i.e. sheep where plural == singluar).   map.resources :sheep now creates sheep_index_url for the collection and sheep_url for the specific item.  [Koz]
0
+* Prevent errors when generating routes for uncountable resources, (i.e. sheep where plural == singluar).   map.resources :sheep now creates sheep_index_url for the collection and sheep_url for the specific item.  [Michael Koziarski]
0
 
0
-* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an improvement for XSS attacks #8895 [Pratik Naik, Spakman]
0
+* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an improvement for XSS attacks #8895 [Pratik Naik, Mark Somerville]
0
 
0
 * Don't warn when a path segment precedes a required segment. Closes #9615. [Nicholas Seckar]
0
 
0
 * Fixed CaptureHelper#content_for to work with the optional content parameter instead of just the block #9434 [sandofsky/wildchild].
0
 
0
-* Added Mime::Type.register_alias for dealing with different formats using the same mime type [DHH]. Example:
0
+* Added Mime::Type.register_alias for dealing with different formats using the same mime type [David Heinemeier Hansson]. Example:
0
 
0
     class PostsController < ApplicationController
0
       before_filter :adjust_format_for_iphone
0
@@ -718,7 +718,7 @@
0
         end
0
     end
0
 
0
-* Added that render :json will automatically call .to_json unless it's being passed a string [DHH].
0
+* Added that render :json will automatically call .to_json unless it's being passed a string [David Heinemeier Hansson].
0
 
0
 * Autolink behaves well with emails embedded in URLs.  #7313 [Jeremy McAnally, Tarmo Tänav]
0
 
0
@@ -730,7 +730,7 @@
0
 
0
 * root_path returns '/' not ''.  #9563 [Pratik Naik]
0
 
0
-* Fixed that setting request.format should also affect respond_to blocks [DHH]
0
+* Fixed that setting request.format should also affect respond_to blocks [David Heinemeier Hansson]
0
 
0
 * Add option to force binary mode on tempfile used for fixture_file_upload.  #6380 [Jonathan Viney]
0
 
0
@@ -740,20 +740,20 @@
0
 
0
 * Moved ActionController::Macros::InPlaceEditing into the in_place_editor plugin on the official Rails svn.  #9513 [Pratik Naik]
0
 
0
-* Removed deprecated form of calling xml_http_request/xhr without the first argument being the http verb [DHH]
0
+* Removed deprecated form of calling xml_http_request/xhr without the first argument being the http verb [David Heinemeier Hansson]
0
 
0
-* Removed deprecated methods [DHH]:
0
+* Removed deprecated methods [David Heinemeier Hansson]:
0
 
0
   - ActionController::Base#keep_flash (use flash.keep instead)
0
   - ActionController::Base#expire_matched_fragments (just call expire_fragment with a regular expression)
0
   - ActionController::Base.template_root/= methods (use ActionController#Base.view_paths/= instead)
0
   - ActionController::Base.cookie (use ActionController#Base.cookies[]= instead)
0
 
0
-* Removed the deprecated behavior of appending ".png" to image_tag/image_path calls without an existing extension [DHH]
0
+* Removed the deprecated behavior of appending ".png" to image_tag/image_path calls without an existing extension [David Heinemeier Hansson]
0
 
0
-* Removed ActionController::Base.scaffold -- it went through the whole idea of scaffolding (card board walls you remove and tweak one by one). Use the scaffold generator instead (it does resources too now!) [DHH]
0
+* Removed ActionController::Base.scaffold -- it went through the whole idea of scaffolding (card board walls you remove and tweak one by one). Use the scaffold generator instead (it does resources too now!) [David Heinemeier Hansson]
0
 
0
-* Optimise named route generation when using positional arguments.  [Koz]
0
+* Optimise named route generation when using positional arguments.  [Michael Koziarski]
0
 
0
   This change delivers significant performance benefits for the most
0
   common usage scenarios for modern rails applications by avoiding the
0
@@ -764,9 +764,9 @@
0
 
0
 * Fix layout overriding response status.  #9476 [lotswholetime]
0
 
0
-* Add field_set_tag for generating field_sets, closes #9477. [djanowski]
0
+* Add field_set_tag for generating field_sets, closes #9477. [Damian Janowski]
0
 
0
-* Allow additional parameters to be passed to named route helpers when using positional arguments.  Closes #8930 [ian.w.white@gmail.com]
0
+* Allow additional parameters to be passed to named route helpers when using positional arguments.  Closes #8930 [Ian White]
0
 
0
 * Make render :partial work with a :collection of Hashes, previously this wasn't possible due to backwards compatibility restrictions.  [Pratik Naik]
0
 
0
@@ -776,15 +776,15 @@
0
 
0
 * Find layouts even if they're not in the first view_paths directory.  Closes #9258 [caio]
0
 
0
-* Major improvement to the documentation for the options / select form helpers. Closes #9038 [kampers, jardeon, wesg]
0
+* Major improvement to the documentation for the options / select form helpers. Closes #9038 [Chris Kampmeier, jardeon, wesg]
0
 
0
 * Fix number_to_human_size when using different precisions. Closes #7536. [RichardStrand, mpalmer]
0
 
0
-* Added partial layouts (see example in action_view/lib/partials.rb) [DHH]
0
+* Added partial layouts (see example in action_view/lib/partials.rb) [David Heinemeier Hansson]
0
 
0
-* Allow you to set custom :conditions on resource routes.  [Rick]
0
+* Allow you to set custom :conditions on resource routes.  [Rick Olson]
0
 
0
-* Fixed that file.content_type for uploaded files would include a trailing \r #9053 [bgreenlee]
0
+* Fixed that file.content_type for uploaded files would include a trailing \r #9053 [Brad Greenlee]
0
 
0
 * url_for now accepts a series of symbols representing the namespace of the record [Josh Knowles]
0
 
0
@@ -792,7 +792,7 @@
0
 
0
 * Make sure missing template exceptions actually say which template they were looking for.  Closes #8683 [dasil003]
0
 
0
-* Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [skaes]
0
+* Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [Stefan Kaes]
0
 
0
   After filters will *no longer* be run if an around_filter fails to yield, users relying on
0
   this behaviour are advised to put the code in question after a yield statement in an around filter.
0
@@ -804,13 +804,13 @@
0
 
0
   render :partial => 'show.html.erb'
0
 
0
-* Improve capture helper documentation.  #8796 [kampers]
0
+* Improve capture helper documentation.  #8796 [Chris Kampmeier]
0
 
0
 * Prefix nested resource named routes with their action name, e.g. new_group_user_path(@group) instead of group_new_user_path(@group). The old nested action named route is deprecated in Rails 1.2.4.  #8558 [David Chelimsky]
0
 
0
-* Allow sweepers to be created solely for expiring after controller actions, not model changes [DHH]
0
+* Allow sweepers to be created solely for expiring after controller actions, not model changes [David Heinemeier Hansson]
0
 
0
-* Added assigns method to ActionController::Caching::Sweeper to easily access instance variables on the controller [DHH]
0
+* Added assigns method to ActionController::Caching::Sweeper to easily access instance variables on the controller [David Heinemeier Hansson]
0
 
0
 * Give the legacy X-POST_DATA_FORMAT header greater precedence during params parsing for backward compatibility.  [Jeremy Kemper]
0
 
0
@@ -818,11 +818,11 @@
0
 
0
 * Fixed that radio_button_tag should generate unique ids #3353 [Bob Silva, Rebecca, Josh Peek]
0
 
0
-* Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [mislaw]
0
+* Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [Mislav Marohnić]
0
 
0
 * Don't mistakenly interpret the request uri as the query string.  #8731 [Pratik Naik, Jeremy Kemper]
0
 
0
-* Make ActionView#view_paths an attr_accessor for real this time.  Also, don't perform an unnecessary #compact on the @view_paths array in #initialize.  Closes #8582 [dasil003, julik, rick]
0
+* Make ActionView#view_paths an attr_accessor for real this time.  Also, don't perform an unnecessary #compact on the @view_paths array in #initialize.  Closes #8582 [dasil003, julik, Rick Olson]
0
 
0
 * Tolerate missing content type on multipart file uploads. Fix for Safari 3.  [Jeremy Kemper]
0
 
0
@@ -838,7 +838,7 @@
0
 
0
 * Resources: url_for([parent, child]) generates /parents/1/children/2 for the nested resource. Likewise with the other simply helpful methods like form_for and link_to.  #6432 [mhw, Jonathan Vaught, lotswholetime]
0
 
0
-* Assume html format when rendering partials in RJS. #8076 [Rick]
0
+* Assume html format when rendering partials in RJS. #8076 [Rick Olson]
0
 
0
 * Don't double-escape url_for in views.  #8144 [Rich Collins, Josh Peek]
0
 
0
@@ -858,13 +858,13 @@
0
 
0
 * Reduce file stat calls when checking for template changes.  #7736 [alex]
0
 
0
-* Added custom path cache_page/expire_page parameters in addition to the options hashes [DHH]. Example:
0
+* Added custom path cache_page/expire_page parameters in addition to the options hashes [David Heinemeier Hansson]. Example:
0
 
0
     def index
0
       caches_page(response.body, "/index.html")
0
     end
0
 
0
-* Action Caching speedup.  #8231 [skaes]
0
+* Action Caching speedup.  #8231 [Stefan Kaes]
0
 
0
 * Wordsmith resources documentation.  #8484 [marclove]
0
 
0
@@ -882,21 +882,21 @@
0
 
0
 * Added option to suppress :size when using :maxlength for FormTagHelper#text_field #3112 [Tim Pope]
0
 
0
-* catch possible WSOD when trying to render a missing partial. Closes #8454 [Catfish]
0
+* catch possible WSOD when trying to render a missing partial. Closes #8454 [Jonathan del Strother]
0
 
0
 * Rewind request body after reading it, if possible.  #8438 [s450r1]
0
 
0
-* Resource namespaces are inherited by their has_many subresources.  #8280 [marclove, ggarside]
0
+* Resource namespaces are inherited by their has_many subresources.  #8280 [marclove, Geoff Garside]
0
 
0
 * Fix filtered parameter logging with nil parameter values.  #8422 [choonkeat]
0
 
0
-* Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST.  #7124 [Nik Wakelin, Francois Beausoleil, Wizard]
0
+* Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST.  #7124 [Nik Wakelin, François Beausoleil, Wizard]
0
 
0
 * Document caches_action.  #5419 [Jarkko Laine]
0
 
0
 * Update to Prototype 1.5.1.  [Sam Stephenson]
0
 
0
-* Allow routes to be decalred under namespaces [Tobias Luetke]: 
0
+* Allow routes to be decalred under namespaces [Tobias Lütke]: 
0
   
0
   map.namespace :admin do |admin|
0
     admin.root :controller => "products"       
0
@@ -905,13 +905,13 @@
0
   
0
 * Update to script.aculo.us 1.7.1_beta3.  [Thomas Fuchs]
0
 
0
-* observe_form always sends the serialized form.  #5271 [manfred, normelton@gmail.com]
0
+* observe_form always sends the serialized form.  #5271 [Manfred Stienstra, normelton@gmail.com]
0
 
0
 * Parse url-encoded and multipart requests ourselves instead of delegating to CGI.  [Jeremy Kemper]
0
 
0
 * select :include_blank option can be set to a string instead of true, which just uses an empty string.  #7664 [Wizard]
0
 
0
-* Added url_for usage on render :location, which allows for record identification [DHH]. Example:
0
+* Added url_for usage on render :location, which allows for record identification [David Heinemeier Hansson]. Example:
0
 
0
     render :xml => person, :status => :created, :location => person
0
   
0
@@ -937,7 +937,7 @@
0
     end
0
   end
0
 
0
-* Added record identifications to FormHelper#form_for and PrototypeHelper#remote_form_for [DHH]. Examples:
0
+* Added record identifications to FormHelper#form_for and PrototypeHelper#remote_form_for [David Heinemeier Hansson]. Examples:
0
 
0
     <% form_for(@post) do |f| %>
0
       ...
0
@@ -961,28 +961,28 @@
0
       ...
0
     <% end %>
0
 
0
-* Rationalize route path escaping according to RFC 2396 section 3.3.  #7544, #8307. [Jeremy Kemper, chrisroos, begemot, jugend]
0
+* Rationalize route path escaping according to RFC 2396 section 3.3.  #7544, #8307. [Jeremy Kemper, Chris Roos, begemot, jugend]
0
 
0
-* Added record identification with polymorphic routes for ActionController::Base#url_for and ActionView::Base#url_for [DHH]. Examples:
0
+* Added record identification with polymorphic routes for ActionController::Base#url_for and ActionView::Base#url_for [David Heinemeier Hansson]. Examples:
0
 
0
     redirect_to(post)         # => redirect_to(posts_url(post))         => Location: http://example.com/posts/1
0
     link_to(post.title, post) # => link_to(post.title, posts_url(post)) => <a href="/posts/1">Hello world</a>
0
 
0
   Any method that calls url_for on its parameters will automatically benefit from this. 
0
 
0
-* Removed deprecated parameters_for_method_reference concept (legacy from before named routes) [DHH]
0
+* Removed deprecated parameters_for_method_reference concept (legacy from before named routes) [David Heinemeier Hansson]
0
 
0
 * Add ActionController::Routing::Helpers, a module to contain common URL helpers such as polymorphic_url. [Nicholas Seckar]
0
 
0
-* Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [DHH]
0
+* Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [David Heinemeier Hansson]
0
 
0
-* Modernize documentation for form helpers. [jeremymcanally]
0
+* Modernize documentation for form helpers. [Jeremy McAnally]
0
 
0
 * Add brief introduction to REST to the resources documentation. [fearoffish]
0
 
0
 * Fix various documentation typos throughout ActionPack. [Henrik N]
0
 
0
-* Enhance documentation and add examples for url_for. [jeremymcanally]
0
+* Enhance documentation and add examples for url_for. [Jeremy McAnally]
0
 
0
 * Fix documentation typo in routes. [Norbert Crombach, pam]
0
 
0
@@ -992,24 +992,24 @@
0
 
0
 * Replace the current block/continuation filter chain handling by an implementation based on a simple loop.  #8226 [Stefan Kaes]
0
 
0
-* Update UrlWriter to accept :anchor parameter. Closes #6771. [octopod]
0
+* Update UrlWriter to accept :anchor parameter. Closes #6771. [Chris McGrath]
0
 
0
-* Added RecordTagHelper for using RecordIdentifier conventions on divs and other container elements [DHH]. Example:
0
+* Added RecordTagHelper for using RecordIdentifier conventions on divs and other container elements [David Heinemeier Hansson]. Example:
0
 
0
     <% div_for(post) do %>     <div id="post_45" class="post">
0
       <%= post.body %>           What a wonderful world!
0
     <% end %>                  </div>
0
 
0
-* Added page[record] accessor to JavaScriptGenerator that relies on RecordIdentifier to find the right dom id [DHH]. Example:
0
+* Added page[record] accessor to JavaScriptGenerator that relies on RecordIdentifier to find the right dom id [David Heinemeier Hansson]. Example:
0
 
0
     format.js do
0
       # Calls: new Effect.fade('post_45');
0
       render(:update) { |page| page[post].visual_effect(:fade) }
0
     end
0
 
0
-* Added RecordIdentifier to enforce view conventions on records for dom ids, classes, and partial paths [DHH]
0
+* Added RecordIdentifier to enforce view conventions on records for dom ids, classes, and partial paths [David Heinemeier Hansson]
0
 
0
-* Added map.namespace to deal with the common situation of admin sections and the like [DHH]
0
+* Added map.namespace to deal with the common situation of admin sections and the like [David Heinemeier Hansson]
0
 
0
     Before:
0
     
0
@@ -1027,7 +1027,7 @@
0
           :has_many   => [ :tags, :images, :variants ]
0
       end
0
 
0
-* Added :name_prefix as standard for nested resources [DHH]. WARNING: May be backwards incompatible with your app
0
+* Added :name_prefix as standard for nested resources [David Heinemeier Hansson]. WARNING: May be backwards incompatible with your app
0
 
0
     Before:
0
 
0
@@ -1045,7 +1045,7 @@
0
     
0
     This does mean that if you intended to have comments_url go to /emails/5/comments, then you'll have to set :name_prefix to nil explicitly.
0
 
0
-* Added :has_many and :has_one for declaring plural and singular resources beneath the current [DHH]
0
+* Added :has_many and :has_one for declaring plural and singular resources beneath the current [David Heinemeier Hansson]
0
 
0
     Before:
0
       
0
@@ -1059,28 +1059,28 @@
0
     
0
       map.resources :notes, :has_many => [ :comments, :attachments ], :has_one => :author
0
 
0
-* Added that render :xml will try to call to_xml if it can [DHH]. Makes these work:
0
+* Added that render :xml will try to call to_xml if it can [David Heinemeier Hansson]. Makes these work:
0
 
0
     render :xml => post
0
     render :xml => comments
0
 
0
-* Added :location option to render so that the common pattern of rendering a response after creating a new resource is now a 1-liner [DHH]
0
+* Added :location option to render so that the common pattern of rendering a response after creating a new resource is now a 1-liner [David Heinemeier Hansson]
0
 
0
     render :xml => post.to_xml, :status => :created, :location => post_url(post)
0
 
0
-* Ensure that render_text only adds string content to the body of the response [DHH]
0
+* Ensure that render_text only adds string content to the body of the response [David Heinemeier Hansson]
0
 
0
 * Return the string representation from an Xml Builder when rendering a partial. Closes #5044 [Tim Pope]
0
 
0
-* Fixed that parameters from XML should also be presented in a hash with indifferent access [DHH]
0
+* Fixed that parameters from XML should also be presented in a hash with indifferent access [David Heinemeier Hansson]
0
 
0
-* Tweak template format rules so that the ACCEPT header is only used if it's text/javascript.  This is so ajax actions without a :format param get recognized as Mime::JS. [Rick]
0
+* Tweak template format rules so that the ACCEPT header is only used if it's text/javascript.  This is so ajax actions without a :format param get recognized as Mime::JS. [Rick Olson]
0
 
0
-* The default respond_to blocks don't set a specific extension anymore, so that both 'show.rjs' and 'show.js.rjs' will work. [Rick]
0
+* The default respond_to blocks don't set a specific extension anymore, so that both 'show.rjs' and 'show.js.rjs' will work. [Rick Olson]
0
 
0
 * Allow layouts with extension of .html.erb.  Closes #8032 [Josh Knowles]
0
 
0
-* Change default respond_to templates for xml and rjs formats. [Rick]
0
+* Change default respond_to templates for xml and rjs formats. [Rick Olson]
0
 
0
   * Default xml template goes from #{action_name}.rxml => #{action_name}.xml.builder.
0
   * Default rjs template goes from #{action_name}.rjs => #{action_name}.js.rjs.
0
@@ -1093,21 +1093,21 @@
0
       end
0
     end
0
 
0
-* Fix WSOD due to modification of a formatted template extension so that requests to templates like 'foo.html.erb' fail on the second hit.  [Rick]
0
+* Fix WSOD due to modification of a formatted template extension so that requests to templates like 'foo.html.erb' fail on the second hit.  [Rick Olson]
0
 
0
-* Fix WSOD when template compilation fails [Rick]
0
+* Fix WSOD when template compilation fails [Rick Olson]
0
 
0
-* Change ActionView template defaults.  Look for templates using the request format first, such as "show.html.erb" or "show.xml.builder", before looking for the old defaults like "show.erb" or "show.builder" [Rick]
0
+* Change ActionView template defaults.  Look for templates using the request format first, such as "show.html.erb" or "show.xml.builder", before looking for the old defaults like "show.erb" or "show.builder" [Rick Olson]
0
 
0
 * Highlight helper highlights one or many terms in a single pass.  [Jeremy Kemper]
0
 
0
-* Dropped the use of ; as a separator of non-crud actions on resources and went back to the vanilla slash. It was a neat idea, but lots of the non-crud actions turned out not to be RPC (as the ; was primarily intended to discourage), but legitimate sub-resources, like /parties/recent, which didn't deserve the uglification of /parties;recent. Further more, the semicolon caused issues with caching and HTTP authentication in Safari. Just Not Worth It [DHH]
0
+* Dropped the use of ; as a separator of non-crud actions on resources and went back to the vanilla slash. It was a neat idea, but lots of the non-crud actions turned out not to be RPC (as the ; was primarily intended to discourage), but legitimate sub-resources, like /parties/recent, which didn't deserve the uglification of /parties;recent. Further more, the semicolon caused issues with caching and HTTP authentication in Safari. Just Not Worth It [David Heinemeier Hansson]
0
 
0
-* Added that FormTagHelper#submit_tag will return to its original state if the submit fails and you're using :disable_with [DHH]
0
+* Added that FormTagHelper#submit_tag will return to its original state if the submit fails and you're using :disable_with [David Heinemeier Hansson]
0
 
0
-* Cleaned up, corrected, and mildly expanded ActionPack documentation.  Closes #7190 [jeremymcanally]
0
+* Cleaned up, corrected, and mildly expanded ActionPack documentation.  Closes #7190 [Jeremy McAnally]
0
 
0
-* Small collection of ActionController documentation cleanups.  Closes #7319 [jeremymcanally]
0
+* Small collection of ActionController documentation cleanups.  Closes #7319 [Jeremy McAnally]
0
 
0
 * Make sure the route expiry hash is constructed by comparing the to_param-ized values of each hash. [Jamis Buck]
0
 
0
@@ -1137,19 +1137,19 @@
0
 * Allow array and hash query parameters. Array route parameters are converted/to/a/path as before.  #6765, #7047, #7462 [bgipsy, Jeremy McAnally, Dan Kubb, brendan]
0
 
0
 # Add a #dbman attr_reader for CGI::Session and make CGI::Session::CookieStore#generate_digest public so it's easy to generate digests
0
-using the cookie store's secret. [Rick]
0
+using the cookie store's secret. [Rick Olson]
0
 
0
-* Added Request#url that returns the complete URL used for the request [DHH]
0
+* Added Request#url that returns the complete URL used for the request [David Heinemeier Hansson]
0
 
0
 * Extract dynamic scaffolding into a plugin.  #7700 [Josh Peek]
0
 
0
-* Added user/password options for url_for to add http authentication in a URL [DHH]
0
+* Added user/password options for url_for to add http authentication in a URL [David Heinemeier Hansson]
0
 
0
 * Fixed that FormTagHelper#text_area_tag should disregard :size option if it's not a string [Brendon Davidson]
0
 
0
 * Set the original button value in an attribute of the button when using the :disable_with key with submit_tag, so that the original can be restored later. [Jamis Buck]
0
 
0
-* session_enabled? works with session :off.  #6680 [Catfish]
0
+* session_enabled? works with session :off.  #6680 [Jonathan del Strother]
0
 
0
 * Added :port and :host handling to UrlRewriter (which unified url_for usage, regardless of whether it's called in view or controller) #7616 [alancfrancis]
0
 
0
@@ -1161,7 +1161,7 @@ using the cookie store's secret. [Rick]
0
 
0
 * Cookie session store: empty and unchanged sessions don't write a cookie.  [Jeremy Kemper]
0
 
0
-* Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [DHH]
0
+* Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [David Heinemeier Hansson]
0
 
0
 * Integration tests: introduce methods for other HTTP methods.  #6353 [caboose]
0
 
0
@@ -1182,7 +1182,7 @@ Roos]
0
 
0
 * Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though.
0
 
0
-* Added caching option to AssetTagHelper#stylesheet_link_tag and AssetTagHelper#javascript_include_tag [DHH]. Examples:
0
+* Added caching option to AssetTagHelper#stylesheet_link_tag and AssetTagHelper#javascript_include_tag [David Heinemeier Hansson]. Examples:
0
 
0
     stylesheet_link_tag :all, :cache => true # when ActionController::Base.perform_caching is false =>
0
       <link href="/stylesheets/style1.css"  media="screen" rel="Stylesheet" type="text/css" />
0
@@ -1197,13 +1197,13 @@ Roos]
0
 
0
 * Work around the two connection per host browser limit: use asset%d.myapp.com to distribute asset requests among asset[0123].myapp.com. Use a DNS wildcard or CNAMEs to map these hosts to your asset server. See http://www.die.net/musings/page_load_time/ for background.  [Jeremy Kemper]
0
 
0
-* Added default mime type for CSS (Mime::CSS) [DHH]
0
+* Added default mime type for CSS (Mime::CSS) [David Heinemeier Hansson]
0
 
0
-* Added that rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified and the response body will be set to an empty string. [DHH]
0
+* Added that rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified and the response body will be set to an empty string. [David Heinemeier Hansson]
0
 
0
-* Added X-Runtime to all responses with the request run time [DHH]
0
+* Added X-Runtime to all responses with the request run time [David Heinemeier Hansson]
0
 
0
-* Add Mime::Type convenience methods to check the current mime type. [Rick]
0
+* Add Mime::Type convenience methods to check the current mime type. [Rick Olson]
0
 
0
   request.format.html? # => true if Mime::HTML
0
   request.format.jpg?  # => true if Mime::JPG
0
@@ -1216,16 +1216,16 @@ Roos]
0
 
0
 * Add a :url_based_filename => true option to ActionController::Streaming::send_file, which allows URL-based filenames.  [Thomas Fuchs]
0
 
0
-* Fix that FormTagHelper#submit_tag using :disable_with should trigger the onsubmit handler of its form if available [DHH]
0
+* Fix that FormTagHelper#submit_tag using :disable_with should trigger the onsubmit handler of its form if available [David Heinemeier Hansson]
0
 
0
-* Fix #render_file so that TemplateError is called with the correct params and you don't get the WSOD.  [Rick]
0
+* Fix #render_file so that TemplateError is called with the correct params and you don't get the WSOD.  [Rick Olson]
0
 
0
 * Fix issue with deprecation messing up #template_root= usage.  Add #prepend_view_path and #append_view_path to allow modification of a copy of the
0
-superclass' view_paths.  [Rick]
0
+superclass' view_paths.  [Rick Olson]
0
 
0
 * Allow Controllers to have multiple view_paths instead of a single template_root.  Closes #2754 [John Long]
0
 
0
-* Add much-needed html-scanner tests.  Fixed CDATA parsing bug. [Rick]
0
+* Add much-needed html-scanner tests.  Fixed CDATA parsing bug. [Rick Olson]
0
 
0
 * improve error message for Routing for named routes.  Closes #7346 [Rob Sanheim]
0
 
0
@@ -1233,15 +1233,15 @@ superclass' view_paths.  [Rick]
0
 
0
 * fix form_for example in ActionController::Resources documentation.  Closes #7362 [gnarg]
0
 
0
-* Make sure that the string returned by TextHelper#truncate is actually a string, not a char proxy -- that should only be used internally while working on a multibyte-safe way of truncating [DHH]
0
+* Make sure that the string returned by TextHelper#truncate is actually a string, not a char proxy -- that should only be used internally while working on a multibyte-safe way of truncating [David Heinemeier Hansson]
0
 
0
-* Added FormBuilder#submit as a delegate for FormTagHelper#submit_tag [DHH]
0
+* Added FormBuilder#submit as a delegate for FormTagHelper#submit_tag [David Heinemeier Hansson]
0
 
0
 * Allow Routes to generate all urls for a set of options by specifying :generate_all => true. Allows caching to properly set or expire all paths for a resource. References #1739. [Nicholas Seckar]
0
 
0
 * Change the query parser to map empty GET params to "" rather than nil. Closes #5694. [Nicholas Seckar]
0
 
0
-* date_select and datetime_select take a :default option.  #7052 [nik.wakelin]
0
+* date_select and datetime_select take a :default option.  #7052 [Nik Wakelin]
0
     date_select "post", "written_on", :default => 3.days.from_now
0
     date_select "credit_card", "bill_due", :default => { :day => 20 }
0
 
0
@@ -1257,7 +1257,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Change session restoration to allow namespaced models to be autoloaded. Closes #6348. [Nicholas Seckar]
0
 
0
-* Fix doubly appearing parameters due to string and symbol mixups. Closes #2551. [aeden]
0
+* Fix doubly appearing parameters due to string and symbol mixups. Closes #2551. [Anthony Eden]
0
 
0
 * Fix overly greedy rescues when loading helpers. Fixes #6268. [Nicholas Seckar]
0
 
0
@@ -1277,7 +1277,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fix #distance_of_time_in_words to report accurately against the Duration class.  #7114 [eventualbuddha]
0
 
0
-* Refactor #form_tag to allow easy extending.  [Rick]
0
+* Refactor #form_tag to allow easy extending.  [Rick Olson]
0
 
0
 * Update to Prototype 1.5.0. [Sam Stephenson]
0
 
0
@@ -1289,11 +1289,11 @@ superclass' view_paths.  [Rick]
0
 
0
 * Allow exempt_from_layout :rhtml.  #6742, #7026 [Dan Manges, Squeegy]
0
 
0
-* Recognize the .txt extension as Mime::TEXT [Rick]
0
+* Recognize the .txt extension as Mime::TEXT [Rick Olson]
0
 
0
 * Fix parsing of array[] CGI parameters so extra empty values aren't included.  #6252 [Nicholas Seckar, aiwilliams, brentrowland]
0
 
0
-* link_to_unless_current works with full URLs as well as paths.  #6891 [Jarkko Laine, manfred, idrifter]
0
+* link_to_unless_current works with full URLs as well as paths.  #6891 [Jarkko Laine, Manfred Stienstra, idrifter]
0
 
0
 * Lookup the mime type for #auto_discovery_link_tag in the Mime::Type class.  Closes #6941 [Josh Peek]
0
 
0
@@ -1339,7 +1339,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Unrescued ActiveRecord::RecordNotFound responds with 404 instead of 500.  [Jeremy Kemper]
0
 
0
-* Improved auto_link to match more valid urls correctly [Tobias Luetke]
0
+* Improved auto_link to match more valid urls correctly [Tobias Lütke]
0
 
0
 * Add singleton resources. [Rick Olson]
0
 
0
@@ -1362,7 +1362,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Add :index and @auto_index capability to model driven date/time selects.  #847, #2655 [moriq, Doug Fales, Bob Silva]
0
 
0
-* Add :order to datetime_select, select_datetime, and select_date.  #1427 [Timothee Peignier, patrick@lenz.sh, Bob Silva]
0
+* Add :order to datetime_select, select_datetime, and select_date.  #1427 [Timothee Peignier, Patrick Lenz, Bob Silva]
0
 
0
 * Added time_select to work with time values in models. Update scaffolding.  #2489, #2833 [Justin Palmer, Andre Caum, Bob Silva]
0
 
0
@@ -1372,15 +1372,15 @@ superclass' view_paths.  [Rick]
0
 
0
 * Adds :time_separator to select_time and :date_separator to select_datetime. Preserves BC.  #3811 [Bob Silva]
0
 
0
-* Added map.root as an alias for map.connect '' [DHH]
0
+* Added map.root as an alias for map.connect '' [David Heinemeier Hansson]
0
 
0
-* Added Request#format to return the format used for the request as a mime type. If no format is specified, the first Request#accepts type is used. This means you can stop using respond_to for anything else than responses [DHH]. Examples:
0
+* Added Request#format to return the format used for the request as a mime type. If no format is specified, the first Request#accepts type is used. This means you can stop using respond_to for anything else than responses [David Heinemeier Hansson]. Examples:
0
 
0
     GET /posts/5.xml   | request.format => Mime::XML
0
     GET /posts/5.xhtml | request.format => Mime::HTML
0
     GET /posts/5       | request.format => request.accepts.first (usually Mime::HTML for browsers)
0
 
0
-* Added the option for extension aliases to mime type registration [DHH]. Example (already in the default routes):
0
+* Added the option for extension aliases to mime type registration [David Heinemeier Hansson]. Example (already in the default routes):
0
 
0
     Mime::Type.register "text/html", :html, %w( application/xhtml+xml ), %w( xhtml )
0
   
0
@@ -1390,9 +1390,9 @@ superclass' view_paths.  [Rick]
0
 
0
 * Added CSV to Mime::SET so that respond_to csv will work [Cody Fauser]
0
 
0
-* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [DHH]
0
+* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [David Heinemeier Hansson]
0
 
0
-* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [DHH]
0
+* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [David Heinemeier Hansson]
0
 
0
 * Update Routing to complain when :controller is not specified by a route. Closes #6669. [Nicholas Seckar]
0
 
0
@@ -1441,13 +1441,13 @@ superclass' view_paths.  [Rick]
0
 
0
 * Update to latest Prototype, which doesn't serialize disabled form elements, adds clone() to arrays, empty/non-string Element.update() and adds a fixes excessive error reporting in WebKit beta versions [Thomas Fuchs]
0
 
0
-* Deprecate start_form_tag and end_form_tag.  Use form_tag / '</form>' from now on.  [Rick]
0
+* Deprecate start_form_tag and end_form_tag.  Use form_tag / '</form>' from now on.  [Rick Olson]
0
 
0
-* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick]
0
+* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick Olson]
0
 
0
-* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs.  [Rick]
0
+* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs.  [Rick Olson]
0
 
0
-* Added block-usage to TagHelper#content_tag [DHH]. Example:
0
+* Added block-usage to TagHelper#content_tag [David Heinemeier Hansson]. Example:
0
 
0
    <% content_tag :div, :class => "strong" %>
0
      Hello world!
0
@@ -1456,13 +1456,13 @@ superclass' view_paths.  [Rick]
0
   Will output:
0
     <div class="strong">Hello world!</div>
0
 
0
-* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [BobSilva]
0
+* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [Bob Silva]
0
 
0
-* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [BobSilva]
0
+* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [Bob Silva]
0
 
0
-* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [BobSilva/chrismear]
0
+* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [Bob Silva/chrismear]
0
 
0
-* Force *_url named routes to show the host in ActionView [Rick]
0
+* Force *_url named routes to show the host in ActionView [Rick Olson]
0
 
0
   <%= url_for ... %> # no host
0
   <%= foo_path %>    # no host
0
@@ -1472,9 +1472,9 @@ superclass' view_paths.  [Rick]
0
 
0
 * Add JavaScriptGenerator#literal for wrapping a string in an object whose #to_json is the string itself. [Sam Stephenson]
0
 
0
-* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone.  Fix button_to double-escaping issue. [Rick]
0
+* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone.  Fix button_to double-escaping issue. [Rick Olson]
0
 
0
-* Fix double-escaped entities, such as &amp;amp;, &amp;#123;, etc. [Rick]
0
+* Fix double-escaped entities, such as &amp;amp;, &amp;#123;, etc. [Rick Olson]
0
 
0
 * Fix deprecation warnings when rendering the template error template. [Nicholas Seckar]
0
 
0
@@ -1500,7 +1500,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Rename test assertion to prevent shadowing. Closes #6306. [psross]
0
 
0
-* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [phallstrom]
0
+* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [Philip Hallstrom]
0
 
0
 * Fixed that FormHelper#radio_button didn't respect an :id being passed in #6266 [evansj]
0
 
0
@@ -1514,7 +1514,7 @@ superclass' view_paths.  [Rick]
0
     
0
   Which is needed for dealing with the IE6 DOM when it's not yet fully loaded.
0
 
0
-* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [mnaberez]
0
+* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [Mike Naberezny]
0
 
0
 * Fixed escaping of backslashes in JavaScriptHelper#escape_javascript #6302 [sven@c3d2.de]
0
 
0
@@ -1555,7 +1555,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. Improves SCGI reliability.  #3368, #6226 [sdsykes, fhanshaw@vesaria.com]
0
 
0
-* Added that respond_to blocks will automatically set the content type to be the same as is requested [DHH]. Examples:
0
+* Added that respond_to blocks will automatically set the content type to be the same as is requested [David Heinemeier Hansson]. Examples:
0
 
0
     respond_to do |format|
0
       format.html { render :text => "I'm being sent as text/html" }
0
@@ -1563,9 +1563,9 @@ superclass' view_paths.  [Rick]
0
       format.atom { render :text => "I'm being sent as application/xml", :content_type => Mime::XML }
0
     end
0
 
0
-* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [DHH]
0
+* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [David Heinemeier Hansson]
0
 
0
-* Added proper getters and setters for content type and charset [DHH]. Example of what we used to do:
0
+* Added proper getters and setters for content type and charset [David Heinemeier Hansson]. Example of what we used to do:
0
 
0
     response.headers["Content-Type"] = "application/atom+xml; charset=utf-8"
0
   
0
@@ -1600,7 +1600,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Load helpers in alphabetical order for consistency. Resolve cyclic javascript_helper dependency.  #6132, #6178 [choonkeat@gmail.com]
0
 
0
-* Skip params with empty names, such as the &=Save query string from <input type="submit"/>.  #2569 [manfred, raphinou@yahoo.com]
0
+* Skip params with empty names, such as the &=Save query string from <input type="submit"/>.  #2569 [Manfred Stienstra, raphinou@yahoo.com]
0
 
0
 * Fix assert_tag so that :content => "foo" does not match substrings, but only exact strings. Use :content => /foo/ to match substrings. #2799 [Eric Hodel]
0
 
0
@@ -1610,7 +1610,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Update UrlWriter to support :only_path. [Nicholas Seckar, Dave Thomas]
0
 
0
-* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [DHH]. So what used to require a nil, like this:
0
+* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [David Heinemeier Hansson]. So what used to require a nil, like this:
0
 
0
     link_to("Hider", nil, :class => "hider_link") { |p| p[:something].hide }
0
   
0
@@ -1631,7 +1631,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fixed that AssetTagHelper#image_tag and others using compute_public_path should not modify the incoming source argument (closes #5102) [eule@space.ch]
0
 
0
-* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [DHH
0
+* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [David Heinemeier Hansson
0
 
0
 * Fixed FormOptionsHelper#select to respect :selected value #5813
0
 
0
@@ -1641,16 +1641,16 @@ superclass' view_paths.  [Rick]
0
 
0
 * Improved resolution of DateHelper#distance_of_time_in_words for better precision #5994 [Bob Silva]
0
 
0
-* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [DHH]
0
+* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [David Heinemeier Hansson]
0
 
0
 * Integration tests: thoroughly test ActionController::Integration::Session.  #6022 [Kevin Clark]
0
     (tests skipped unless you `gem install mocha`)
0
 
0
-* Added deprecation language for pagination which will become a plugin by Rails 2.0 [DHH]
0
+* Added deprecation language for pagination which will become a plugin by Rails 2.0 [David Heinemeier Hansson]
0
 
0
-* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [DHH]
0
+* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [David Heinemeier Hansson]
0
 
0
-* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [DHH]
0
+* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [David Heinemeier Hansson]
0
 
0
 * Added assert_select* for CSS selector-based testing (deprecates assert_tag) #5936 [assaf.arkin@gmail.com]
0
 
0
@@ -1668,7 +1668,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Add routing tests to assert that RoutingError is raised when conditions aren't met.  Closes #6016 [Nathan Witmer]
0
 
0
-* Deprecation: update docs. #5998 [jakob@mentalized.net, Kevin Clark]
0
+* Deprecation: update docs. #5998 [Jakob Skjerning, Kevin Clark]
0
 
0
 * Make auto_link parse a greater subset of valid url formats. [Jamis Buck]
0
 
0
@@ -1678,15 +1678,15 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fix send_data documentation typo.  #5982 [brad@madriska.com]
0
 
0
-* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, DHH]
0
+* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, David Heinemeier Hansson]
0
 
0
-* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias Luetke]
0
+* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias Lütke]
0
 
0
 * Deprecation: test deprecated instance vars in partials. [Jeremy Kemper]
0
 
0
 * Add UrlWriter to allow writing urls from Mailers and scripts. [Nicholas Seckar]
0
 
0
-* Clean up and run the Active Record integration tests by default.  #5854 [kevin.clark@gmail.com, Jeremy Kemper]
0
+* Clean up and run the Active Record integration tests by default.  #5854 [Kevin Clark, Jeremy Kemper]
0
 
0
 * Correct example in cookies docs.  #5832 [jessemerriman@warpmail.net]
0
 
0
@@ -1714,7 +1714,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Deprecation! @params, @session, @flash will be removed after 1.2. Use the corresponding instance methods instead. You'll get printed warnings during tests and logged warnings in dev mode when you access either instance variable directly. [Jeremy Kemper]
0
 
0
-* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [francois.beausoleil@gmail.com]
0
+* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [François Beausoleil]
0
 
0
 * Added months and years to the resolution of DateHelper#distance_of_time_in_words, such that "60 days ago" becomes "2 months ago" #5611 [pjhyett@gmail.com]
0
 
0
@@ -1734,7 +1734,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fixed the new_#{resource}_url route and added named route tests for Simply Restful.  [Rick Olson]
0
 
0
-* Added map.resources from the Simply Restful plugin [DHH]. Examples (the API has changed to use plurals!):
0
+* Added map.resources from the Simply Restful plugin [David Heinemeier Hansson]. Examples (the API has changed to use plurals!):
0
 
0
     map.resources :messages
0
     map.resources :messages, :comments
0
@@ -1742,13 +1742,13 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fixed that integration simulation of XHRs should set Accept header as well [Edward Frederick]
0
 
0
-* TestRequest#reset_session should restore a TestSession, not a hash [Koz]
0
+* TestRequest#reset_session should restore a TestSession, not a hash [Michael Koziarski]
0
 
0
 * Don't search a load-path of '.' for controller files [Jamis Buck]
0
 
0
 * Update integration.rb to require test_process explicitly instead of via Dependencies. [Nicholas Seckar]
0
 
0
-* Fixed that you can still access the flash after the flash has been reset in reset_session.  Closes #5584 [lmarlow@yahoo.com]
0
+* Fixed that you can still access the flash after the flash has been reset in reset_session.  Closes #5584 [lmarlow]
0
 
0
 * Allow form_for and fields_for to work with indexed form inputs.  [Jeremy Kemper, Matt Lyon]
0
 
0
@@ -1757,13 +1757,13 @@ superclass' view_paths.  [Rick]
0
 
0
 * Remove leak in development mode by replacing define_method with module_eval. [Nicholas Seckar]
0
 
0
-* Provide support for decimal columns to form helpers. Closes #5672. [dave@pragprog.com]
0
+* Provide support for decimal columns to form helpers. Closes #5672. [Dave Thomas]
0
 
0
 * Update documentation for erb trim syntax. #5651 [matt@mattmargolis.net]
0
 
0
 * Pass :id => nil or :class => nil to error_messages_for to supress that html attribute. #3586 [olivier_ansaldi@yahoo.com, sebastien@goetzilla.info]
0
 
0
-* Reset @html_document between requests so assert_tag works. #4810 [jarkko@jlaine.net, easleydp@gmail.com]
0
+* Reset @html_document between requests so assert_tag works. #4810 [Jarkko Laine, easleydp@gmail.com]
0
 
0
 * Update render :partial documentation. #5646 [matt@mattmargolis.net]
0
 
0
@@ -1773,21 +1773,21 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fixed that real files and symlinks should be treated the same when compiling templates #5438 [zachary@panandscan.com]
0
 
0
-* Fixed that the flash should be reset when reset_session is called #5584 [shugo@ruby-lang.org]
0
+* Fixed that the flash should be reset when reset_session is called #5584 [Shugo Maeda]
0
 
0
 * Added special case for "1 Byte" in NumberHelper#number_to_human_size #5593 [murpyh@rubychan.de]
0
 
0
-* Fixed proper form-encoded parameter parsing for requests with "Content-Type: application/x-www-form-urlencoded; charset=utf-8" (note the presence of a charset directive) [DHH]
0
+* Fixed proper form-encoded parameter parsing for requests with "Content-Type: application/x-www-form-urlencoded; charset=utf-8" (note the presence of a charset directive) [David Heinemeier Hansson]
0
 
0
 * Add route_name_path method to generate only the path for a named routes. For example, map.person will add person_path. [Nicholas Seckar]
0
 
0
 * Avoid naming collision among compiled view methods. [Jeremy Kemper]
0
 
0
-* Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [mislav@nippur.irb.hr]
0
+* Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [Mislav Marohnić]
0
 
0
 * Determine the correct template_root for deeply nested components.  #2841 [s.brink@web.de]
0
 
0
-* Fix that routes with *path segments in the recall can generate URLs. [Rick]
0
+* Fix that routes with *path segments in the recall can generate URLs. [Rick Olson]
0
 
0
 * Fix strip_links so that it doesn't hang on multiline <acronym> tags [Jamis Buck]
0
 
0
@@ -1805,11 +1805,11 @@ superclass' view_paths.  [Rick]
0
 
0
 * Rewind readable CGI params so others may reread them (such as CGI::Session when passing the session id in a multipart form).  #210 [mklame@atxeu.com, matthew@walker.wattle.id.au]
0
 
0
-* Added Mime::TEXT (text/plain) and Mime::ICS (text/calendar) as new default types [DHH]
0
+* Added Mime::TEXT (text/plain) and Mime::ICS (text/calendar) as new default types [David Heinemeier Hansson]
0
 
0
-* Added Mime::Type.register(string, symbol, synonyms = []) for adding new custom mime types [DHH]. Example: Mime::Type.register("image/gif", :gif)
0
+* Added Mime::Type.register(string, symbol, synonyms = []) for adding new custom mime types [David Heinemeier Hansson]. Example: Mime::Type.register("image/gif", :gif)
0
 
0
-* Added support for Mime objects in render :content_type option [DHH]. Example: render :text => some_atom, :content_type => Mime::ATOM
0
+* Added support for Mime objects in render :content_type option [David Heinemeier Hansson]. Example: render :text => some_atom, :content_type => Mime::ATOM
0
 
0
 * Add :status option to send_data and send_file. Defaults to '200 OK'.  #5243 [Manfred Stienstra <m.stienstra@fngtps.com>]
0
 
0
@@ -1823,7 +1823,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Accept multipart PUT parameters. #5235 [guy.naor@famundo.com]
0
 
0
-* Added interrogation of params[:format] to determine Accept type. If :format is specified and matches a declared extension, like "rss" or "xml", that mime type will be put in front of the accept handler. This means you can link to the same action from different extensions and use that fact to determine output [DHH]. Example:
0
+* Added interrogation of params[:format] to determine Accept type. If :format is specified and matches a declared extension, like "rss" or "xml", that mime type will be put in front of the accept handler. This means you can link to the same action from different extensions and use that fact to determine output [David Heinemeier Hansson]. Example:
0
 
0
   class WeblogController < ActionController::Base
0
     def index
0
@@ -1856,13 +1856,13 @@ superclass' view_paths.  [Rick]
0
   
0
   All this relies on the fact that you have a route that includes .:format.
0
   
0
-* Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, PrototypeHelper#remote_form_for, PrototypeHelper#remote_form_tag, and PrototypeHelper#link_to_remote to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [DHH]
0
+* Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, PrototypeHelper#remote_form_for, PrototypeHelper#remote_form_tag, and PrototypeHelper#link_to_remote to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [David Heinemeier Hansson]
0
 
0
-* Added :method option to UrlHelper#link_to, which allows for using other verbs than GET for the link. This replaces the :post option, which is now deprecated. Example: link_to "Destroy", person_url(:id => person), :method => :delete [DHH]
0
+* Added :method option to UrlHelper#link_to, which allows for using other verbs than GET for the link. This replaces the :post option, which is now deprecated. Example: link_to "Destroy", person_url(:id => person), :method => :delete [David Heinemeier Hansson]
0
 
0
 * follow_redirect doesn't complain about being redirected to the same controller. #5153 [dymo@mk.ukrtelecom.ua]
0
 
0
-* Add layout attribute to response object with the name of the layout that was rendered, or nil if none rendered. [Kevin Clark kevin.clark@gmail.com]
0
+* Add layout attribute to response object with the name of the layout that was rendered, or nil if none rendered. [Kevin Clark]
0
 
0
 * Fix NoMethodError when parsing params like &&. [Adam Greenfield]
0
 
0
@@ -1872,7 +1872,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Excise ingrown code from FormOptionsHelper#options_for_select. #5008 [anonymous]
0
 
0
-* Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]
0
+* Small fix in routing to allow dynamic routes (broken after [4242]) [Rick Olson]
0
 
0
     map.connect '*path', :controller => 'files', :action => 'show'
0
 
0
@@ -1884,7 +1884,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Documentation fix: integration test scripts don't require integration_test. Closes #4914. [Frederick Ros <sl33p3r@free.fr>]
0
 
0
-* ActionController::Base Summary documentation rewrite. Closes #4900. [kevin.clark@gmail.com]
0
+* ActionController::Base Summary documentation rewrite. Closes #4900. [Kevin Clark]
0
 
0
 * Fix text_helper.rb documentation rendering. Closes #4725. [Frederick Ros]
0
 
0
@@ -1896,9 +1896,9 @@ superclass' view_paths.  [Rick]
0
 
0
 * Enhance documentation for setting headers in integration tests. Skip auto HTTP prepending when its already there. Closes #4079. [Rick Olson]
0
 
0
-* Documentation for AbstractRequest. Closes #4895. [kevin.clark@gmail.com
0
+* Documentation for AbstractRequest. Closes #4895. [Kevin Clark
0
 
0
-* Refactor various InstanceTag instance method to class methods. Closes #4800. [skaes@web.de]
0
+* Refactor various InstanceTag instance method to class methods. Closes #4800. [Stefan Kaes]
0
 
0
 * Remove all remaining references to @params in the documentation. [Marcel Molina Jr.]
0
 
0
@@ -1906,25 +1906,25 @@ superclass' view_paths.  [Rick]
0
 
0
 * Update layout and content_for documentation to use yield rather than magic @content_for instance variables. [Marcel Molina Jr.]
0
 
0
-* Fix assert_redirected_to tests according to real-world usage.  Also, don't fail if you add an extra :controller option: [Rick]
0
+* Fix assert_redirected_to tests according to real-world usage.  Also, don't fail if you add an extra :controller option: [Rick Olson]
0
 
0
     redirect_to :action => 'new'
0
     assert_redirected_to :controller => 'monkeys', :action => 'new'
0
 
0
-* Cache CgiRequest#request_parameters so that multiple calls don't re-parse multipart data. [Rick]
0
+* Cache CgiRequest#request_parameters so that multiple calls don't re-parse multipart data. [Rick Olson]
0
 
0
-* Diff compared routing options.  Allow #assert_recognizes to take a second arg as a hash to specify optional request method [Rick]
0
+* Diff compared routing options.  Allow #assert_recognizes to take a second arg as a hash to specify optional request method [Rick Olson]
0
 
0
     assert_recognizes({:controller => 'users', :action => 'index'}, 'users')
0
     assert_recognizes({:controller => 'users', :action => 'create'}, {:path => 'users', :method => :post})
0
 
0
-* Diff compared options with #assert_redirected_to [Rick]
0
+* Diff compared options with #assert_redirected_to [Rick Olson]
0
 
0
 * Add support in routes for semicolon delimited "subpaths", like /books/:id;:action [Jamis Buck]
0
 
0
 * Change link_to_function and button_to_function to (optionally) take an update_page block instead of a JavaScript string. Closes #4804. [zraii@comcast.net, Sam Stephenson]
0
 
0
-* Fixed that remote_form_for can leave out the object parameter and default to the instance variable of the object_name, just like form_for [DHH]
0
+* Fixed that remote_form_for can leave out the object parameter and default to the instance variable of the object_name, just like form_for [David Heinemeier Hansson]
0
 
0
 * Modify routing so that you can say :require => { :method => :post } for a route, and the route will never be selected unless the request method is POST. Only works for route recognition, not for route generation. [Jamis Buck]
0
 
0
@@ -1940,14 +1940,14 @@ superclass' view_paths.  [Rick]
0
 
0
 * Apply [5709] to stable.
0
 
0
-* session_enabled? works with session :off.  #6680 [Catfish]
0
+* session_enabled? works with session :off.  #6680 [Jonathan del Strother]
0
 
0
 * Performance: patch cgi/session to require digest/md5 once rather than per #create_new_id.  [Stefan Kaes]
0
 
0
 
0
 *1.13.2* (February 5th, 2007)
0
 
0
-* Add much-needed html-scanner tests.  Fixed CDATA parsing bug. [Rick]
0
+* Add much-needed html-scanner tests.  Fixed CDATA parsing bug. [Rick Olson]
0
 
0
 * improve error message for Routing for named routes. [Rob Sanheim]
0
 
0
@@ -1969,7 +1969,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Make TextHelper::auto_link recognize URLs with colons in path correctly, fixes #7268.  [imajes]
0
 
0
-* Improved auto_link to match more valid urls correctly [Tobias Luetke]
0
+* Improved auto_link to match more valid urls correctly [Tobias Lütke]
0
 
0
 
0
 *1.13.1* (January 18th, 2007)
0
@@ -1985,11 +1985,11 @@ superclass' view_paths.  [Rick]
0
 
0
 * Update to Prototype 1.5.0. [Sam Stephenson]
0
 
0
-* Allow exempt_from_layout :rhtml.  #6742, #7026 [dcmanges, Squeegy]
0
+* Allow exempt_from_layout :rhtml.  #6742, #7026 [Dan Manges, Squeegy]
0
 
0
 * Fix parsing of array[] CGI parameters so extra empty values aren't included.  #6252 [Nicholas Seckar, aiwilliams, brentrowland]
0
 
0
-* link_to_unless_current works with full URLs as well as paths.  #6891 [Jarkko Laine, manfred, idrifter]
0
+* link_to_unless_current works with full URLs as well as paths.  #6891 [Jarkko Laine, Manfred Stienstra, idrifter]
0
 
0
 * Fix HTML::Node to output double quotes instead of single quotes.  Closes #6845 [mitreandy]
0
 
0
@@ -2031,7 +2031,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Add :index and @auto_index capability to model driven date/time selects.  #847, #2655 [moriq, Doug Fales, Bob Silva]
0
 
0
-* Add :order to datetime_select, select_datetime, and select_date.  #1427 [Timothee Peignier, patrick@lenz.sh, Bob Silva]
0
+* Add :order to datetime_select, select_datetime, and select_date.  #1427 [Timothee Peignier, Patrick Lenz, Bob Silva]
0
 
0
 * Added time_select to work with time values in models. Update scaffolding.  #2489, #2833 [Justin Palmer, Andre Caum, Bob Silva]
0
 
0
@@ -2043,9 +2043,9 @@ superclass' view_paths.  [Rick]
0
 
0
 * @response.redirect_url works with 201 Created responses: just return headers['Location'] rather than checking the response status.  [Jeremy Kemper]
0
 
0
-* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [DHH]
0
+* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [David Heinemeier Hansson]
0
 
0
-* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [DHH]
0
+* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [David Heinemeier Hansson]
0
 
0
 
0
 *1.13.0 RC1* (r5619, November 22nd, 2006)
0
@@ -2085,13 +2085,13 @@ superclass' view_paths.  [Rick]
0
 
0
 * Deprecate expire_matched_fragments. Use expire_fragment instead.  #6535 [Bob Silva]
0
 
0
-* Deprecate start_form_tag and end_form_tag.  Use form_tag / '</form>' from now on.  [Rick]
0
+* Deprecate start_form_tag and end_form_tag.  Use form_tag / '</form>' from now on.  [Rick Olson]
0
 
0
-* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick]
0
+* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick Olson]
0
 
0
-* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs.  [Rick]
0
+* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs.  [Rick Olson]
0
 
0
-* Added block-usage to TagHelper#content_tag [DHH]. Example:
0
+* Added block-usage to TagHelper#content_tag [David Heinemeier Hansson]. Example:
0
 
0
    <% content_tag :div, :class => "strong" %>
0
      Hello world!
0
@@ -2100,13 +2100,13 @@ superclass' view_paths.  [Rick]
0
   Will output:
0
     <div class="strong">Hello world!</div>
0
 
0
-* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [BobSilva]
0
+* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [Bob Silva]
0
 
0
-* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [BobSilva]
0
+* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [Bob Silva]
0
 
0
-* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [BobSilva/chrismear]
0
+* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [Bob Silva/chrismear]
0
 
0
-* Force *_url named routes to show the host in ActionView [Rick]
0
+* Force *_url named routes to show the host in ActionView [Rick Olson]
0
 
0
   <%= url_for ... %> # no host
0
   <%= foo_path %>    # no host
0
@@ -2116,9 +2116,9 @@ superclass' view_paths.  [Rick]
0
 
0
 * Add JavaScriptGenerator#literal for wrapping a string in an object whose #to_json is the string itself. [Sam Stephenson]
0
 
0
-* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone.  Fix button_to double-escaping issue. [Rick]
0
+* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone.  Fix button_to double-escaping issue. [Rick Olson]
0
 
0
-* Fix double-escaped entities, such as &amp;amp;, &amp;#123;, etc. [Rick]
0
+* Fix double-escaped entities, such as &amp;amp;, &amp;#123;, etc. [Rick Olson]
0
 
0
 * Fix routing to correctly determine when generation fails. Closes #6300. [psross].
0
 
0
@@ -2138,7 +2138,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Rename test assertion to prevent shadowing. Closes #6306. [psross]
0
 
0
-* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [phallstrom]
0
+* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [Philip Hallstrom]
0
 
0
 * Fixed that FormHelper#radio_button didn't respect an :id being passed in #6266 [evansj]
0
 
0
@@ -2152,7 +2152,7 @@ superclass' view_paths.  [Rick]
0
     
0
   Which is needed for dealing with the IE6 DOM when it's not yet fully loaded.
0
 
0
-* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [mnaberez]
0
+* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [Mike Naberezny]
0
 
0
 * Fixed escaping of backslashes in JavaScriptHelper#escape_javascript #6302 [sven@c3d2.de]
0
 
0
@@ -2191,7 +2191,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. Improves SCGI reliability.  #3368, #6226 [sdsykes, fhanshaw@vesaria.com]
0
 
0
-* Added that respond_to blocks will automatically set the content type to be the same as is requested [DHH]. Examples:
0
+* Added that respond_to blocks will automatically set the content type to be the same as is requested [David Heinemeier Hansson]. Examples:
0
 
0
     respond_to do |format|
0
       format.html { render :text => "I'm being sent as text/html" }
0
@@ -2199,9 +2199,9 @@ superclass' view_paths.  [Rick]
0
       format.atom { render :text => "I'm being sent as application/xml", :content_type => Mime::XML }
0
     end
0
 
0
-* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [DHH]
0
+* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [David Heinemeier Hansson]
0
 
0
-* Added proper getters and setters for content type and charset [DHH]. Example of what we used to do:
0
+* Added proper getters and setters for content type and charset [David Heinemeier Hansson]. Example of what we used to do:
0
 
0
     response.headers["Content-Type"] = "application/atom+xml; charset=utf-8"
0
   
0
@@ -2230,7 +2230,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Load helpers in alphabetical order for consistency. Resolve cyclic javascript_helper dependency.  #6132, #6178 [choonkeat@gmail.com]
0
 
0
-* Skip params with empty names, such as the &=Save query string from <input type="submit"/>.  #2569 [manfred, raphinou@yahoo.com]
0
+* Skip params with empty names, such as the &=Save query string from <input type="submit"/>.  #2569 [Manfred Stienstra, raphinou@yahoo.com]
0
 
0
 * Fix assert_tag so that :content => "foo" does not match substrings, but only exact strings. Use :content => /foo/ to match substrings. #2799 [Eric Hodel]
0
 
0
@@ -2238,7 +2238,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Update UrlWriter to support :only_path. [Nicholas Seckar, Dave Thomas]
0
 
0
-* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [DHH]. So what used to require a nil, like this:
0
+* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [David Heinemeier Hansson]. So what used to require a nil, like this:
0
 
0
     link_to("Hider", nil, :class => "hider_link") { |p| p[:something].hide }
0
   
0
@@ -2255,7 +2255,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fixed that AssetTagHelper#image_tag and others using compute_public_path should not modify the incoming source argument (closes #5102) [eule@space.ch]
0
 
0
-* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [DHH
0
+* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [David Heinemeier Hansson
0
 
0
 * Fixed FormOptionsHelper#select to respect :selected value #5813
0
 
0
@@ -2265,13 +2265,13 @@ superclass' view_paths.  [Rick]
0
 
0
 * Improved resolution of DateHelper#distance_of_time_in_words for better precision #5994 [Bob Silva]
0
 
0
-* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [DHH]
0
+* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [David Heinemeier Hansson]
0
 
0
-* Added deprecation language for pagination which will become a plugin by Rails 2.0 [DHH]
0
+* Added deprecation language for pagination which will become a plugin by Rails 2.0 [David Heinemeier Hansson]
0
 
0
-* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [DHH]
0
+* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [David Heinemeier Hansson]
0
 
0
-* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [DHH]
0
+* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [David Heinemeier Hansson]
0
 
0
 * Added assert_select* for CSS selector-based testing (deprecates assert_tag) #5936 [assaf.arkin@gmail.com]
0
 
0
@@ -2291,9 +2291,9 @@ superclass' view_paths.  [Rick]
0
 
0
 * Integration tests: headers beginning with X aren't excluded from the HTTP_ prefix, so X-Requested-With becomes HTTP_X_REQUESTED_WITH as expected. [Mike Clark]
0
 
0
-* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, DHH]
0
+* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, David Heinemeier Hansson]
0
 
0
-* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias Luetke]
0
+* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias Lütke]
0
 
0
 * Deprecation: test deprecated instance vars in partials. [Jeremy Kemper]
0
 
0
@@ -2319,7 +2319,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Deprecation! @params, @session, @flash will be removed after 1.2. Use the corresponding instance methods instead. You'll get printed warnings during tests and logged warnings in dev mode when you access either instance variable directly. [Jeremy Kemper]
0
 
0
-* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [francois.beausoleil@gmail.com]
0
+* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [François Beausoleil]
0
 
0
 * Added months and years to the resolution of DateHelper#distance_of_time_in_words, such that "60 days ago" becomes "2 months ago" #5611 [pjhyett@gmail.com]
0
 
0
@@ -2333,7 +2333,7 @@ superclass' view_paths.  [Rick]
0
 
0
 * Fixed the new_#{resource}_url route and added named route tests for Simply Restful.  [Rick Olson]
0
 
0
-* Added map.resources from&n