[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Image/Views/VFS - ImageAdd.py:1.1 __init__.py:1.1 configure.zcml:1.1
Stephan Richter
srichter@cbu.edu
Fri, 20 Dec 2002 05:31:48 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/Image/Views/VFS
In directory cvs.zope.org:/tmp/cvs-serv7739/Zope/App/OFS/Content/Image/Views/VFS
Added Files:
ImageAdd.py __init__.py configure.zcml
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/Image/Views/VFS/ImageAdd.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 Image Add View
$Id: ImageAdd.py,v 1.1 2002/12/20 10:31:48 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.Image.Image import Image
class ImageAdd(VFSView):
"Provide a user interface for adding a Image content object"
__used_for__ = IAdding
def __call__(self, mode, instream, start):
content = Image()
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/Image/Views/VFS/__init__.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: __init__.py,v 1.1 2002/12/20 10:31:48 srichter Exp $
"""
=== Added File Zope3/lib/python/Zope/App/OFS/Content/Image/Views/VFS/configure.zcml ===
<zopeConfigure
xmlns="http://namespaces.zope.org/zope"
xmlns:vfs="http://namespaces.zope.org/vfs">
<vfs:view
name=".png"
for="Zope.App.OFS.Container.IAdding."
factory=".ImageAdd."
permission="Zope.ManageContent" />
<vfs:view
name=".gif"
for="Zope.App.OFS.Container.IAdding."
factory=".ImageAdd."
permission="Zope.ManageContent" />
<vfs:view
name=".bmp"
for="Zope.App.OFS.Container.IAdding."
factory=".ImageAdd."
permission="Zope.ManageContent" />
</zopeConfigure>