Skip to content

Commit 3770887

Browse files
committed
figuring out the right URLs
1 parent f1ecb33 commit 3770887

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

conf.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@
5454
'moveit_codedir': ('https://github.com/' + html_context["github_user"] + '/moveit/blob/' + html_context["github_version"] + '/%s', ''),
5555
'panda_codedir': ('https://github.com/' + html_context["github_user"] + '/panda_moveit_config/blob/' + 'melodic-devel' + '/%s', ''), # TODO(dlu): use ros_distro when noetic-devel branch is available
5656
'rosdocs': ('http://docs.ros.org/' + ros_distro + '/api/%s', ''),
57-
'moveit_core': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/classmoveit_1_1core_1_1%s.html', ''),
58-
'planning_scene': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/classplanning__scene_1_1%s.html', ''),
59-
'moveit_python': ('file:///home/peter/projects/moveit_ws/doc/moveit_core/html/python/_autosummary/moveit.%s.html', ''),
57+
'moveit_core': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/cpp/classmoveit_1_1core_1_1%s.html', ''),
58+
'moveit_core_python': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/python/_autosummary/moveit.%s.html', ''),
59+
'planning_scene': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/cpp/classplanning__scene_1_1%s.html', ''),
6060
'planning_scene_monitor': ('http://docs.ros.org/' + ros_distro + '/api/moveit_ros_planning/html/classplanning__scene__monitor_1_1%s.html', ''),
61-
'collision_detection_struct': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/structcollision__detection_1_1%s.html', ''),
62-
'collision_detection_class': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/classcollision__detection_1_1%s.html', ''),
63-
'kinematic_constraints': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/classkinematic__constraints_1_1%s.html', ''),
64-
'moveit_core_files': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/%s.html', ''),
61+
'collision_detection_struct': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/cpp/structcollision__detection_1_1%s.html', ''),
62+
'collision_detection_class': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/cpp/classcollision__detection_1_1%s.html', ''),
63+
'kinematic_constraints': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/cpp/classkinematic__constraints_1_1%s.html', ''),
64+
'moveit_core_files': ('http://docs.ros.org/' + ros_distro + '/api/moveit_core/html/cpp/%s.html', ''),
6565
'moveit_website': ('http://moveit.ros.org/%s/', ''),
6666
'locked_planning_scene': ('http://docs.ros.org/' + ros_distro + '/api/moveit_ros_planning/html/namespaceplanning__scene__monitor.html', ''),
6767
'planning_interface': ('http://docs.ros.org/' + ros_distro + '/api/moveit_ros_planning_interface/html/classmoveit_1_1planning__interface_1_1%s.html', ''),

doc/planning_scene_python/planning_scene_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Planning Scene Python
22
==================================
33

4-
The :moveit_python:`core.planning_scene.PlanningScene` class provides the main interface that you will use
4+
The :moveit_core_python:`core.planning_scene.PlanningScene` class provides the main interface that you will use
55
for collision checking and constraint checking. In this tutorial, we
66
will explore the Python interface to this class.
77

doc/planning_scene_python/src/planning_scene_tutorial.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def main():
1919
# Setup
2020
# ^^^^^
2121
#
22-
# The :moveit_python:`core.planning_scene.PlanningScene` class can be easily setup and
22+
# The :moveit_core_python:`core.planning_scene.PlanningScene` class can be easily setup and
2323
# configured using a URDF and
2424
# SRDF. This is, however, not the recommended way to instantiate a
2525
# PlanningScene. At the time of writing there are not yet python bindings
@@ -46,8 +46,8 @@ def main():
4646
# current state is in *self-collision*, i.e. whether the current
4747
# configuration of the robot would result in the robot's parts
4848
# hitting each other. To do this, we will construct a
49-
# :moveit_python:`core.collision_detection.CollisionRequest` object and a
50-
# :moveit_python:`core.collision_detection.CollisionResult` object and pass them
49+
# :moveit_core_python:`core.collision_detection.CollisionRequest` object and a
50+
# :moveit_core_python:`core.collision_detection.CollisionResult` object and pass them
5151
# into the collision checking function. Note that the result of
5252
# whether the robot is in self-collision or not is contained within
5353
# the result. Self collision checking uses an *unpadded* version of
@@ -121,7 +121,7 @@ def main():
121121
# Modifying the Allowed Collision Matrix
122122
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
123123
#
124-
# The :moveit_python:`core.collision_detection.AllowedCollisionMatrix` (ACM)
124+
# The :moveit_core_python:`core.collision_detection.AllowedCollisionMatrix` (ACM)
125125
# provides a mechanism to tell the collision world to ignore
126126
# collisions between certain object: both parts of the robot and
127127
# objects in the world. We can tell the collision checker to ignore
@@ -163,7 +163,7 @@ def main():
163163
# ^^^^^^^^^^^^^^^^^^^
164164
#
165165
# The PlanningScene class also includes easy to use function calls for checking constraints. The constraints can be
166-
# of two types: (a) constraints constructed using :moveit_python:`core.kinematic_constraints`, or (b) user defined
166+
# of two types: (a) constraints constructed using :moveit_core_python:`core.kinematic_constraints`, or (b) user defined
167167
# constraints specified through a callback. We will first look at an example with a simple
168168
# KinematicConstraint.
169169
#

0 commit comments

Comments
 (0)