Changeset 791
- Timestamp:
- 11/05/05 05:13:50
- Files:
-
- trunk/cherrypy/lib/filter/xmlrpcfilter.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/filter/xmlrpcfilter.py
r789 r791 4 4 ## 5 5 ## History: 6 ## 1.0.6 : 2005-12-04 Fixed error handling problems 6 7 ## 1.0.5 : 2005-11-04 Fixed Content-Length bug (http://www.cherrypy.org/ticket/384) 7 8 ## 1.0.4 : 2005-08-28 Fixed issues on input types which are not strings … … 208 209 body = ''.join([chunk for chunk in message]) 209 210 cherrypy.response.body = [xmlrpclib.dumps(xmlrpclib.Fault(1, body))] 211 cherrypy.response.headerMap['Content-Type'] = 'text/xml' 212 cherrypy.response.headerMap['Content-Length'] = len(cherrypy.response.body[0]) 210 213 except: 211 214 pass

