public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
lifo -> Pratik


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8352 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
jeremy (author)
Sun Dec 09 17:29:20 -0800 2007
commit  e8a85924a34c3c125ed19b5bd6600d9fc5d3beb8
tree    1b82789aac386b593a6a105e6b71e3b92c49c0fe
parent  e69a636349d3556d4c75314b195fad7bae7ad79a
...
116
117
118
119
 
120
121
122
...
132
133
134
135
 
136
137
138
...
159
160
161
162
 
163
164
165
...
177
178
179
180
 
181
182
183
...
196
197
198
199
 
200
201
202
...
229
230
231
232
 
233
234
235
236
237
238
 
239
240
241
...
243
244
245
246
 
247
248
 
249
250
251
...
275
276
277
278
 
279
280
281
...
327
328
329
330
 
331
332
333
...
116
117
118
 
119
120
121
122
...
132
133
134
 
135
136
137
138
...
159
160
161
 
162
163
164
165
...
177
178
179
 
180
181
182
183
...
196
197
198
 
199
200
201
202
...
229
230
231
 
232
233
234
235
236
237
 
238
239
240
241
...
243
244
245
 
246
247
 
248
249
250
251
...
275
276
277
 
278
279
280
281
...
327
328
329
 
330
331
332
333
0
@@ -116,7 +116,7 @@
0
 
0
 * Make sure resource routes don't clash with internal helpers like javascript_path, image_path etc.  #9928 [gbuesing]
0
 
0
-* caches_page uses a single after_filter instead of one per action.  #9891 [lifofifo]
0
+* caches_page uses a single after_filter instead of one per action.  #9891 [Pratik Naik]
0
 
0
 * Update Prototype to 1.6.0_rc1 and script.aculo.us to 1.8.0 preview 0.  [sam, madrobby]
0
 
0
@@ -132,7 +132,7 @@
0
 
0
 * Extracted sanitization methods from TextHelper to SanitizeHelper [DHH]
0
 
0
-* rescue_from accepts :with => lambda { |exception| ... } or a normal block.  #9827 [lifofifo]
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
 
0
@@ -159,7 +159,7 @@
0
 
0
 * Better error messages if you leave out the :secret option for request forgery protection.  Closes #9670 [rick]
0
 
0
-* Allow ability to disable request forgery protection, disable it in test mode by default.  Closes #9693 [lifofifo]
0
+* Allow ability to disable request forgery protection, disable it in test mode by default.  Closes #9693 [Pratik Naik]
0
 
0
 * Avoid calling is_missing on LoadErrors. Closes #7460. [ntalbott]
0
 
0
@@ -177,7 +177,7 @@
0
 
0
 * Merge csrf_killer plugin into rails.  Adds RequestForgeryProtection model that verifies session-specific _tokens for non-GET requests.  [Rick]
0
 
0
-* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks.  Closes #8877. [Rick, lifofifo, Jacques Distler]
0
+* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks.  Closes #8877. [Rick, 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
@@ -196,7 +196,7 @@
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
 
0
-* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an improvement for XSS attacks #8895 [lifo/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, Spakman]
0
 
0
 * Don't warn when a path segment precedes a required segment. Closes #9615. [Nicholas Seckar]
0
 
0
@@ -229,13 +229,13 @@
0
 
0
 * Autolink behaves well with emails embedded in URLs.  #7313 [Jeremy McAnally, tarmo]
0
 
0
-* Fixed that default layouts did not take the format into account #9564 [lifofifo]
0
+* Fixed that default layouts did not take the format into account #9564 [Pratik Naik]
0
 
0
 * Fixed optimized route segment escaping.  #9562 [wildchild, Jeremy Kemper]
0
 
0
 * Added block acceptance to JavaScriptHelper#javascript_tag.  #7527 [Bob Silva, Tarmo Tänav, rmm5t]
0
 
0
-* root_path returns '/' not ''.  #9563 [lifofifo]
0
+* root_path returns '/' not ''.  #9563 [Pratik Naik]
0
 
0
 * Fixed that setting request.format should also affect respond_to blocks [DHH]
0
 
0
@@ -243,9 +243,9 @@
0
 
0
 * Fixed that resource namespaces wouldn't stick to all nested resources #9399 [pixeltrix]
0
 
