aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xactionpack/README9
-rw-r--r--actionpack/lib/action_view/helpers/javascript_helper.rb3
-rw-r--r--activerecord/CHANGELOG2
-rw-r--r--activesupport/CHANGELOG14
-rw-r--r--railties/CHANGELOG4
5 files changed, 30 insertions, 2 deletions
diff --git a/actionpack/README b/actionpack/README
index 5d928dfa70..7c7526a9e9 100755
--- a/actionpack/README
+++ b/actionpack/README
@@ -168,6 +168,15 @@ A short rundown of the major features:
{Learn more}[link:classes/ActionController/Base.html]
+* Javascript and Ajax integration.
+
+ link_to_function "Greeting", "alert('Hello world!')"
+ link_to_remote "Delete this post", :update => "posts",
+ :url => { :action => "destroy", :id => post.id }
+
+ {Learn more}[link:classes/ActionView/Helpers/JavascriptHelper.html]
+
+
* Easy testing of both controller and template result through TestRequest/Response
class LoginControllerTest < Test::Unit::TestCase
diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb
index 99b2fc1166..079ec736a1 100644
--- a/actionpack/lib/action_view/helpers/javascript_helper.rb
+++ b/actionpack/lib/action_view/helpers/javascript_helper.rb
@@ -11,6 +11,9 @@ module ActionView
# the Javascript support functions in a <script> block) or reference the Javascript library using
# <%= javascript_include_tag "prototype" %> (which looks for the library in /javascripts/prototype.js). The latter is
# recommended as the browser can then cache the library instead of fetching all the functions anew on every request.
+ #
+ # If you're the visual type, there's an Ajax movie[http://www.rubyonrails.com/media/video/rails-ajax.mov] demonstrating
+ # the use of form_remote_tag.
module JavascriptHelper
unless const_defined? :CALLBACKS
CALLBACKS = [:uninitialized, :loading, :loaded, :interactive, :complete]
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 5cd2126568..afe33f095f 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.9.0* (22th March, 2005)
* Added adapter independent limit clause as a two-element array with the first being the limit, the second being the offset #795 [Sam Stephenson]. Example:
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 6bd2d81f72..42b01c05be 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,3 +1,17 @@
+*1.0.2*
+
+* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
+
+ def foo
+ returning values = [] do
+ values << 'bar'
+ values << 'baz'
+ end
+ end
+
+ foo # => ['bar', 'baz']
+
+
*1.0.1* (7th March, 2005)
* Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar]
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index b41771ced1..b6bce12607 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.11.0* (22th March, 2005)
* Removed SCRIPT_NAME from the WEBrick environment to prevent conflicts with PATH_INFO #896 [Nicholas Seckar]
@@ -29,6 +29,8 @@
3. Quote the user name and use template0 when dumping so the functions doesn't get dumped too #855 [pburleson]
4. Use the port if available #875 [madrobby]
+* Upgraded to Active Record 1.9.0, Action Pack 1.6.0, Action Mailer 0.8.0, Action Web Service 0.6.1, Active Support 1.0.2
+
*0.10.1* (7th March, 2005)