MINI SHELL

Server : Apache/2.2.2 (Fedora)
System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686
User : apache ( 48)
PHP Version : 5.2.9
Disable Function : NONE
Directory :  /var/www/manual/mod/mod_python/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/manual/mod/mod_python/pyapi-mprequest-meth.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="modpython.css" type='text/css'>
<link rel="first" href="modpython.html" title='Mod_python Manual'>
<link rel='contents' href='contents.html' title="Contents">
<link rel='index' href='genindex.html' title='Index'>
<link rel='last' href='about.html' title='About this document...'>
<link rel='help' href='about.html' title='About this document...'>
<LINK REL="next" href="pyapi-mprequest-mem.html">
<LINK REL="prev" href="pyapi-mprequest.html">
<LINK REL="parent" href="pyapi-mprequest.html">
<LINK REL="next" href="pyapi-mprequest-mem.html">
<meta name='aesop' content='information'>
<META NAME="description" CONTENT="Request Methods">
<META NAME="keywords" CONTENT="modpython">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<title>4.5.3.1 Request Methods</title>
</head>
<body>
<DIV CLASS="navigation">
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td><a rel="prev" title="4.5.3 Request Object&nbsp;" 
  href="pyapi-mprequest.html"><img src='previous.gif'
  border='0' height='32'  alt='Previous Page' width='32'></A></td>
<td><a rel="parent" title="4.5.3 Request Object&nbsp;" 
  href="pyapi-mprequest.html"><img src='up.gif'
  border='0' height='32'  alt='Up One Level' width='32'></A></td>
<td><a rel="next" title="4.5.3.2 Request Members" 
  href="pyapi-mprequest-mem.html"><img src='next.gif'
  border='0' height='32'  alt='Next Page' width='32'></A></td>
<td align="center" width="100%">Mod_python Manual</td>
<td><a rel="contents" title="Table of Contents" 
  href="contents.html"><img src='contents.gif'
  border='0' height='32'  alt='Contents' width='32'></A></td>
<td><img src='blank.gif'
  border='0' height='32'  alt='' width='32'></td>
<td><a rel="index" title="Index" 
  href="genindex.html"><img src='index.gif'
  border='0' height='32'  alt='Index' width='32'></A></td>
</tr></table>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="pyapi-mprequest.html">4.5.3 Request Object&nbsp;</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="pyapi-mprequest.html">4.5.3 Request Object&nbsp;</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="pyapi-mprequest-mem.html">4.5.3.2 Request Members</A>
<br><hr>
</DIV>
<!--End of Navigation Panel-->

<H3><A NAME="SECTION006531000000000000000">&nbsp;</A>
<BR>
4.5.3.1 Request Methods
</H3>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-41"><tt class="method">add_common_vars</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>
  Calls the Apache <tt class="cfunction">ap_add_common_vars()</tt> function. After a
  call to this method, <tt class="member">req.subprocess_env</tt> will contain a
  lot of CGI information.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-42"><tt class="method">add_handler</tt></a></b>(</nobr></td>
  <td><var>htype, handler</var><big>[</big><var>, dir</var><big>]</big>)</td></tr></table>
<dd>

<P>
Allows dynamic handler registration. <var>htype</var> is a string
  containing the name of any of the apache request (but not filter or
  connection) handler directives,
  e.g. "<tt class="samp">PythonHandler</tt>". <var>handler</var> is a string containing the
  name of the module and the handler function.  Optional <var>dir</var> is
  a string containing the name of the directory to be added to the
  pythonpath. If no directory is specified, then, if there is already
  a handler of the same type specified, its directory is inherited,
  otherwise the directory of the presently executing handler is
  used. If there is a <code>PythonPath</code> directive in effect, then
  <code>sys.path</code> will be set exactly according to it (no directories
  added, the <var>dir</var> argument is ignored).

<P>
A handler added this way only persists throughout the life of the
  request. It is possible to register more handlers while inside the
  handler of the same type. One has to be careful as to not to create
  an infinite loop this way.

