Skip to content

Commit

Permalink
[CI] Publish Documentation for f76a5f5 - f76a5f5 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
blues-man committed Aug 30, 2021
1 parent 1f784b2 commit e990714
Show file tree
Hide file tree
Showing 94 changed files with 7,997 additions and 557 deletions.
90 changes: 85 additions & 5 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,101 @@
</head>
<body class="status-404">
<header class="header">
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function () {
const urlParams = new URLSearchParams(window.location.search);
const clusterName = urlParams.get('CLUSTER_SUBDOMAIN');
const projectName = urlParams.get('PROJECT');
if (clusterName) {
showCluster( clusterName );
}
else {
showForm();
}

if (projectName) {
showProject( projectName );
} else {
showProjectForm();
}
} );

function showCluster( clusterName ) {
document.getElementById('navbar-form-empty').style.display = "none";
document.getElementById('navbar-form-filled').style.display = "flex";
document.getElementById('cluster_subdomain').textContent = clusterName;
}

function showForm( clusterName ) {
document.getElementById('navbar-form-empty').style.display = "flex";
document.getElementById('navbar-form-filled').style.display = "none";
}

function gowithcluster() {
elInput = document.getElementById('clusterfield');
window.location.search = ('&CLUSTER_SUBDOMAIN=' + elInput.value);
}

function showProject( projectName ) {
document.getElementById('navbar-form-project-empty').style.display = "none";
document.getElementById('navbar-form-project-filled').style.display = "flex";
document.getElementById('project').textContent = projectName;
}

function showProjectForm( projectName ) {
document.getElementById('navbar-form-project-empty').style.display = "flex";
document.getElementById('navbar-form-project-filled').style.display = "none";
}

function gowithproject() {
elInput = document.getElementById('projectfield');
window.location.search = ('&PROJECT=' + elInput.value);
}

</script>
<nav class="navbar">
<div class="navbar-brand">
<a class="navbar-item" href="https://developers.redhat.com" target="_blank"><img
src="/openshift-starter-guides/_/img/header_logo.png" height="40px" alt="Red Hat Developer Program"></a>
<a class="navbar-item" style="font-size: 24px; color: white" href="http://redhat-scholars.github.io/openshift-starter-guides">OpenShift Starter Guides</a>
<a class="navbar-item" href="http://redhat-scholars.github.io/openshift-starter-guides">OpenShift Starter Guides</a>
<button class="navbar-burger" data-target="topbar-nav">
<span></span>
<span></span>
<span></span>
</button>
</div>
<div id="topbar-nav" class="navbar-menu">
<div id="topbar-nav" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item" id="navbar-form-empty">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i style="color: orange;"
class="fa fa-exclamation-triangle" aria-hidden="true"></i></span>

<form action="javascript:void(0);" onsubmit="gowithcluster();">
<input size="40" id="clusterfield" type="text" placeholder="Enter Cluster Subdomain">
</form>
</div>

<div class="navbar-item" id="navbar-form-filled" style="display: none;">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">|</span>
<span class="navbar-text" id="cluster_subdomain"></span>
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i onclick="recycle();" style="color: green;" class="fa fa-recycle" aria-hidden="true"></i></span>
</div>

<div class="navbar-item" id="navbar-form-project-empty">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i style="color: orange;"
class="fa fa-exclamation-triangle" aria-hidden="true"></i></span>

<form action="javascript:void(0);" onsubmit="gowithproject();">
<input size="40" id="projectfield" type="text" placeholder="Enter Project Name">
</form>
</div>

<div class="navbar-item" id="navbar-form-project-filled" style="display: none;">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">|</span>
<span class="navbar-text" id="project"></span>
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i onclick="recycle();" style="color: green;" class="fa fa-recycle" aria-hidden="true"></i></span>
</div>

<a class="navbar-item" href="https://developers.redhat.com/ebooks/" target="_blank">Books</a>
<a class="navbar-item" href="https://developers.redhat.com/cheatsheets/" target="_blank">Cheat Sheets</a>
<a class="navbar-item" href="https://developers.redhat.com/events/" target="_blank">Upcoming Events</a>
Expand All @@ -36,12 +118,10 @@
<a class="navbar-item" href="https://redhat-developer-demos.github.io/knative-tutorial/" target="_blank">Knative</a>
<a class="navbar-item" href="https://redhat-scholars.github.io/tekton-tutorial/" target="_blank">Tekton</a>
</div>
</div>
</div>
</div>
</nav>
</header>
<div class="body">
</header><div class="body">
<div class="nav-container">
<aside class="nav">
<div class="panels">
Expand Down
90 changes: 85 additions & 5 deletions rhs-openshift-starter-guides/4.6/common-cli.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,101 @@
</head>
<body class="article">
<header class="header">
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function () {
const urlParams = new URLSearchParams(window.location.search);
const clusterName = urlParams.get('CLUSTER_SUBDOMAIN');
const projectName = urlParams.get('PROJECT');
if (clusterName) {
showCluster( clusterName );
}
else {
showForm();
}

if (projectName) {
showProject( projectName );
} else {
showProjectForm();
}
} );

