Raphael Ritz schrieb:

> It might help to remove the product entry from
> <zope root>/Products (in ZMI) but if it doesn't
> bother you just leave it as it is.

I couldn't find /Products in the root folder?!

> Maybe you want to post your Install.py here?

This is my Install.py:
-----------------------------------------

from StringIO import StringIO

from Products.CMFCore.utils import getToolByName
from zope.component import getUtility

from Products.GenericSetup.interfaces import ISetupTool

EXTENSION_PROFILES = ('Products.ECLecture:default',)

# local imports
from Products.ECLecture.config import *
from Products.ECLecture.Extensions.Migrations import migrate

def install(self, reinstall=False):
    """
    Installs the product.
    """
    out = StringIO()
        # If the config contains a list of dependencies, try to install
    # them.  Add a list called DEPENDENCIES to your custom
    # AppConfig.py (imported by config.py) to use it.
    try:
        from Products.ECLecture.config import DEPENDENCIES
    except:
        DEPENDENCIES = []
    portal = getToolByName(self,'portal_url').getPortalObject()
    quickinstaller = portal.portal_quickinstaller
    portal_setup = getToolByName(self, 'portal_setup')
    for dependency in DEPENDENCIES:
        print >> out, "Installing dependency %s:" % dependency
        quickinstaller.installProduct(dependency)
        transaction.commit(1)

    # Run migrations
    #if RUN_MIGRATIONS:
    # print >> out, migrate(self)
        # The following section is boilerplate code that can be reused when you
    # need to invoke a GenericSetup profile from Install.py.
        for extension_id in EXTENSION_PROFILES:
                portal_setup.setImportContext('profile-%s' % extension_id)
                portal_setup.runAllImportSteps(purge_old=False)
                product_name = extension_id.split(':')[0]
                quickinstaller.notifyInstalled(product_name)
                transaction.savepoint()
        
    print >> out, "Successfully installed %s." % PRODUCT_NAME
    return out.getvalue()

-----------------------------------------------------

Katrin

> Raphael



_______________________________________________
Product-Developers mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/product-developers

Reply via email to