-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Jetty adapter downloads (#441)
Closes #440 Signed-off-by: stianst <[email protected]>
- Loading branch information
Showing
2 changed files
with
169 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
<#macro download category label file tar=true zip=true> | ||
<#if zip> | ||
<span class="me-4"> | ||
<a onclick="dl('${category}', '${label}');" href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.zip" target="_blank"> | ||
<i class="fa fa-download" aria-hidden="true"></i> | ||
ZIP | ||
</a> | ||
(<a href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.zip.sha1" target="_blank">sha1</a>) | ||
</span> | ||
</#if> | ||
<#if tar> | ||
<span> | ||
<a onclick="dl('${category}', '${label}');" href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.tar.gz" target="_blank"> | ||
<i class="fa fa-download" aria-hidden="true"></i> | ||
TAR.GZ | ||
</a> | ||
(<a href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.tar.gz.sha1" target="_blank">sha1</a>) | ||
</span> | ||
</#if> | ||
</#macro> | ||
|
||
<h2 class="mt-4">Server</h2> | ||
|
||
<table class="table table-bordered table-striped"> | ||
<tbody> | ||
<tr> | ||
<td>Keycloak</td> | ||
<td>Distribution powered by Quarkus</td> | ||
<td> | ||
<@download category="server" label="standalone" file="keycloak-${version.version}" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Container image</td> | ||
<td>For Docker, Podman, Kubernetes and OpenShift</td> | ||
<td> | ||
<a href="https://quay.io/repository/keycloak/keycloak" target="_blank"> | ||
<i class="fa fa-link"></i> | ||
Quay | ||
</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Operator</td> | ||
<td>For Kubernetes and OpenShift</td> | ||
<td> | ||
<a href="https://operatorhub.io/operator/keycloak-operator" target="_blank"> | ||
<i class="fa fa-link"></i> | ||
OperatorHub | ||
</a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<h2 class="mt-4">Quickstarts</h2> | ||
<table class="table table-bordered table-striped"> | ||
<tbody> | ||
|
||
<tr> | ||
<td>Quickstarts distribution</td> | ||
<td> | ||
<span class="me-4"> | ||
<#if quickstartsTag??> | ||
<#assign quickstartsLink="https://github.com/keycloak/keycloak-quickstarts/tree/${version.version}"/> | ||
<#else> | ||
<#assign quickstartsLink="https://github.com/keycloak/keycloak-quickstarts"/> | ||
</#if> | ||
|
||
<a onclick="dl('examples', 'quickstarts');" href="${quickstartsLink}" target="_blank"> | ||
<i class="fab fa-github" aria-hidden="true"></i> | ||
GitHub | ||
</a> | ||
</span> | ||
<span> | ||
<a onclick="dl('examples', 'quickstarts');" href="https://github.com/keycloak/keycloak-quickstarts/archive/latest.zip" target="_blank"> | ||
<i class="fa fa-download" aria-hidden="true"></i> | ||
ZIP | ||
</a> | ||
</span> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
|
||
<h2 class="mt-4">Client Adapters</h2> | ||
|
||
<div> | ||
<ul class="nav nav-tabs my-3" role="tablist"> | ||
<li role="presentation" class="nav-item"><a class="nav-link active" href="#oidc" aria-controls="oidc" role="tab" data-bs-toggle="tab">OpenID Connect</a></li> | ||
<li role="presentation" class="nav-item"><a class="nav-link" href="#saml" aria-controls="saml" role="tab" data-bs-toggle="tab">SAML 2.0</a></li> | ||
</ul> | ||
|
||
<div class="tab-content"> | ||
<div role="tabpanel" class="tab-pane active margin-top" id="oidc"> | ||
<table class="table table-bordered table-striped"> | ||
<tr> | ||
<td>JavaScript</td> | ||
<td> | ||
<table class="kc-table-downloads-inner"> | ||
<tr> | ||
<td></td> | ||
<td> | ||
<span class="me-4"> | ||
<a href="https://www.npmjs.com/package/keycloak-js/v/${version.version}" target="_blank"> | ||
<i class="fa fa-link"></i> NPM | ||
</a> | ||
</span> | ||
<@download category="adapter" label="js" file="keycloak-oidc-js-adapter-${version.version}" tar=true /> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Node.js <b>[DEPRECATED]</b></td> | ||
<td> | ||
<table class="kc-table-downloads-inner"> | ||
<tr> | ||
<td></td> | ||
<td> | ||
<a href="https://www.npmjs.com/package/keycloak-connect/v/${version.version}" target="_blank"> | ||
<i class="fa fa-link"></i> NPM | ||
</a> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Tomcat <b>[DEPRECATED]</b></td> | ||
<td> | ||
<table class="kc-table-downloads-inner"> | ||
<tr> | ||
<td>8, 9</td> | ||
<td> | ||
<@download category="adapter" label="tomcat" file="keycloak-oidc-tomcat-adapter-${version.version}" tar=true /> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
|
||
<div role="tabpanel" class="tab-pane margin-top" id="saml"> | ||
<table class="table table-bordered table-striped"> | ||
<tbody> | ||
<tr> | ||
<td>Tomcat <b>[DEPRECATED]</b></td> | ||
<td> | ||
<table class="kc-table-downloads-inner"> | ||
<tr> | ||
<td>8, 9</td> | ||
<td> | ||
<@download category="adapter-saml" label="tomcat" file="keycloak-saml-tomcat-adapter-${version.version}" tar=true /> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters