From: Chris W. <la...@us...> - 2005-03-24 05:14:29
|
Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18375 Modified Files: Request.pm Log Message: fix some minor doc issues Index: Request.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Request.pm,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** Request.pm 23 Mar 2005 19:17:55 -0000 1.56 --- Request.pm 24 Mar 2005 05:14:21 -0000 1.57 *************** *** 499,511 **** When you create a new request object you need to specify what type of ! request it is. (Your OpenInteract server configuration should have ! this specified in the 'context_info' section.) The process of ! initializing the object during the C<new()> call fills the Request ! object with any parameters, uploaded files and important headers from ! the client. ! ! The L<OpenInteract2::Context|OpenInteract2::Context> object is ! responsible for associating cookies and the session with this request ! object. =head1 METHODS --- 499,506 ---- When you create a new request object you need to specify what type of ! request it is -- this is done in your adapter (CGI script, Apache ! handler, etc.) The process of initializing the object during the ! C<new()> call fills the Request object with any parameters, uploaded ! files and important headers from the client. =head1 METHODS *************** *** 863,868 **** If your architecture is deployed under a particular URL you should set this as soon as possible. Do so using the C<assign_deploy_url()> ! method of the context. See ! L<OpenInteract2::Request::CGI|OpenInteract2::Request::CGI> for an example. --- 858,862 ---- If your architecture is deployed under a particular URL you should set this as soon as possible. Do so using the C<assign_deploy_url()> ! method of the context. See L<OpenInteract2::Request::CGI> for an example. *************** *** 870,876 **** Other than that take a look at ! L<OpenInteract::Request::Standalone|OpenInteract::Request::Standalone>. It ! forces you to deal with parameters and file uploads yourself, but it ! may be the path of least resistance. =head2 Methods --- 864,870 ---- Other than that take a look at ! L<OpenInteract::Request::Standalone>. It forces you to deal with ! parameters and file uploads yourself, but it may be the path of least ! resistance. =head2 Methods |