m
(Ec           @   s   d  f  d     YZ  d S(   t   Requestc           B   sn   t  Z d  Z d   Z e d  Z d   Z d   Z d   Z d   Z	 e e e d  Z
 d d	  Z d
   Z RS(   s
  
    The request object encapsulates all of the information regarding
    the current request in Zope.  This includes, the input headers,
    form data, server data, and cookies.
    The request object is a mapping object that represents a
    collection of variable to value mappings.  In addition, variables
    are divided into five categories:
      - Environment variables
          These variables include input headers, server data, and
          other request-related data.  The variable names are as specified
          in the CGI
          specification
      - Form data
          These are data extracted from either a URL-encoded query
          string or body, if present.
      - Cookies
          These are the cookie data, if present.
      - Lazy Data
          These are callables which are deferred until explicitly
          referenced, at which point they are resolved (called) and
          the result stored as "other" data, ie regular request data.
          Thus, they are "lazy" data items.  An example is SESSION objects.
          Lazy data in the request may only be set by the Python
          method set_lazy(name,callable) on the REQUEST object.  This
          method is not callable from DTML or through the web.
      - Other
          Data that may be set by an application object.
    The request object may be used as a mapping object, in which case
    values will be looked up in the order: environment variables,
    other variables, form data, and then cookies.
    These special variables are set in
    the Request:
      'PARENTS' -- A list of the objects traversed to get to the
      published object. So, 'PARENTS[0]' would be the ancestor of
      the published object.
      'REQUEST' -- The Request object.
      'RESPONSE' -- The Response object.
      'PUBLISHED' -- The actual object published as a result of
      url traversal.
      'URL' -- The URL of the Request without query string.
      *URLn* -- 'URL0' is the same as 'URL'. 'URL1' is the same as
      'URL0' with the last path element removed. 'URL2' is the same
      as 'URL1' with the last element removed. Etcetera.
        For example if URL='http://localhost/foo/bar', then
        URL1='http://localhost/foo' and URL2='http://localhost'.
      *URLPATHn* -- 'URLPATH0' is the path portion of 'URL',
      'URLPATH1' is the path portion of 'URL1', and so on.
        For example if URL='http://localhost/foo/bar', then
        URLPATH1='/foo' and URLPATH2='/'.
      *BASEn* -- 'BASE0' is the URL up to but not including the Zope
      application object. 'BASE1' is the URL of the Zope application
      object. 'BASE2' is the URL of the Zope application object with
      an additional path element added in the path to the published
      object. Etcetera.
        For example if URL='http://localhost/Zope.cgi/foo/bar', then
        BASE0='http://localhost', BASE1='http://localhost/Zope.cgi',
        and BASE2='http://localhost/Zope.cgi/foo'.
      *BASEPATHn* -- 'BASEPATH0' is the path portion of 'BASE0',
      'BASEPATH1' is the path portion of 'BASE1', and so on.
      'BASEPATH1' is the externally visible path to the root Zope
      folder, equivalent to CGI's 'SCRIPT_NAME', but virtual-host aware.
        For example if URL='http://localhost/Zope.cgi/foo/bar', then
        BASEPATH0='/', BASEPATH1='/Zope.cgi', and BASEPATH2='/Zope.cgi/foo'.
    c         C   s   d S(   s   
        Create a new name in the REQUEST object and assign it a value.
        This name and value is stored in the 'Other' category.
        Permission -- Always available
        N(    (   t   namet   value(    (    t9   /data/zmath/zope/lib/python/Products/OFSP/help/Request.pyt   sett   s    c         C   s   d S(   s  
        Return the named HTTP header, or an optional default argument
        or None if the header is not found. Note that both original
        and CGI header names without the leading 'HTTP_' are
        recognized, for example, 'Content-Type', 'CONTENT_TYPE' and
        'HTTP_CONTENT_TYPE' should all return the Content-Type header,
        if available.
        Permission -- Always available
        N(    (   R   t   default(    (    R   t
   get_header   s    c         C   s   d S(   s   
        Returns a true value if the REQUEST object contains key,
        returns a false value otherwise.
        Permission -- Always available
        N(    (   t   key(    (    R   t   has_key   s    c           C   s   d S(   sx   
        Returns a sorted sequence of all keys in the REQUEST object.
        Permission -- Always available
        N(    (    (    (    R   t   keys   s    c           C   s   d S(   s   
        Returns a sequence of (key, value) tuples for all the keys in
        the REQUEST object.
        Permission -- Always available
        N(    (    (    (    R   t   items   s    c           C   s   d S(   s   
        Returns a sequence of values for all the keys in the REQUEST
        object.
        Permission -- Always available
        N(    (    (    (    R   t   values   s    c         C   s   d S(   s   
        Sets the specified elements of 'SERVER_URL', also affecting
        'URL', 'URLn', 'BASEn', and 'absolute_url()'.
        Provides virtual hosting support.
        Permission -- Always available
        N(    (   t   protocolt   hostnamet   port(    (    R   t   setServerURL   s    
i    c         C   s   d S(   sX  
        Alters 'URL', 'URLn', 'URLPATHn', 'BASEn', 'BASEPATHn', and
        'absolute_url()' so that the current object has path 'path'.
        If 'hard' is true, 'PARENTS' is emptied.
        Provides virtual hosting support.  Intended to be called from
        publishing traversal hooks.
        Permission -- Always available
        N(    (   t   patht   hard(    (    R   t   setVirtualRoot   s    c           C   s   d S(   s   
        Returns information about the request as text. This is useful
        for debugging purposes. The returned text lists form contents,
        cookies, special variables, and evironment variables.
        Permissions -- Always available
        N(    (    (    (    R   t   text   s    (
   t   __name__t
   __module__t   __doc__R   t   NoneR   R   R	   R
   R   R   R   R   (    (    (    R   R       s   a 					
	
N(   R    (   R    (    (    R   t   ?   s