-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: updating after merging #293, regenerating examples and cli inte…
…rfaces
- Loading branch information
Showing
21 changed files
with
322 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
Documentation Examples | ||
====================== | ||
|
||
This document explains how to run examples and generate all static text and | ||
asciinema videos. | ||
|
||
## Prerequisites | ||
|
||
* [perl](http://perl.org) | ||
* [asciinema](http://asciinema.org) | ||
* [rosinstall\_generator](https://github.com/vcstools/wstool) | ||
* [wstool](https://github.com/vcstools/wstool) | ||
* [catkin](https://github.com/ros/catkin) | ||
|
||
## Generating All Examples | ||
|
||
All examples must be run from the examples directory. | ||
|
||
```bash | ||
./quickstart_ws/all.bash | ||
./failure_ws/all.bash | ||
./ros_tutorials_ws/all.bash | ||
``` | ||
|
||
## Scripts | ||
|
||
### slowrun | ||
|
||
The `slowrun` script executes a script line by line, echoing characters to the | ||
console with a delay, as if they were being typed. | ||
|
||
Optional arguments: | ||
|
||
* `--buffer` -- buffer and delay printing of each line from the output from subcommands | ||
|
||
### slowrecord | ||
|
||
The `slowrecord` script executes a script line by line with `slowrun`, but also | ||
spawns a `urxvt` terminal with a specific size, and records the commands with | ||
`asciinema`. | ||
|
||
Optional arguments: | ||
|
||
* `--check` -- check interactively before uploading | ||
* `--tall` -- use a taller window for recording |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
SLOWRECORD=$(pwd)/slowrecord | ||
WS=/tmp/failure_ws | ||
|
||
pushd `dirname $0` | ||
|
||
rm -rf $WS | ||
|
||
source /opt/ros/indigo/setup.bash | ||
bash 0_init.bash | ||
$SLOWRECORD --check --tall --buffer 1_build_warning.bash | ||
$SLOWRECORD --check --tall --buffer 2_build_err.bash | ||
|
||
popd |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
. | ||
├── .catkin_tools | ||
│ ├── CATKIN_IGNORE | ||
│ ├── profiles | ||
│ ├── README | ||
│ └── VERSION | ||
└── src | ||
├── pkg_a | ||
├── pkg_b | ||
├── pkg_c | ||
└── pkg_d | ||
|
||
7 directories, 3 files |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
. | ||
├── build | ||
│ ├── .built_by | ||
│ ├── catkin_tools_prebuild | ||
│ ├── .catkin_tools.yaml | ||
│ ├── pkg_a | ||
│ ├── pkg_b | ||
│ ├── pkg_c | ||
│ └── pkg_d | ||
├── .catkin_tools | ||
│ ├── CATKIN_IGNORE | ||
│ ├── profiles | ||
│ ├── README | ||
│ └── VERSION | ||
├── devel | ||
│ ├── .built_by | ||
│ ├── .catkin | ||
│ ├── CMakeLists.txt -> /tmp/quickstart_ws/devel/.private/catkin_tools_prebuild/CMakeLists.txt | ||
│ ├── env.sh -> /tmp/quickstart_ws/devel/.private/catkin_tools_prebuild/env.sh | ||
│ ├── etc | ||
│ ├── lib | ||
│ ├── package.xml -> /tmp/quickstart_ws/devel/.private/catkin_tools_prebuild/package.xml | ||
│ ├── .private | ||
│ ├── setup.bash -> /tmp/quickstart_ws/devel/.private/catkin_tools_prebuild/setup.bash | ||
│ ├── setup.sh -> /tmp/quickstart_ws/devel/.private/catkin_tools_prebuild/setup.sh | ||
│ ├── _setup_util.py -> /tmp/quickstart_ws/devel/.private/catkin_tools_prebuild/_setup_util.py | ||
│ ├── setup.zsh -> /tmp/quickstart_ws/devel/.private/catkin_tools_prebuild/setup.zsh | ||
│ └── share | ||
├── logs | ||
│ ├── catkin_tools_prebuild | ||
│ ├── pkg_a | ||
│ ├── pkg_b | ||
│ ├── pkg_c | ||
│ └── pkg_d | ||
└── src | ||
├── pkg_a | ||
├── pkg_b | ||
├── pkg_c | ||
└── pkg_d | ||
|
||
24 directories, 14 files |
Oops, something went wrong.