Skip to content

Commit 924a4f9

Browse files
fix linking WARNING: unknown document. (backport #5343) (#5345)
* fix linking WARNING: unknown document. (#5343) Signed-off-by: Tomoya Fujita <[email protected]> (cherry picked from commit 94adc5e) * more internal link fixes to RMW-Implementations section. Signed-off-by: Tomoya Fujita <[email protected]> --------- Signed-off-by: Tomoya Fujita <[email protected]> Co-authored-by: Tomoya Fujita <[email protected]>
1 parent fff316b commit 924a4f9

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ifeq ($(OS),Windows_NT)
88
PYTHON := python
99
endif
1010
BUILD = $(PYTHON) -m sphinx
11-
OPTS =-c .
11+
OPTS =-c . -W # Treat warnings as errors
1212

1313
help:
1414
@$(BUILD) -M help "$(SOURCE)" "$(OUT)" $(OPTS)

source/Concepts/Intermediate/About-Different-Middleware-Vendors.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Multiple RMW implementations
6464
The ROS 2 binary releases for currently active distros have built-in support for several RMW implementations out of the box (Fast DDS, RTI Connext Pro, Eclipse Cyclone DDS, GurumNetworks GurumDDS).
6565
The default is Fast DDS, which works without any additional installation steps because we distribute it with our binary packages.
6666

67-
Other RMWs like Cyclone DDS, Connext or GurumDDS can be enabled by :doc:`installing additional packages <../../Installation/DDS-Implementations>`, but without having to rebuild anything or replace any existing packages.
67+
Other RMWs like Cyclone DDS, Connext or GurumDDS can be enabled by :doc:`installing additional packages <../../Installation/RMW-Implementations>`, but without having to rebuild anything or replace any existing packages.
6868

6969
A ROS 2 workspace that has been built from source may build and install multiple RMW implementations simultaneously.
7070
While the core ROS 2 code is being compiled, any RMW implementation that is found will be built if the relevant DDS/RTPS implementation has been installed properly and the relevant environment variables have been configured.

source/How-To-Guides/Working-with-multiple-RMW-implementations.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Specifying RMW implementations
2222
------------------------------
2323

2424
To have multiple RMW implementations available for use you must have installed the ROS 2 binaries and any additional dependencies for specific RMW implementations, or built ROS 2 from source with multiple RMW implementations in the workspace (the RMW implementations are included in the build by default if their compile-time dependencies are met).
25-
See :doc:`Install DDS implementations <../Installation/DDS-Implementations>`.
25+
See :doc:`Install RMW implementations <../Installation/RMW-Implementations>`.
2626

2727
----
2828

@@ -67,7 +67,7 @@ Adding RMW implementations to your workspace
6767
--------------------------------------------
6868

6969
Additional DDS and RMW implementations can be added to your workspace by installing the necessary dependencies and rebuilding the workspace.
70-
See the :doc:`DDS implementations <../Installation/DDS-Implementations>` page for more information about installing the available DDS options.
70+
See the :doc:`RMW implementations <../Installation/RMW-Implementations>` page for more information about installing the available DDS options.
7171

7272
Suppose that you have built your ROS 2 workspace with only Fast DDS installed and therefore only the Fast DDS RMW implementation built.
7373
The last time your workspace was built, any other RMW implementation packages, ``rmw_connextdds`` for example, were probably unable to find installations of the relevant DDS implementations.

source/Installation/Alternatives/RHEL-Development-Setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Install dependencies using rosdep
106106
Install additional DDS implementations (optional)
107107
-------------------------------------------------
108108

109-
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../DDS-Implementations>`.
109+
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../RMW-Implementations>`.
110110

111111
Build the code in the workspace
112112
-------------------------------

source/Installation/Alternatives/RHEL-Install-Binary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Set your rosdistro according to the release you downloaded.
8484
Install additional DDS implementations (optional)
8585
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8686

87-
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../DDS-Implementations>`.
87+
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../RMW-Implementations>`.
8888

8989
Environment setup
9090
-----------------

source/Installation/Alternatives/Ubuntu-Development-Setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Install dependencies using rosdep
123123
Install additional DDS implementations (optional)
124124
-------------------------------------------------
125125

126-
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../DDS-Implementations>`.
126+
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../RMW-Implementations>`.
127127

128128
Build the code in the workspace
129129
-------------------------------

source/Installation/Alternatives/Ubuntu-Install-Binary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ If you are going to build ROS packages or otherwise do development, you can also
8383
Install additional DDS implementations (optional)
8484
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8585

86-
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../DDS-Implementations>`.
86+
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../RMW-Implementations>`.
8787

8888
Environment setup
8989
-----------------

source/Installation/Alternatives/Windows-Development-Setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Install additional DDS implementations (optional)
8888

8989
Fast DDS is bundled with the ROS 2 source and will always be built unless you put an ``COLCON_IGNORE`` file in the ``src\eProsima`` folder.
9090

91-
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../DDS-Implementations>`.
91+
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../RMW-Implementations>`.
9292

9393
Build the ROS 2 code
9494
--------------------

source/Installation/Alternatives/macOS-Development-Setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Create a workspace and clone all repos:
127127
Install additional DDS vendors (optional)
128128
-----------------------------------------
129129

130-
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../DDS-Implementations>`.
130+
If you would like to use another DDS or RTPS vendor besides the default, you can find instructions :doc:`here <../RMW-Implementations>`.
131131

132132
Build the ROS 2 code
133133
--------------------

source/Installation/Windows-Install-Binary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Downloading ROS 2
4242
Install additional DDS implementations (optional)
4343
-------------------------------------------------
4444

45-
If you would like to use another DDS or RTPS vendor besides the default, Fast DDS, you can find instructions :doc:`here <DDS-Implementations>`.
45+
If you would like to use another DDS or RTPS vendor besides the default, Fast DDS, you can find instructions :doc:`here <RMW-Implementations>`.
4646

4747
Environment setup
4848
-----------------

0 commit comments

Comments
 (0)