Example #1
0
 def __init__(self, filename = '', name = '', template = '', highres_template = '', slideshow_template = '', style_directory = '',
              menu_id = '', title = '', subtitle = '', html_location = '', supplemental_dir = '', description=''):
     CustomContentReference.__init__(self, name, menu_id, title, subtitle, html_location, supplemental_dir, description)
     Container.__init__(self)
     Modifyable.__init__(self)
     self.__filename = filename
     self.__top_level_indexes = []
     self.__xhtml_template = template
     self.__highres_xhtml_template = highres_template
     self.__slideshow_xhtml_template = slideshow_template
     self.__style_directory = style_directory
Example #2
0
 def __init__(self, name, pic_location, menu_id, title, subtitle, description):
     PictureReference.__init__(self, name, pic_location, menu_id, title, subtitle, description)
     Container.__init__(self)
     Contained.__init__(self)
     Modifyable.__init__(self)
Example #3
0
 def __init__(self, name, html_location, supplemental_dir, menu_id, title, subtitle, description):
     Modifyable.__init__(self)
     CustomContentReference.__init__(self, name, menu_id, title, subtitle, html_location, supplemental_dir, description)
     Contained.__init__(self)
Example #4
0
 def __init__(self, name, menu_id, title, subtitle, description):
     NamedObject.__init__(self, name, menu_id, title, subtitle, description)
     Container.__init__(self)
     Contained.__init__(self)
     Modifyable.__init__(self)
Example #5
0
 def __init__(self, name, pic_location, highres_location, menu_id, title, subtitle, description, exif):
     Modifyable.__init__(self)
     PictureReference.__init__(self, name, pic_location, menu_id, title, subtitle, description)
     self.__highres_location = highres_location
     Contained.__init__(self)
     self.__exif = exif