Skip to content

Commit 6dd46e4

Browse files
download link (#141)
* update links squashing Signed-off-by: mohamedsayed18 <[email protected]> * blob to raw Signed-off-by: mohamedsayed18 <[email protected]> * update tutorials links Signed-off-by: mohamedsayed18 <[email protected]>
1 parent 012bba6 commit 6dd46e4

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

tutorials/04_messages.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cd ~/ign_transport_tutorial
1717

1818
## Publisher
1919

20-
Download the [publisher.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/publisher.cc) file within the `ign_transport_tutorial`
20+
Download the [publisher.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/publisher.cc) file within the `ign_transport_tutorial`
2121
folder and open it with your favorite editor:
2222

2323
```{.cpp}
@@ -132,7 +132,7 @@ The method *Publish()* sends a message to all the subscribers.
132132

133133
## Subscriber
134134

135-
Download the [subscriber.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/subscriber.cc)
135+
Download the [subscriber.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/subscriber.cc)
136136
file into the `ign_transport_tutorial` folder and open it with your favorite editor:
137137

138138
```{.cpp}
@@ -212,7 +212,7 @@ until you hit *CTRL-C*. Note that this function captures the *SIGINT* and
212212

213213
## Building the code
214214

215-
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/CMakeLists.txt) file within the `ign_transport_tutorial` folder.
215+
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/CMakeLists.txt) file within the `ign_transport_tutorial` folder.
216216

217217
Once you have all your files, go ahead and create a `build/` directory within
218218
the `ign_transport_tutorial` directory.
@@ -347,7 +347,7 @@ between Ignition Transport and another protocol or if you want to just print the
347347
content of a generic protobuf message using `DebugString()`, among other use
348348
cases.
349349

350-
Download the [subscriber_generic.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/subscriber_generic.cc) file within the `ign_transport_tutorial` folder and open it with your favorite editor:
350+
Download the [subscriber_generic.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/subscriber_generic.cc) file within the `ign_transport_tutorial` folder and open it with your favorite editor:
351351

352352
```{.cpp}
353353
#include <google/protobuf/message.h>
@@ -463,12 +463,12 @@ often the integration of the message generation into the build system of your
463463
project. Next, you can find an example of a publisher and subscriber using a
464464
custom Protobuf message integrated with CMake.
465465

466-
Download the [publisher_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/publisher_custom_msg.cc)
467-
and the [subscriber_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/subscriber_custom_msg.cc)
466+
Download the [publisher_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/publisher_custom_msg.cc)
467+
and the [subscriber_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/subscriber_custom_msg.cc)
468468
files within the `ign_transport_tutorial`. Then, create a `msgs` folder and
469-
download the [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/stringmsg.proto)
470-
and the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/CMakeLists.txt)
471-
files within the `msgs` folder. Finally, we'll need the main [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/CMakeLists.txt)
469+
download the [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/stringmsg.proto)
470+
and the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/CMakeLists.txt)
471+
files within the `msgs` folder. Finally, we'll need the main [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/CMakeLists.txt)
472472
file. You should have this file from the previous examples. Otherwise,
473473
download and place it within the `ign_transport_tutorial` folder.
474474

tutorials/05_services.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cd ~/ign_transport_tutorial
2525

2626
## Responser
2727

28-
Download the [responser.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/responser.cc) file within the ``ign_transport_tutorial``
28+
Download the [responser.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/responser.cc) file within the ``ign_transport_tutorial``
2929
folder and open it with your favorite editor:
3030

3131
```{.cpp}
@@ -133,7 +133,7 @@ until you hit *CTRL-C*. Note that this function captures the *SIGINT* and
133133

134134
## Synchronous requester
135135

136-
Download the [requester.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester.cc) file within the ``ign_transport_tutorial``
136+
Download the [requester.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester.cc) file within the ``ign_transport_tutorial``
137137
folder and open it with your favorite editor:
138138

139139
```{.cpp}
@@ -228,7 +228,7 @@ message.
228228

229229
## Asynchronous requester
230230

231-
Download the [requester_async.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester_async.cc) file within the
231+
Download the [requester_async.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester_async.cc) file within the
232232
``ign_transport_tutorial`` folder and open it with your favorite editor:
233233

234234
```{.cpp}
@@ -314,7 +314,7 @@ oneway service to process service requests without sending back responses.
314314
Oneway services don't accept any output parameters nor the requests have to wait
315315
for the response.
316316

