Skip to content

Commit

Permalink
Fix all warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey committed Jun 6, 2024
1 parent 7f4d8e1 commit 12d605c
Show file tree
Hide file tree
Showing 18 changed files with 84 additions and 81 deletions.
2 changes: 1 addition & 1 deletion blueprint/ros_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@ The screenshot shows all the shell windows and their expected content
(it was taken using ROS Melodic):


![Ignition Transport images and ROS 1 rqt](../acropolis/images/bridge_image_exchange_ign-gazebo.png)
![Ignition Transport images and ROS 1 rqt](img/bridge_image_exchange_gz-sim.png)
3 changes: 3 additions & 0 deletions citadel/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ pages:
- name: troubleshooting
title: Troubleshooting
file: troubleshooting.md
- name: ign_docker_env
title: Dockerized Dev Env
file: ign_docker_env.md
- name: comparison
title: Feature Comparison
file: comparison.md
Expand Down
6 changes: 3 additions & 3 deletions citadel/install_osx_src.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ If you want to compile Ignition Libraries in MacOS Catalina (10.15) you will nee

Create a file called `intern.patch` with the following content:

```patch
```diff
--- intern.h 2019-12-16 18:17:08.000000000 +0100
+++ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/intern.h
@@ -14,6 +14,10 @@
Expand All @@ -140,7 +140,7 @@ Create a file called `intern.patch` with the following content:

Now we can apply the patch:

```{.sh}
```sh
sudo patch -p0 < intern.patch
```

Expand All @@ -164,7 +164,7 @@ Create a file called `config.patch` with the following content:

Now we can appply the patch:

```{.sh}
```sh
sudo patch -p0 < config.patch
```

Expand Down
2 changes: 1 addition & 1 deletion citadel/ros_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ The screenshot shows all the shell windows and their expected content
(it was taken using ROS Melodic):


![Ignition Transport images and ROS 1 rqt](../acropolis/images/bridge_image_exchange_ign-gazebo.png)
![Ignition Transport images and ROS 1 rqt](img/bridge_image_exchange_ign-gazebo.png)
10 changes: 5 additions & 5 deletions citadel/sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,14 +362,14 @@ Inside the main we subscribe to the `lidar` topic, and wait until the node is sh

