| Rubric documentation | Contained in the Rubric distribution. |
Rubric::WebApp::Login::HTTP - process web login from HTTP authentication
version 0.147
This module checks for information needed to confirm that a user is logged into the Rubric.
This method returns the REMOTE_USER environment variable.
This method always returns true. (The assumption, here, is that the HTTP server has already taken care of authentication.)
Ricardo SIGNES, <rjbs@cpan.org>
Please report any bugs or feature requests to bug-rubric@rt.cpan.org, or
through the web interface at http://rt.cpan.org. I will be notified, and
then you'll automatically be notified of progress on your bug as I make
changes.
Copyright 2004 Ricardo SIGNES. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Rubric documentation | Contained in the Rubric distribution. |
use strict; use warnings; package Rubric::WebApp::Login::HTTP; use base qw(Rubric::WebApp::Login);
our $VERSION = '0.147';
sub get_login_username { $ENV{REMOTE_USER} }
sub authenticate_login { 1 }
1;