|
From: Chris W. <la...@us...> - 2001-10-17 04:47:10
|
Update of /cvsroot/openinteract/OpenInteract/OpenInteract/Cookies
In directory usw-pr-cvs1:/tmp/cvs-serv25485/OpenInteract/Cookies
Modified Files:
Apache.pm CGI.pm
Log Message:
modify to reflect server configuration file changes
Index: Apache.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract/Cookies/Apache.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Apache.pm 2001/10/01 22:08:52 1.2
--- Apache.pm 2001/10/17 04:47:07 1.3
***************
*** 70,75 ****
'system_alias' => {
! 'OpenInteract::Cookies::Apache' => [ qw/ cookies / ],
! ...,
}
--- 70,74 ----
'system_alias' => {
! cookies => 'OpenInteract::Cookies::Apache', ...
}
***************
*** 110,116 ****
do the actual cookie actions.
! Note that C<Apache::Cookie> does not work on all platforms,
! particularly Win32 (as of this writing). If C<Apache::Cookie> does not
! work for you, please use the L<OpenInteract::Cookies::CGI> module
instead.
--- 109,116 ----
do the actual cookie actions.
! Note that L<Apache::Cookie|Apache::Cookie> does not work on all
! platforms, particularly Win32 (as of this writing). If
! L<Apache::Cookie|Apache::Cookie> does not work for you, please use the
! L<OpenInteract::Cookies::CGI|OpenInteract::Cookies::CGI> module
instead.
***************
*** 119,124 ****
system_aliases => {
! ...,
! 'OpenInteract::Cookies::Apache' => [ qw/ cookies / ],
},
--- 119,123 ----
system_aliases => {
! cookies => 'OpenInteract::Cookies::Apache', ...
},
***************
*** 184,190 ****
Nothing.
! =head1 BUGS
None known.
=head1 COPYRIGHT
--- 183,193 ----
Nothing.
! =head1 BUGS
None known.
+
+ =head1 SEE ALSO
+
+ L<Apache::Cookie|Apache::Cookie>
=head1 COPYRIGHT
Index: CGI.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract/Cookies/CGI.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** CGI.pm 2001/10/01 22:08:52 1.2
--- CGI.pm 2001/10/17 04:47:07 1.3
***************
*** 65,70 ****
'system_alias' => {
! 'OpenInteract::Cookies::CGI' => [ qw/ cookies / ],
! ...,
}
# Retrieve the cookies from the client request
--- 65,69 ----
'system_alias' => {
! cookies => 'OpenInteract::Cookies::CGI', ...
}
# Retrieve the cookies from the client request
***************
*** 79,83 ****
$params->{search} = $R->{cookie}{in}{search_value};
!
# Create a new cookie
--- 78,82 ----
$params->{search} = $R->{cookie}{in}{search_value};
!
# Create a new cookie
***************
*** 109,114 ****
system_aliases => {
! ...,
! 'OpenInteract::Cookies::CGI' => [ qw/ cookies / ],
},
--- 108,112 ----
system_aliases => {
! cookies => 'OpenInteract::Cookies::CGI', ...
},
***************
*** 177,183 ****
arrayref which can be picked up by the header printer.
! =head1 BUGS
None known.
=head1 COPYRIGHT
--- 175,185 ----
arrayref which can be picked up by the header printer.
! =head1 BUGS
None known.
+
+ =head1 SEE ALSO
+
+ L<CGI|CGI>
=head1 COPYRIGHT
|