function showCluster( clusterName ) {
document.getElementById('navbar-form-empty').style.display = "none";
document.getElementById('navbar-form-filled').style.display = "flex";
document.getElementById('cluster_subdomain').textContent = clusterName;
}

function showForm( clusterName ) {
document.getElementById('navbar-form-empty').style.display = "flex";
document.getElementById('navbar-form-filled').style.display = "none";
}

function gowithcluster() {
elInput = document.getElementById('clusterfield');
window.location.search = ('&CLUSTER_SUBDOMAIN=' + elInput.value);
}

function showProject( projectName ) {
document.getElementById('navbar-form-project-empty').style.display = "none";
document.getElementById('navbar-form-project-filled').style.display = "flex";
document.getElementById('project').textContent = projectName;
}

function showProjectForm( projectName ) {
document.getElementById('navbar-form-project-empty').style.display = "flex";
document.getElementById('navbar-form-project-filled').style.display = "none";
}

function gowithproject() {
elInput = document.getElementById('projectfield');
window.location.search = ('&PROJECT=' + elInput.value);
}

</script>
<nav class="navbar">
<div class="navbar-brand">
<a class="navbar-item" href="https://developers.redhat.com" target="_blank"><img
src="../../_/img/header_logo.png" height="40px" alt="Red Hat Developer Program"></a>
<a class="navbar-item" style="font-size: 24px; color: white" href="http://redhat-scholars.github.io/openshift-starter-guides">OpenShift Starter Guides</a>
<a class="navbar-item" href="http://redhat-scholars.github.io/openshift-starter-guides">OpenShift Starter Guides</a>
<button class="navbar-burger" data-target="topbar-nav">
<span></span>
<span></span>
<span></span>
</button>
</div>
<div id="topbar-nav" class="navbar-menu">
<div id="topbar-nav" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item" id="navbar-form-empty">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i style="color: orange;"
class="fa fa-exclamation-triangle" aria-hidden="true"></i></span>

<form action="javascript:void(0);" onsubmit="gowithcluster();">
<input size="40" id="clusterfield" type="text" placeholder="Enter Cluster Subdomain">
</form>
</div>

<div class="navbar-item" id="navbar-form-filled" style="display: none;">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">|</span>
<span class="navbar-text" id="cluster_subdomain"></span>
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i onclick="recycle();" style="color: green;" class="fa fa-recycle" aria-hidden="true"></i></span>
</div>

<div class="navbar-item" id="navbar-form-project-empty">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i style="color: orange;"
class="fa fa-exclamation-triangle" aria-hidden="true"></i></span>

<form action="javascript:void(0);" onsubmit="gowithproject();">
<input size="40" id="projectfield" type="text" placeholder="Enter Project Name">
</form>
</div>

<div class="navbar-item" id="navbar-form-project-filled" style="display: none;">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">|</span>
<span class="navbar-text" id="project"></span>
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i onclick="recycle();" style="color: green;" class="fa fa-recycle" aria-hidden="true"></i></span>
</div>

<a class="navbar-item" href="https://developers.redhat.com/ebooks/" target="_blank">Books</a>
<a class="navbar-item" href="https://developers.redhat.com/cheatsheets/" target="_blank">Cheat Sheets</a>
<a class="navbar-item" href="https://developers.redhat.com/events/" target="_blank">Upcoming Events</a>
Expand All @@ -37,12 +119,10 @@
<a class="navbar-item" href="https://redhat-developer-demos.github.io/knative-tutorial/" target="_blank">Knative</a>
<a class="navbar-item" href="https://redhat-scholars.github.io/tekton-tutorial/" target="_blank">Tekton</a>
</div>
</div>
</div>
</div>
</nav>
</header>
<div class="body">
</header><div class="body">
<div class="nav-container" data-component="rhs-openshift-starter-guides" data-version="4.6">
<aside class="nav">
<div class="panels">
Expand Down
90 changes: 85 additions & 5 deletions rhs-openshift-starter-guides/4.6/common-environment.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,101 @@
</head>
<body class="article">
<header class="header">
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function () {
const urlParams = new URLSearchParams(window.location.search);
const clusterName = urlParams.get('CLUSTER_SUBDOMAIN');
const projectName = urlParams.get('PROJECT');
if (clusterName) {
showCluster( clusterName );
}
else {
showForm();
}

if (projectName) {
showProject( projectName );
} else {
showProjectForm();
}
} );

