CGISession

 view release on metacpan or  search on metacpan

Session/CVS/Base/LDAPSession.pm  view on Meta::CPAN

966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
=cut
 
sub register($;$) { my $self=shift; @_ ? $self->{register}=shift : $self->{register}; }
 
 
=item CGI::LDAPSession::auto_refresh_cookie($;$)
 
Accessor method.  Normally the cookie will expire X seconds after it is created, where X is
specified by CGI::LDAPSession::cookie_expiration.  Whenever the cookie is refreshed this
timer resets.  Setting this variable to a non-zero value causes the cookie to be refreshed
every time that it is successfully verified.
 
=cut
 
sub auto_refresh_cookie($;$) { my $self=shift; @_ ? $self->{auto_refresh_cookie}=shift : $self->{auto_refresh_cookie}; }
 
 
=item CGI::LDAPSession::used_with_custom_cgi($;$)
 
Forget about this one.  This is an internal function used by CGI::LDAPSession and CGI::LDAPSession::CGI.

Session/Session.pm  view on Meta::CPAN

955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
=cut
 
sub register { my $self=shift; @_ ? $self->{register}=shift : $self->{register}; }
 
 
=item CGI::Session::auto_refresh_cookie
 
Accessor method.  Normally the cookie will expire X seconds after it is created, where X is
specified by CGI::Session::cookie_expiration.  Whenever the cookie is refreshed this
timer resets.  Setting this variable to a non-zero value causes the cookie to be refreshed
every time that it is successfully verified.
 
=cut
 
sub auto_refresh_cookie { my $self=shift; @_ ? $self->{auto_refresh_cookie}=shift : $self->{auto_refresh_cookie}; }
 
 
=item CGI::Session::used_with_custom_cgi
 
Forget about this one.  This is an internal function used by CGI::Session and CGI::Session::CGI.

Session/blib/lib/CGI/Session.pm  view on Meta::CPAN

955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
=cut
 
sub register { my $self=shift; @_ ? $self->{register}=shift : $self->{register}; }
 
 
=item CGI::Session::auto_refresh_cookie
 
Accessor method.  Normally the cookie will expire X seconds after it is created, where X is
specified by CGI::Session::cookie_expiration.  Whenever the cookie is refreshed this
timer resets.  Setting this variable to a non-zero value causes the cookie to be refreshed
every time that it is successfully verified.
 
=cut
 
sub auto_refresh_cookie { my $self=shift; @_ ? $self->{auto_refresh_cookie}=shift : $self->{auto_refresh_cookie}; }
 
 
=item CGI::Session::used_with_custom_cgi
 
Forget about this one.  This is an internal function used by CGI::Session and CGI::Session::CGI.

Session/blib/man3/CGI::Session.3  view on Meta::CPAN

857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
Accessor method.  Boy this one sucks.  This is a backdoor value.  If this is
set then any user matching this \s-1ID\s0 will be successfully authenticated.  Why?  Strictly
for testing.  \s-1NEVER\s0, \s-1EVER\s0 \s-1SET\s0 \s-1THIS\s0 \s-1VALUE\s0 \s-1UNLESS\s0 \s-1YOU\s0 \s-1KNOW\s0 \s-1WHAT\s0 \s-1THE\s0 \s-1FUCK\s0 \s-1YOU\s0 \s-1ARE\s0 \s-1DOING\s0.
.Ip "\s-1CGI::\s0Session::register" 4
Accessor method.  Login requires an entry to exist in the cookie table for each user.
If this variable is set then an entry will automatically be created for users which are
successfully authenticated.
.Ip "\s-1CGI::\s0Session::auto_refresh_cookie" 4
Accessor method.  Normally the cookie will expire X seconds after it is created, where X is
specified by \s-1CGI::\s0Session::cookie_expiration.  Whenever the cookie is refreshed this
timer resets.  Setting this variable to a non-zero value causes the cookie to be refreshed
every time that it is successfully verified.
.Ip "\s-1CGI::\s0Session::used_with_custom_cgi" 4
Forget about this one.  This is an internal function used by \s-1CGI::\s0Session and \s-1CGI::\s0Session::\s-1CGI\s0.
Normally set to zero.  Setting \s-1CGI::\s0Session::\s-1CGI::\s0session causes this value to be set.
.Ip "\s-1CGI::\s0Session::cookie_jar" 4
# Cookiejar.  This handles all cookie storage.
#
Accessor method.  The object encapsulating cookie storage.
.Ip "\s-1CGI::\s0Session::passkey_name" 4
Accessor method.  The name of the passkey field in the form is stored here.



( run in 0.942 second using v1.01-cache-2.11-cpan-26ccb49234f )