[Zope-Checkins] CVS: Zope3/lib/python/Zope/Server/VFS - IPosixFileSystem.py:1.1.2.2 PublisherFileSystem.py:1.1.2.9

Shane Hathaway shane@cvs.zope.org
Thu, 11 Apr 2002 10:12:49 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/Server/VFS
In directory cvs.zope.org:/tmp/cvs-serv24692/VFS

Modified Files:
      Tag: Zope3-Server-Branch
	IPosixFileSystem.py PublisherFileSystem.py 
Log Message:
Removed CRs


=== Zope3/lib/python/Zope/Server/VFS/IPosixFileSystem.py 1.1.2.1 => 1.1.2.2 ===
         """Create a symbolic link at dst pointing to src.
         """
-        
+


=== Zope3/lib/python/Zope/Server/VFS/PublisherFileSystem.py 1.1.2.8 => 1.1.2.9 ===
         env['credentials'] = self.credentials
         request = self.request_factory(StringIO(''), StringIO(), env)
-        # Note that publish() calls close() on request, which deletes the 
+        # Note that publish() calls close() on request, which deletes the
         # response from the request, so that we need to keep track of it.
         response = request.getResponse()
         publish(request)
-        return response.getResult()        
-        
+        return response.getResult()
+
 
     ############################################################
     # Implementation methods for interface
@@ -68,7 +68,7 @@
         path, file = os.path.split(path)
         env = {'name': file}
         return self._execute(path, 'exists', env)
-    
+
 
     def isdir(self, path):
         'See Zope.Server.VFS.IReadFileSystem.IReadFileSystem'
@@ -162,7 +162,7 @@
         'See Zope.Server.VFS.IWriteFileSystem.IWriteFileSystem'
         path = self.translate(path)
         env = {'mode': mode}
-        return self._execute(path, 'check_writable', env)        
+        return self._execute(path, 'check_writable', env)
 
     #
     ############################################################