Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 2026

Show
Ignore:
Timestamp:
07/24/08 11:08:38
Author:
fumanchu
Message:

Doc tweaks.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cherrypy/cherryd

    r2022 r2026  
    4444        # Turn off autoreload when using fastcgi or scgi. 
    4545        cherrypy.config.update({'engine.autoreload_on': False}) 
    46          
     46        # Turn off the default HTTP server (which is subscribed by default). 
    4747        cherrypy.server.unsubscribe() 
    4848         
  • trunk/cherrypy/lib/http.py

    r1994 r2026  
    252252 
    253253def parse_query_string(query_string, keep_blank_values=True): 
    254     """Build a params dictionary from a query_string.""" 
     254    """Build a params dictionary from a query_string. 
     255     
     256    Duplicate key/value pairs in the provided query_string will be 
     257    returned as {'key': [val1, val2, ...]}. Single key/values will 
     258    be returned as strings: {'key': 'value'}. 
     259    """ 
    255260    if image_map_pattern.match(query_string): 
    256261        # Server-side image map. Map the coords to 'x' and 'y' 

Hosted by WebFaction

Log in as guest/cpguest to create tickets