From 1e75f3ab9031a2354b3903bfe2a2b0a8cb476e9c Mon Sep 17 00:00:00 2001 From: Jenkins ConfDroid Date: Wed, 29 Dec 2021 14:54:38 +0100 Subject: [PATCH] recommit for updates in build 121 --- doc/_index.html | 11 ++++---- doc/css/style.css | 5 ++-- doc/file.README.html | 14 ++++++---- doc/frames.html | 4 +-- doc/index.html | 14 ++++++---- doc/js/app.js | 28 +++++++++++++++++-- doc/puppet_class_list.html | 4 +-- doc/puppet_classes/cd_haproxy.html | 9 +++--- ...d_haproxy_3A_3Afirewall_3A_3Aiptables.html | 9 +++--- .../cd_haproxy_3A_3Amain_3A_3Aconfig.html | 9 +++--- .../cd_haproxy_3A_3Amain_3A_3Adirs.html | 9 +++--- .../cd_haproxy_3A_3Amain_3A_3Afiles.html | 9 +++--- .../cd_haproxy_3A_3Amain_3A_3Ainstall.html | 9 +++--- .../cd_haproxy_3A_3Amain_3A_3Auser.html | 9 +++--- .../cd_haproxy_3A_3Aparams.html | 9 +++--- ...d_haproxy_3A_3Aserver_3A_3Aproxy_test.html | 9 +++--- .../cd_haproxy_3A_3Aserver_3A_3Aservice.html | 9 +++--- doc/puppet_defined_type_list.html | 4 +-- .../cd_haproxy_3A_3Aserver_3A_3Aproxy.html | 9 +++--- doc/top-level-namespace.html | 8 +++--- 20 files changed, 115 insertions(+), 76 deletions(-) diff --git a/doc/_index.html b/doc/_index.html index d590fc2..abe3379 100644 --- a/doc/_index.html +++ b/doc/_index.html @@ -4,15 +4,15 @@ - Documentation by YARD 0.9.16 + Documentation by YARD 0.9.26 - + - + - @@ -52,7 +52,7 @@
-

Documentation by YARD 0.9.16

+

Documentation by YARD 0.9.26

Alphabetic Index

@@ -126,6 +126,7 @@ +

Defined Type Listing A-Z

diff --git a/doc/css/style.css b/doc/css/style.css index 0bf7e2c..eb0dbc8 100644 --- a/doc/css/style.css +++ b/doc/css/style.css @@ -52,6 +52,7 @@ body { background: #fff; padding: 1.2em; padding-top: 0.2em; + box-sizing: border-box; } @media (max-width: 920px) { @@ -422,8 +423,8 @@ li.r2 { background: #fafafa; } #toc ol { padding-left: 1.8em; } #toc li { font-size: 1.1em; line-height: 1.7em; } #toc > ol > li { font-size: 1.1em; font-weight: bold; } -#toc ol > ol { font-size: 0.9em; } -#toc ol ol > ol { padding-left: 2.3em; } +#toc ol > li > ol { font-size: 0.9em; } +#toc ol ol > li > ol { padding-left: 2.3em; } #toc ol + li { margin-top: 0.3em; } #toc.hidden { padding: 10px; background: #fefefe; box-shadow: none; } #toc.hidden:hover { background: #fafafa; } diff --git a/doc/file.README.html b/doc/file.README.html index 23d4c92..87ce737 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -6,15 +6,15 @@ File: README - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -138,7 +138,8 @@ managing file fragments

node 'example.example.net' {
   include cd_haproxy
-}
+} +
  • through Foreman:

@@ -170,7 +171,8 @@ addresses the define, like so:

acl_rule => ['too_fast fe_sess_rate ge 10', 'network_allowed src 0.0.0.0/0'], backend_name => 'test01-backend', - } + } +

This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes diff --git a/doc/frames.html b/doc/frames.html index b57c778..1310783 100644 --- a/doc/frames.html +++ b/doc/frames.html @@ -2,9 +2,9 @@ - Documentation by YARD 0.9.16 + Documentation by YARD 0.9.26 - @@ -138,7 +138,8 @@ managing file fragments

node 'example.example.net' {
   include cd_haproxy
-}
+} +
  • through Foreman:

@@ -170,7 +171,8 @@ addresses the define, like so:

acl_rule => ['too_fast fe_sess_rate ge 10', 'network_allowed src 0.0.0.0/0'], backend_name => 'test01-backend', - } + } +

