Beispiel #1
0
 def help(self):
     """
     Open help of the selected module or a2 help
     """
     if self.main.mod is None:
         a2util.surf_to(self.a2.urls.help)
     else:
         self.main.mod.help()
Beispiel #2
0
 def help(self):
     """
     Open help of the selected module or a2 help
     """
     if self.main.mod is None:
         a2util.surf_to(self.a2.urls.help)
     else:
         self.main.mod.help()
Beispiel #3
0
 def help(self):
     a2util.surf_to(self.helpUrl)
Beispiel #4
0
 def help(self):
     try:
         a2util.surf_to(self.config[0].get('url'))
     except Exception as error:
         log.error('Error calling help() on module: %s\n:%s' % (self.name, error))
Beispiel #5
0
 def goto_help(self):
     a2util.surf_to(self.help_map[self.sender().text()])
Beispiel #6
0
 def on_help_action(self):
     text = self.sender().text()
     print('text: %s' % text)
     print('self.a2.urls.help: %s' % self.a2.urls.help)
     a2util.surf_to(self.a2.urls.help)
Beispiel #7
0
 def help(self):
     try:
         a2util.surf_to(self.config[0].get('url'))
     except Exception as error:
         log.error('Error calling help() on module: %s\n:%s' %
                   (self.name, error))
Beispiel #8
0
 def surf_to_help(self):
     label = self.sender().text()
     url = self.help_map[label]
     a2util.surf_to(url)
Beispiel #9
0
 def goto_help(self):
     a2util.surf_to(self.a2.urls.wiki + HOTKEY_HELP_PAGE)
Beispiel #10
0
 def on_help_action(self):
     text = self.sender().text()
     print('text: %s' % text)
     print('self.a2.urls.help: %s' % self.a2.urls.help)
     a2util.surf_to(self.a2.urls.help)
Beispiel #11
0
 def goto_help(self):
     a2util.surf_to(self.help_map[self.sender().text()])
Beispiel #12
0
 def help(self):
     a2util.surf_to(self.helpUrl)