[Zope3-checkins] SVN: Zope3/trunk/src/zope/server/interfaces/ftp.py Provide module title.

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Jul 13 13:00:04 EDT 2004


Log message for revision 26477:
  Provide module title.
  
  Improved formatting.
  


Changed:
  U   Zope3/trunk/src/zope/server/interfaces/ftp.py


-=-
Modified: Zope3/trunk/src/zope/server/interfaces/ftp.py
===================================================================
--- Zope3/trunk/src/zope/server/interfaces/ftp.py	2004-07-13 16:59:11 UTC (rev 26476)
+++ Zope3/trunk/src/zope/server/interfaces/ftp.py	2004-07-13 17:00:04 UTC (rev 26477)
@@ -9,14 +9,10 @@
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE.
 ##############################################################################
-"""XXX short summary goes here.
+"""FTP server specific interfaces.
 
-XXX longer description goes here.
-
 $Id$
 """
-__metaclass__ = type
-
 from zope.interface import Interface
 
 class IFTPCommandHandler(Interface):
@@ -179,15 +175,15 @@
 # '!' requires write access
 #
 not_implemented_commands = {
-        'acct':        'specify account (ignored)',
-        'allo':        'allocate storage (vacuously)',
-        'site':        'non-standard commands (see next section)',
-        'stou':        'store a file with a unique name',                            #!
-        'xcup':        'change to parent of current working directory (deprecated)',
-        'xcwd':        'change working directory (deprecated)',
-        'xmkd':        'make a directory (deprecated)',                            #!
-        'xpwd':        'print the current working directory (deprecated)',
-        'xrmd':        'remove a directory (deprecated)',                            #!
+    'acct': 'specify account (ignored)',
+    'allo': 'allocate storage (vacuously)',
+    'site': 'non-standard commands (see next section)',
+    'stou': 'store a file with a unique name',                            #!
+    'xcup': 'change to parent of current working directory (deprecated)',
+    'xcwd': 'change working directory (deprecated)',
+    'xmkd': 'make a directory (deprecated)',                              #!
+    'xpwd': 'print the current working directory (deprecated)',
+    'xrmd': 'remove a directory (deprecated)',                            #!
 }
 
 



More information about the Zope3-Checkins mailing list