예제 #1
0
 def __init__(self, ob, short_name=None):
     ProxyBase.__init__(self, ob)
     self.short_name = short_name
예제 #2
0
 def __init__(self, ob, container=None, name=None):
     ProxyBase.__init__(self, ob)
     self.__parent__ = container
     self.__name__ = name
예제 #3
0
 def __init__(self, base, site_manager):
     ProxyBase.__init__(self, base)
     self.__site_manager = site_manager
예제 #4
0
 def __init__(self, ob, container=None, name=None):
     ProxyBase.__init__(self, ob)
     self.__parent__ = container
     self.__name__ = name
예제 #5
0
 def __init__(self, ob, short_name=None):
     ProxyBase.__init__(self, ob)
     self.short_name = short_name
예제 #6
0
파일: iterator.py 프로젝트: bendavis78/zope
 def __init__(self, file, streamsize=1 << 16):
     ProxyBase.__init__(self, file)
     self.streamsize = streamsize
예제 #7
0
 def __init__(self, ob, target):
     ProxyBase.__init__(self, ob)
     self.__target__ = target
예제 #8
0
 def __init__(self, ob, title=None, description=None):
     ProxyBase.__init__(self, ob)
     self.title = title
     self.description = description
예제 #9
0
파일: proxy.py 프로젝트: gelie/bungeni_src
 def __init__(self, ob, target):
     ProxyBase.__init__(self, ob)
     self.__target__ = target
예제 #10
0
파일: proxy.py 프로젝트: gelie/bungeni_src
 def __init__(self, ob, title=None, description=None):
     ProxyBase.__init__(self, ob)
     self.title = title
     self.description = description
예제 #11
0
 def __init__(self, context):
     self.context = context
     ProxyBase.__init__(self, globalhelp)