Skip to content

Commit 2e55e08

Browse files
committed
init
1 parent c15c153 commit 2e55e08

4 files changed

Lines changed: 736 additions & 2 deletions

File tree

setup.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@
55
# pipx install bikeshed
66
# bikeshed update (to get the latest autolinking data)
77

8-
for bsdoc in ./*.bs ./**/*.bs; do bikeshed spec $bsdoc; done
9-
for diagram in primer/*.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram; done
8+
# Enable recursive globbing for **
9+
shopt -s globstar
10+
11+
# 1. Generate ALL diagrams
12+
for diagram in ./*.mmd ./**/*.mmd; do [ -f "$diagram" ] && docker run --rm -u $(id -u):$(id -g) -v "$PWD:/data" minlag/mermaid-cli -i "/data/$diagram"; done
13+
14+
# 2. Build ALL specs
15+
for bsdoc in ./*.bs ./**/*.bs; do [ -f "$bsdoc" ] && bikeshed spec "$bsdoc"; done

snapshot-gat/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Solid-OIDC: Global Access Token (GAT) Snapshot
2+
3+
Addresses https://github.com/solid/solid-oidc/issues/250 and captures the authentication flow that all current server and client implementations support (as of 2026-04-21).
4+
5+
This specification version is a snapshot of Solid-OIDC, where a Client uses a global DPOP-bound access token issued by an OpenID Provider to authenticate at an Resource Server.
6+

0 commit comments

Comments
 (0)