1 # -*- coding: utf-8 -*-
2 #######################################################################################
3 # Photo is a part of Plinn - http://plinn.org #
4 # Copyright (C) 2004-2008 Beno\94t PIN <benoit.pin@ensmp.fr> #
6 # This program is free software; you can redistribute it and/or #
7 # modify it under the terms of the GNU General Public License #
8 # as published by the Free Software Foundation; either version 2 #
9 # of the License, or (at your option) any later version. #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program; if not, write to the Free Software #
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #
19 #######################################################################################
20 """ Product for photos manipulation.
22 - keep origninal uploaded data
23 - automatic convertion to jpeg (if needed) from supported PIL image's formats
27 experimental features:
28 - full psd support with Adobe photoshop (windows only, drived by pythoncom)
29 - tile support (to display a grid of tiles with a javascript web interface)
31 $Id: __init__.py 949 2009-04-30 14:42:24Z pin $
32 $URL: http://svn.luxia.fr/svn/labo/projects/zope/Photo/trunk/__init__.py $
35 from AccessControl
.Permissions
import add_documents_images_and_files
38 from Photo
import Photo
, addPhotoForm
, addPhoto
41 def initialize(registrar
) :
42 registrar
.registerClass(
44 constructors
= (addPhotoForm
, addPhoto
),
45 icon
= 'dtml/photo_icon.gif'
48 registrar
.registerClass(
50 permission
= add_documents_images_and_files
,
51 constructors
= (('blobFileAdd', blobbases
.manage_addFileForm
), blobbases
.manage_addFile
),
52 icon
='dtml/File_icon.gif'
55 registrar
.registerClass(
57 permission
= add_documents_images_and_files
,
58 constructors
= (('blobImageAdd', blobbases
.manage_addImageForm
), blobbases
.manage_addImage
),
59 icon
='dtml/Image_icon.gif'