Skip to content

Commit d6d8476

Browse files
committed
Fix api links
1 parent 5d6f4b0 commit d6d8476

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

custom_messages/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Introduction
22

33
Gazebo topics communicate through Google protobuf messages. There is an
4-
extensive [list of message types provided by Gazebo(http://gazebosim.org/msgs/1.9.0/classes.html), for use with subscribing and publishing Gazebo
4+
extensive [list of message types provided by Gazebo(http://osrf-distributions.s3.amazonaws.com/gazebo/msg-api/dev/classes.html), for use with subscribing and publishing Gazebo
55
topics. However, there are many situations where you want to build your own.
66

77
This tutorial is an example of how to create your own custom messages, and how to subscribe and publish them in a Gazebo plug-in.

random_numbers/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ gazebo --seed <integer>
1212

1313
# Message
1414

15-
Gazebo listens to the `~/world_control` topic, which requires messages of type [msgs::WorldControl](http://gazebosim.org/msgs/1.9.0/world__control_8proto.html). The world control message may contain a random number seed.
15+
Gazebo listens to the `~/world_control` topic, which requires messages of type [msgs::WorldControl](http://osrf-distributions.s3.amazonaws.com/gazebo/msg-api/dev/world__control_8proto.html). The world control message may contain a random number seed.

ros_gzplugins/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ save, then launch the same launch files as for GPU Laser.
512512

513513
## Projector
514514

515-
**Description:** projects a static texture from a source outwards, such as used with the PR2's original head camera sensor. See [API documentation](http://gazebosim.org/api/dev/classgazebo_1_1rendering_1_1Projector.html) for more information.
515+
**Description:** projects a static texture from a source outwards, such as used with the PR2's original head camera sensor. See [API documentation](http://osrf-distributions.s3.amazonaws.com/gazebo/api/dev/classgazebo_1_1rendering_1_1Projector.html) for more information.
516516

517517
## Prosilica Camera
518518

topics_subscribe/tutorial.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Gazebo communicates on TCP/IP sockets, which allows separate programs to interfa
44

55
The easiest way to communicate with Gazebo over TCP/IP sockets is to link against the Gazebo libraries, and use the provided functions.
66

7-
The Gazebo transport system is documented [here](http://gazebosim.org/api/1.9.1/group__gazebo__transport.html) and the protobuf message types are documented [here](http://gazebosim.org/api/1.9.1/group__gazebo__msgs.html).
7+
The Gazebo transport system is documented [here](http://osrf-distributions.s3.amazonaws.com/gazebo/api/dev/group__gazebo__msgs.html).
88

99
A list of all the topics in use on a running system can be found with the following command (make sure Gazebo is running first):
1010

1111
gztopic list
1212

1313
### Example ###
1414

15-
This example subscribes to a [WorldStatistics message](http://gazebosim.org/msgs/1.9.0/world__stats_8proto.html) on topic ~/world_stats and prints it to the console. This message is output by Gazebo at 1 Hz and includes information about the simulation time and pause state. The example is included in the gazebo source distribution at [examples/stand_alone/listener/](https://bitbucket.org/osrf/gazebo/src/8b0c2de0886a61a862036f7e7fe1d4b7b8b4651c/examples/stand_alone/listener/listener.cc?at=gazebo_1.9) and assumes that you can link against Gazebo.
15+
This example subscribes to a [WorldStatistics message](http://osrf-distributions.s3.amazonaws.com/gazebo/msg-api/dev/listener.cc?at=gazebo_1.9) and assumes that you can link against Gazebo.
1616

1717
Download listener.cc and CMakeLists.txt from the above link and put them into to a folder called listener at your home directory. Compile the example:
1818

topics_subscribe/tutorial_2-2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Gazebo communicates on TCP/IP sockets, which allows separate programs to interfa
44

55
The easiest way to communicate with Gazebo over TCP/IP sockets is to link against the Gazebo libraries, and use the provided functions.
66

7-
The Gazebo transport system is documented [here](http://gazebosim.org/api/1.9.1/group__gazebo__transport.html) and the protobuf message types are documented [here](http://gazebosim.org/api/1.9.1/group__gazebo__msgs.html).
7+
The Gazebo transport system is documented [here](http://osrf-distributions.s3.amazonaws.com/gazebo/api/dev/group__gazebo__msgs.html).
88

99
A list of all the topics in use on a running system can be found with the following command (make sure Gazebo is running first):
1010

@@ -14,7 +14,7 @@ gz topic -l
1414

1515
# Example
1616

17-
This example subscribes to a [WorldStatistics message](http://gazebosim.org/msgs/1.9.0/world__stats_8proto.html) on topic ~/world_stats and prints it to the console. This message is output by Gazebo at 1 Hz and includes information about the simulation time and pause state. The example is included in the gazebo source distribution at [examples/stand_alone/listener/](https://bitbucket.org/osrf/gazebo/src/68186e57ea8e97d9dfb6b29bb8e50bf9f83d2e78/examples/stand_alone/listener/listener.cc?at=gazebo_4.0) and assumes that you can link against Gazebo.
17+
This example subscribes to a [WorldStatistics message](http://osrf-distributions.s3.amazonaws.com/gazebo/msg-api/dev/listener.cc?at=gazebo_4.0) and assumes that you can link against Gazebo.
1818

1919
Download listener.cc and CMakeLists.txt from the above link and put them into to a folder called listener at your home directory. Compile the example:
2020

0 commit comments

Comments
 (0)