Compare commits

..

No commits in common. "888cf3db2931980c5b45f1b990882066dce41b37" and "2ae65c0abe3cd8550411722ba10f00cc04d0e1eb" have entirely different histories.

12 changed files with 79 additions and 96 deletions

1
.gitignore vendored
View file

@ -1,4 +1,3 @@
public public
result result
_gen
.hugo_build.lock .hugo_build.lock

View file

@ -3,3 +3,33 @@ title: Implementations
description : Non-exhaustive list of implementation of SCIM protocol in server and client applications description : Non-exhaustive list of implementation of SCIM protocol in server and client applications
color : blue-1 color : blue-1
--- ---
{{< grid >}}
{{< implementation type="server client">}}
#### Keycloak
{{< /implementation >}}
{{< implementation type="server" devs="Greenhost">}}
#### Stackspin
{{< /implementation >}}
{{< implementation type="client" devs="Yaal">}}
#### Discourse
{{< /implementation >}}
{{< implementation type="client" devs="IndieHosters & Audriga">}}
#### Nextcloud
{{< /implementation >}}
{{< implementation type="client" devs="Yaal & IndieHosters">}}
#### Element
{{< /implementation >}}
{{< implementation type="client" devs="Yaal">}}
#### Canaille
{{< /implementation >}}
{{< implementation type="client" devs="Yaal" link="https://scim2-cli.readthedocs.io/en/latest/#">}}
#### Cli
{{< /implementation >}}
{{< /grid >}}

View file

@ -1,7 +0,0 @@
---
title: Discourse
description: A platform for community discussion. Free, open, simple.
source: https://forge.libre.sh/libre.sh/discourse-scim.git
role: server
implementation: plugin
---

View file

@ -1,7 +0,0 @@
---
title: Grist
description: Grist is a modern relational spreadsheet. It combines the flexibility of a spreadsheet with the robustness of a database.
source: https://github.com/gristlabs/grist-core.git
role: server
implementation: native
---

View file

@ -1,7 +0,0 @@
---
title: Keycloak
description: Open Source Identity and Access Management For Modern Applications and Services
source: https://forge.libre.sh/libre.sh/keycloak-scim.git
role: client
implementation: both
---

View file

@ -1,7 +0,0 @@
---
title: Nextcloud
description: A safe home for all your data.
source: https://forge.libre.sh/libre.sh/scimserviceprovider.git
role: server
implementation: plugin
---

View file

@ -1,6 +0,0 @@
---
title: scim-cli
description: SCIM application development CLI.
source: https://github.com/python-scim/scim2-cli.git
role: client
---

View file

@ -1,7 +0,0 @@
---
title: Stackspin
description: A platform that offers self-managed, click-and-play provisioning of online applications for Civil Society Organisations (CSOs).
source: https://open.greenhost.net/stackspin/dashboard.git
role: client
implementation: native
---

View file

@ -1,7 +0,0 @@
---
title: Synapse
description: Matrix homeserver written in Python/Twisted.
source: https://github.com/element-hq/synapse/pull/17144
role: server
implementation: native
---

View file

@ -1,35 +1,24 @@
{{ define "main" }} <!DOCTYPE html>
<main class="flex"> <html>
<section class="section-home {{ .Params.color }} flex w-100"> {{- partial "head.html" . -}}
<div class="flex align-center bck-marked w-100 section-header"> <body>
<h2>{{ .Params.title }}</h2> {{- partial "header.html" . -}}
<p class="subtitle">{{ .Params.description | markdownify }}</p> <main class="flex">
</div> <section class="section-home {{ .Params.color }} flex w-100">
<div class="content"> <div class="flex align-center bck-marked w-100 section-header">
<div> <h2>{{ .Params.title }}</h2>
<button data-type="client server" class="activable active btn lv2 implementationtype">All</button> <p class="subtitle">{{ .Params.description | markdownify }}</p>
<button data-type="client" class="activable btn lv2 implementationtype client">Clients</button> </div>
<button data-type="server" class="activable btn lv2 implementationtype server">Servers</button> <div class="content">
</div> <div>
<section class="grid"> <button data-type="client server" class="activable active btn lv2 implementationtype">All</button>
{{ range .Pages }} <button data-type="client" class="activable btn lv2 implementationtype client">Clients</button>
<div class="space-between card flex implementation {{ .Params.role }}" data-type="{{ .Params.role }}"> <button data-type="server" class="activable btn lv2 implementationtype server">Servers</button>
<div class="flex">
<h4>{{ .Title }}</h4>
<p>
<span class="type {{ .Params.role }} marked-color">{{ .Params.role }}</span>
<span class="type {{ .Params.role }} marked-color">{{ .Params.implementation }}</span>
</p>
<p>{{ .Params.description | markdownify }}</p>
</div>
<div class="flex-row">
<a class="btn lv1" target="_blank" href="{{ .Params.source }}">git ↗</a>
<!-- <a class="btn lv1" target="_blank" href="{{ .Path }}">doc ↗</a> -->
</div>
</div> </div>
{{ end }} {{ partial "content.html" .Content }}
</section> </div>
</div> </section>
</section> </main>
</main> {{- partial "footer.html" . -}}
{{ end }} </body>
</html>

View file

@ -1,13 +0,0 @@
{{ define "main" }}
<main class="flex">
<section class="section-home {{ .Params.color }} flex w-100">
<div class="flex align-center bck-marked w-100 section-header">
<h2>{{ .Params.title }}</h2>
<p class="subtitle">{{ .Params.description | markdownify }}</p>
<a class="btn lv1" target="_blank" href="{{ .Params.source }}">git ↗</a>
</div>
<div class="content">
{{ .Content }}
</div>
</section>
{{ end }}

View file

@ -0,0 +1,26 @@
<div class="space-between card flex implementation {{ if .Get "type"}}{{ .Get "type" }}{{ end }}" data-type="{{ if .Get "type"}}{{ .Get "type" }}{{ end }}">
<div class="flex">
{{ .Inner | markdownify }}
{{ if .Get "type" }}
<p>
{{ $types := split (.Get "type") " " }}
{{ range $types }}
<span class="type {{ . }} marked-color">{{ . }}</span>
{{ end }}
</p>
{{ end }}
{{ if .Get "devs" }}
<p class="devs">Main devs: {{ .Get "devs" }}</p>
{{ end }}
</div>
<div class="flex">
{{ if .Get "link" }}
<a class="btn lv1" target="_blank" href="{{ .Get "link" }}">specs ↗</a>
{{ else }}
<p class="btn draft marked-color"><em>soon to be released...</em></p>
{{ end }}
</div>
</div>