aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorTore Darell <toredarell@gmail.com>2008-11-03 21:05:37 +0100
committerTore Darell <toredarell@gmail.com>2008-11-03 21:05:37 +0100
commit2a4d80872642356fb2ddb276dd4928312d83e1c1 (patch)
tree83d29ff11ab7ef36e2618166a68c58680cbabaa7 /railties
parenteb9417139fb256f8061b05c0c2cc491782f95f7e (diff)
downloadrails-2a4d80872642356fb2ddb276dd4928312d83e1c1.tar.gz
rails-2a4d80872642356fb2ddb276dd4928312d83e1c1.tar.bz2
rails-2a4d80872642356fb2ddb276dd4928312d83e1c1.zip
Link to Wikipedia page on HTTP Basic Auth
Diffstat (limited to 'railties')
-rw-r--r--railties/doc/guides/source/actioncontroller_basics/http_auth.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/actioncontroller_basics/http_auth.txt b/railties/doc/guides/source/actioncontroller_basics/http_auth.txt
index 7df0e635bf..1593b1045f 100644
--- a/railties/doc/guides/source/actioncontroller_basics/http_auth.txt
+++ b/railties/doc/guides/source/actioncontroller_basics/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, link:http://api.rubyonrails.org/classes/ActionController/HttpAuthentication/Basic/ControllerMethods.html#M000610[authenticate_or_request_with_http_basic].
+Rails comes with built-in link:http://en.wikipedia.org/wiki/Basic_access_authentication[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]
-------------------------------------