This repository has been archived by the owner on Nov 13, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
conf.py
35 lines (25 loc) · 1.56 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import sys, os
# sys.path += [ os.path.abspath( 'doc' )]
extensions = [ 'sphinx.ext.extlinks' ]
# The master toctree document.
master_doc = 'doc/tutorial'
# The suffix of source filenames.
source_suffix = '.rst'
project = u'moveit_setup_assistant_tutorial'
copyright = u'2013, SRI International'
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
show_authors = True
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
html_theme = "moveit-theme"
html_theme_path = ["doc"]
extlinks = {'codedir': ('https://github.com/ros-planning/moveit_pr2/blob/hydro-devel/pr2_moveit_tutorials/%s', ''),
'moveit_core': ('http://docs.ros.org/api/moveit_core/html/classmoveit_1_1core_1_1%s.html', ''),
'planning_scene': ('http://docs.ros.org/api/moveit_core/html/classplanning__scene_1_1%s.html', ''),
'planning_scene_monitor': ('http://docs.ros.org/api/moveit_ros_planning/html/classplanning__scene__monitor_1_1%s.html', ''),
'collision_detection_struct': ('http://docs.ros.org/api/moveit_core/html/structcollision__detection_1_1%s.html', ''),
'collision_detection_class': ('http://docs.ros.org/api/moveit_core/html/classcollision__detection_1_1%s.html', ''),
'kinematic_constraints': ('http://docs.ros.org/api/moveit_core/html/classkinematic__constraints_1_1%s.html', ''),
'moveit_core_files': ('http://docs.ros.org/api/moveit_core/html/%s.html', ''),
'moveit_website': ('http://moveit.ros.org/%s/', '')}