function showCluster( clusterName ) {
document.getElementById('navbar-form-empty').style.display = "none";
document.getElementById('navbar-form-filled').style.display = "flex";
document.getElementById('cluster_subdomain').textContent = clusterName;
}

function showForm( clusterName ) {
document.getElementById('navbar-form-empty').style.display = "flex";
document.getElementById('navbar-form-filled').style.display = "none";
}

function gowithcluster() {
elInput = document.getElementById('clusterfield');
window.location.search = ('&CLUSTER_SUBDOMAIN=' + elInput.value);
}

function showProject( projectName ) {
document.getElementById('navbar-form-project-empty').style.display = "none";
document.getElementById('navbar-form-project-filled').style.display = "flex";
document.getElementById('project').textContent = projectName;
}

function showProjectForm( projectName ) {
document.getElementById('navbar-form-project-empty').style.display = "flex";
document.getElementById('navbar-form-project-filled').style.display = "none";
}

function gowithproject() {
elInput = document.getElementById('projectfield');
window.location.search = ('&PROJECT=' + elInput.value);
}

</script>
<nav class="navbar">
<div class="navbar-brand">
<a class="navbar-item" href="https://developers.redhat.com" target="_blank"><img
src="../../_/img/header_logo.png" height="40px" alt="Red Hat Developer Program"></a>
<a class="navbar-item" style="font-size: 24px; color: white" href="http://redhat-scholars.github.io/openshift-starter-guides">OpenShift Starter Guides</a>
<a class="navbar-item" href="http://redhat-scholars.github.io/openshift-starter-guides">OpenShift Starter Guides</a>
<button class="navbar-burger" data-target="topbar-nav">
<span></span>
<span></span>
<span></span>
</button>
</div>
<div id="topbar-nav" class="navbar-menu">
<div id="topbar-nav" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item" id="navbar-form-empty">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i style="color: orange;"
class="fa fa-exclamation-triangle" aria-hidden="true"></i></span>

<form action="javascript:void(0);" onsubmit="gowithcluster();">
<input size="40" id="clusterfield" type="text" placeholder="Enter Cluster Subdomain">
</form>
</div>

<div class="navbar-item" id="navbar-form-filled" style="display: none;">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">|</span>
<span class="navbar-text" id="cluster_subdomain"></span>
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i onclick="recycle();" style="color: green;" class="fa fa-recycle" aria-hidden="true"></i></span>
</div>

<div class="navbar-item" id="navbar-form-project-empty">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i style="color: orange;"
class="fa fa-exclamation-triangle" aria-hidden="true"></i></span>

<form action="javascript:void(0);" onsubmit="gowithproject();">
<input size="40" id="projectfield" type="text" placeholder="Enter Project Name">
</form>
</div>

<div class="navbar-item" id="navbar-form-project-filled" style="display: none;">
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">|</span>
<span class="navbar-text" id="project"></span>
<span class="navbar-text" style="margin-left: 1rem; margin-right: 1rem;">&nbsp;<i onclick="recycle();" style="color: green;" class="fa fa-recycle" aria-hidden="true"></i></span>
</div>

<a class="navbar-item" href="https://developers.redhat.com/ebooks/" target="_blank">Books</a>
<a class="navbar-item" href="https://developers.redhat.com/cheatsheets/" target="_blank">Cheat Sheets</a>
<a class="navbar-item" href="https://developers.redhat.com/events/" target="_blank">Upcoming Events</a>
Expand All @@ -39,12 +121,10 @@
<a class="navbar-item" href="https://redhat-developer-demos.github.io/knative-tutorial/" target="_blank">Knative</a>
<a class="navbar-item" href="https://redhat-scholars.github.io/tekton-tutorial/" target="_blank">Tekton</a>
</div>
</div>
</div>
</div>
</nav>
</header>
<div class="body">
</header><div class="body">
<div class="nav-container" data-component="rhs-openshift-starter-guides" data-version="4.6">
<aside class="nav">
<div class="panels">
Expand Down
Loading

0 comments on commit e990714

Please sign in to comment.