Skip to content

Commit a4fd1f3

Browse files
authored
Main is the default branch (#685)
Signed-off-by: Tyler Weaver <[email protected]>
1 parent 6ea6b79 commit a4fd1f3

File tree

10 files changed

+20
-52
lines changed

10 files changed

+20
-52
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ help:
1111

1212
multiversion: Makefile
1313
sphinx-multiversion $(OPTS) "$(SOURCE)" build/html
14-
@echo "<html><head><meta http-equiv=\"refresh\" content=\"0; url=humble/index.html\" /></head></html>" > build/html/index.html
14+
@echo "<html><head><meta http-equiv=\"refresh\" content=\"0; url=main/index.html\" /></head></html>" > build/html/index.html
1515

1616
local-with-api: Makefile
1717
@echo Building local with API

_static/images/logo.png

-58.4 KB
Binary file not shown.

_static/images/rolling-small.png

-24.6 KB
Loading

_templates/page.html

+2-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,8 @@
1313
<a href="{{ vpathto(latest_version.name) }}">{{latest_version.name | title }}</a>.
1414

1515
{% elif current_version.is_released %}
16-
You're reading the documentation for an older, but still supported, version of MoveIt 2.
17-
For information on the recommended stable version, please have a look at
18-
<a href="{{ vpathto(latest_version.name) }}">{{latest_version.name | title }}</a>.
19-
20-
{% else %}
21-
You're reading the documentation for the non-stable development version of MoveIt 2.
22-
For the stable, released version, please have a look at
16+
You're reading the documentation for a stable version of MoveIt that is not being developed further.
17+
For information on the recommended version, please have a look at
2318
<a href="{{ vpathto(latest_version.name) }}">{{latest_version.name | title }}</a>.
2419
{% endif %}
2520
</p>

_templates/versions.html

-34
This file was deleted.

conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@
134134
# smv_tag_whitelist = None
135135

136136
smv_branch_whitelist = r"^(main|humble)$"
137-
smv_released_pattern = r"^refs/(heads|remotes/[^/]+)/(humble).*$"
138-
smv_latest_version = "humble"
137+
smv_released_pattern = r"^refs/(heads|remotes/[^/]+)/(main|humble).*$"
138+
smv_latest_version = "main"
139139
smv_eol_versions = []
140140
smv_remote_whitelist = r"^(origin|upstream)$"
141141
smv_prefer_remote_refs = True

doc/examples/planning_adapters/planning_adapters_tutorial.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ This section has insights as to when to use which planner and how using certain
200200

201201
For more information on each of these motion planners, refer to their individual tutorial pages
202202
:doc:`OMPL </doc/examples/ompl_interface/ompl_interface_tutorial>`,
203-
:doc:`CHOMP </doc/examples/chomp_planner/chomp_planner_tutorial>` and
204-
:doc:`STOMP </doc/examples/stomp_planner/stomp_planner_tutorial>`.
203+
:doc:`CHOMP </doc/examples/chomp_planner/chomp_planner_tutorial>`, and
204+
:doc:`STOMP </doc/how_to_guides/stomp_planner/stomp_planner>`.
205205

206206
- **OMPL as a pre-processor for CHOMP**: OMPL can used as a base planner to produce an initial motion plan which can act as a initial guess for CHOMP. CHOMP can then produce optimized paths. In most cases, the quality of such a path produced should be better than that produced by OMPL alone or CHOMP alone.
207207

doc/how_to_guides/stomp_planner/stomp_planner.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Using STOMP with Your Robot
2929
---------------------------
3030
**Note:** if you are following this demo using the ``panda_moveit_config`` from the `ros-planning/panda_moveit_config <https://github.com/ros-planning/panda_moveit_config>`_ repository, these steps are already done for you and you can directly launch the demo for testing STOMP in RViZ.
3131

32-
#. Simply add the `stomp_planning.yaml <https://github.com/ros-planning/panda_moveit_config/blob/ros2/config/stomp_planning.yaml>`_ configuration file into the config directory of your MoveIt config package. It contains the plugin identifier, a planning pipeline adapter list, and the STOMP planning parameters. The config file should look like example below: ::
32+
#. Simply add the `stomp_planning.yaml <https://github.com/ros-planning/moveit_resources/blob/ros2/panda_moveit_config/config/stomp_planning.yaml>`__ configuration file into the config directory of your MoveIt config package. It contains the plugin identifier, a planning pipeline adapter list, and the STOMP planning parameters. The config file should look like example below: ::
3333

3434
planning_plugin: stomp_moveit/StompPlanner
3535
request_adapters: >-
@@ -77,7 +77,7 @@ If you have the ``panda_moveit_config`` from the `ros-planning/moveit_resources
7777

7878
STOMP Parameters
7979
----------------
80-
STOMP's parameters are configurable using the `stomp_planning.yaml <https://github.com/ros-planning/moveit_resources/blob/ros2/panda_moveit_config/config/stomp_planning.yaml>`_. All parameters are defined by the `stomp_moveit.yaml <https://github.com/ros-planning/moveit2/blob/main/moveit_planners/stomp/res/stomp_moveit.yaml>`_ which is used as input for the `generate_parameter_library <https://github.com/PickNikRobotics/generate_parameter_library>`_. In that file you can also find more information like default values and allowable ranges:
80+
STOMP's parameters are configurable using the `stomp_planning.yaml <https://github.com/ros-planning/moveit_resources/blob/ros2/panda_moveit_config/config/stomp_planning.yaml>`__. All parameters are defined by the `stomp_moveit.yaml <https://github.com/ros-planning/moveit2/blob/main/moveit_planners/stomp/res/stomp_moveit.yaml>`_ which is used as input for the `generate_parameter_library <https://github.com/PickNikRobotics/generate_parameter_library>`_. In that file you can also find more information like default values and allowable ranges:
8181

8282
**Optimization Parameters**:
8383

doc/tutorials/getting_started/getting_started.rst

+10-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,17 @@ Building all the source code of MoveIt can take 20-30 minutes, depending on the
77

88
Install ROS 2 and Colcon
99
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10-
:ros_documentation:`Install ROS 2 {DISTRO_TITLE}<Installation.html>`.
11-
It is easy to miss steps when going through the ROS 2 installation tutorial. If you run into errors in the next few steps, a good place to start is to go back and make sure you have installed ROS 2 correctly. One that users commonly forget is to source the ROS 2 install itself. ::
10+
MoveIt 2 currently supports multiple versions of ROS.
11+
Install whichever version you prefer.
12+
We primarily support ROS installed Ubuntu 22.04 but other methods and platforms may work with small changes to the instructions listed below.
13+
If you are just getting started we would recommend you use the latest stable version of ROS (Iron) on Ubuntu 22.04 for the most seamless experience.
14+
- `Rolling Ridley <https://docs.ros.org/en/rolling/Installation.html>`_ - Rolling Development Release
15+
- `Irin Irwini <https://docs.ros.org/en/iron/Installation.html>`_ - Latest Stable Release - May 2023
16+
- `Humble Haskbill <https://docs.ros.org/en/humble/Installation.html>`_ - LTS Release - May 2022
1217

13-
source /opt/ros/rolling/setup.bash
18+
It is easy to miss steps when going through the ROS 2 installation tutorial. If you run into errors in the next few steps, a good place to start is to go back and make sure you have installed ROS 2 correctly. One that users commonly forget is to source the ROS 2 install itself. Note to source the version of ROS you installed. ::
19+
20+
source /opt/ros/iron/setup.bash
1421

1522
.. note:: Unlike ROS 1 setup scripts, in ROS 2 the setup scripts do not attempt to switch what version of ROS you are using. This means that if you have previously sourced a different version of ROS, including from within your ``.bashrc`` file, you will run into errors during the building step. To fix this change what is sourced in your ``.bashrc`` and start a new terminal.
1623

doc/tutorials/your_first_project/your_first_project.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Your First C++ MoveIt Project
33

44
This tutorial will step you through writing your first C++ application with MoveIt.
55

6-
Warning: Most features in MoveIt will not work properly since additional parameters are required for full Move Group functionality. For a full setup, please continue with the :doc:`Move Group C++ Interface Tutorial <doc/examples/move_group_interface/move_group_interface_tutorial>`.
6+
Warning: Most features in MoveIt will not work properly since additional parameters are required for full Move Group functionality. For a full setup, please continue with the :doc:`Move Group C++ Interface Tutorial </doc/examples/move_group_interface/move_group_interface_tutorial>`.
77

88
Prerequisites
99
-------------

0 commit comments

Comments
 (0)