Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix and clarify post #16

Merged
merged 2 commits into from
Nov 13, 2024
Merged
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
9 changes: 6 additions & 3 deletions src/sections/activity-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,23 @@ A [=Solid server=] sending a [PREP] notification as a result of some activity on
<th> Request Method
<th> Activity Type
<tbody>
<tr>
<td><code> [[RFC9110#POST|POST]] <br> ([[SOLID-PROTOCOL#resource-containment|Containers]])
<td><code> [[ACTIVITYSTREAMS-VOCABULARY#dfn-add|as:Add]]
<tr>
<td><code> [[RFC9110#PUT|PUT]]
<td rowspan="3"><code> [[ACTIVITYSTREAMS-VOCABULARY#dfn-update|as:Update]]
<tr>
<td><code> [[RFC5789#section-2|PATCH]]
<tr>
<td><code> [[RFC9110#POST|POST]]
<td><code> [[RFC9110#POST|POST]] <br> (Not [[SOLID-PROTOCOL#resource-containment|Containers]])
<tr>
<td><code> [[RFC9110#DELETE|DELETE]]
<td><code> [[ACTIVITYSTREAMS-VOCABULARY#dfn-delete|as:Delete]]
</table>
<br/>

2. When the [PREP] notification is triggered by a request on a contained resource with one of the following [[RFC9110#methods|HTTP methods]]:
2. When the [PREP] notification is triggered on a container, by a request on a contained resource with one of the following [[RFC9110#methods|HTTP methods]]:

<table class="numbered">
<caption> Activity Mapping for LDP Containers when contained resources change
Expand All @@ -50,7 +53,7 @@ A [=Solid server=] sending a [PREP] notification as a result of some activity on
</table>
<br/>

3. When the [PREP] notification is triggered by a request to create a new resource inside that container (resource) with one of the following [[RFC9110#methods|HTTP methods]]:
3. When the [PREP] notification is triggered on a container, by a request to create a new resource inside that container (resource) with one of the following [[RFC9110#methods|HTTP methods]]:

<table class="numbered">
<caption> Activity Mapping for LDP Containers when contained resources are created
Expand Down
Loading