Repository: qpid-site Updated Branches: refs/heads/asf-site a5b385d86 -> 6b68eea2e
DISPATCH-363 - Additional fix Removed Annotation Section references and added some examples Project: http://git-wip-us.apache.org/repos/asf/qpid-site/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-site/commit/6b68eea2 Tree: http://git-wip-us.apache.org/repos/asf/qpid-site/tree/6b68eea2 Diff: http://git-wip-us.apache.org/repos/asf/qpid-site/diff/6b68eea2 Branch: refs/heads/asf-site Commit: 6b68eea2e14db215537449355f7d633d05777e2f Parents: a5b385d Author: Ganesh Murthy <[email protected]> Authored: Wed Jun 15 16:12:33 2016 -0400 Committer: Ganesh Murthy <[email protected]> Committed: Wed Jun 15 16:12:33 2016 -0400 ---------------------------------------------------------------------- .../releases/qpid-dispatch-master/index.html | 2 +- .../man/qdrouterd.conf.html | 35 ++++++++++++++++---- input/releases/qpid-dispatch-master/index.md | 2 +- .../man/qdrouterd.conf.html.in | 35 ++++++++++++++++---- 4 files changed, 58 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-site/blob/6b68eea2/content/releases/qpid-dispatch-master/index.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-master/index.html b/content/releases/qpid-dispatch-master/index.html index 7cb668e..c720eec 100644 --- a/content/releases/qpid-dispatch-master/index.html +++ b/content/releases/qpid-dispatch-master/index.html @@ -124,7 +124,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/> incomplete. For a smoother experience, see the <a href="/releases/qpid-dispatch-0.6.0/index.html">current stable release</a>.</p> -<p>This content was generated at 13:37 on Wednesday, 15 June 2016.</p> +<p>This content was generated at 16:04 on Wednesday, 15 June 2016.</p> </div> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/6b68eea2/content/releases/qpid-dispatch-master/man/qdrouterd.conf.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-master/man/qdrouterd.conf.html b/content/releases/qpid-dispatch-master/man/qdrouterd.conf.html index 500b484..bce75f6 100644 --- a/content/releases/qpid-dispatch-master/man/qdrouterd.conf.html +++ b/content/releases/qpid-dispatch-master/man/qdrouterd.conf.html @@ -132,13 +132,34 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/> } </pre></div> </div> -<p>There are two types of sections:</p> -<p><em>Configuration sections</em> correspond to configuration entities. They can be queried and -configured via management tools as well as via the configuration file.</p> -<p><em>Annotation sections</em> define a group of attribute values that can be included in -one or more entity sections.</p> -<p>For example you can define an “sslProfile” annotation section with SSL credentials -that can be included in multiple “listener” entities. Here’s an example, note +<p>For example you can define a router using the “router” section</p> +<div class="highlight-python"><div class="highlight"><pre><span></span>router { + mode: standalone + id: Router.A + ... +} +</pre></div> +</div> +<p>or define a listener using the “listener” section</p> +<div class="highlight-python"><div class="highlight"><pre><span></span>listener { + host: 0.0.0.0 + port: 20102 + saslMechanisms: ANONYMOUS + ... +} +</pre></div> +</div> +<p>or define a connector using the “connector” section</p> +<div class="highlight-python"><div class="highlight"><pre><span></span>connector { + role: inter-router + host: 0.0.0.0 + port: 20003 + saslMechanisms: ANONYMOUS + ... +} +</pre></div> +</div> +<p>“sslProfile” section with SSL credentials can be included in multiple “listener” or “connector” entities. Here’s an example, note how the ‘sslProfile’ attribute of ‘listener’ sections references the ‘name’ attribute of ‘sslProfile’ sections.</p> <div class="highlight-python"><div class="highlight"><pre><span></span>sslProfile { http://git-wip-us.apache.org/repos/asf/qpid-site/blob/6b68eea2/input/releases/qpid-dispatch-master/index.md ---------------------------------------------------------------------- diff --git a/input/releases/qpid-dispatch-master/index.md b/input/releases/qpid-dispatch-master/index.md index 233f2e7..f8109b2 100644 --- a/input/releases/qpid-dispatch-master/index.md +++ b/input/releases/qpid-dispatch-master/index.md @@ -27,7 +27,7 @@ Code and documentation found here may be unstable, incorrect, or incomplete. For a smoother experience, see the [current stable release]({{current_dispatch_release_url}}/index.html). -This content was generated at 13:37 on Wednesday, 15 June 2016. +This content was generated at 16:04 on Wednesday, 15 June 2016. </div> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/6b68eea2/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in ---------------------------------------------------------------------- diff --git a/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in b/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in index 9632d1a..3156825 100644 --- a/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in +++ b/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in @@ -16,13 +16,34 @@ } </pre></div> </div> -<p>There are two types of sections:</p> -<p><em>Configuration sections</em> correspond to configuration entities. They can be queried and -configured via management tools as well as via the configuration file.</p> -<p><em>Annotation sections</em> define a group of attribute values that can be included in -one or more entity sections.</p> -<p>For example you can define an “sslProfile” annotation section with SSL credentials -that can be included in multiple “listener” entities. Here’s an example, note +<p>For example you can define a router using the “router” section</p> +<div class="highlight-python"><div class="highlight"><pre><span></span>router { + mode: standalone + id: Router.A + ... +} +</pre></div> +</div> +<p>or define a listener using the “listener” section</p> +<div class="highlight-python"><div class="highlight"><pre><span></span>listener { + host: 0.0.0.0 + port: 20102 + saslMechanisms: ANONYMOUS + ... +} +</pre></div> +</div> +<p>or define a connector using the “connector” section</p> +<div class="highlight-python"><div class="highlight"><pre><span></span>connector { + role: inter-router + host: 0.0.0.0 + port: 20003 + saslMechanisms: ANONYMOUS + ... +} +</pre></div> +</div> +<p>“sslProfile” section with SSL credentials can be included in multiple “listener” or “connector” entities. Here’s an example, note how the ‘sslProfile’ attribute of ‘listener’ sections references the ‘name’ attribute of ‘sslProfile’ sections.</p> <div class="highlight-python"><div class="highlight"><pre><span></span>sslProfile { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
