aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/actioncontroller/request_response_objects.txt
diff options
context:
space:
mode:
authorTore Darell <toredarell@gmail.com>2008-10-07 22:16:28 +0200
committerTore Darell <toredarell@gmail.com>2008-10-07 22:16:28 +0200
commitb4da5f67708b2699a21f8bb39f4d10865c1814d4 (patch)
tree4292a27b09d11e3f1e37b1751e28ed87fb256865 /railties/doc/guides/actioncontroller/request_response_objects.txt
parentdfc0b1a716d17085224a375977a10407ba9bea24 (diff)
downloadrails-b4da5f67708b2699a21f8bb39f4d10865c1814d4.tar.gz
rails-b4da5f67708b2699a21f8bb39f4d10865c1814d4.tar.bz2
rails-b4da5f67708b2699a21f8bb39f4d10865c1814d4.zip
Fix links in AC guide
Diffstat (limited to 'railties/doc/guides/actioncontroller/request_response_objects.txt')
-rw-r--r--railties/doc/guides/actioncontroller/request_response_objects.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/doc/guides/actioncontroller/request_response_objects.txt b/railties/doc/guides/actioncontroller/request_response_objects.txt
index d335523a25..493bd4cb43 100644
--- a/railties/doc/guides/actioncontroller/request_response_objects.txt
+++ b/railties/doc/guides/actioncontroller/request_response_objects.txt
@@ -1,10 +1,10 @@
== The request and response objects ==
-In every controller there are two accessor methods pointing to the request and the response objects associated with the request cycle that is currently in execution. The `request` method contains an instance of "AbstractRequest":http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html and the `response` method contains the "response object":http://github.com/rails/rails/tree/master/actionpack/lib/action_controller/response.rb representing what is going to be sent back to the client.
+In every controller there are two accessor methods pointing to the request and the response objects associated with the request cycle that is currently in execution. The `request` method contains an instance of link:http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html[AbstractRequest] and the `response` method contains the link:http://github.com/rails/rails/tree/master/actionpack/lib/action_controller/response.rb[response object] representing what is going to be sent back to the client.
=== The request ===
-The request object contains a lot of useful information about the request coming in from the client. To get a full list of the available methods, refer to the "Rails API documentation":http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html
+The request object contains a lot of useful information about the request coming in from the client. To get a full list of the available methods, refer to the link:http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html[API documentation].
* host - The hostname used for this request.
* domain - The hostname without the first part (usually "www").