We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/johngibbs/rails.git
Updated more documentation

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@975 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Tue Mar 22 04:41:34 -0800 2005
commit  6ad1b895f4a7a113ad372ce485ac20c762cc3c2c
tree    2f65df256783d1d1b302bcdde207ccd0e72e7a89
parent  4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5
...
168
169
170
 
 
 
 
 
 
 
 
 
171
172
173
...
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
0
@@ -168,6 +168,15 @@ A short rundown of the major features:
0
   {Learn more}[link:classes/ActionController/Base.html]
0
 
0
 
0
+* Javascript and Ajax integration.
0
+
0
+ link_to_function "Greeting", "alert('Hello world!')"
0
+ link_to_remote "Delete this post", :update => "posts",
0
+ :url => { :action => "destroy", :id => post.id }
0
+
0
+ {Learn more}[link:classes/ActionView/Helpers/JavascriptHelper.html]
0
+
0
+
0
 * Easy testing of both controller and template result through TestRequest/Response
0
 
0
     class LoginControllerTest < Test::Unit::TestCase
...
11
12
13
 
 
 
14
15
16
...
11
12
13
14
15
16
17
18
19
0
@@ -11,6 +11,9 @@ module ActionView
0
     # the Javascript support functions in a <script> block) or reference the Javascript library using
0
     # <%= javascript_include_tag "prototype" %> (which looks for the library in /javascripts/prototype.js). The latter is
0
     # recommended as the browser can then cache the library instead of fetching all the functions anew on every request.
0
+ #
0
+ # If you're the visual type, there's an Ajax movie[http://www.rubyonrails.com/media/video/rails-ajax.mov] demonstrating
0
+ # the use of form_remote_tag.
0
     module JavascriptHelper
0
       unless const_defined? :CALLBACKS
0
         CALLBACKS = [:uninitialized, :loading, :loaded, :interactive, :complete]
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*1.9.0* (22th March, 2005)
0
 
0
 * 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:
0
 
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
0
@@ -1,3 +1,17 @@
0
+*1.0.2*
0
+
0
+* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
0
+
0
+ def foo
0
+ returning values = [] do
0
+ values << 'bar'
0
+ values << 'baz'
0
+ end
0
+ end
0
+
0
+ foo # => ['bar', 'baz']
0
+
0
+
0
 *1.0.1* (7th March, 2005)
0
 
0
 * Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar]
...
1
 
2
3
4
...
29
30
31
 
 
32
33
34
...
 
1
2
3
4
...
29
30
31
32
33
34
35
36
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*0.11.0* (22th March, 2005)
0
 
0
 * Removed SCRIPT_NAME from the WEBrick environment to prevent conflicts with PATH_INFO #896 [Nicholas Seckar]
0
 
0
@@ -29,6 +29,8 @@
0
     3. Quote the user name and use template0 when dumping so the functions doesn't get dumped too #855 [pburleson]
0
     4. Use the port if available #875 [madrobby]
0
 
0
+* 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
+
0
 
0
 *0.10.1* (7th March, 2005)
0
 

Comments

    No one has commented yet.