1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
##############################################################################
#
# Copyright (c) 2005 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (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.
#
##############################################################################
"""Filesystem exporter / importer adapters.
$Id: exportimport.py 40142 2005-11-15 21:10:43Z tseaver $
"""
from zope.interface import implements
from Products.GenericSetup.interfaces import IContentFactory
from Products.GenericSetup.interfaces import IContentFactoryName
from Products.GenericSetup.interfaces import IFilesystemExporter
from Products.GenericSetup.interfaces import IFilesystemImporter
from Products.GenericSetup.utils import _getDottedName
#
# setup_tool handlers
#
def exportPAS(context):
IFilesystemExporter(context.getSite()).export(context, 'PAS', True)
def importPAS(context):
IFilesystemImporter(context.getSite()).import_(context, 'PAS', True)
class PAS_PR_ContentFactory(object):
implements(IContentFactory)
def __init__(self, context):
self.context = context
def __call__(self, object_id):
from Products.PluginRegistry.PluginRegistry import PluginRegistry
registry = PluginRegistry(())
registry._setId(object_id)
self.context._setObject(object_id, registry)
return registry
class PAS_CF_Namer(object):
implements(IContentFactoryName)
def __init__(self, context):
self.context = context
def __call__(self):
return 'plugins'
|