1 # -*- coding: utf-8 -*-
3 $Id: toblob.py 909 2009-04-20 13:38:47Z pin $
4 $URL: http://svn.luxia.fr/svn/labo/projects/zope/Photo/trunk/migration/toblob.py $
5 Script de migration du stockage du fichier depuis l'attribut 'data'
6 vers l'attribut de type blob 'bdata'.
8 les lignes 144 à 147 de blobbases.py doivent être commentéés
11 147 | # data = property(_getLegacyData, _setLegacyData,
12 148 | # "Data Legacy attribute to ensure compatibility "
13 149 | # "with derived classes that access data by this way.")
17 from ZODB
.blob
import Blob
20 if hasattr(self
.aq_base
, 'data') :
23 bf
= self
.bdata
.open('w')
29 assert hasattr(self
.aq_base
, 'bdata')