diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-02-17 10:47:43 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-02-17 10:47:43 +0100 |
commit | 7f646b72d3c5dc7700c36188ece84ad6e205fc53 (patch) | |
tree | c129f3d20b1f3b820edeea1a802e1c6f8e7bfe51 /sonar-core/src | |
parent | b49a6af322e4e59da24084a3aa8a008395057b7c (diff) | |
download | sonarqube-7f646b72d3c5dc7700c36188ece84ad6e205fc53.tar.gz sonarqube-7f646b72d3c5dc7700c36188ece84ad6e205fc53.zip |
SONAR-6152 Customize look&feel with new logo
Diffstat (limited to 'sonar-core/src')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java | 4 | ||||
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java index f5fab2fff61..b9b5fb61955 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java +++ b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java @@ -48,11 +48,15 @@ public class CorePropertyDefinitions { .deprecatedKey("sonar.branding.image") .name("Logo URL") .description("URL to logo image. Any standard format is accepted.") + .category(CoreProperties.CATEGORY_GENERAL) + .subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL) .build(), PropertyDefinition.builder("sonar.lf.logoWidthPx") .deprecatedKey("sonar.branding.image.width") .name("Width of image in pixels") .description("Width in pixels, according that the height of image is constrained to 30px.") + .category(CoreProperties.CATEGORY_GENERAL) + .subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL) .build(), // BATCH diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index cd2218dda4a..c683d372e66 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -978,6 +978,7 @@ property.category.general.duplications=Duplications property.category.general.differentialViews=Differential Views property.category.general.localization=Localization property.category.general.databaseCleaner=Database Cleaner +property.category.general.looknfeel=Look & Feel property.category.security=Security property.category.security.encryption=Encryption property.category.java=Java |