Class Index [+]

Quicksearch

ActionController::HttpAuthentication::Digest::ControllerMethods

Public Instance Methods

authenticate_or_request_with_http_digest(realm = "Application", &password_procedure) click to toggle source
     # File lib/action_controller/metal/http_authentication.rb, line 155
155:         def authenticate_or_request_with_http_digest(realm = "Application", &password_procedure)
156:           authenticate_with_http_digest(realm, &password_procedure) || request_http_digest_authentication(realm)
157:         end
authenticate_with_http_digest(realm = "Application", &password_procedure) click to toggle source

Authenticate with HTTP Digest, returns true or false

     # File lib/action_controller/metal/http_authentication.rb, line 160
160:         def authenticate_with_http_digest(realm = "Application", &password_procedure)
161:           HttpAuthentication::Digest.authenticate(request, realm, &password_procedure)
162:         end
request_http_digest_authentication(realm = "Application", message = nil) click to toggle source

Render output including the HTTP Digest authentication header

     # File lib/action_controller/metal/http_authentication.rb, line 165
165:         def request_http_digest_authentication(realm = "Application", message = nil)
166:           HttpAuthentication::Digest.authentication_request(self, realm, message)
167:         end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.