[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZopePublication/VFS - Publication.py:1.1.2.1 __init__.py:1.1.4.1

Stephan Richter srichter@cbu.edu
Thu, 4 Apr 2002 06:44:51 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/ZopePublication/VFS
In directory cvs.zope.org:/tmp/cvs-serv21650/lib/python/Zope/App/ZopePublication/VFS

Added Files:
      Tag: Zope3-Server-Branch
	Publication.py __init__.py 
Log Message:
Worked some more on FTP, especially in regards with the Publisher.

- Finally we can get rid of the medusa base. I think I have extracted all
  of the interesting code.

- Started on a PublisherFileSystem. A few methods might work, but most of 
  the FS methods are not hooked up yet.

- Started writing VFS Publisher hooks.

- Added the FTPServer to the startup registry. It comes up, but do not 
  expect it to work, since no views have been written for VFS yet.


=== Added File Zope3/lib/python/Zope/App/ZopePublication/VFS/Publication.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
# 
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
# 
##############################################################################
"""

$Id: Publication.py,v 1.1.2.1 2002/04/04 11:44:50 srichter Exp $
"""

from Zope.App.ZopePublication.ZopePublication import ZopePublication

class VFSPublication(ZopePublication):
    """The Publication will do all the work for the VFS"""



=== Added File Zope3/lib/python/Zope/App/ZopePublication/VFS/__init__.py ===