-
Notifications
You must be signed in to change notification settings - Fork 16
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
RFC2119 changes #393
Merged
Merged
RFC2119 changes #393
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1183,7 +1183,7 @@ | |
should restrict the [=data=] they transfer to what's either necessary to achieve their users' | ||
goals or aligns with their users' wishes and interests.</span></div> | ||
|
||
<div class="practice" data-audiences="api-designers"><span class="practicelab">Web APIs should be designed to minimize the amount of data that sites need | ||
<div class="practice" data-audiences="api-designers"><span class="practicelab">Web APIs must be designed to minimize the amount of data that sites need | ||
jyasskin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
to request to carry out their users' goals. | ||
Web APIs should also provide granularity and user controls over <a>personal | ||
data</a> that is communicated to sites.</span></div> | ||
|
@@ -1353,7 +1353,7 @@ | |
## Information access {#information} | ||
|
||
<div class="practice" data-audiences="api-designers user-agents"> | ||
<span class="practicelab">New web APIs must guard users' information at least | ||
<span class="practicelab">New web APIs should guard users' information at least | ||
as well as existing APIs that are expected to stay in the web platform.</span> | ||
</div> | ||
|
||
|
@@ -1883,7 +1883,7 @@ | |
<div class="practice" data-audiences="websites api-designers"> | ||
<span class="practicelab" id="transparency-distinguishable"> | ||
Mechanisms that can be used for [=recognize|recognizing=] [=people=] should be designed so that | ||
their operation is visible and distinguishable, to [=user agents=], researchers and regulators. | ||
their operation is visible and distinguishable, to [=user agents=], researchers, and regulators. | ||
</span> | ||
</div> | ||
|
||
|
@@ -1919,7 +1919,7 @@ | |
<p> | ||
<span class="practicelab" id="principle-minimize-consent-requests"> | ||
An [=actor=] should avoid interrupting a [=person=]'s use of a site for | ||
consent requests when an alternative is available. | ||
consent requests when an alternative is available. | ||
</span> | ||
</p> | ||
</div> | ||
|
@@ -1941,8 +1941,8 @@ | |
<div class="practice" data-audiences="websites"> | ||
<p> | ||
<span class="practicelab" id="principle-consent-withdraw"> | ||
It should be as easy for a [=person=] to check what consent they have given, to withdraw consent, | ||
or to opt out or object, as to give consent. | ||
It should be as easy for a [=person=] to check what consent they have given, to withdraw consent, | ||
or to opt out or object, as to give consent. | ||
</span> | ||
</p> | ||
</div> | ||
|
@@ -2389,6 +2389,20 @@ | |
|
||
<section class="appendix" id="bp-summary"></section> | ||
|
||
<section class="appendix"> | ||
|
||
# Conformance | ||
|
||
This document does not adhere to strict [[?RFC2129]] terminology because it is primarily of | ||
jyasskin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
an informative nature and does not easily lend itself to constraining a conformance class. | ||
However, within the formulation of its principles, we have taken care to use "should" to indicate | ||
that a principle can be ignored in some rare cases given that there are valid reasons for doing so and | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we mean "can be ignored", but rather that a principle could be overridden in particular cases where there are valid reasons for doing so
jyasskin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"must" to indicate that we can see no situation in which deviating from the principle could | ||
be justified. | ||
|
||
</section> | ||
|
||
|
||
<section class="appendix"> | ||
|
||
# Acknowledgements {#acknowledgements} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one has tradeoffs: letting callers minimize the data increases the size of the API ... so I think it should remain "should".