<P>
Dynamic handler registration is a useful technique that allows the
  code to dynamically decide what will happen next. A typical example
  might be a <code>PythonAuthenHandler</code> that will assign different
  <code>PythonHandlers</code> based on the authorization level, something
  like:

<P>
<div class="verbatim"><pre>
if manager:
    req.add_handler("PythonHandler", "menu::admin")
else:
    req.add_handler("PythonHandler", "menu::basic")
</pre></div>                              

<P>
<div class="note"><b class="label">Note:</b>
If you pass this function an invalid handler, an exception will be
    generated at the time an attempt is made to find the handler. 
  </div>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-43"><tt class="method">allow_methods</tt></a></b>(</nobr></td>
  <td><var>methods</var><big>[</big><var>, reset</var><big>]</big>)</td></tr></table>
<dd>
  Adds methods to the <tt class="member">req.allowed_methods</tt> list. This list
  will be passed in <code>Allowed:</code> header if
  <tt class="constant">HTTP_METHOD_NOT_ALLOWED</tt> or <tt class="constant">HTTP_NOT_IMPLEMENTED</tt>
  is returned to the client. Note that Apache doesn't do anything to
  restrict the methods, this list is only used to construct the
  header. The actual method-restricting logic has to be provided in the
  handler code.

<P>
<var>methods</var> is a sequence of strings. If <var>reset</var> is 1, then
  the list of methods is first cleared.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-44"><tt class="method">document_root</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>
  Returns DocumentRoot setting.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-45"><tt class="method">get_basic_auth_pw</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>
  Returns a string containing the password when Basic authentication is
  used.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-46"><tt class="method">get_config</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>
  Returns a reference to the table object containing the mod_python
  configuration in effect for this request except for
  <code>Python*Handler</code> and <code>PythonOption</code> (The latter can be
  obtained via <tt class="method">req.get_options()</tt>. The table has directives as
  keys, and their values, if any, as values.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-47"><tt class="method">get_remote_host</tt></a></b>(</nobr></td>
  <td><big>[</big><var>type, str_is_ip</var><big>]</big>)</td></tr></table>
<dd>

<P>
This method is used to determine remote client's DNS name or IP
  number. The first call to this function may entail a DNS look up, but
  subsequent calls will use the cached result from the first call.

<P>
The optional <var>type</var> argument can specify the following: 

<P>

<UL>
<LI><code>apache.REMOTE_HOST</code> Look up the DNS name. Return None if Apache
    directive <code>HostNameLookups</code> is <code>off</code> or the hostname cannot
    be determined.

<P>
</LI>
<LI><code>apache.REMOTE_NAME</code> <i>(Default)</i> Return the DNS name if
    possible, or the IP (as a string in dotted decimal notation)
    otherwise.

<P>
</LI>
<LI><code>apache.REMOTE_NOLOOKUP</code> Don't perform a DNS lookup, return an
    IP. Note: if a lookup was performed prior to this call, then the
    cached host name is returned.

<P>
</LI>
<LI><code>apache.REMOTE_DOUBLE_REV</code> Force a double-reverse lookup. On 
    failure, return None.

<P>
</LI>
</UL>

<P>
If <var>str_is_ip</var> is <code>None</code> or unspecified, then the return
  value is a string representing the DNS name or IP address.

<P>
If the optional <var>str_is_ip</var> argument is not <code>None</code>, then the
  return value is an <code>(address, str_is_ip)</code> tuple, where <var>str_is_ip</var>
  is non-zero if <code>address</code> is an IP address string.

<P>
On failure, <code>None</code> is returned.

<P>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-48"><tt class="method">get_options</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>
  Returns a reference to the table object containing the options set by
  the <code>PythonOption</code> directives.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-49"><tt class="method">internal_redirect</tt></a></b>(</nobr></td>
  <td><var>new_uri</var>)</td></tr></table>
<dd>
  Internally redirects the request to the <var>new_uri</var>. <var>new_uri</var>
  must be a string.

<P>
The httpd server handles internal redirection by creating a new
  request object and processing all request phases. Within an internal
  redirect, <code>req.prev</code> will contain a reference to a request
  object from which it was redirected.

