Changeset 2026
- Timestamp:
- 07/24/08 11:08:38
- Files:
-
- trunk/cherrypy/cherryd (modified) (1 diff)
- trunk/cherrypy/lib/http.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/cherryd
r2022 r2026 44 44 # Turn off autoreload when using fastcgi or scgi. 45 45 cherrypy.config.update({'engine.autoreload_on': False}) 46 46 # Turn off the default HTTP server (which is subscribed by default). 47 47 cherrypy.server.unsubscribe() 48 48 trunk/cherrypy/lib/http.py
r1994 r2026 252 252 253 253 def 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 """ 255 260 if image_map_pattern.match(query_string): 256 261 # Server-side image map. Map the coords to 'x' and 'y'

