Update outdated links with redirects (#2558)
This commit is contained in:
parent
57ad3dfed1
commit
c8263c00e7
2 changed files with 14 additions and 11 deletions
|
@ -25,18 +25,21 @@ const SIGNATURE_ALGORITHMS = [
|
||||||
const KEYNAME_TRANSFORMER = ["NONE", "KEY_ID", "CERT_SUBJECT"] as const;
|
const KEYNAME_TRANSFORMER = ["NONE", "KEY_ID", "CERT_SUBJECT"] as const;
|
||||||
|
|
||||||
const CANONICALIZATION = [
|
const CANONICALIZATION = [
|
||||||
{ name: "EXCLUSIVE", value: "http://www.w3.org/2001/10/xml-exc-c14n#" },
|
{
|
||||||
|
name: "EXCLUSIVE",
|
||||||
|
value: "https://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "EXCLUSIVE_WITH_COMMENTS",
|
name: "EXCLUSIVE_WITH_COMMENTS",
|
||||||
value: "http://www.w3.org/2001/10/xml-exc-c14n#WithComments",
|
value: "https://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/#WithComments",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "INCLUSIVE",
|
name: "INCLUSIVE",
|
||||||
value: "http://www.w3.org/TR/2001/REC-xml-c14n-20010315",
|
value: "https://www.w3.org/TR/2001/REC-xml-c14n-20010315",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "INCLUSIVE_WITH_COMMENTS",
|
name: "INCLUSIVE_WITH_COMMENTS",
|
||||||
value: "http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments",
|
value: "https://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments",
|
||||||
},
|
},
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
|
|
|
@ -30,31 +30,31 @@ export const HeadersForm = ({ save, reset }: HeadersFormProps) => {
|
||||||
>
|
>
|
||||||
<HelpLinkTextInput
|
<HelpLinkTextInput
|
||||||
fieldName="browserSecurityHeaders.xFrameOptions"
|
fieldName="browserSecurityHeaders.xFrameOptions"
|
||||||
url="http://tools.ietf.org/html/rfc7034"
|
url="https://datatracker.ietf.org/doc/html/rfc7034"
|
||||||
/>
|
/>
|
||||||
<HelpLinkTextInput
|
<HelpLinkTextInput
|
||||||
fieldName="browserSecurityHeaders.contentSecurityPolicy"
|
fieldName="browserSecurityHeaders.contentSecurityPolicy"
|
||||||
url="http://www.w3.org/TR/CSP/"
|
url="https://www.w3.org/TR/CSP/"
|
||||||
/>
|
/>
|
||||||
<HelpLinkTextInput
|
<HelpLinkTextInput
|
||||||
fieldName="browserSecurityHeaders.contentSecurityPolicyReportOnly"
|
fieldName="browserSecurityHeaders.contentSecurityPolicyReportOnly"
|
||||||
url="http://www.w3.org/TR/CSP/"
|
url="https://www.w3.org/TR/CSP/"
|
||||||
/>
|
/>
|
||||||
<HelpLinkTextInput
|
<HelpLinkTextInput
|
||||||
fieldName="browserSecurityHeaders.xContentTypeOptions"
|
fieldName="browserSecurityHeaders.xContentTypeOptions"
|
||||||
url="https://www.owasp.org/index.php/List_of_useful_HTTP_headers"
|
url="https://owasp.org/index.php/List_of_useful_HTTP_headers"
|
||||||
/>
|
/>
|
||||||
<HelpLinkTextInput
|
<HelpLinkTextInput
|
||||||
fieldName="browserSecurityHeaders.xRobotsTag"
|
fieldName="browserSecurityHeaders.xRobotsTag"
|
||||||
url="https://developers.google.com/webmasters/control-crawl-index/docs/robots_meta_tag"
|
url="https://developers.google.com/search/docs/advanced/robots/robots_meta_tag"
|
||||||
/>
|
/>
|
||||||
<HelpLinkTextInput
|
<HelpLinkTextInput
|
||||||
fieldName="browserSecurityHeaders.xXSSProtection"
|
fieldName="browserSecurityHeaders.xXSSProtection"
|
||||||
url="https://www.owasp.org/index.php/OWASP_Secure_Headers_Project#xxxsp"
|
url="https://owasp.org/www-project-secure-headers/#xxxsp"
|
||||||
/>
|
/>
|
||||||
<HelpLinkTextInput
|
<HelpLinkTextInput
|
||||||
fieldName="browserSecurityHeaders.strictTransportSecurity"
|
fieldName="browserSecurityHeaders.strictTransportSecurity"
|
||||||
url="https://www.owasp.org/index.php/OWASP_Secure_Headers_Project#hsts"
|
url="https://owasp.org/www-project-secure-headers/#hsts"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<ActionGroup>
|
<ActionGroup>
|
||||||
|
|
Loading…
Reference in a new issue