In ZPublisher/Publish.py:
if not hasattr(fs,'list') or fs.list is None:
# Hm, maybe it's an XML-RPC
if (fs.headers.has_key('content-type') and
fs.headers['content-type'] == 'text/xml' and
method == 'POST'):
# Ye haaa, XML-RPC!
change to:
if not hasattr(fs,'list') or fs.list is None:
# Hm, maybe it's an XML-RPC
if 0:
# Ye haaa, XML-RPC!
Chui