Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Deprecation: update docs. Closes #5998.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4898 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
jeremy committed Sep 1, 2006
1 parent 667d8ea commit 7aa9eed
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 7 deletions.
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*

* Deprecation: update docs. #5998 [jakob@mentalized.net, Kevin Clark]

* Make auto_link parse a greater subset of valid url formats. [Jamis Buck]

* 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]
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_controller/caching.rb
Expand Up @@ -266,7 +266,7 @@ def extract_extension(file_path)
# <b>Hello <%= @name %></b>
# <% cache do %>
# All the topics in the system:
# <%= render_collection_of_partials "topic", Topic.find_all %>
# <%= render :partial => "topic", :collection => Topic.find(:all) %>
# <% end %>
#
# This cache will bind to the name of action that called it. So you would be able to invalidate it using
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_controller/verification.rb
Expand Up @@ -43,7 +43,7 @@ module ClassMethods
# be in the <tt>params</tt> hash in order for the action(s) to be safely
# called.
# * <tt>:session</tt>: a single key or an array of keys that must
# be in the @session in order for the action(s) to be safely called.
# be in the <tt>session</tt> in order for the action(s) to be safely called.
# * <tt>:flash</tt>: a single key or an array of keys that must
# be in the flash in order for the action(s) to be safely called.
# * <tt>:method</tt>: a single key or an array of keys--any one of which
Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_view/helpers/form_options_helper.rb
Expand Up @@ -26,7 +26,7 @@ module Helpers
#
# Another common case is a select tag for an <tt>belongs_to</tt>-associated object. For example,
#
# select("post", "person_id", Person.find_all.collect {|p| [ p.name, p.id ] })
# select("post", "person_id", Person.find(:all).collect {|p| [ p.name, p.id ] })
#
# could become:
#
Expand All @@ -43,7 +43,7 @@ module FormOptionsHelper
# See options_for_select for the required format of the choices parameter.
#
# Example with @post.person_id => 1:
# select("post", "person_id", Person.find_all.collect {|p| [ p.name, p.id ] }, { :include_blank => true })
# select("post", "person_id", Person.find(:all).collect {|p| [ p.name, p.id ] }, { :include_blank => true })
#
# could become:
#
Expand Down
2 changes: 2 additions & 0 deletions actionwebservice/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*

* Deprecation: update docs. #5998 [jakob@mentalized.net, Kevin Clark]

* ActionWebService WSDL generation ignores HTTP_X_FORWARDED_HOST [Paul Butcher <paul@paulbutcher.com>]

* Tighten rescue clauses. #5985 [james@grayproductions.net]
Expand Down
2 changes: 1 addition & 1 deletion actionwebservice/lib/action_web_service/base.rb
Expand Up @@ -12,7 +12,7 @@ class ActionWebServiceError < StandardError # :nodoc:
# web_service_api PersonAPI
#
# def find_person(criteria)
# Person.find_all [...]
# Person.find(:all) [...]
# end
#
# def delete_person(id)
Expand Down
2 changes: 2 additions & 0 deletions activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*

* Deprecation: update docs. #5998 [jakob@mentalized.net, Kevin Clark]

* Add some XmlSerialization tests for ActiveRecord [Rick Olson]

* has_many :through conditions are sanitized by the associating class. #5971 [martin.emde@gmail.com]
Expand Down
2 changes: 1 addition & 1 deletion activerecord/README
Expand Up @@ -264,7 +264,7 @@ Lots of different finders
next_angle = Firm.find(1)

# SQL: SELECT * FROM companies WHERE id = 1 AND name = 'Next Angle'
next_angle = Company.find_first "name = 'Next Angle'"
next_angle = Company.find(:first, :conditions => "name = 'Next Angle'")

next_angle = Firm.find_by_sql("SELECT * FROM companies WHERE id = 1").first

Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/associations.rb
Expand Up @@ -84,7 +84,7 @@ def clear_association_cache #:nodoc:
# * <tt>Project#portfolio, Project#portfolio=(portfolio), Project#portfolio.nil?</tt>
# * <tt>Project#project_manager, Project#project_manager=(project_manager), Project#project_manager.nil?,</tt>
# * <tt>Project#milestones.empty?, Project#milestones.size, Project#milestones, Project#milestones<<(milestone),</tt>
# <tt>Project#milestones.delete(milestone), Project#milestones.find(milestone_id), Project#milestones.find_all(conditions),</tt>
# <tt>Project#milestones.delete(milestone), Project#milestones.find(milestone_id), Project#milestones.find(:all, options),</tt>
# <tt>Project#milestones.build, Project#milestones.create</tt>
# * <tt>Project#categories.empty?, Project#categories.size, Project#categories, Project#categories<<(category1),</tt>
# <tt>Project#categories.delete(category1)</tt>
Expand Down

0 comments on commit 7aa9eed

Please sign in to comment.