This is an automated email from the ASF dual-hosted git repository.
kpvdr pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new f00510e Fixes to formatting of QUICKSTART.md on QIT 0.3.0
f00510e is described below
commit f00510e85b6d191975a996db5c1b22fd2ae5973e
Author: Kim van der Riet <[email protected]>
AuthorDate: Fri Nov 5 10:50:17 2021 -0400
Fixes to formatting of QUICKSTART.md on QIT 0.3.0
---
.../qpid-interop-test-0.3.0/QUICKSTART.html | 46 ++++++++++------------
.../releases/qpid-interop-test-0.3.0/QUICKSTART.md | 45 +++++++++------------
2 files changed, 40 insertions(+), 51 deletions(-)
diff --git a/content/releases/qpid-interop-test-0.3.0/QUICKSTART.html
b/content/releases/qpid-interop-test-0.3.0/QUICKSTART.html
index 2d29670..c431377 100644
--- a/content/releases/qpid-interop-test-0.3.0/QUICKSTART.html
+++ b/content/releases/qpid-interop-test-0.3.0/QUICKSTART.html
@@ -261,25 +261,21 @@ work. Suggestions: Apache ActiveMQ Artemis, Qpid Dispatch
Router.</p>
<p>By default, qpid-interop-test will install to <code>/usr/local</code>, use
<code>--CMAKE_INSTALL_PREFIX</code>
option to change.</p>
-<p>```bash</p>
-
-<h1 id="if-you-want-to-use-rhea-javascript-client">If you want to use Rhea
Javascript client:</h1>
-
-<p>git clone https://github.com/amqp/rhea.git
+<pre><code># If you want to use Rhea Javascript client:
+git clone https://github.com/amqp/rhea.git
git clone https://gitbox.apache.org/repos/asf/qpid-interop-test.git
cd qpid-interop-test && mkdir build && cd build
cmake ..
make
sudo make install
-```</p>
+</code></pre>
<h2 id="4-run-the-tests">4. Run the Tests</h2>
<p>Start a broker. Then:</p>
-<p><code>bash
-qpid-interop-test <test-name> [test-options...]
-</code></p>
+<pre><code>qpid-interop-test <test-name> [test-options...]
+</code></pre>
<p><code><test-name></code> may be one of:
* <code>amqp-types-test</code> - a test of AMQP simple types
@@ -289,15 +285,15 @@ qpid-interop-test <test-name> [test-options...]
* <code>jms-hdrs-props-test</code> - a test of user-definable message headers
and properties as implemented by qpid-jms.
* <code>all</code> - run all the above tests sequentially.</p>
-<p>For help on tests that can be run and options, run:
-<code>bash
-qpid-interop-test --help
-</code></p>
+<p>For help on tests that can be run and options, run:</p>
+
+<pre><code>qpid-interop-test --help
+</code></pre>
-<p>For help on options for an individual test, run:
-<code>bash
-qpid-interop-test <test-name> --help
-</code></p>
+<p>For help on options for an individual test, run:</p>
+
+<pre><code>qpid-interop-test <test-name> --help
+</code></pre>
<h2 id="5-containers">5. Containers</h2>
@@ -306,17 +302,17 @@ contains Dockerfiles for Fedora 34, CentOS 8 and Ubuntu
Focal. The build
process builds and installs Qpid Interop Test as well as the Qpid Dispatch
Router for use as a local broker.</p>
-<p>For example:
-<code>bash
-podman build -f containers/Dockerfile.f34 -t fedora34.qit
+<p>For example:</p>
+
+<pre><code>podman build -f containers/Dockerfile.f34 -t fedora34.qit
podman run -it fedora34.qit /bin/bash
-</code></p>
+</code></pre>
+
+<p>In the container:</p>
-<p>In the container:
-<code>bash
-sudo /sbin/qdrouterd --daemon
+<pre><code>sudo /sbin/qdrouterd --daemon
qpid-interop-test all
-</code></p>
+</code></pre>
<div class="footnotes">
<hr />
diff --git a/input/releases/qpid-interop-test-0.3.0/QUICKSTART.md
b/input/releases/qpid-interop-test-0.3.0/QUICKSTART.md
index dd38c5f..385afc8 100644
--- a/input/releases/qpid-interop-test-0.3.0/QUICKSTART.md
+++ b/input/releases/qpid-interop-test-0.3.0/QUICKSTART.md
@@ -77,23 +77,20 @@ Git repository:
https://gitbox.apache.org/repos/asf/qpid-interop-test.git
By default, qpid-interop-test will install to `/usr/local`, use
`--CMAKE_INSTALL_PREFIX`
option to change.
-```bash
-# If you want to use Rhea Javascript client:
-git clone https://github.com/amqp/rhea.git
-git clone https://gitbox.apache.org/repos/asf/qpid-interop-test.git
-cd qpid-interop-test && mkdir build && cd build
-cmake ..
-make
-sudo make install
-```
+ # If you want to use Rhea Javascript client:
+ git clone https://github.com/amqp/rhea.git
+ git clone https://gitbox.apache.org/repos/asf/qpid-interop-test.git
+ cd qpid-interop-test && mkdir build && cd build
+ cmake ..
+ make
+ sudo make install
## 4. Run the Tests
Start a broker. Then:
-```bash
-qpid-interop-test <test-name> [test-options...]
-```
+ qpid-interop-test <test-name> [test-options...]
+
`<test-name>` may be one of:
* `amqp-types-test` - a test of AMQP simple types
@@ -104,14 +101,12 @@ qpid-interop-test <test-name> [test-options...]
* `all` - run all the above tests sequentially.
For help on tests that can be run and options, run:
-```bash
-qpid-interop-test --help
-```
+
+ qpid-interop-test --help
For help on options for an individual test, run:
-```bash
-qpid-interop-test <test-name> --help
-```
+
+ qpid-interop-test <test-name> --help
## 5. Containers
@@ -121,13 +116,11 @@ process builds and installs Qpid Interop Test as well as
the Qpid Dispatch
Router for use as a local broker.
For example:
-```bash
-podman build -f containers/Dockerfile.f34 -t fedora34.qit
-podman run -it fedora34.qit /bin/bash
-```
+
+ podman build -f containers/Dockerfile.f34 -t fedora34.qit
+ podman run -it fedora34.qit /bin/bash
In the container:
-```bash
-sudo /sbin/qdrouterd --daemon
-qpid-interop-test all
-```
+
+ sudo /sbin/qdrouterd --daemon
+ qpid-interop-test all
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]