This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes diff --git a/doc/js/app.js b/doc/js/app.js index fecf69d..8d067fe 100644 --- a/doc/js/app.js +++ b/doc/js/app.js @@ -171,6 +171,7 @@ function generateTOC() { var counter = 0; var tags = ['h2', 'h3', 'h4', 'h5', 'h6']; var i; + var curli; if ($('#filecontents h1').length > 1) tags.unshift('h1'); for (i = 0; i < tags.length; i++) { tags[i] = '#filecontents ' + tags[i]; } var lastTag = parseInt(tags[0][1], 10); @@ -190,15 +191,25 @@ function generateTOC() { } if (thisTag > lastTag) { for (i = 0; i < thisTag - lastTag; i++) { - var tmp = $('

    '); toc.append(tmp); toc = tmp; + if ( typeof(curli) == "undefined" ) { + curli = $('
  1. '); + toc.append(curli); + } + toc = $('
      '); + curli.append(toc); + curli = undefined; } } if (thisTag < lastTag) { - for (i = 0; i < lastTag - thisTag; i++) toc = toc.parent(); + for (i = 0; i < lastTag - thisTag; i++) { + toc = toc.parent(); + toc = toc.parent(); + } } var title = $(this).attr('toc-title'); if (typeof(title) == "undefined") title = $(this).text(); - toc.append('
    1. ' + title + '
    2. '); + curli =$('
    3. ' + title + '
    4. '); + toc.append(curli); lastTag = thisTag; }); if (!show) return; @@ -275,6 +286,16 @@ function mainFocus() { setTimeout(function() { $('#main').focus(); }, 10); } +function navigationChange() { + // This works around the broken anchor navigation with the YARD template. + window.onpopstate = function() { + var hash = window.location.hash; + if (hash !== '' && $(hash)[0]) { + $(hash)[0].scrollIntoView(); + } + }; +} + $(document).ready(function() { navResizer(); navExpander(); @@ -287,6 +308,7 @@ $(document).ready(function() { constantSummaryToggle(); generateTOC(); mainFocus(); + navigationChange(); }); })(); diff --git a/doc/puppet_class_list.html b/doc/puppet_class_list.html index 9016561..4b052a9 100644 --- a/doc/puppet_class_list.html +++ b/doc/puppet_class_list.html @@ -4,9 +4,9 @@ - + - + diff --git a/doc/puppet_classes/cd_haproxy.html b/doc/puppet_classes/cd_haproxy.html index 20980dd..0ba7312 100644 --- a/doc/puppet_classes/cd_haproxy.html +++ b/doc/puppet_classes/cd_haproxy.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -104,6 +104,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Afirewall_3A_3Aiptables.html b/doc/puppet_classes/cd_haproxy_3A_3Afirewall_3A_3Aiptables.html index a6f2326..42d5cbc 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Afirewall_3A_3Aiptables.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Afirewall_3A_3Aiptables.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::firewall::iptables - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -109,6 +109,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Aconfig.html b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Aconfig.html index 23609df..395a1ce 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Aconfig.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Aconfig.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::main::config - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -110,6 +110,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Adirs.html b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Adirs.html index 94fe58b..4180a87 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Adirs.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Adirs.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::main::dirs - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -109,6 +109,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Afiles.html b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Afiles.html index 7de5c7d..8ac6ac9 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Afiles.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Afiles.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::main::files - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -109,6 +109,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Ainstall.html b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Ainstall.html index bda5caa..c20c5e6 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Ainstall.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Ainstall.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::main::install - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -110,6 +110,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Auser.html b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Auser.html index d1f0428..ae7ff93 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Auser.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Amain_3A_3Auser.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::main::user - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -113,6 +113,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Aparams.html b/doc/puppet_classes/cd_haproxy_3A_3Aparams.html index 5ed033c..f639edd 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Aparams.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Aparams.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::params - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -734,6 +734,7 @@ succeed.

      +

      See Also:

        diff --git a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html index da9afe2..a796569 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::server::proxy_test - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -113,6 +113,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

        +
      diff --git a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aservice.html b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aservice.html index cf281a5..3b7bedc 100644 --- a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aservice.html +++ b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aservice.html @@ -6,15 +6,15 @@ Puppet Class: cd_haproxy::server::service - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -109,6 +109,7 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

      +
      diff --git a/doc/puppet_defined_type_list.html b/doc/puppet_defined_type_list.html index b481508..123fe43 100644 --- a/doc/puppet_defined_type_list.html +++ b/doc/puppet_defined_type_list.html @@ -4,9 +4,9 @@ - + - + diff --git a/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html b/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html index 7e2353c..ed46e18 100644 --- a/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html +++ b/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html @@ -6,15 +6,15 @@ Defined Type: cd_haproxy::server::proxy - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + - @@ -328,6 +328,7 @@ instance configuration.

      +
      diff --git a/doc/top-level-namespace.html b/doc/top-level-namespace.html index ffe07ca..be302bd 100644 --- a/doc/top-level-namespace.html +++ b/doc/top-level-namespace.html @@ -6,15 +6,15 @@ Top Level Namespace - — Documentation by YARD 0.9.16 + — Documentation by YARD 0.9.26 - + - + -