public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
More changelog updates


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8411 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
jeremy (author)
Fri Dec 14 18:30:04 -0800 2007
commit  3df9fb53acb7b2fb445ba197da7340cfdf4fc78c
tree    582ccbee6d67d5ab2a7e84ba2eea3e150928ffbf
parent  2f619855402702201eb1e3f453faf13d9b211ad5
...
4
5
6
7
 
8
9
 
10
11
12
...
4
5
6
 
7
8
 
9
10
11
12
0
@@ -4,9 +4,9 @@
0
 
0
 * Added that Array#to_param calls to_param on all it's elements #10473 [brandon]
0
 
0
-* Ensure asset cache directories are automatically created. #10337 [Josh Peek, Ch Chu Yeow]
0
+* Ensure asset cache directories are automatically created. #10337 [Josh Peek, Cheah Chu Yeow]
0
 
0
-* render :xml and :json preserve custom content types. #10388 [jmettraux, Ch Chu Yeow]
0
+* render :xml and :json preserve custom content types. #10388 [jmettraux, Cheah Chu Yeow]
0
 
0
 * Refactor Action View template handlers. #10437, #10455 [Josh Peek]
0
 
...
41
42
43
44
 
45
46
47
...
197
198
199
200
 
201
202
203
...
41
42
43
 
44
45
46
47
...
197
198
199
 
200
201
202
203
0
@@ -41,7 +41,7 @@
0
 
0
     render :partial => @client.becomes(Company) # renders companies/company instead of clients/client
0
 
0
-* Fixed that to_xml should not automatically pass :procs to associations included with :include #10162 [ChChu Yeow]
0
+* Fixed that to_xml should not automatically pass :procs to associations included with :include #10162 [Cheah Chu Yeow]
0
 
0
 * Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N]
0
 
0
@@ -197,7 +197,7 @@
0
 
0
 * Added the possibility of using symbols in addition to concrete classes with ActiveRecord::Observer#observe. #3998 [Robby Russell, Tarmo Tänav]
0
 
0
-* Added ActiveRecord::Base#to_json/from_json [DHH, Ch Chu Yeow]
0
+* Added ActiveRecord::Base#to_json/from_json [DHH, Cheah Chu Yeow]
0
 
0
 * Added ActiveRecord::Base#from_xml [DHH]. Example:
0
 
...
1
2
3
 
4
5
6
...
23
24
25
26
 
27
28
29
...
32
33
34
35
 
36
37
38
39
...
64
65
66
67
 
68
69
 
70
71
72
...
74
75
76
77
 
78
79
80
...
1
2
 
3
4
5
6
...
23
24
25
 
26
27
28
29
...
32
33
34
 
35
36
37
38
39
...
64
65
66
 
67
68
 
69
70
71
72
...
74
75
76
 
77
78
79
80
0
@@ -1,6 +1,6 @@
0
 *SVN*
0
 
0
-* TimeZone#to_s uses UTC rather than GMT. #1689 [ChChu Yeow]
0
+* TimeZone#to_s uses UTC rather than GMT. #1689 [Cheah Chu Yeow]
0
 
0
 * Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH]
0
 
0
@@ -23,7 +23,7 @@
0
 
0
 * Add new superclass_delegating_accessors. Similar to class inheritable attributes but with subtly different semantics. [Koz, Tarmo Tänav]
0
 
0
-* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with the JSON spec. Closes #9975 [Josh Peek, Ch Chu Yeow, Tim Pope]
0
+* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with the JSON spec. Closes #9975 [Josh Peek, Cheah Chu Yeow, Tim Pope]
0
 
0
 * Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theamazingrando]
0
 
0
@@ -32,7 +32,7 @@
0
   The intention is to use this to reduce the amount of monkeypatching / overriding that
0
   is done to test/unit's classes.
0
 
0
-* Document Enumerable and Hash #to_json. #9970 [ChChu Yeow]
0
+* Document Enumerable and Hash #to_json. #9970 [Cheah Chu Yeow]
0
 
0
 * Hash#to_xml handles symbol values. #9954 [Assaf]
0
 
0
0
@@ -64,9 +64,9 @@
0
 
0
 * Unbundle Builder in favor of a gem dependency. [Jeremy Kemper]
0
 
0
-* Disambiguate Time, Date, and DateTime#to_json formatting. #9750 [Geoff Buesing, Ch Chu Yeow]
0
+* Disambiguate Time, Date, and DateTime#to_json formatting. #9750 [Geoff Buesing, Cheah Chu Yeow]
0
 
0
-* Hash#to_json takes :only or :except options to specific or omit certain hash keys. Enumerable#to_json passes through its options to each element. #9751 [ChChu Yeow]
0
+* Hash#to_json takes :only or :except options to specific or omit certain hash keys. Enumerable#to_json passes through its options to each element. #9751 [Cheah Chu Yeow]
0
 
0
 * BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers with an array instead of string. Disabling auto_flushing still flushes when the buffer hits a maximum size, as a failsafe against memory-gobbling. [Jeremy Kemper]
0
 
0
@@ -74,7 +74,7 @@
0
 
0
 * Fixed that La Paz was included in -25200 and -14400 offsets when it should only be in -14400 #9735 [bermi]
0
 
0
-* Fixed JSON encoding to use quoted keys according to the JSON standard. #8762 [choonkat, Ch Chu Yeow]
0
+* Fixed JSON encoding to use quoted keys according to the JSON standard. #8762 [choonkat, Cheah Chu Yeow]
0
 
0
 * Alias Object#send to send! for Ruby 1.9 forward compatibility. [Jeremy Kemper]
0
 
...
36
37
38
39
 
40
41
42
...
36
37
38
 
39
40
41
42
0
@@ -36,7 +36,7 @@
0
 
0
 * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
0
 
0
-* RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Ch Chu Yeow]
0
+* RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Cheah Chu Yeow]
0
 
0
 * Load config/preinitializer.rb, if present, before loading the environment. #9943 [Chad Woolley]
0
 

Comments

    No one has commented yet.