<P>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-50"><tt class="method">log_error</tt></a></b>(</nobr></td>
  <td><var>message</var><big>[</big><var>, level</var><big>]</big>)</td></tr></table>
<dd>
  An interface to the Apache <code>ap_log_rerror</code>
  function. <var>message</var> is a string with the error message,
  <var>level</var> is one of the following flags constants:

<P>
<div class="verbatim"><pre>
    APLOG_EMERG
    APLOG_ALERT
    APLOG_CRIT
    APLOG_ERR
    APLOG_WARNING
    APLOG_NOTICE
    APLOG_INFO
    APLOG_DEBUG
    APLOG_NOERRNO
</pre></div>            

<P>
If you need to write to log and do not have a reference to a request object,
  use the <tt class="function">apache.log_error</tt> function.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-51"><tt class="method">meets_conditions</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>
  Calls the Apache <tt class="cfunction">ap_meets_conditions()</tt> function which
  returns a status code.  If <var>status</var> is <tt class="constant">apache.OK</tt>, generate
  the content of the response normally.  If not, simply return <var>status</var>.
  Note that <tt class="member">req.headers_out</tt> should be set prior to calling this
  function.  The same goes for <tt class="member">req.status</tt> if the status differs
  from <tt class="constant">apache.OK</tt>.

<P>
Example:
  <div class="verbatim"><pre>
...
r.headers_out['ETag'] = "1130794f-3774-4584-a4ea-0ab19e684268"
r.headers_out['Last-Modified'] = 'Wed, 23 Feb 2005 00:00:00 GMT'
r.headers_out['Expires'] = 'Mon, 18 Apr 2005 17:30:00 GMT'

status = r.meets_conditions()
if status != apache.OK:
  return status

... do expensive generation of the response content ...
</pre></div>

<P>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-52"><tt class="method">requires</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>

<P>
Returns a tuple of strings of arguments to <code>require</code> directive.

<P>
For example, with the following apache configuration:
  <div class="verbatim"><pre>
AuthType Basic
require user joe
require valid-user
</pre></div>
  <tt class="method">requires()</tt> would return <code>('user joe', 'valid-user')</code>.

<P>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-53"><tt class="method">read</tt></a></b>(</nobr></td>
  <td><big>[</big><var>len</var><big>]</big>)</td></tr></table>
<dd>

<P>
Reads at most <var>len</var> bytes directly from the client, returning a
  string with the data read. If the <var>len</var> argument is negative or
  omitted, reads all data given by the client.

<P>
This function is affected by the <code>Timeout</code> Apache configuration
  directive. The read will be aborted and an <tt class="exception">IOError</tt>
  raised if the <code>Timeout</code> is reached while reading client data.

<P>
This function relies on the client providing the <code>Content-length</code>
  header. Absence of the <code>Content-length</code> header will be treated as
  if <code>Content-length: 0</code> was supplied.

<P>
Incorrect <code>Content-length</code> may cause the function to try to read
  more data than available, which will make the function block until a
  <code>Timeout</code> is reached.

<P>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-54"><tt class="method">readline</tt></a></b>(</nobr></td>
  <td><big>[</big><var>len</var><big>]</big>)</td></tr></table>
<dd>
  Like <tt class="function">read()</tt> but reads until end of line. 

<P>
<div class="note"><b class="label">Note:</b>
In accordance with the HTTP specification, most clients will
    be terminating lines with "<tt class="samp">&#92;r&#92;n</tt>" rather
    than simply "<tt class="samp">&#92;n</tt>".
  </div>

<P>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-55"><tt class="method">readlines</tt></a></b>(</nobr></td>
  <td><big>[</big><var>sizehint</var><big>]</big>)</td></tr></table>
<dd>
  Reads all or up to <var>sizehint</var> bytes of lines using
  <tt class="method">readline</tt> and returns a list of the lines read.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-56"><tt class="method">register_cleanup</tt></a></b>(</nobr></td>
  <td><var>callable</var><big>[</big><var>, data</var><big>]</big>)</td></tr></table>
<dd>

