Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,11 @@
# pipx install bikeshed
# bikeshed update (to get the latest autolinking data)

for bsdoc in ./*.bs ./**/*.bs; do bikeshed spec $bsdoc; done
for diagram in primer/*.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram; done
# Enable recursive globbing for **
shopt -s globstar

# 1. Generate ALL diagrams
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

# 2. Build ALL specs
for bsdoc in ./*.bs ./**/*.bs; do [ -f "$bsdoc" ] && bikeshed spec "$bsdoc"; done
6 changes: 6 additions & 0 deletions snapshot-gat/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Solid-OIDC: Global Access Token (GAT) Snapshot

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).

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.

Loading