[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/File/Views/VFS - FileAdd.py:1.1 FileView.py:1.1 VFSFileView.py:NONE

Stephan Richter srichter@cbu.edu
Fri, 20 Dec 2002 05:31:48 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/File/Views/VFS
In directory cvs.zope.org:/tmp/cvs-serv7739/Zope/App/OFS/Content/File/Views/VFS

Added Files:
	FileAdd.py FileView.py 
Removed Files:
	VFSFileView.py 
Log Message:
Big oops. I fogot to checkin the added files. This is the rest of the VFS/FTP fix and revamp checkin.


=== Added File Zope3/lib/python/Zope/App/OFS/Content/File/Views/VFS/FileAdd.py ===
##############################################################################
#
# Copyright (c) 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.
#
##############################################################################
"""VFS File Add View

$Id: FileAdd.py,v 1.1 2002/12/20 10:31:46 srichter Exp $
"""
from Zope.Publisher.VFS.VFSView import VFSView

from Zope.Event import publish
from Zope.Event.ObjectEvent import ObjectCreatedEvent

from Zope.App.OFS.Container.IAdding import IAdding
from Zope.App.OFS.Content.File.File import File


class FileAdd(VFSView):
    "Provide a user interface for adding a File content object"

    __used_for__ = IAdding

    def __call__(self, mode, instream, start):
        "Add a contact"
        content = File()
        try:
            instream.seek(start)
        except:
            pass
        content.setData(instream.read())
        
        publish(self.context, ObjectCreatedEvent(content))
        return self.context.add(content)



=== Added File Zope3/lib/python/Zope/App/OFS/Content/File/Views/VFS/FileView.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.
#
##############################################################################
"""VFS-View for IFile

VFS-view implementation for a generic file. 

$Id: FileView.py,v 1.1 2002/12/20 10:31:46 srichter Exp $
"""
from Zope.Publisher.VFS.VFSFileView import VFSFileView

class FileView(VFSFileView):

    def _setData(self, data):
        self.context.setData(data)

    def _getData(self):
        return self.context.getData()

    def _getSize(self):
        return self.context.getSize()

=== Removed File Zope3/lib/python/Zope/App/OFS/Content/File/Views/VFS/VFSFileView.py ===