aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-04-04 15:23:15 +0530
committerSandip Ransing <sandip@joshsoftware.com>2012-04-05 02:41:21 +0530
commitcc3e2c5432f844d1d45c21d8d33fdfa154163989 (patch)
tree3b700156565dfc8a0ce9a516cd99be365cbceee9
parent8e00a6cf73ec272608eafcfd23ea57f32c0c74bc (diff)
downloadrails-cc3e2c5432f844d1d45c21d8d33fdfa154163989.tar.gz
rails-cc3e2c5432f844d1d45c21d8d33fdfa154163989.tar.bz2
rails-cc3e2c5432f844d1d45c21d8d33fdfa154163989.zip
Revert "update ActionPack README links"
This reverts commit aeb228c5be5e8a1e7d79ccaef3833f8f35b00046. Reason: The links are meant to be consumed in the api and not on GitHub.
-rw-r--r--actionpack/README.rdoc20
1 files changed, 10 insertions, 10 deletions
diff --git a/actionpack/README.rdoc b/actionpack/README.rdoc
index da4060fb66..1fdc57e14d 100644
--- a/actionpack/README.rdoc
+++ b/actionpack/README.rdoc
@@ -53,7 +53,7 @@ A short rundown of some of the major features:
end
end
- {Learn more}[link:lib/action_controller/base.rb]
+ {Learn more}[link:classes/ActionController/Base.html]
* ERB templates (static content mixed with dynamic output from ruby)
@@ -68,7 +68,7 @@ A short rundown of some of the major features:
Not for clients to see...
<% end %>
- {Learn more}[link:lib/action_view/base.rb]
+ {Learn more}[link:classes/ActionView.html]
* "Builder" templates (great for XML content, like RSS)
@@ -93,7 +93,7 @@ A short rundown of some of the major features:
end
end
- {Learn more}[link:lib/action_view/base.rb]
+ {Learn more}[link:classes/ActionView/Base.html]
* Filters for pre- and post-processing of the response
@@ -123,7 +123,7 @@ A short rundown of some of the major features:
end
end
- {Learn more}[link:lib/abstract_controller/callbacks.rb]
+ {Learn more}[link:classes/ActionController/Filters/ClassMethods.html]
* Helpers for forms, dates, action links, and text
@@ -132,7 +132,7 @@ A short rundown of some of the major features:
<%= link_to "New post", :controller => "post", :action => "new" %>
<%= truncate(post.title, :length => 25) %>
- {Learn more}[link:lib/action_view/helpers]
+ {Learn more}[link:classes/ActionView/Helpers.html]
* Layout sharing for template reuse
@@ -153,7 +153,7 @@ A short rundown of some of the major features:
Result of running hello_world action:
<html><body><h1>Hello world</h1></body></html>
- {Learn more}[link:lib/abstract_controller/layouts.rb]
+ {Learn more}[link:classes/ActionController/Layout/ClassMethods.html]
* Routing makes pretty URLs incredibly easy
@@ -171,7 +171,7 @@ A short rundown of some of the major features:
redirect_to(:client_name => "nextangle", :project_name => "rails") =>
/clients/nextangle/rails/project/index
- {Learn more}[link:lib/action_dispatch/routing.rb]
+ {Learn more}[link:classes/ActionDispatch/Routing.html]
* Easy testing of both controller and rendered template through ActionController::TestCase
@@ -184,7 +184,7 @@ A short rundown of some of the major features:
end
end
- {Learn more}[link:lib/action_controller/test_case.rb]
+ {Learn more}[link:classes/ActionController/TestCase.html]
* Automated benchmarking and integrated logging
@@ -235,7 +235,7 @@ A short rundown of some of the major features:
end
end
- {Learn more}[link:lib/action_controller/caching.rb]
+ {Learn more}[link:classes/ActionController/Caching.html]
* Powerful debugging mechanism for local requests
@@ -245,7 +245,7 @@ A short rundown of some of the major features:
message, stack trace, request parameters, session contents, and the
half-finished response.
- {Learn more}[link:lib/action_controller/metal/rescue.rb]
+ {Learn more}[link:classes/ActionController/Rescue.html]
== Simple example (from outside of Rails)