]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8385 apply feedback
authorStas Vilchik <vilchiks@gmail.com>
Wed, 16 Nov 2016 17:07:57 +0000 (18:07 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Wed, 16 Nov 2016 17:09:28 +0000 (18:09 +0100)
server/sonar-web/src/main/webapp/WEB-INF/app/views/about/index.html.erb
sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java

index efaf6f1c578e8b88fa7253982bb359e8b1927787..fcb9a089ebf97d4c4cba2e616ff7069fdf7fa6b5 100644 (file)
@@ -1,7 +1,7 @@
 <% content_for :extra_script do %>
   <script>
     window.sonarqube.signUpAllowed = <%= Property.value("sonar.allowUsersToSignUp") == "true" ? "true" : "false" -%>;
-    window.sonarqube.landingText = '<%= escape_javascript configuration("sonar.lf.landingText", "") -%>';
+    window.sonarqube.landingText = '<%= escape_javascript configuration("sonar.lf.aboutText", "") -%>';
 
     <% auth_providers = Api::Utils.java_facade.getIdentityProviders().to_a %>
     window.sonarqube.authProviders = [
index 454f0842c74db13eb7e684da7f193ea3064040db..32e595df780e57d9745a39744110d793be46d845 100644 (file)
@@ -197,9 +197,9 @@ public class CorePropertyDefinitions {
         .category(CoreProperties.CATEGORY_GENERAL)
         .subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL)
         .build(),
-      PropertyDefinition.builder("sonar.lf.landingText")
-        .name("Landing page text")
-        .description("Optional text that is display on the landing page. Supports html.")
+      PropertyDefinition.builder("sonar.lf.aboutText")
+        .name("About page text")
+        .description("Optional text that is displayed on the About page. Supports html.")
         .category(CoreProperties.CATEGORY_GENERAL)
         .subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL)
         .type(PropertyType.TEXT)