source: products/quintagroup.plonegooglesitemaps/trunk/quintagroup/plonegooglesitemaps/__init__.py @ 3152

Last change on this file since 3152 was 3152, checked in by zidane, 13 years ago

fixes pep8

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
1import sys
2from AccessControl import allow_module
3
4allow_module('quintagroup.plonegooglesitemaps.utils.py')
5allow_module('quintagroup.plonegooglesitemaps.config.py')
6
7from zope.i18nmessageid import MessageFactory
8from quintagroup.plonegooglesitemaps import config
9
10from Products.Archetypes import atapi
11from Products.CMFCore.utils import ContentInit
12from Products.CMFCore.permissions import setDefaultRoles
13
14# Define a message factory for when this product is internationalised.
15# This will be imported with the special name "_" in most modules. Strings
16# like _(u"message") will then be extracted by i18n tools for translation.
17
18qPloneGoogleSitemapsMessageFactory = MessageFactory('qPloneGoogleSitemaps')
19
20
21def initialize(context):
22    """Initializer called when used as a Zope 2 product.
23
24    This is referenced from configure.zcml. Regstrations as a "Zope 2 product"
25    is necessary for GenericSetup profiles to work, for example.
26
27    Here, we call the Archetypes machinery to register our content types
28    with Zope and the CMF.
29    """
30
31    # Retrieve the content types that have been registered with Archetypes
32    # This happens when the content type is imported and the registerType()
33    # call in the content type's module is invoked. Actually, this happens
34    # during ZCML processing, but we do it here again to be explicit. Of
35    # course, even if we import the module several times, it is only run
36    # once.
37
38    content_types, constructors, ftis = atapi.process_types(
39        atapi.listTypes(config.PROJECTNAME),
40        config.PROJECTNAME)
41
42    # Now initialize all these content types. The initialization process takes
43    # care of registering low-level Zope 2 factories, including the relevant
44    # add-permission. These are listed in config.py. We use different
45    # permissions for each content type to allow maximum flexibility of who
46    # can add which content types, where. The roles are set up in rolemap.xml
47    # in the GenericSetup profile.
48
49    for atype, constructor in zip(content_types, constructors):
50        ContentInit('%s: %s' % (config.PROJECTNAME, atype.portal_type),
51                    content_types=(atype,),
52                    permission=config.ADD_PERMISSIONS[atype.portal_type],
53                    extra_constructors=(constructor,),
54                   ).initialize(context)
Note: See TracBrowser for help on using the repository browser.