From e8a85924a34c3c125ed19b5bd6600d9fc5d3beb8 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Mon, 10 Dec 2007 01:29:20 +0000 Subject: lifo -> Pratik git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8352 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/CHANGELOG | 22 +++++++++++----------- activerecord/CHANGELOG | 30 +++++++++++++++--------------- railties/CHANGELOG | 2 +- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 2d13b1d724..f1288602e3 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -116,7 +116,7 @@ * Make sure resource routes don't clash with internal helpers like javascript_path, image_path etc. #9928 [gbuesing] -* caches_page uses a single after_filter instead of one per action. #9891 [lifofifo] +* caches_page uses a single after_filter instead of one per action. #9891 [Pratik Naik] * Update Prototype to 1.6.0_rc1 and script.aculo.us to 1.8.0 preview 0. [sam, madrobby] @@ -132,7 +132,7 @@ * Extracted sanitization methods from TextHelper to SanitizeHelper [DHH] -* rescue_from accepts :with => lambda { |exception| ... } or a normal block. #9827 [lifofifo] +* rescue_from accepts :with => lambda { |exception| ... } or a normal block. #9827 [Pratik Naik] * Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [codahale, chasgrundy] @@ -159,7 +159,7 @@ * Better error messages if you leave out the :secret option for request forgery protection. Closes #9670 [rick] -* Allow ability to disable request forgery protection, disable it in test mode by default. Closes #9693 [lifofifo] +* Allow ability to disable request forgery protection, disable it in test mode by default. Closes #9693 [Pratik Naik] * Avoid calling is_missing on LoadErrors. Closes #7460. [ntalbott] @@ -177,7 +177,7 @@ * Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model that verifies session-specific _tokens for non-GET requests. [Rick] -* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. Closes #8877. [Rick, lifofifo, Jacques Distler] +* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. Closes #8877. [Rick, Pratik Naik, Jacques Distler] This merges and renames the popular white_list helper (along with some css sanitizing from Jacques Distler version of the same plugin). Also applied updated versions of #strip_tags and #strip_links from #8877. @@ -196,7 +196,7 @@ * 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] -* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an improvement for XSS attacks #8895 [lifo/Spakman] +* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an improvement for XSS attacks #8895 [Pratik Naik, Spakman] * Don't warn when a path segment precedes a required segment. Closes #9615. [Nicholas Seckar] @@ -229,13 +229,13 @@ * Autolink behaves well with emails embedded in URLs. #7313 [Jeremy McAnally, tarmo] -* Fixed that default layouts did not take the format into account #9564 [lifofifo] +* Fixed that default layouts did not take the format into account #9564 [Pratik Naik] * Fixed optimized route segment escaping. #9562 [wildchild, Jeremy Kemper] * Added block acceptance to JavaScriptHelper#javascript_tag. #7527 [Bob Silva, Tarmo Tänav, rmm5t] -* root_path returns '/' not ''. #9563 [lifofifo] +* root_path returns '/' not ''. #9563 [Pratik Naik] * Fixed that setting request.format should also affect respond_to blocks [DHH] @@ -243,9 +243,9 @@ * Fixed that resource namespaces wouldn't stick to all nested resources #9399 [pixeltrix] -* Moved ActionController::Macros::AutoComplete into the auto_complete plugin on the official Rails svn #9512 [lifofifo] +* Moved ActionController::Macros::AutoComplete into the auto_complete plugin on the official Rails svn. #9512 [Pratik Naik] -* Moved ActionController::Macros::InPlaceEditing into the in_place_editor plugin on the official Rails svn #9513 [lifofifo] +* Moved ActionController::Macros::InPlaceEditing into the in_place_editor plugin on the official Rails svn. #9513 [Pratik Naik] * Removed deprecated form of calling xml_http_request/xhr without the first argument being the http verb [DHH] @@ -275,7 +275,7 @@ * Allow additional parameters to be passed to named route helpers when using positional arguments. Closes #8930 [ian.w.white@gmail.com] -* Make render :partial work with a :collection of Hashes, previously this wasn't possible due to backwards compatibility restrictions. [lifofifo] +* Make render :partial work with a :collection of Hashes, previously this wasn't possible due to backwards compatibility restrictions. [Pratik Naik] * request.host works with IPv6 addresses. #9458 [yuya] @@ -327,7 +327,7 @@ * Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [mislaw] -* Don't mistakenly interpret the request uri as the query string. #8731 [lifofifo, Jeremy Kemper] +* Don't mistakenly interpret the request uri as the query string. #8731 [Pratik Naik, Jeremy Kemper] * 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] diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 116a1fece4..9e267c37dd 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -59,7 +59,7 @@ * Enhance explanation with more examples for attr_accessible macro. Closes #8095 [fearoffish, Marcel Molina] -* Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [lifofifo] +* Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [Pratik Naik] * Explain semantics of having several different AR instances in a transaction block. Closes #9036 [jacobat, Marcel Molina] @@ -74,7 +74,7 @@ # Find posts with a high-rated comment. Post.find(:all, :joins => :comments, :conditions => 'comments.rating > 3') -* Associations: speedup duplicate record check. #10011 [lifofifo] +* Associations: speedup duplicate record check. #10011 [Pratik Naik] * Make sure that << works on has_many associations on unsaved records. Closes #9989 [hasmanyjosh] @@ -116,11 +116,11 @@ * 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] -* Refactor association create and build so before & after callbacks behave consistently. #8854 [lifofifo, mortent] +* Refactor association create and build so before & after callbacks behave consistently. #8854 [Pratik Naik, mortent] * Quote table names. Defaults to column quoting. #4593 [Justin Lynn, gwcoffey, eadz, Dmitry V. Sabanin, Jeremy Kemper] -* Alias association #build to #new so it behaves predictably. #8787 [lifofifo] +* Alias association #build to #new so it behaves predictably. #8787 [Pratik Naik] * Add notes to documentation regarding attr_readonly behavior with counter caches and polymorphic associations. Closes #9835 [saimonmoore, rick] @@ -210,9 +210,9 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea * OpenBase: update for new lib and latest Rails. Support migrations. #8748 [dcsesq] -* Moved acts_as_tree into a plugin of the same name on the official Rails svn #9514 [lifofifo] +* Moved acts_as_tree into a plugin of the same name on the official Rails svn. #9514 [Pratik Naik] -* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn #9516 [josh] +* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn. #9516 [Josh Peek] * Moved acts_as_list into a plugin of the same name on the official Rails svn [josh] @@ -240,7 +240,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea * Perform a deep #dup on query cache results so that modifying activerecord attributes does not modify the cached attributes. [Rick] -# Ensure that has_many :through associations use a count query instead of loading the target when #size is called. Closes #8800 [lifo] +# Ensure that has_many :through associations use a count query instead of loading the target when #size is called. Closes #8800 [Pratik Naik] * Added :unless clause to validations #8003 [monki]. Example: @@ -252,11 +252,11 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea validates_presence_of :username, :unless => using_open_id? validates_presence_of :password, :unless => using_open_id? -* Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [lifofifo] +* Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [Pratik Naik] -* Fix and properly document/test count(column_name) usage. Closes #8999 [lifofifo] +* Fix and properly document/test count(column_name) usage. Closes #8999 [Pratik Naik] -* Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [lifofifo] +* Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [Pratik Naik] * Change belongs_to so that the foreign_key assumption is taken from the association name, not the class name. Closes #8992 [hasmanyjosh] @@ -266,21 +266,21 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea NEW belongs_to :visitor, :class_name => 'User' # => inferred foreign_key is visitor_id -* Remove spurious tests from deprecated_associations_test, most of these aren't deprecated, and are duplicated in associations_test. Closes #8987 [lifofifo] +* Remove spurious tests from deprecated_associations_test, most of these aren't deprecated, and are duplicated in associations_test. Closes #8987 [Pratik Naik] -* Make create! on a has_many :through association return the association object. Not the collection. Closes #8786 [lifofifo] +* Make create! on a has_many :through association return the association object. Not the collection. Closes #8786 [Pratik Naik] * Move from select * to select tablename.* to avoid clobbering IDs. Closes #8889 [dasil003] * Don't call unsupported methods on associated objects when using :include, :method with to_xml #7307, [manfred, jwilger] -* Define collection singular ids method for has_many :through associations. #8763 [lifofifo] +* Define collection singular ids method for has_many :through associations. #8763 [Pratik Naik] * Array attribute conditions work with proxied association collections. #8318 [kamal, theamazingrando] -* Fix polymorphic has_one associations declared in an abstract class. #8638 [lifofifo, daxhuiberts] +* Fix polymorphic has_one associations declared in an abstract class. #8638 [Pratik Naik, Dax Huiberts] -* Fixed validates_associated should not stop on the first error #4276 [mrj/manfred/josh] +* Fixed validates_associated should not stop on the first error. #4276 [mrj, Manfred Stienstra, Josh Peek] * Rollback if commit raises an exception. #8642 [kik, Jeremy Kemper] diff --git a/railties/CHANGELOG b/railties/CHANGELOG index bfed3eccf3..ebf771c6fc 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -111,7 +111,7 @@ databases on localhost. #9753 [Trevor Wennblom] * Added db:drop:all to drop all databases declared in config/database.yml [DHH] -* Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [lifofifo] +* Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [Pratik Naik] For example: -- cgit v1.2.3