Download the [CMakeLists.txt](https://github.com/ignitionrobotics/docs/blob/master/citadel/tutorials/sensors/CMakeLists.txt), and in the same folder of `lidar_node` create `build/` directory:

```{.sh}
```sh
mkdir build
cd build
```

Run cmake and build the code:

```{.sh}
```sh
cmake ..
make lidar_node
```
Expand All @@ -378,13 +378,13 @@ make lidar_node

Run the node from terminal 1:

```{.sh}
```sh
./build/lidar_node
```

Run the world from terminal 2:

```{.sh}
```sh
ign gazebo sensor_tutorial.sdf
```

Expand Down Expand Up @@ -413,7 +413,7 @@ The first command is `ign gazebo sensor_tutorial.sdf` which launches the world.
And the second command is `./build/lidar_node` which runs the `lidar_node`.
Save the file as `sensor_launch.ign`, and then run it using the following command:

```{.sh}
```sh
ign launch sensor_launch.ign
```

Expand Down
4 changes: 2 additions & 2 deletions dome/install_osx_src.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Create a file called `intern.patch` with the following content:

Now we can apply the patch:

```{.sh}
```sh
sudo patch -p0 < intern.patch
```

Expand All @@ -164,7 +164,7 @@ Create a file called `config.patch` with the following content:

Now we can appply the patch:

```{.sh}
```sh
sudo patch -p0 < config.patch
```

Expand Down
6 changes: 3 additions & 3 deletions dome/sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,13 +378,13 @@ make lidar_node

Run the node from terminal 1:

```{.sh}
```sh
./build/lidar_node
```

Run the world from terminal 2:

```{.sh}
```sh
ign gazebo sensor_tutorial.sdf
```

Expand Down Expand Up @@ -413,7 +413,7 @@ The first command is `ign gazebo sensor_tutorial.sdf` which launches the world.
And the second command is `./build/lidar_node` which runs the `lidar_node`.
Save the file as `sensor_launch.ign`, and then run it using the following command:

```{.sh}
```sh
ign launch sensor_launch.ign
```

Expand Down
6 changes: 3 additions & 3 deletions edifice/install_osx_src.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ If you want to compile Ignition Libraries in MacOS Catalina (10.15) you will nee

Create a file called `intern.patch` with the following content:

```patch
```diff
--- intern.h 2019-12-16 18:17:08.000000000 +0100
+++ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/intern.h
@@ -14,6 +14,10 @@
Expand All @@ -140,7 +140,7 @@ Create a file called `intern.patch` with the following content:

Now we can apply the patch:

```{.sh}
```sh
sudo patch -p0 < intern.patch
```

Expand All @@ -164,7 +164,7 @@ Create a file called `config.patch` with the following content:

Now we can appply the patch:

```{.sh}
```sh
sudo patch -p0 < config.patch
```

Expand Down
10 changes: 5 additions & 5 deletions edifice/sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,14 +362,14 @@ Inside the main we subscribe to the `lidar` topic, and wait until the node is sh

Download the [CMakeLists.txt](https://github.com/ignitionrobotics/docs/blob/master/edifice/tutorials/sensors/CMakeLists.txt), and in the same folder of `lidar_node` create `build/` directory:

```{.sh}
```sh
mkdir build
cd build
```

Run cmake and build the code:

```{.sh}
```sh
cmake ..
make lidar_node
```
Expand All @@ -378,13 +378,13 @@ make lidar_node

Run the node from terminal 1:

```{.sh}
```sh
./build/lidar_node
```

Run the world from terminal 2:

```{.sh}
```sh
ign gazebo sensor_tutorial.sdf
```

Expand Down Expand Up @@ -413,7 +413,7 @@ The first command is `ign gazebo sensor_tutorial.sdf` which launches the world.
And the second command is `./build/lidar_node` which runs the `lidar_node`.
Save the file as `sensor_launch.ign`, and then run it using the following command:

```{.sh}
```sh
ign launch sensor_launch.ign
```

Expand Down
8 changes: 4 additions & 4 deletions fortress/install_osx_src.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ If you want to compile Ignition Libraries in MacOS Catalina (10.15) you will nee

Create a file called `intern.patch` with the following content:

```patch
```diff
--- intern.h 2019-12-16 18:17:08.000000000 +0100
+++ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/intern.h
@@ -14,6 +14,10 @@
Expand All @@ -140,15 +140,15 @@ Create a file called `intern.patch` with the following content:

Now we can apply the patch:

```{.sh}
```sh
sudo patch -p0 < intern.patch
```

- `/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/config.h`

Create a file called `config.patch` with the following content:

```patch
```diff
--- config.h 2019-12-16 18:19:13.000000000 +0100
+++ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/config.h
@@ -410,6 +410,6 @@
Expand All @@ -164,7 +164,7 @@ Create a file called `config.patch` with the following content:

Now we can appply the patch:

```{.sh}
```sh
sudo patch -p0 < config.patch
```

Expand Down
10 changes: 5 additions & 5 deletions fortress/sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,14 +384,14 @@ Inside the main we subscribe to the `lidar` topic, and wait until the node is sh

Download the [CMakeLists.txt](https://github.com/ignitionrobotics/docs/blob/master/fortress/tutorials/sensors/CMakeLists.txt), and in the same folder of `lidar_node` create `build/` directory:

```{.sh}
```sh
mkdir build
cd build
```

Run cmake and build the code:

```{.sh}
```sh
cmake ..
make lidar_node
```
Expand All @@ -400,13 +400,13 @@ make lidar_node

Run the node from terminal 1:

```{.sh}
```sh
./build/lidar_node
```

Run the world from terminal 2:

```{.sh}
```sh
ign gazebo sensor_tutorial.sdf
```

Expand Down Expand Up @@ -435,7 +435,7 @@ The first command is `ign gazebo sensor_tutorial.sdf` which launches the world.
And the second command is `./build/lidar_node` which runs the `lidar_node`.
Save the file as `sensor_launch.ign`, and then run it using the following command:

```{.sh}
```sh
ign launch sensor_launch.ign
```

Expand Down
8 changes: 4 additions & 4 deletions garden/install_osx_src.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ If you want to compile Gazebo Libraries in MacOS Catalina (10.15) you will need

Create a file called `intern.patch` with the following content:

```patch
```diff
--- intern.h 2019-12-16 18:17:08.000000000 +0100
+++ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/intern.h
@@ -14,6 +14,10 @@
Expand All @@ -154,15 +154,15 @@ Create a file called `intern.patch` with the following content:

Now we can apply the patch:

```{.sh}
```sh
sudo patch -p0 < intern.patch
```

- `/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/config.h`

Create a file called `config.patch` with the following content:

```patch
```diff
--- config.h 2019-12-16 18:19:13.000000000 +0100
+++ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Headers/ruby/ruby/config.h
@@ -410,6 +410,6 @@
Expand All @@ -178,7 +178,7 @@ Create a file called `config.patch` with the following content:

Now we can appply the patch:

```{.sh}
```sh
sudo patch -p0 < config.patch
```

Expand Down
Loading

0 comments on commit 12d605c

Please sign in to comment.