0
-* Moved ActionController::Macros::AutoComplete into the auto_complete plugin on the official Rails svn #9512 [lifofifo]
0
+* Moved ActionController::Macros::AutoComplete into the auto_complete plugin on the official Rails svn.  #9512 [Pratik Naik]
0
 
0
-* Moved ActionController::Macros::InPlaceEditing into the in_place_editor plugin on the official Rails svn #9513 [lifofifo]
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
 
0
@@ -275,7 +275,7 @@
0
 
0
 * Allow additional parameters to be passed to named route helpers when using positional arguments.  Closes #8930 [ian.w.white@gmail.com]
0
 
0
-* Make render :partial work with a :collection of Hashes, previously this wasn't possible due to backwards compatibility restrictions.  [lifofifo]
0
+* Make render :partial work with a :collection of Hashes, previously this wasn't possible due to backwards compatibility restrictions.  [Pratik Naik]
0
 
0
 * request.host works with IPv6 addresses.  #9458 [yuya]
0
 
0
@@ -327,7 +327,7 @@
0
 
0
 * Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [mislaw]
0
 
0
-* Don't mistakenly interpret the request uri as the query string.  #8731 [lifofifo, Jeremy Kemper]
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
 
...
59
60
61
62
 
63
64
65
...
74
75
76
77
 
78
79
80
...
116
117
118
119
 
120
121
122
123
 
124
125
126
...
210
211
212
213
 
214
215
 
216
217
218
...
240
241
242
243
 
244
245
246
...
252
253
254
255
 
256
257
 
258
259
 
260
261
262
...
266
267
268
269
 
270
271
 
272
273
274
275
276
277
 
278
279
280
281
 
282
283
 
284
285
286
...
59
60
61
 
62
63
64
65
...
74
75
76
 
77
78
79
80
...
116
117
118
 
119
120
121
122
 
123
124
125
126
...
210
211
212
 
213
214
 
215
216
217
218
...
240
241
242
 
243
244
245
246
...
252
253
254
 
255
256
 
257
258
 
259
260
261
262
...
266
267
268
 
269
270
 
271
272
273
274
275
276
 
277
278
279
280
 
281
282
 
283
284
285
286
0
@@ -59,7 +59,7 @@
0
 
0
 * Enhance explanation with more examples for attr_accessible macro. Closes #8095 [fearoffish, Marcel Molina]
0
 
0
-* Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [lifofifo]
0
+* Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [Pratik Naik]
0
 
0
 * Explain semantics of having several different AR instances in a transaction block. Closes #9036 [jacobat, Marcel Molina]
0
 
0
@@ -74,7 +74,7 @@
0
     # Find posts with a high-rated comment.
0
     Post.find(:all, :joins => :comments, :conditions => 'comments.rating > 3')
0
 
0
-* Associations: speedup duplicate record check.  #10011 [lifofifo]
0
+* Associations: speedup duplicate record check.  #10011 [Pratik Naik]
0
 
0
 * Make sure that << works on has_many associations on unsaved records.  Closes #9989 [hasmanyjosh]
0
 
0
@@ -116,11 +116,11 @@
0
 
0
 * Fix regression where the association would not construct new finder SQL on save causing bogus queries for "WHERE owner_id = NULL" even after owner was saved.  #8713 [Bryan Helmkamp]
0
 
0
-* Refactor association create and build so before & after callbacks behave consistently.  #8854 [lifofifo, mortent]
0
+* Refactor association create and build so before & after callbacks behave consistently.  #8854 [Pratik Naik, mortent]
0
 
0
 * Quote table names. Defaults to column quoting.  #4593 [Justin Lynn, gwcoffey, eadz, Dmitry V. Sabanin, Jeremy Kemper]
0
 
0
-* Alias association #build to #new so it behaves predictably.  #8787 [lifofifo]
0
+* Alias association #build to #new so it behaves predictably.  #8787 [Pratik Naik]
0
 
0
 * Add notes to documentation regarding attr_readonly behavior with counter caches and polymorphic associations.  Closes #9835 [saimonmoore, rick]
0
 
0
@@ -210,9 +210,9 @@ single-table inheritance.  #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
 
0
 * OpenBase: update for new lib and latest Rails. Support migrations.  #8748 [dcsesq]
0
 
0
-* Moved acts_as_tree into a plugin of the same name on the official Rails svn #9514 [lifofifo]
0
+* Moved acts_as_tree into a plugin of the same name on the official Rails svn.  #9514 [Pratik Naik]
0
 
