-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Description
Suppose c/
exists, and c/r
does not yet.
An agent creates c/r
. Does this require:
- Option 1: Append or Write on
c/
and Write onc/r
or - Option 2: Append or Write on
c/
and Append or Write onc/r
Evidence of option 1:
- this seems to be what CSS implements for PUT
- this is what the WAC tests were testing until recently
Evidence of option 2:
- this seems to be what CSS implements for PATCH
- it seems pretty clear that the spec says:
write operations attempt to create, delete, or modify resources;
append operations attempt to create resources or add information to existing resources
I want to go for option 2 (and update the WAC tests accordingly and file a bug report to CSS), but wanted to check here first.