diff options
author | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-05-31 20:58:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-31 20:58:16 +0200 |
commit | 91bba8795fdc751ee233e6796f302a0449cf8d85 (patch) | |
tree | 658e932da91bfe517efa4342503a6274c2931512 /server/sonar-web/src | |
parent | 3a814ce83039f6bbf1dc01640c2a264cd62eb0eb (diff) | |
download | sonarqube-91bba8795fdc751ee233e6796f302a0449cf8d85.tar.gz sonarqube-91bba8795fdc751ee233e6796f302a0449cf8d85.zip |
SONAR-9312 Replace SonarQube.com by SonarCloud (#2130)
Diffstat (limited to 'server/sonar-web/src')
3 files changed, 11 insertions, 11 deletions
diff --git a/server/sonar-web/src/main/js/app/components/GlobalFooterForSonarQubeDotCom.js b/server/sonar-web/src/main/js/app/components/GlobalFooterForSonarQubeDotCom.js index 0297cce903d..44efd12be03 100644 --- a/server/sonar-web/src/main/js/app/components/GlobalFooterForSonarQubeDotCom.js +++ b/server/sonar-web/src/main/js/app/components/GlobalFooterForSonarQubeDotCom.js @@ -26,22 +26,22 @@ export default function GlobalFooterForSonarQubeDotCom() { return ( <div id="footer" className="page-footer page-container"> <div> - © 2008-2017, SonarQube.com by + © 2008-2017, SonarCloud.io by {' '} <a href="http://www.sonarsource.com" title="SonarSource SA">SonarSource SA</a> . All rights reserved. </div> <div> - <a href="https://about.sonarqube.com/news/">{translate('footer.news')}</a> + <a href="https://about.sonarcloud.io/news/">{translate('footer.news')}</a> {' - '} - <a href="https://about.sonarqube.com/Terms_of_service.pdf">{translate('footer.terms')}</a> + <a href="https://about.sonarcloud.io/Terms_of_service.pdf">{translate('footer.terms')}</a> {' - '} <a href="https://twitter.com/sonarqube">{translate('footer.twitter')}</a> {' - '} - <a href="https://about.sonarqube.com/get-started/">{translate('footer.get_started')}</a> + <a href="https://about.sonarcloud.io/get-started/">{translate('footer.get_started')}</a> {' - '} - <a href="https://about.sonarqube.com/contact/">{translate('footer.help')}</a> + <a href="https://about.sonarcloud.io/contact/">{translate('footer.help')}</a> {' - '} {<Link to="/about">{translate('footer.about')}</Link>} </div> diff --git a/server/sonar-web/src/main/js/app/components/__tests__/__snapshots__/GlobalFooterForSonarQubeDotCom-test.js.snap b/server/sonar-web/src/main/js/app/components/__tests__/__snapshots__/GlobalFooterForSonarQubeDotCom-test.js.snap index ce3665ec957..b7a3ceee0d7 100644 --- a/server/sonar-web/src/main/js/app/components/__tests__/__snapshots__/GlobalFooterForSonarQubeDotCom-test.js.snap +++ b/server/sonar-web/src/main/js/app/components/__tests__/__snapshots__/GlobalFooterForSonarQubeDotCom-test.js.snap @@ -6,7 +6,7 @@ exports[`should render correctly 1`] = ` id="footer" > <div> - © 2008-2017, SonarQube.com by + © 2008-2017, SonarCloud.io by <a href="http://www.sonarsource.com" @@ -18,13 +18,13 @@ exports[`should render correctly 1`] = ` </div> <div> <a - href="https://about.sonarqube.com/news/" + href="https://about.sonarcloud.io/news/" > footer.news </a> - <a - href="https://about.sonarqube.com/Terms_of_service.pdf" + href="https://about.sonarcloud.io/Terms_of_service.pdf" > footer.terms </a> @@ -36,13 +36,13 @@ exports[`should render correctly 1`] = ` </a> - <a - href="https://about.sonarqube.com/get-started/" + href="https://about.sonarcloud.io/get-started/" > footer.get_started </a> - <a - href="https://about.sonarqube.com/contact/" + href="https://about.sonarcloud.io/contact/" > footer.help </a> diff --git a/server/sonar-web/src/main/js/apps/about/components/AboutAppForSonarQubeDotCom.js b/server/sonar-web/src/main/js/apps/about/components/AboutAppForSonarQubeDotCom.js index 6d7030247c3..0463c723baf 100644 --- a/server/sonar-web/src/main/js/apps/about/components/AboutAppForSonarQubeDotCom.js +++ b/server/sonar-web/src/main/js/apps/about/components/AboutAppForSonarQubeDotCom.js @@ -58,7 +58,7 @@ export default function AboutAppForSonarQubeDotCom(props: Props) { </h1> <a className="button button-active" - href="https://about.sonarqube.com/get-started/" + href="https://about.sonarcloud.io/get-started/" target="_blank"> Get Started </a> |