hide externalAddress field

git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2967 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2008-11-05 11:42:31 +00:00
parent 20a9787d27
commit a2d87853cc

View file

@ -745,13 +745,16 @@ class IExternalFile(IFile):
missing_value='', missing_value='',
required=False) required=False)
externalAddress = schema.BytesLine( #externalAddress = schema.BytesLine(
title=_(u'External Address'), # title=_(u'External Address'),
description=_(u'The full address for accessing the object ' # description=_(u'The full address for accessing the object '
'on the external storage, e.g. a filename or path.'), # 'on the external storage, e.g. a filename or path.'),
default='', # default='',
missing_value='', # missing_value='',
required=False) # required=False)
externalAddress = Attribute('The full address for accessing the object '
'on the external storage, e.g. a filename or path.')
class IImage(IResourceAdapter): class IImage(IResourceAdapter):