From a2d87853cc8387c465ab73a85eacb664c096d4c2 Mon Sep 17 00:00:00 2001 From: helmutm Date: Wed, 5 Nov 2008 11:42:31 +0000 Subject: [PATCH] hide externalAddress field git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2967 fd906abe-77d9-0310-91a1-e0d9ade77398 --- interfaces.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/interfaces.py b/interfaces.py index a8d4966..f20f4e9 100644 --- a/interfaces.py +++ b/interfaces.py @@ -745,13 +745,16 @@ class IExternalFile(IFile): missing_value='', required=False) - externalAddress = schema.BytesLine( - title=_(u'External Address'), - description=_(u'The full address for accessing the object ' - 'on the external storage, e.g. a filename or path.'), - default='', - missing_value='', - required=False) + #externalAddress = schema.BytesLine( + # title=_(u'External Address'), + # description=_(u'The full address for accessing the object ' + # 'on the external storage, e.g. a filename or path.'), + # default='', + # missing_value='', + # required=False) + + externalAddress = Attribute('The full address for accessing the object ' + 'on the external storage, e.g. a filename or path.') class IImage(IResourceAdapter):