aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/actioncontroller/http_auth.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/http_auth.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/http_auth.txt')
-rw-r--r--railties/doc/guides/actioncontroller/http_auth.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/actioncontroller/http_auth.txt b/railties/doc/guides/actioncontroller/http_auth.txt
index 5a95de0bb3..7df0e635bf 100644
--- a/railties/doc/guides/actioncontroller/http_auth.txt
+++ b/railties/doc/guides/actioncontroller/http_auth.txt
@@ -1,6 +1,6 @@
== HTTP Basic Authentication ==
-Rails comes with built-in HTTP Basic authentication. This is an authentication scheme that is supported by the majority of browsers and other HTTP clients. As an example, we will create an administration section which will only be available by entering a username and a password into the browser's HTTP Basic dialog window. Using the built-in authentication is quite easy and only requires you to use one method, "authenticate_or_request_with_http_basic":http://api.rubyonrails.org/classes/ActionController/HttpAuthentication/Basic/ControllerMethods.html#M000610
+Rails comes with built-in HTTP Basic authentication. This is an authentication scheme that is supported by the majority of browsers and other HTTP clients. As an example, we will create an administration section which will only be available by entering a username and a password into the browser's HTTP Basic dialog window. Using the built-in authentication is quite easy and only requires you to use one method, link:http://api.rubyonrails.org/classes/ActionController/HttpAuthentication/Basic/ControllerMethods.html#M000610[authenticate_or_request_with_http_basic].
[source, ruby]
-------------------------------------