Move FAQ page to /faq

This commit is contained in:
apple502j 2021-08-06 02:55:11 +09:00
parent 2f9adcf451
commit 9a390eafeb
No known key found for this signature in database
GPG key ID: 13BE71607A63CDF2
9 changed files with 17 additions and 11 deletions

View file

@ -138,7 +138,7 @@ const Footer = props => (
</a>
</dd>
<dd>
<a href="/info/faq">
<a href="/faq">
<FormattedMessage id="general.faq" />
</a>
</dd>

View file

@ -151,8 +151,8 @@
},
{
"name": "faq",
"pattern": "^/info/faq/?(\\?.*)?$",
"routeAlias": "/info/(cards|credits|faq)/?$",
"pattern": "^/faq/?(\\?.*)?$",
"routeAlias": "/faq",
"view": "faq/faq",
"title": "FAQ"
},
@ -392,6 +392,12 @@
"routeAlias": "/info/(cards|credits|faq|donate)/?$",
"redirect" : "/credits"
},
{
"name" : "faq-redirect",
"pattern": "^/info/faq/?$",
"routeAlias": "/info/(cards|credits|faq|donate)/?$",
"redirect" : "/faq"
},
{
"name": "donate-redirect",
"pattern": "^/info/donate/?",

View file

@ -175,7 +175,7 @@ const About = () => (
<a href="/ideas"><FormattedMessage id="about.learnMoreHelp" /></a>
</li>
<li>
<a href="/info/faq"><FormattedMessage id="about.learnMoreFaq" /></a>
<a href="/faq"><FormattedMessage id="about.learnMoreFaq" /></a>
</li>
<li>
<a href="/parents"><FormattedMessage id="about.learnMoreParents" /></a>

View file

@ -57,7 +57,7 @@ class ContactUs extends React.Component {
<p><FormattedMessage
id="contactUs.faqInfo"
values={{faqLink: (
<a href="/info/faq"><FormattedMessage id="contactUs.faqLinkText" /></a>
<a href="/faq"><FormattedMessage id="contactUs.faqLinkText" /></a>
)}}
/></p>
<h3>
@ -115,7 +115,7 @@ class ContactUs extends React.Component {
<nav>
<ol>
<li className="nav-header"><FormattedMessage id="contactUs.findHelp" /></li>
<li><a href="/info/faq"><FormattedMessage id="contactUs.faqLinkText" /></a></li>
<li><a href="/faq"><FormattedMessage id="contactUs.faqLinkText" /></a></li>
</ol>
</nav>
{this.state.showForm && (

View file

@ -114,7 +114,7 @@ const Landing = () => (
id="parents.faqMoreAndAsk"
values={{
faqPage: (
<a href="/info/faq">
<a href="/faq">
<FormattedMessage
id="parents.faqLinkText"
/>

View file

@ -35,7 +35,7 @@ const UnsupportedBrowser = () => (
faqLink: (
<a
className="faq-link"
href="/info/faq"
href="/faq"
>
<FormattedMessage id="general.faq" />
</a>

View file

@ -389,7 +389,7 @@ class SplashPresentation extends React.Component { // eslint-disable-line react/
>
Confirm your email
</a>{' '}to enable sharing.{' '}
<a href="/info/faq/#accounts">
<a href="/faq/#accounts">
Having trouble?
</a>
</DropdownBanner>,

View file

@ -265,7 +265,7 @@ const Terms = () => (
</p>
<p>
5.3 The source code for Scratch 1.4 is available for download and subject
to the copyright notice as indicated on the <a href="/info/faq">Scratch FAQ</a>
to the copyright notice as indicated on the <a href="/faq">Scratch FAQ</a>
{' '}page.
</p>
<p>

View file

@ -93,7 +93,7 @@ describe('www-integration footer links', () => {
await clickText('FAQ');
let url = await driver.getCurrentUrl();
let pathname = (new URL(url)).pathname;
expect(pathname).toMatch(/^\/info\/faq\/?$/);
expect(pathname).toMatch(/^\/faq\/?$/);
});
test('click Download link', async () => {