Version initiale.
[Portfolio.git] / __init__.py
1 # -*- coding: utf-8 -*-
2 ############################################################
3 # Copyright © 2005-2008 Benoît PIN <benoit.pin@ensmp.fr> #
4 # Plinn - http://plinn.org #
5 # #
6 # This program is free software; you can redistribute it #
7 # and/or modify it under the terms of the Creative Commons #
8 # "Attribution-Noncommercial 2.0 Generic" #
9 # http://creativecommons.org/licenses/by-nc/2.0/ #
10 ############################################################
11 """ Image manipulation and presentation for CMF
12 $Id: __init__.py 626 2008-11-22 09:11:58Z pin $
13 $URL: http://svn.luxia.fr/svn/labo/projects/zope/Portfolio/trunk/__init__.py $
14 """
15
16 from Products.CMFCore import utils as cmfutils
17 from Products.CMFCore.permissions import AddPortalContent
18 import Portfolio
19 import lightbox
20 import ImageManipulationTool
21 import Extensions
22 import utils
23
24 tools = (ImageManipulationTool.ImageManipulationTool,)
25
26 def initialize(registrar) :
27 cmfutils.ToolInit('Portfolio Tool',
28 tools = tools,
29 icon = 'tool.gif'
30 ).initialize(registrar)