Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2@file 

3@brief Shortcuts for automation 

4""" 

5 

6try: 

7 from .jenkins_helper import setup_jenkins_server, default_jenkins_jobs 

8except ImportError as e: 

9 import warnings 

10 warnings.warn("Could not import jenkins_helper '{0}'".format(e)) 

11 

12from .ftp_publish_helper import publish_documentation, publish_teachings_to_web 

13from .notebook_test_helper import execute_notebooks 

14from .modules_documentation import rst_table_modules 

15from .module_backup import ftp_list_modules 

16from .teaching_modules import get_teaching_modules