[Zope3-checkins] CVS: Zope3/src/zope/app/publisher/vfs - __init__.py:1.1.2.1 meta.zcml:1.1.2.1 metaconfigure.py:1.1.2.1

Jim Fulton jim@zope.com
Mon, 23 Dec 2002 14:32:08 -0500


Update of /cvs-repository/Zope3/src/zope/app/publisher/vfs
In directory cvs.zope.org:/tmp/cvs-serv19908/zope/app/publisher/vfs

Added Files:
      Tag: NameGeddon-branch
	__init__.py meta.zcml metaconfigure.py 
Log Message:
Initial renaming before debugging

=== Added File Zope3/src/zope/app/publisher/vfs/__init__.py ===
#
# This file is necessary to make this directory a package.


=== Added File Zope3/src/zope/app/publisher/vfs/meta.zcml ===
<zopeConfigure xmlns="http://namespaces.zope.org/zope">
  
  <directives namespace="http://namespaces.zope.org/vfs">
    <directive name="view" attributes="factory name for permission"
       handler="zope.app.publisher.vfs.metaconfigure.view" />
  </directives>

</zopeConfigure>


=== Added File Zope3/src/zope/app/publisher/vfs/metaconfigure.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: metaconfigure.py,v 1.1.2.1 2002/12/23 19:32:05 jim Exp $
"""
from zope.app.component.metaconfigure import view as _view
    
def view(_context, **__kw):
    return _view(_context, type='Zope.Publisher.VFS.IVFSView.', **__kw)