示例#1
0
 def __init__(self, app):
     super(HistoryContentsController, self).__init__(app)
     self.hda_manager = hdas.HDAManager(app)
     self.history_manager = histories.HistoryManager(app)
     self.history_contents_manager = history_contents.HistoryContentsManager(app)
     self.folder_manager = folders.FolderManager()
     self.hda_serializer = hdas.HDASerializer(app)
     self.hda_deserializer = hdas.HDADeserializer(app)
     self.hdca_serializer = hdcas.HDCASerializer(app)
     self.history_contents_filters = history_contents.HistoryContentsFilters(app)
示例#2
0
 def set_up_managers(self):
     super().set_up_managers()
     self.history_manager = HistoryManager(self.app)
     self.hda_manager = hdas.HDAManager(self.app)
     self.collection_manager = collections.DatasetCollectionManager(
         self.app)
     self.contents_manager = history_contents.HistoryContentsManager(
         self.app)
     self.history_contents_filters = history_contents.HistoryContentsFilters(
         self.app)
示例#3
0
 def set_up_managers(self):
     super(HistoryContentsFilterParserTestCase, self).set_up_managers()
     self.filter_parser = history_contents.HistoryContentsFilters(self.app)
示例#4
0
 def __init__(self, app, *args, **kwargs):
     super(HistoryManager, self).__init__(app, *args, **kwargs)
     self.hda_manager = hdas.HDAManager(app)
     self.contents_manager = history_contents.HistoryContentsManager(app)
     self.contents_filters = history_contents.HistoryContentsFilters(app)