############################################################################## # # Copyright (c) 2005 CMFonFive Contributors. All rights reserved. # # This software is distributed under the terms of the Zope Public # License (ZPL) v2.1. See COPYING.txt for more information. # ########################################################################### """ Bridge CMF to Five. $Id$ """ from Products.CMFCore.utils import ToolInit import fiveactionstool, interfaces def initialize(context): ToolInit( 'Five Tools' , tools=(fiveactionstool.FiveActionsTool,) , product_name='CMFonFive' , icon='tool.gif' ).initialize( context )