317-
Download the [responser_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/responser_oneway.cc) file within the
317+
Download the [responser_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/responser_oneway.cc) file within the
318318
``ign_transport_tutorial`` folder and open it with your favorite editor:
319319

320320
```{.cpp}
@@ -389,7 +389,7 @@ This case is similar to the oneway service provider. This code can be used for
389389
requesting a service that does not need a response back. We don't need any
390390
output parameters in this case nor we have to wait for the response.
391391

392-
Download the [requester_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester_oneway.cc) file within the
392+
Download the [requester_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester_oneway.cc) file within the
393393
``ign_transport_tutorial`` folder and open it with your favorite editor:
394394

395395
```{.cpp}
@@ -447,7 +447,7 @@ your service request is handled.
447447
Sometimes we want to receive some result but don't have any input parameter to
448448
send.
449449

450-
Download the [responser_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/responser_no_input.cc)
450+
Download the [responser_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/responser_no_input.cc)
451451
file within the ``ign_transport_tutorial`` folder and open it with your
452452
favorite editor:
453453

@@ -527,7 +527,7 @@ service requests.
527527
This case is similar to the service without input parameter. We don't send any
528528
request.
529529

530-
Download the [requester_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester_no_input.cc)
530+
Download the [requester_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester_no_input.cc)
531531
file within the ``ign_transport_tutorial`` folder and open it with your
532532
favorite editor:
533533

@@ -570,14 +570,14 @@ request timed out or reached the service provider and ``result`` shows if the
570570
service was successfully executed.
571571

572572
We also have the async version for service request without input. You should
573-
download [requester_async_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester_async_no_input.cc)
573+
download [requester_async_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester_async_no_input.cc)
574574
file within the ``ign_transport_tutorial`` folder.
575575

576576
## Building the code
577577

578-
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/CMakeLists.txt) file
578+
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/CMakeLists.txt) file
579579
within the ``ign_transport_tutorial`` folder. Then, download
580-
[CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/CMakeLists.txt) and [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/stringmsg.proto) inside the
580+
[CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/CMakeLists.txt) and [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/stringmsg.proto) inside the
581581
``msgs`` directory.
582582

583583
Once you have all your files, go ahead and create a ``build/`` folder within

tutorials/07_relay.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ install Docker following any of the existing guides available
2525
([here](https://docs.docker.com/get-docker/)'s one).
2626

2727
We're going to build a Docker image and run it inside your host computer.
28-
Download the [build.bash](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/build.bash), [run.bash](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/run.bash) and
29-
[Dockerfile](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/ign-transport/Dockerfile) files.
28+
Download the [build.bash](https://github.com/ignitionrobotics/ign-transport/raw/master/docker/build.bash), [run.bash](https://github.com/ignitionrobotics/ign-transport/raw/master/docker/run.bash) and
29+
[Dockerfile](https://github.com/ignitionrobotics/ign-transport/raw/master/docker/ign-transport/Dockerfile) files.
3030

3131
```{.sh}
32-
wget https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/build.bash
33-
wget https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/run.bash
34-
wget https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/ign-transport/Dockerfile -O ign-transport/Dockerfile
32+
wget https://github.com/ignitionrobotics/ign-transport/raw/master/docker/build.bash
33+
wget https://github.com/ignitionrobotics/ign-transport/raw/master/docker/run.bash
34+
wget https://github.com/ignitionrobotics/ign-transport/raw/master/docker/ign-transport/Dockerfile -O ign-transport/Dockerfile
3535
chmod +x build.bash run.bash
3636
```
3737

tutorials/10_logging.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cd ~/ign_transport_tutorial
2525

2626
## Record
2727

28-
Download the [record.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/record.cc)
28+
Download the [record.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/record.cc)
2929
file within the `ign_transport_tutorial` folder and open it with your favorite editor:
3030

3131
```{.cpp}
@@ -126,7 +126,7 @@ stops the log recording as expected.
126126

127127
## Play back
128128

129-
Download the [playback.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/playback.cc)
129+
Download the [playback.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/playback.cc)
130130
file within the `ign_transport_tutorial` folder and open it with your favorite
131131
editor:
132132

@@ -215,7 +215,7 @@ thread until all messages have been published.
215215

216216
## Building the code
217217

218-
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/CMakeLists.txt)
218+
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/CMakeLists.txt)
219219
file within the `ign_transport_tutorial` folder.
220220

221221
Once you have all your files, go ahead and create a `build/` directory within

0 commit comments

Comments
 (0)