[Zope-Checkins] CVS: Zope/ZServer - FTPRequest.py:1.13.4.1
Casey Duncan
casey_duncan@yahoo.com
Fri, 14 Dec 2001 00:24:05 -0500
Update of /cvs-repository/Zope/ZServer
In directory cvs.zope.org:/tmp/cvs-serv27651
Modified Files:
Tag: casey-better_put_handling-branch
FTPRequest.py
Log Message:
Altered MKD behavior so that the new generic directory constructor,
manage_mkdir is called instead of manage_addFolder.
=== Zope/ZServer/FTPRequest.py 1.13 => 1.13.4.1 ===
elif command=='MKD':
env['PATH_INFO']=self._join_paths(channel.path,
- path, 'manage_addFolder')
+ path, 'manage_mkdir')
env['QUERY_STRING']='id=%s' % args[0]
elif command=='RNTO':