0
-* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn #9516 [josh]
0
+* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn.  #9516 [Josh Peek]
0
 
0
 * Moved acts_as_list into a plugin of the same name on the official Rails svn [josh]
0
 
0
@@ -240,7 +240,7 @@ single-table inheritance.  #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
 
0
 * Perform a deep #dup on query cache results so that modifying activerecord attributes does not modify the cached attributes.  [Rick]
0
 
0
-# Ensure that has_many :through associations use a count query instead of loading the target when #size is called.  Closes #8800 [lifo]
0
+# Ensure that has_many :through associations use a count query instead of loading the target when #size is called.  Closes #8800 [Pratik Naik]
0
 
0
 * Added :unless clause to validations #8003 [monki]. Example: 
0
 
0
@@ -252,11 +252,11 @@ single-table inheritance.  #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
     validates_presence_of :username, :unless => using_open_id?
0
     validates_presence_of :password, :unless => using_open_id?
0
 
0
-* Fix #count on a has_many :through association so that it recognizes the :uniq option.  Closes #8801 [lifofifo]
0
+* Fix #count on a has_many :through association so that it recognizes the :uniq option.  Closes #8801 [Pratik Naik]
0
 
0
-* Fix and properly document/test count(column_name) usage. Closes #8999 [lifofifo]
0
+* Fix and properly document/test count(column_name) usage. Closes #8999 [Pratik Naik]
0
 
0
-* Remove deprecated count(conditions=nil, joins=nil) usage.  Closes #8993 [lifofifo]
0
+* Remove deprecated count(conditions=nil, joins=nil) usage.  Closes #8993 [Pratik Naik]
0
 
0
 * Change belongs_to so that the foreign_key assumption is taken from the association name, not the class name.  Closes #8992 [hasmanyjosh]
0
 
0
@@ -266,21 +266,21 @@ single-table inheritance.  #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
   NEW
0
     belongs_to :visitor, :class_name => 'User' # => inferred foreign_key is visitor_id
0
 
0
-* Remove spurious tests from deprecated_associations_test, most of these aren't deprecated, and are duplicated in associations_test.  Closes #8987 [lifofifo]
0
+* Remove spurious tests from deprecated_associations_test, most of these aren't deprecated, and are duplicated in associations_test.  Closes #8987 [Pratik Naik]
0
 
0
-* Make create! on a has_many :through association return the association object.  Not the collection.  Closes #8786 [lifofifo]
0
+* Make create! on a has_many :through association return the association object.  Not the collection.  Closes #8786 [Pratik Naik]
0
 
0
 * Move from select * to select tablename.* to avoid clobbering IDs. Closes #8889 [dasil003]
0
 
0
 * Don't call unsupported methods on associated objects when using :include, :method with to_xml #7307, [manfred, jwilger]
0
 
0
-* Define collection singular ids method for has_many :through associations.  #8763 [lifofifo]
0
+* Define collection singular ids method for has_many :through associations.  #8763 [Pratik Naik]
0
 
0
 * Array attribute conditions work with proxied association collections.  #8318 [kamal, theamazingrando]
0
 
0
-* Fix polymorphic has_one associations declared in an abstract class.  #8638 [lifofifo, daxhuiberts]
0
+* Fix polymorphic has_one associations declared in an abstract class.  #8638 [Pratik Naik, Dax Huiberts]
0
 
0
-* Fixed validates_associated should not stop on the first error #4276 [mrj/manfred/josh]
0
+* Fixed validates_associated should not stop on the first error.  #4276 [mrj, Manfred Stienstra, Josh Peek]
0
 
0
 * Rollback if commit raises an exception.  #8642 [kik, Jeremy Kemper]
0
 
...
111
112
113
114
 
115
116
117
...
111
112
113
 
114
115
116
117
0
@@ -111,7 +111,7 @@ databases on localhost.  #9753 [Trevor Wennblom]
0
 
0
 * Added db:drop:all to drop all databases declared in config/database.yml [DHH]
0
 
0
-* Use attribute pairs instead of the migration name to create add and remove column migrations.  Closes #9166 [lifofifo]
0
+* Use attribute pairs instead of the migration name to create add and remove column migrations.  Closes #9166 [Pratik Naik]
0
 
0
   For example:
0
 

Comments