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

Update RWS submission steps text #229

Merged
merged 2 commits into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion data/PSInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"proposal": "https://github.com/WICG/first-party-sets",
"publicDiscussion": "https://github.com/WICG/first-party-sets/issues",
"videoOverview": "https://www.youtube.com/watch?v=cNJ8mZ-J3F8",
"devDocumentation": "https://developer.chrome.com/docs/privacy-sandbox/first-party-sets/"
"devDocumentation": "https://developer.chrome.com/docs/privacy-sandbox/related-website-sets/"
},
"shared-storage": {
"name": "Shared Storage",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ const OtherDomainOutput = ({
2
</p>
<p className="text-base">
Add the <code>.well-known</code> file to <b>all the other domains</b>{' '}
in your set with the following content:
Add the file <code>related-website-set.json</code> in the directory
<code>.well-known</code> of <b>all the other domains</b> in your set
with the following content:
</p>
</div>
<div id="domainsListOutput">
Expand All @@ -56,7 +57,7 @@ const OtherDomainOutput = ({
<div className="pl-4">
{primaryWellKnownOutput.associatedSites.map((url) => (
<li key={url} className="text-sm">
{url}/.well-known/first-party-set.json
{url}/.well-known/related-website-set.json
</li>
))}
</div>
Expand All @@ -68,7 +69,7 @@ const OtherDomainOutput = ({
<div className="pl-4">
{primaryWellKnownOutput.serviceSites.map((url) => (
<li key={url} className="text-sm">
{url}/.well-known/first-party-set.json
{url}/.well-known/related-website-set.json
</li>
))}
</div>
Expand All @@ -81,7 +82,7 @@ const OtherDomainOutput = ({
{Object.values(primaryWellKnownOutput.ccTLDs).map((cctlds) =>
cctlds.map((cctld) => (
<li key={cctld} className="text-sm">
{cctld}/.well-known/first-party-set.json
{cctld}/.well-known/related-website-set.json
</li>
))
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,16 @@ const PrimaryDomainOutput = ({
1
</p>
<p className="text-base">
Add the <code>.well-known</code> file to the <b>primary domain</b>{' '}
with the following content:
Add the file <code>related-website-set.json</code> in the directory
<code>.well-known</code> of the <b>primary domain</b> with the
following content:
</p>
</div>
<ul className="mb-2">
<li id="primaryOutput" className="text-sm">
{primaryWellKnownOutput && primaryWellKnownOutput.primary
? primaryWellKnownOutput.primary +
'/.well-known/first-party-set.json'
'/.well-known/related-website-set.json'
: ''}
</li>
</ul>
Expand Down
Loading