Skip to content

Commit

Permalink
Merge pull request #229 from GoogleChromeLabs/ref/rws-text
Browse files Browse the repository at this point in the history
Update `RWS` submission steps text
  • Loading branch information
mohdsayed authored Nov 4, 2023
2 parents ec38121 + ede2fd6 commit afff9ba
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
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

0 comments on commit afff9ba

Please sign in to comment.