From c1a3b2b28ba523b2b0dfc8439517855a4ab37218 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Thu, 31 Mar 2022 13:14:29 +0000
Subject: [PATCH] Update docs for main
---
main/.buildinfo | 2 +-
main/CHANGELOG.html | 201 ++++++++++++++++++++++++++
main/README.html | 4 +
main/_sources/CHANGELOG.rst.txt | 49 +++++++
main/_static/doctools.js | 72 ++++++---
main/_static/documentation_options.js | 4 +-
main/_static/searchtools.js | 8 +-
main/developing.html | 4 +
main/genindex.html | 4 +
main/index.html | 13 ++
main/objects.inv | Bin 428 -> 454 bytes
main/releasing.html | 6 +
main/roles/index.html | 4 +
main/roles/keycloak.html | 4 +
main/roles/keycloak_realm.html | 4 +
main/search.html | 4 +
main/searchindex.js | 2 +-
main/testing.html | 4 +
18 files changed, 360 insertions(+), 29 deletions(-)
create mode 100644 main/CHANGELOG.html
create mode 100644 main/_sources/CHANGELOG.rst.txt
diff --git a/main/.buildinfo b/main/.buildinfo
index 91548a1..73e447e 100644
--- a/main/.buildinfo
+++ b/main/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 05f33660226ab9d325e2f665038e2558
+config: 5bcef892c25d6bc7d6693a7730be39be
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/main/CHANGELOG.html b/main/CHANGELOG.html
new file mode 100644
index 0000000..bc32525
--- /dev/null
+++ b/main/CHANGELOG.html
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+ middleware_automation.keycloak Release Notes — Keycloak Ansible Collection documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+This changelog describes changes after version 0.2.6.
+
+
+
+
+
+Make keycloak_admin_password a default with assert (was: role variable) #26<https://github.com/ansible-middleware/keycloak/pull/26>
+Simplify dependency install logic and reduce play execution time #19<https://github.com/ansible-middleware/keycloak/pull/19>
+
+
+
+
+
+
+
+
+Minor enhancements, bug and documentation fixes.
+
+
+
+
+
+
+
+
+This is the first stable release of the middleware_automation.keycloak collection.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/main/README.html b/main/README.html
index b67c62f..8df54b2 100644
--- a/main/README.html
+++ b/main/README.html
@@ -75,6 +75,10 @@
Contributor’s Guidelines
Testing
Collection Versioning Strategy
+
+General
+
diff --git a/main/_sources/CHANGELOG.rst.txt b/main/_sources/CHANGELOG.rst.txt
new file mode 100644
index 0000000..e8801b6
--- /dev/null
+++ b/main/_sources/CHANGELOG.rst.txt
@@ -0,0 +1,49 @@
+============================================
+middleware_automation.keycloak Release Notes
+============================================
+
+.. contents:: Topics
+
+This changelog describes changes after version 0.2.6.
+
+v1.0.2-devel
+============
+
+Minor Changes
+-------------
+
+- Make ``keycloak_admin_password`` a default with assert (was: role variable) `#26`
+- Simplify dependency install logic and reduce play execution time `#19`
+
+Bugfixes
+--------
+
+- Set ``keycloak_frontend_url`` default according to other defaults `#25`
+
+v1.0.1
+======
+
+Release Summary
+---------------
+
+Minor enhancements, bug and documentation fixes.
+
+
+Minor Changes
+-------------
+
+- apply latest cumulative patch of RH-SSO automatically when new parameter ``keycloak_rhsso_apply_patches`` is ``true``
+
+Bugfixes
+--------
+
+- clustered installs now perform database initialization on first node to avoid locking issues
+
+v1.0.0
+======
+
+Release Summary
+---------------
+
+This is the first stable release of the ``middleware_automation.keycloak`` collection.
+
diff --git a/main/_static/doctools.js b/main/_static/doctools.js
index e509e48..e1bfd70 100644
--- a/main/_static/doctools.js
+++ b/main/_static/doctools.js
@@ -154,9 +154,7 @@ var Documentation = {
this.fixFirefoxAnchorBug();
this.highlightSearchWords();
this.initIndexTable();
- if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) {
- this.initOnKeyListeners();
- }
+ this.initOnKeyListeners();
},
/**
@@ -269,6 +267,13 @@ var Documentation = {
window.history.replaceState({}, '', url);
},
+ /**
+ * helper function to focus on search bar
+ */
+ focusSearchBar : function() {
+ $('input[name=q]').first().focus();
+ },
+
/**
* make the url absolute
*/
@@ -291,27 +296,54 @@ var Documentation = {
},
initOnKeyListeners: function() {
+ // only install a listener if it is really needed
+ if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS &&
+ !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS)
+ return;
+
$(document).keydown(function(event) {
var activeElementType = document.activeElement.tagName;
// don't navigate when in search box, textarea, dropdown or button
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT'
- && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey
- && !event.shiftKey) {
- switch (event.keyCode) {
- case 37: // left
- var prevHref = $('link[rel="prev"]').prop('href');
- if (prevHref) {
- window.location.href = prevHref;
- return false;
- }
- break;
- case 39: // right
- var nextHref = $('link[rel="next"]').prop('href');
- if (nextHref) {
- window.location.href = nextHref;
- return false;
- }
- break;
+ && activeElementType !== 'BUTTON') {
+ if (event.altKey || event.ctrlKey || event.metaKey)
+ return;
+
+ if (!event.shiftKey) {
+ switch (event.key) {
+ case 'ArrowLeft':
+ if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS)
+ break;
+ var prevHref = $('link[rel="prev"]').prop('href');
+ if (prevHref) {
+ window.location.href = prevHref;
+ return false;
+ }
+ break;
+ case 'ArrowRight':
+ if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS)
+ break;
+ var nextHref = $('link[rel="next"]').prop('href');
+ if (nextHref) {
+ window.location.href = nextHref;
+ return false;
+ }
+ break;
+ case 'Escape':
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS)
+ break;
+ Documentation.hideSearchWords();
+ return false;
+ }
+ }
+
+ // some keyboard layouts may need Shift to get /
+ switch (event.key) {
+ case '/':
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS)
+ break;
+ Documentation.focusSearchBar();
+ return false;
}
}
});
diff --git a/main/_static/documentation_options.js b/main/_static/documentation_options.js
index 2fa8c97..724e382 100644
--- a/main/_static/documentation_options.js
+++ b/main/_static/documentation_options.js
@@ -8,5 +8,7 @@ var DOCUMENTATION_OPTIONS = {
LINK_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt',
- NAVIGATION_WITH_KEYS: false
+ NAVIGATION_WITH_KEYS: false,
+ SHOW_SEARCH_SUMMARY: true,
+ ENABLE_SEARCH_SHORTCUTS: true,
};
\ No newline at end of file
diff --git a/main/_static/searchtools.js b/main/_static/searchtools.js
index 2d77859..0a44e85 100644
--- a/main/_static/searchtools.js
+++ b/main/_static/searchtools.js
@@ -172,10 +172,6 @@ var Search = {
}
// stem the word
var word = stemmer.stemWord(tmp[i].toLowerCase());
- // prevent stemmer from cutting word smaller than two chars
- if(word.length < 3 && tmp[i].length >= 3) {
- word = tmp[i];
- }
var toAppend;
// select the correct list
if (word[0] == '-') {
@@ -276,7 +272,7 @@ var Search = {
setTimeout(function() {
displayNextItem();
}, 5);
- } else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) {
+ } else if (DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY) {
$.ajax({url: requestUrl,
dataType: "text",
complete: function(jqxhr, textstatus) {
@@ -293,7 +289,7 @@ var Search = {
}, 5);
}});
} else {
- // no source available, just display title
+ // just display title
Search.output.append(listItem);
setTimeout(function() {
displayNextItem();
diff --git a/main/developing.html b/main/developing.html
index 6425ced..daacdf1 100644
--- a/main/developing.html
+++ b/main/developing.html
@@ -48,6 +48,10 @@
Contributor’s Guidelines
Testing
Collection Versioning Strategy
+
+General
+
diff --git a/main/genindex.html b/main/genindex.html
index df97777..59ecc47 100644
--- a/main/genindex.html
+++ b/main/genindex.html
@@ -45,6 +45,10 @@
Contributor’s Guidelines
Testing
Collection Versioning Strategy
+
+General
+
diff --git a/main/index.html b/main/index.html
index 98efc36..6c82b8c 100644
--- a/main/index.html
+++ b/main/index.html
@@ -47,6 +47,10 @@
Contributor’s Guidelines
Testing
Collection Versioning Strategy
+
+General
+
@@ -114,6 +118,15 @@
diff --git a/main/objects.inv b/main/objects.inv
index 3e3df775edc239028ea88c311fe93837b64d5f7d..42dd759804bda08fd2bb3e0e1f34b46d86cd24cd 100644
GIT binary patch
delta 325
zcmV-L0lNOI1I7c8ihoi;PQx$|y!#dYK#RC?t3p)}v{WsEW97!H)au$>*$$8!-{5<^
z1Si|12?h0JduC^LJ$80CS!zR{G+(Y4H4aJ-8ar8Qb3yekhIRYtNZ8gk=3
zR5_B`%M~D~0CGVQf>=!_xASS=jS;q*xL~#jG9yIDYacnf;D0YPyaCd|xT5cRLfJVZ
z7roggz5o9F3UXE&4QN~%sQ_o3hL1*$Y71B!v?$B(>#aDI9lP`@UIBBmAS20#_UgTB
zBtdDx#b$V6N&nIEP>ouGJ?Es$lm<8Nu@_{^D(+Itf!a5(@GGPaY%}V{eE}cRTGy|m
zR}qRzctQwQXFeJ9V76J&scXY^U*SyEGA!(#bVzPID762JnIBp(CITp*?}l+P#^r0~
Xm#P4ferNoZ&k^FLz{cbBm)OVV4ncT{>Lsn(9DAz8S3_)%P5%Orr$wXSCHNv~{
za8y+!t6F?@f;vZ1C!ygDkj};xbJq!F=MA~&P1flB_vcrT4}X=>fW|=(1vuk0d~|YD
z8DMKLpe%oEKgBfGr_3f^0duk-BgvR<-5O-fU0#|=+)tr{2>
xj!(KIj~*1-za+)XFD)1o0hG_nWnGN%_<{MoDnLXC@uHs|;@M}uh#w1}|L1q`l9B)b
diff --git a/main/releasing.html b/main/releasing.html
index 295b92e..620acce 100644
--- a/main/releasing.html
+++ b/main/releasing.html
@@ -19,6 +19,7 @@
+
@@ -57,6 +58,10 @@
Release automation
+
+General
+
@@ -139,6 +144,7 @@ Given a version number MAJOR.MINOR.PATCH, the following is incremented: