diff options
author | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-06-01 08:01:57 +0200 |
---|---|---|
committer | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-06-01 08:01:57 +0200 |
commit | b9ae8ac31f728a4cbe10f8ded4f3a190b1c4e637 (patch) | |
tree | 2d7c98c9edb2dcc7ba9c4bab3dc13b40b62a041d /server/sonar-web/src | |
parent | 680b2cc53f291a91ef00e54772d82b06baf28a74 (diff) | |
parent | 91bba8795fdc751ee233e6796f302a0449cf8d85 (diff) | |
download | sonarqube-b9ae8ac31f728a4cbe10f8ded4f3a190b1c4e637.tar.gz sonarqube-b9ae8ac31f728a4cbe10f8ded4f3a190b1c4e637.zip |
Automatic merge from branch-6.4
* origin/branch-6.4:
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 8b812156976..91b533dd307 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 @@ -59,7 +59,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> |