[Erp5-report] r35235 nicolas - /erp5/trunk/products/ERP5/Document/Image.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Wed May 12 17:23:31 CEST 2010
Author: nicolas
Date: Wed May 12 17:23:25 2010
New Revision: 35235
URL: http://svn.erp5.org?rev=35235&view=rev
Log:
Make asText method available on images
Modified:
erp5/trunk/products/ERP5/Document/Image.py
Modified: erp5/trunk/products/ERP5/Document/Image.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Image.py?rev=35235&r1=35234&r2=35235&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Image.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/Image.py [utf8] Wed May 12 17:23:25 2010
@@ -52,6 +52,9 @@
from zope.contenttype import guess_content_type
from zLOG import LOG, WARNING
+# import mixin
+from Products.ERP5.mixin.text_convertable import TextConvertableMixin
+
from Products.CMFCore.utils import getToolByName
DEFAULT_DISPLAY_ID_LIST = ('nano', 'micro', 'thumbnail',
@@ -60,7 +63,7 @@
DEFAULT_QUALITY = 75
-class Image(File, OFSImage):
+class Image(TextConvertableMixin, File, OFSImage):
"""
An Image is a File which contains image data. It supports
various conversions of format, size, resolution through
More information about the Erp5-report
mailing list