<P>
Registers a cleanup. Argument <var>callable</var> can be any callable
  object, the optional argument <var>data</var> can be any object (default is
  <code>None</code>). At the very end of the request, just before the actual
  request record is destroyed by Apache, <var>callable</var> will be called
  with one argument, <var>data</var>.

<P>
It is OK to pass the request object as data, but keep in mind that
  when the cleanup is executed, the request processing is already
  complete, so doing things like writing to the client is completely
  pointless. 

<P>
If errors are encountered during cleanup processing, they should be in
  error log, but otherwise will not affect request processing in any
  way, which makes cleanup bugs sometimes hard to spot.

<P>
If the server is shut down before the cleanup had a chance to run,
  it's possible that it will not be executed.

<P>
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-57"><tt class="method">sendfile</tt></a></b>(</nobr></td>
  <td><var>path</var><big>[</big><var>, offset, len</var><big>]</big>)</td></tr></table>
<dd>
  Sends <var>len</var> bytes of file <var>path</var> directly to the client,
  starting at offset <var>offset</var> using the server's internal
  API. <var>offset</var> defaults to 0, and <var>len</var> defaults to -1 (send
  the entire file). 

<P>
Returns the number of bytes sent, or raises an IOError exception
  on failure.

<P>
This function provides the most efficient way to send a file to the
  client.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-58"><tt class="method">write</tt></a></b>(</nobr></td>
  <td><var>string</var><big>[</big><var>, flush=1</var><big>]</big>)</td></tr></table>
<dd>
  Writes <var>string</var> directly to the client, then flushes the buffer,
  unless flush is 0.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-59"><tt class="method">flush</tt></a></b>(</nobr></td>
  <td>)</td></tr></table>
<dd>
  Flushes the output buffer.
</dl>

<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
  <td><nobr><b><a name="l2h-60"><tt class="method">set_content_length</tt></a></b>(</nobr></td>
  <td><var>len</var>)</td></tr></table>
<dd>
  Sets the value of <tt class="member">req.clength</tt> and the "<tt class="samp">Content-Length</tt>"  header to len. Note that after the headers have been sent out (which
  happens just before the first byte of the body is written,
  i.e. first call to <tt class="member">req.write()</tt>), calling the method is
  meaningless.
</dl>

<P>

<DIV CLASS="navigation">
<p><hr>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td><a rel="prev" title="4.5.3 Request Object&nbsp;" 
  rel="prev" title="4.5.3 Request Object&nbsp;" 
  href="pyapi-mprequest.html"><img src='previous.gif'
  border='0' height='32'  alt='Previous Page' width='32'></A></td>
<td><a rel="parent" title="4.5.3 Request Object&nbsp;" 
  rel="parent" title="4.5.3 Request Object&nbsp;" 
  href="pyapi-mprequest.html"><img src='up.gif'
  border='0' height='32'  alt='Up One Level' width='32'></A></td>
<td><a rel="next" title="4.5.3.2 Request Members" 
  rel="next" title="4.5.3.2 Request Members" 
  href="pyapi-mprequest-mem.html"><img src='next.gif'
  border='0' height='32'  alt='Next Page' width='32'></A></td>
<td align="center" width="100%">Mod_python Manual</td>
<td><a rel="contents" title="Table of Contents" 
  rel="contents" title="Table of Contents" 
  href="contents.html"><img src='contents.gif'
  border='0' height='32'  alt='Contents' width='32'></A></td>
<td><img src='blank.gif'
  border='0' height='32'  alt='' width='32'></td>
<td><a rel="index" title="Index" 
  rel="index" title="Index" 
  href="genindex.html"><img src='index.gif'
  border='0' height='32'  alt='Index' width='32'></A></td>
</tr></table>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="pyapi-mprequest.html">4.5.3 Request Object&nbsp;</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="pyapi-mprequest.html">4.5.3 Request Object&nbsp;</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="pyapi-mprequest-mem.html">4.5.3.2 Request Members</A>
<hr>
<span class="release-info">Release 3.2.8, documentation updated on February 19, 2006.</span>
</DIV>
<!--End of Navigation Panel-->

</BODY>
</HTML>

Anon7 - 2021