Skip to content

Commit 3b8b6e3

Browse files
authored
Merge pull request #194 from elf-pavlik/main
use CG-DRAFT template
2 parents 3b970e2 + f898a29 commit 3b8b6e3

File tree

7 files changed

+43
-88
lines changed

7 files changed

+43
-88
lines changed

.github/workflows/cd-config.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@ jobs:
1818
with:
1919
python-version: '3.10'
2020

21-
- name: Upgrade pip
22-
run: python3 -m pip install --upgrade pip
23-
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: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Workflow for verifying bikeshed documents processing
2+
3+
name: Verify processing
4+
on:
5+
# only concerned with gating PRs to the main branch
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v2
15+
16+
- name: Setup Python
17+
uses: actions/setup-python@v3
18+
with:
19+
python-version: '3.10'
20+
21+
- name: Install Bikeshed
22+
run: |
23+
pipx install bikeshed
24+
bikeshed update
25+
26+
- name: Generate HTML
27+
run: for bsdoc in ./*.bs; do bikeshed spec --gh-token=${{ secrets.GITHUB_TOKEN }} $bsdoc; done
28+
29+
- name: Generate SVG
30+
run: for diagram in ./*.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram; done

logo.include

Lines changed: 0 additions & 3 deletions
This file was deleted.

streaming-http-channel-2023.bs

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,22 @@
11
<pre class='metadata'>
22
Title: Solid StreamingHTTPChannel2023
33
Boilerplate: issues-index no
4-
Local Boilerplate: logo yes
54
Shortname: solid-streaming-http-channel-2023
65
Level: 1
7-
Status: w3c/ED
8-
Group: Solid Community Group
9-
Favicon: https://solidproject.org/TR/solid.svg
6+
Status: CG-DRAFT
7+
Group: solidcg
108
ED: https://solid.github.io/notifications/streaming-http-channel-2023
119
Repository: https://github.com/solid/notifications
1210
Inline Github Issues: title
1311
Markup Shorthands: markdown yes
1412
Max ToC Depth: 2
1513
Editor: [elf Pavlik](https://elf-pavlik.hackers4peace.net/)
14+
!Version: 0.1
1615
Abstract:
1716
The [[!Solid.Notifications.Protocol]] defines a set of interaction patterns for agents to receive notification
1817
about changes to resources in a Solid Storage.
1918
2019
This specification defines a channel type that applies these patterns to the Fetch API.
21-
Status Text:
22-
**Version: 0.1**
23-
24-
This section describes the status of this document at the time of its publication.
25-
26-
This document was published by the [Solid Community Group](https://www.w3.org/community/solid/) as
27-
an Editor’s Draft. The information in this document is
28-
still subject to change. You are invited to [contribute](https://github.com/solid/solid-oidc/issues)
29-
any feedback, comments, or questions you might have.
30-
31-
Publication as an Editor’s Draft does not imply endorsement by the W3C Membership. This is a draft
32-
document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate
33-
to cite this document as other than work in progress.
34-
35-
This document was produced by a group operating under the [W3C Community Contributor License Agreement
36-
(CLA)](https://www.w3.org/community/about/process/cla/). A human-readable
37-
[summary](https://www.w3.org/community/about/process/cla-deed/) is available.
3820
</pre>
3921

4022
# Introduction # {#introduction}

streaming-http-subscription-2021.bs

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,21 @@
11
<pre class='metadata'>
22
Title: Solid StreamingHTTPSubscription2021
33
Boilerplate: issues-index no
4-
Local Boilerplate: logo yes
54
Shortname: solid-streaming-http-subscription-2021
65
Level: 1
7-
Status: w3c/ED
8-
Group: Solid Community Group
9-
Favicon: https://solidproject.org/TR/solid.svg
6+
Status: CG-DRAFT
7+
Group: solidcg
108
ED: https://solid.github.io/notifications/streaming-http-subscription-2021
119
Repository: https://github.com/solid/notifications
1210
Inline Github Issues: title
1311
Markup Shorthands: markdown yes
1412
Max ToC Depth: 2
1513
Editor: [elf Pavlik](https://elf-pavlik.hackers4peace.net/)
14+
!Version: 0.1
1615
Abstract:
1716
The [[!Solid.Notifications]] defines a set of interaction patterns for agents to establish subscriptions to resources in a Solid Storage.
1817
1918
This specification defines a subscription type that applies these patterns to the Fetch API.
20-
Status Text:
21-
This section describes the status of this document at the time of its publication.
22-
23-
This document was published by the [Solid Community Group](https://www.w3.org/community/solid/) as
24-
an Editor’s Draft. The sections that have been incorporated have been reviewed following the
25-
[Solid process](https://github.com/solid/process). However, the information in this document is
26-
still subject to change. You are invited to [contribute](https://github.com/solid/solid-oidc/issues)
27-
any feedback, comments, or questions you might have.
28-
29-
Publication as an Editor’s Draft does not imply endorsement by the W3C Membership. This is a draft
30-
document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate
31-
to cite this document as other than work in progress.
32-
33-
This document was produced by a group operating under the [W3C Community Contributor License Agreement
34-
(CLA)](https://www.w3.org/community/about/process/cla/). A human-readable
35-
[summary](https://www.w3.org/community/about/process/cla-deed/) is available.
3619
</pre>
3720

3821
# Introduction # {#introduction}

webhook-channel-2023.bs

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,23 @@
11
<pre class='metadata'>
22
Title: Solid WebhookChannel2023
33
Boilerplate: issues-index no
4-
Local Boilerplate: logo yes
54
Shortname: solid-webhook-channel-2023
65
Level: 1
7-
Status: w3c/ED
8-
Group: Solid Community Group
9-
Favicon: https://solidproject.org/TR/solid.svg
6+
Status: CG-DRAFT
7+
Group: solidcg
108
ED: https://solid.github.io/notifications/webhook-channel-2023
119
Repository: https://github.com/solid/notifications
1210
Inline Github Issues: title
1311
Markup Shorthands: markdown yes
1412
Max ToC Depth: 2
1513
Editor: Jackson Morgan
1614
Editor: [elf Pavlik](https://elf-pavlik.hackers4peace.net/)
15+
!Version: 0.1
1716
Abstract:
1817
The [[!Solid.Notifications.Protocol]] defines a set of interaction patterns for agents to receive notification
1918
about changes to resources in a Solid Storage.
2019
2120
This specification defines a channel type that applies these patterns to the Webhooks.
22-
Status Text:
23-
**Version: 0.1**
24-
25-
This section describes the status of this document at the time of its publication.
26-
27-
This document was published by the [Solid Community Group](https://www.w3.org/community/solid/) as
28-
an Editor’s Draft. The information in this document is
29-
still subject to change. You are invited to [contribute](https://github.com/solid/solid-oidc/issues)
30-
any feedback, comments, or questions you might have.
31-
32-
Publication as an Editor’s Draft does not imply endorsement by the W3C Membership. This is a draft
33-
document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate
34-
to cite this document as other than work in progress.
35-
36-
This document was produced by a group operating under the [W3C Community Contributor License Agreement
37-
(CLA)](https://www.w3.org/community/about/process/cla/). A human-readable
38-
[summary](https://www.w3.org/community/about/process/cla-deed/) is available.
3921
</pre>
4022

4123
# Introduction # {#introduction}

webpush-subscription-2022.bs

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,21 @@
11
<pre class='metadata'>
22
Title: Solid WebPushSubscription2022
33
Boilerplate: issues-index no
4-
Local Boilerplate: logo yes
54
Shortname: solid-webpush-subscription-2022
65
Level: 1
7-
Status: w3c/ED
8-
Group: Solid Community Group
9-
Favicon: https://solidproject.org/TR/solid.svg
6+
Status: CG-DRAFT
7+
Group: solidcg
108
ED: https://solid.github.io/notifications/webpush-subscription-2022
119
Repository: https://github.com/solid/notifications
1210
Inline Github Issues: title
1311
Markup Shorthands: markdown yes
1412
Max ToC Depth: 2
1513
Editor: [Christoph Braun](https://github.com/uvdsl)
14+
!Version: 0.1
1615
Abstract:
1716
The [[!SOLID-NOTIFICATIONS inline]] defines a set of interaction patterns for agents to establish subscriptions to resources in a Solid Storage.
1817
1918
This specification defines a subscription type that applies these patterns to the [[!PUSH-API inline]].
20-
Status Text:
21-
This section describes the status of this document at the time of its publication.
22-
23-
This document was published by the [Solid Community Group](https://www.w3.org/community/solid/) as
24-
an Editor’s Draft. The information in this document is
25-
still subject to change. You are invited to [contribute](https://github.com/solid/solid-oidc/issues)
26-
any feedback, comments, or questions you might have.
27-
28-
Publication as an Editor’s Draft does not imply endorsement by the W3C Membership. This is a draft
29-
document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate
30-
to cite this document as other than work in progress.
31-
32-
This document was produced by a group operating under the [W3C Community Contributor License Agreement
33-
(CLA)](https://www.w3.org/community/about/process/cla/). A human-readable
34-
[summary](https://www.w3.org/community/about/process/cla-deed/) is available.
3519
</pre>
3620

3721
<div class="note">

0 commit comments

Comments
 (0)