Beispiel #1
0
 def __init__(self, *args, **kw):
     Folder.__init__(self, *args, **kw)
     Image.__init__(self, *args, **kw)
Beispiel #2
0
 def __init__(self, id=None):
     if id is None:
         id = self.__class__.id
     Folder.__init__(self, id)
Beispiel #3
0
 def __init__(self, id=None):
     if id is None:
       id = self.__class__.id
     Folder.__init__(self, id)
Beispiel #4
0
 def __init__(self, *args, **kw):
   Folder.__init__(self, *args, **kw)
   Image.__init__(self, *args, **kw)
Beispiel #5
0
 def __init__(self, id, title='', container=None):
     # Initialize both SQLCatalog as well as Folder
     Catalog.__init__(self, id, title, container)
     Folder.__init__(self, id)