Beispiel #1
0
 def test_docs_path(self):
     """Verify correct path to documents folder"""
     doc_path = os.path.join(self.app_path, 'docs')
     self.assertEqual(doc_path, pathfinder.docs_path())
 def on_plugins_dev(self, evt):
     """Handles request to open guide to plugins for developers"""
     self.open_url(os.path.join(pathfinder.docs_path(), 'plugins_developers.html'))
 def on_plugins_samples(self, evt):
     """Handles request to open examples of NDIToolbox plugins"""
     self.open_url(os.path.join(pathfinder.docs_path(), 'plugins_samples.html'))
 def on_help(self, evt):
     """Handles request to open help documents"""
     self.open_url(os.path.join(pathfinder.docs_path(), 'index.html'))
 def on_quickstart(self, evt):
     """Handles request to open Getting Started guide"""
     self.open_url(os.path.join(pathfinder.docs_path(), 'quickstart.html'))
 def test_docs_path(self):
     """Verify correct path to documents folder"""
     doc_path = os.path.join(self.app_path, 'docs')
     self.assertEqual(doc_path, pathfinder.docs_path())
Beispiel #7
0
 def on_plugins_samples(self, evt):
     """Handles request to open examples of NDIToolbox plugins"""
     self.open_url(
         os.path.join(pathfinder.docs_path(), 'plugins_samples.html'))
Beispiel #8
0
 def on_plugins_dev(self, evt):
     """Handles request to open guide to plugins for developers"""
     self.open_url(
         os.path.join(pathfinder.docs_path(), 'plugins_developers.html'))
Beispiel #9
0
 def on_quickstart(self, evt):
     """Handles request to open Getting Started guide"""
     self.open_url(os.path.join(pathfinder.docs_path(), 'quickstart.html'))
Beispiel #10
0
 def on_help(self, evt):
     """Handles request to open help documents"""
     self.open_url(os.path.join(pathfinder.docs_path(), 'index.html'))