Ejemplo n.º 1
0
def setupComment(site):
    # Set up form controller actions for the widgets to work
    registerAttachmentsFormControllerActions(site, contentType = 'PloneboardComment', template = 'base_edit')
    registerImagesFormControllerActions(site, contentType = 'PloneboardComment', template = 'base_edit')
    # Register form controller actions for LinguaPlone translate_item
    registerAttachmentsFormControllerActions(site, contentType = 'PloneboardComment', template = 'translate_item')
    registerImagesFormControllerActions(site, contentType = 'PloneboardComment', template = 'translate_item')
    site.plone_log('setupComment', 'Updated Widget Attachment Management')
def setupComment(site):
    # Set up form controller actions for the widgets to work
    registerAttachmentsFormControllerActions(site, contentType = 'PloneboardComment', template = 'base_edit')
    registerImagesFormControllerActions(site, contentType = 'PloneboardComment', template = 'base_edit')
    # Register form controller actions for LinguaPlone translate_item
    registerAttachmentsFormControllerActions(site, contentType = 'PloneboardComment', template = 'translate_item')
    registerImagesFormControllerActions(site, contentType = 'PloneboardComment', template = 'translate_item')
    site.plone_log('setupComment', 'Updated Widget Attachment Management')
Ejemplo n.º 3
0
def setupRhaptosForums(context):
    if context.readDataFile('rhaptosforums.txt') is None:
        return

    portal = context.getSite()
    portal_quickinstaller = getToolByName(portal, 'portal_quickinstaller')
    portal_types = getToolByName(portal, 'portal_types')
    portal_setup = getToolByName(portal, 'portal_setup')

    import_context = portal_setup.getImportContextID()
    portal_setup.setImportContext(
            'profile-Products.SimpleAttachment:SimpleAttachment')
    portal_setup.runAllImportSteps()
    import_context = portal_setup.getImportContextID()

    registerAttachmentsFormControllerActions(portal)
    registerImagesFormControllerActions(portal)

    portal_quickinstaller.installProduct('Ploneboard')

    # remove Ploneboard from globally allowed content types
    fti = portal_types.getTypeInfo('Ploneboard')
    fti.global_allow = False
Ejemplo n.º 4
0
def setupRichDocument(context):
    if context.readDataFile('richdocument_various.txt') is None:
        return
    
    portal = context.getSite()
    
    qi = getToolByName(portal, 'portal_quickinstaller')
    if not (qi.isProductInstalled('Products.SimpleAttachment') or qi.isProductInstalled('SimpleAttachment') or qi.isProductInstalled('Attachment support')):
        qi.installProduct('Products.SimpleAttachment')
    
    # Set up form controller actions for the widgets to work
    registerAttachmentsFormControllerActions(portal, contentType = 'RichDocument', template = 'atct_edit')
    registerImagesFormControllerActions(portal, contentType = 'RichDocument', template = 'atct_edit')

    # Register form controller actions for LinguaPlone translate_item
    registerAttachmentsFormControllerActions(portal, contentType = 'RichDocument', template = 'translate_item')
    registerImagesFormControllerActions(portal, contentType = 'RichDocument', template = 'translate_item')
    
    # Make RichDocumnt objects linkable in kupu
    kupuTool = getToolByName(portal, 'kupu_library_tool', None)
    tinyTool = getToolByName(portal, 'portal_tinymce', None)
    
    if kupuTool:
        linkable = list(kupuTool.getPortalTypesForResourceType('linkable'))
        if 'RichDocument' not in linkable:
            linkable.append('RichDocument')
    
        # kupu_library_tool has an idiotic interface, basically written purely to
        # work with its configuration page. :-(
        kupuTool.updateResourceTypes(({'resource_type' : 'linkable',
                                       'old_type'      : 'linkable',
                                       'portal_types'  :  linkable},))

    if tinyTool:
        linkable = tinyTool.linkable.split('\n')
        linkable.append('RichDocument')
        tinyTool.linkable = '\n'.join(set(linkable))