Changeset 5980 for main/waeup.sirp/trunk/src/waeup
- Timestamp:
- 26 Apr 2011, 11:08:56 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py
r5952 r5980 32 32 from zope.security.interfaces import IGroupClosureAwarePrincipal as IPrincipal 33 33 from waeup.sirp.image.schema import ImageFile 34 from waeup.sirp.image.image import WAeUPImageFile 34 35 from waeup.sirp.interfaces import IWAeUPObject, SimpleWAeUPVocabulary 35 36 … … 38 39 'static' 39 40 ) 40 DEFAULT_PASSPORT_IMAGE_MALE = HurryFile(41 DEFAULT_PASSPORT_IMAGE_MALE = WAeUPImageFile( 41 42 'passport.jpg', 42 43 open(os.path.join(IMAGE_PATH, 'placeholder_m.jpg')).read(), 43 44 ) 44 DEFAULT_PASSPORT_IMAGE_FEMALE = HurryFile(45 DEFAULT_PASSPORT_IMAGE_FEMALE = WAeUPImageFile( 45 46 'passport.jpg', 46 47 open(os.path.join(IMAGE_PATH, 'placeholder_f.jpg')).read(), … … 504 505 title = u'Passport Photograph', 505 506 default = DEFAULT_PASSPORT_IMAGE_MALE, 506 required = True ,507 required = True , 507 508 ) 508 509 #
Note: See TracChangeset for help on using the changeset viewer.