[Zope3-checkins] CVS: Zope3/lib/python/Zope/Server/FTP - PublisherFTPTask.py:1.3
Stephan Richter
srichter@cbu.edu
Fri, 19 Jul 2002 09:13:04 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Server/FTP
In directory cvs.zope.org:/tmp/cvs-serv24805/lib/python/Zope/Server/FTP
Modified Files:
PublisherFTPTask.py
Log Message:
Okay, I finished the Forms work. Schema and Forms completely replace the
old Formulator code now. I have switched all the Content objects to using
Schema + Forms; especially the SQL Script has an interesting demo on how
to write your custom fields.
However, I am not satisfied with all my design decisions. There is still
a lot of work to be done in Converters and Widgets. Please contact Martijn
and/or me if you would like to help.
=== Zope3/lib/python/Zope/Server/FTP/PublisherFTPTask.py 1.2 => 1.3 ===
#
##############################################################################
"""
-
$Id$
-"""
+""
from FTPTask import FTPTask
from Zope.Publisher.Publish import publish
@@ -43,7 +42,7 @@
# This should probably change to reflect calling the FileSystem
# methods
- env = {'command': request_data.command
+ env = {'command': request_data.command,
'args': request_data.args
}