Skip to content

Commit d749e66

Browse files
authored
Remove Tomcat adapter from OIDC and SAML downloads. Remove SAML downloads section entirely (#463)
closes keycloak/keycloak#28776 Signed-off-by: mposolda <[email protected]>
1 parent c726057 commit d749e66

File tree

2 files changed

+133
-1
lines changed

2 files changed

+133
-1
lines changed

templates/downloads-24.ftl

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<#macro download category label file tar=true zip=true>
2+
<#if zip>
3+
<span class="me-4">
4+
<a onclick="dl('${category}', '${label}');" href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.zip" target="_blank">
5+
<i class="fa fa-download" aria-hidden="true"></i>
6+
ZIP
7+
</a>
8+
(<a href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.zip.sha1" target="_blank">sha1</a>)
9+
</span>
10+
</#if>
11+
<#if tar>
12+
<span>
13+
<a onclick="dl('${category}', '${label}');" href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.tar.gz" target="_blank">
14+
<i class="fa fa-download" aria-hidden="true"></i>
15+
TAR.GZ
16+
</a>
17+
(<a href="https://github.com/keycloak/keycloak/releases/download/${version.version}/${file}.tar.gz.sha1" target="_blank">sha1</a>)
18+
</span>
19+
</#if>
20+
</#macro>
21+
22+
<h2 class="mt-4">Server</h2>
23+
24+
<table class="table table-bordered table-striped">
25+
<tbody>
26+
<tr>
27+
<td>Keycloak</td>
28+
<td>Distribution powered by Quarkus</td>
29+
<td>
30+
<@download category="server" label="standalone" file="keycloak-${version.version}" />
31+
</td>
32+
</tr>
33+
<tr>
34+
<td>Container image</td>
35+
<td>For Docker, Podman, Kubernetes and OpenShift</td>
36+
<td>
37+
<a href="https://quay.io/repository/keycloak/keycloak" target="_blank">
38+
<i class="fa fa-link"></i>
39+
Quay
40+
</a>
41+
</td>
42+
</tr>
43+
<tr>
44+
<td>Operator</td>
45+
<td>For Kubernetes and OpenShift</td>
46+
<td>
47+
<a href="https://operatorhub.io/operator/keycloak-operator" target="_blank">
48+
<i class="fa fa-link"></i>
49+
OperatorHub
50+
</a>
51+
</td>
52+
</tr>
53+
</tbody>
54+
</table>
55+
56+
<h2 class="mt-4">Quickstarts</h2>
57+
<table class="table table-bordered table-striped">
58+
<tbody>
59+
60+
<tr>
61+
<td>Quickstarts distribution</td>
62+
<td>
63+
<span class="me-4">
64+
<#if quickstartsTag??>
65+
<#assign quickstartsLink="https://github.com/keycloak/keycloak-quickstarts/tree/${version.version}"/>
66+
<#else>
67+
<#assign quickstartsLink="https://github.com/keycloak/keycloak-quickstarts"/>
68+
</#if>
69+
70+
<a onclick="dl('examples', 'quickstarts');" href="${quickstartsLink}" target="_blank">
71+
<i class="fab fa-github" aria-hidden="true"></i>
72+
GitHub
73+
</a>
74+
</span>
75+
<span>
76+
<a onclick="dl('examples', 'quickstarts');" href="https://github.com/keycloak/keycloak-quickstarts/archive/latest.zip" target="_blank">
77+
<i class="fa fa-download" aria-hidden="true"></i>
78+
ZIP
79+
</a>
80+
</span>
81+
</td>
82+
</tr>
83+
</tbody>
84+
</table>
85+
86+
87+
<h2 class="mt-4">Client Adapters</h2>
88+
89+
<div>
90+
91+
<div class="tab-content">
92+
<div role="tabpanel" class="tab-pane active margin-top" id="oidc">
93+
<table class="table table-bordered table-striped">
94+
<tr>
95+
<td>JavaScript</td>
96+
<td>
97+
<table class="kc-table-downloads-inner">
98+
<tr>
99+
<td></td>
100+
<td>
101+
<span class="me-4">
102+
<a href="https://www.npmjs.com/package/keycloak-js/v/${version.version}" target="_blank">
103+
<i class="fa fa-link"></i> NPM
104+
</a>
105+
</span>
106+
<@download category="adapter" label="js" file="keycloak-oidc-js-adapter-${version.version}" tar=true />
107+
</td>
108+
</tr>
109+
</table>
110+
</td>
111+
</tr>
112+
<tr>
113+
<td>Node.js <b>[DEPRECATED]</b></td>
114+
<td>
115+
<table class="kc-table-downloads-inner">
116+
<tr>
117+
<td></td>
118+
<td>
119+
<a href="https://www.npmjs.com/package/keycloak-connect/v/${version.version}" target="_blank">
120+
<i class="fa fa-link"></i> NPM
121+
</a>
122+
</td>
123+
</tr>
124+
</table>
125+
</td>
126+
</tr>
127+
</tbody>
128+
</table>
129+
</div>
130+
131+
</div>
132+
</div>

version-template.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"version": "VERSION",
44
"blogTemplate": 3,
55
"documentationTemplate": 11,
6-
"downloadTemplate": 23
6+
"downloadTemplate": 24
77
}

0 commit comments

Comments
 (0)