Skip to content

Commit 4d58c3c

Browse files
authored
Merge pull request #235 from elf-pavlik/main
use copyright and sotd from bikeshed-boilerplate
2 parents deecfbd + 539e804 commit 4d58c3c

File tree

7 files changed

+13
-42
lines changed

7 files changed

+13
-42
lines changed

.github/workflows/cd-config.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.8'
20-
21-
- name: Upgrade pip
22-
run: python3 -m pip install --upgrade pip
19+
python-version: '3.10'
2320

2421
- name: Install Bikeshed
2522
run: |
26-
python3 -m pip install --upgrade bikeshed
23+
pipx install bikeshed
2724
bikeshed update
2825
2926
- name: Generate HTML

.github/workflows/ci-config.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.8'
20-
21-
- name: Upgrade pip
22-
run: python3 -m pip install --upgrade pip
19+
python-version: '3.10'
2320

2421
- name: Install Bikeshed
2522
run: |
26-
python3 -m pip install --upgrade bikeshed
23+
pipx install bikeshed
2724
bikeshed update
2825
2926
- name: Generate HTML

.github/workflows/tr-draft-config.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.8'
20-
21-
- name: Upgrade pip
22-
run: python3 -m pip install --upgrade pip
19+
python-version: '3.10'
2320

2421
- name: Install Bikeshed
2522
run: |
26-
python3 -m pip install --upgrade bikeshed
23+
pipx install bikeshed
2724
bikeshed update
2825
2926
- name: Adjust document status and URLs
@@ -85,4 +82,3 @@ jobs:
8582
publish_dir: ./publish
8683
publish_branch: solid-tr-publication
8784
personal_token: ${{ secrets.GITHUB_TOKEN }}
88-

.github/workflows/tr-final-config.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.8'
20-
21-
- name: Upgrade pip
22-
run: python3 -m pip install --upgrade pip
19+
python-version: '3.10'
2320

2421
- name: Install Bikeshed
2522
run: |
26-
python3 -m pip install --upgrade bikeshed
23+
pipx install bikeshed
2724
bikeshed update
2825
2926
- name: Adjust document status and URLs
@@ -85,4 +82,3 @@ jobs:
8582
publish_dir: ./publish
8683
publish_branch: solid-tr-publication
8784
personal_token: ${{ secrets.GITHUB_TOKEN }}
88-

index.bs

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Title: Solid-OIDC
33
Boilerplate: issues-index no
44
Shortname: solid-oidc
55
Level: 1
6-
Status: w3c/CG-DRAFT
7-
Group: Solid Community Group
6+
Status: CG-DRAFT
7+
Group: solidcg
88
ED: https://solid.github.io/solid-oidc/
99
TR: https://solidproject.org/TR/oidc
1010
!Created: July 16, 2021
@@ -25,21 +25,6 @@ Abstract:
2525
verify the identity of relying parties and end users based on the authentication
2626
performed by an OpenID provider. Solid-OIDC builds on top of OpenID Connect 1.0
2727
for use within the Solid ecosystem.
28-
Status Text:
29-
This section describes the status of this document at the time of its publication.
30-
31-
This document was published by the [Solid Community Group](https://www.w3.org/community/solid/) as
32-
a Community Group Draft. The information in this document is
33-
still subject to change. You are invited to [contribute](https://github.com/solid/solid-oidc/issues)
34-
any feedback, comments, or questions you might have.
35-
36-
Publication as a Community Group Draft does not imply endorsement by the W3C Membership. This is a draft
37-
document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate
38-
to cite this document as other than work in progress.
39-
40-
This document was produced by a group operating under the [W3C Community Contributor License Agreement
41-
(CLA)](https://www.w3.org/community/about/process/cla/). A human-readable
42-
[summary](https://www.w3.org/community/about/process/cla-deed/) is available.
4328
</pre>
4429

4530
# Introduction # {#intro}

primer/index.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Boilerplate: issues-index no
44
Boilerplate: omit conformance
55
Shortname: solid-oidc-primer
66
Level: 1
7-
Status: w3c/CG-DRAFT
8-
Group: Solid Community Group
7+
Status: CG-DRAFT
8+
Group: solidcg
99
ED: https://solid.github.io/solid-oidc/primer/
1010
TR: https://solidproject.org/TR/oidc-primer
1111
!Created: March 28, 2022

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Requires
44
# python3 -m pip install --upgrade pip
5-
# python3 -m pip install --upgrade bikeshed
5+
# pipx install bikeshed
66
# bikeshed update (to get the latest autolinking data)
77

88
for bsdoc in ./*.bs ./**/*.bs; do bikeshed spec $bsdoc; done

0 commit comments

Comments
 (0)