]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-12374 Prevent double icons
authorWouter Admiraal <wouter.admiraal@sonarsource.com>
Mon, 30 Dec 2019 15:36:47 +0000 (16:36 +0100)
committerSonarTech <sonartech@sonarsource.com>
Wed, 8 Jan 2020 19:46:11 +0000 (20:46 +0100)
21 files changed:
server/sonar-docs/README.md
server/sonar-docs/src/layouts/layout.css
server/sonar-docs/src/pages/analysis/analysis-parameters.md
server/sonar-docs/src/pages/analysis/languages/java.md
server/sonar-docs/src/pages/analysis/languages/javascript.md
server/sonar-docs/src/pages/analysis/languages/php.md
server/sonar-docs/src/pages/analysis/languages/python.md
server/sonar-docs/src/pages/analysis/overview.md
server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-msbuild.md
server/sonar-docs/src/pages/analysis/security_configuration.md
server/sonar-docs/src/pages/extend/adding-coding-rules.md
server/sonar-docs/src/pages/extend/deploying-to-marketplace.md
server/sonar-docs/src/pages/extend/developing-plugin.md
server/sonar-docs/src/pages/project-administration/narrowing-the-focus.md
server/sonar-docs/src/pages/requirements/requirements.md
server/sonar-docs/src/pages/setup/install-server.md
server/sonar-docs/src/pages/setup/upgrading.md
server/sonar-docs/src/pages/sonarcloud/integrations/github.md
server/sonar-docs/src/pages/sonarcloud/integrations/vsts.md
server/sonar-web/src/main/js/apps/documentation/styles.css
server/sonar-web/src/main/js/components/docs/DocMarkdownBlock.css

index f01bff33c2a9553c2db02704b4c0bf626142c05c..ca57d22fbda8627a4b9ad11e2be3895f499c6f69 100644 (file)
@@ -259,13 +259,6 @@ There are four options:
 - success (green)
 - info (blue)
 
-You can also put icons inside messages:
-
-```
-[[danger]]
-| ![](/images/cross.svg) This is a **danger** message.
-```
-
 #### Iframes
 
 _Note: at this time, iframes are only supported for the static documentation, and will be stripped from the embedded documentation._
index 7e5f94ea1455b052f170c6d56ef3e46ad134b032..25d06883f9fdab2702b8883a27fe4ac35307c90b 100644 (file)
@@ -536,7 +536,12 @@ a.search-result .note {
   margin: 0 -1em 1.5rem;
   padding: 1em;
   border: 1px solid #3e7fb7;
+  background-image: url(../images/info.svg);
   background-color: #edf6fc;
+  background-position: 10px 15px;
+  background-repeat: no-repeat;
+  background-size: 24px;
+  padding-left: 40px;
   color: #000;
   border-radius: 3px;
 }
@@ -563,6 +568,7 @@ a.search-result .note {
 .alert-danger {
   border-color: #d75a4a;
   background-color: #fcedec;
+  background-image: url(../images/cross.svg);
 }
 
 .alert-danger a {
@@ -578,14 +584,8 @@ a.search-result .note {
 
 .alert-warning {
   border-color: #c99916;
-  background: #ffefbc url(../images/alerts/danger.svg) no-repeat;
-  background-position: 10px 15px;
-  background-size: 24px;
-  padding-left: 40px;
-}
-
-.page-sidebar .alert-warning {
-  background-position: 10px 10px;
+  background-color: #ffefbc;
+  background-image: url(../images/alerts/danger.svg);
 }
 
 .alert-warning a {
@@ -602,6 +602,7 @@ a.search-result .note {
 .alert-success {
   border-color: #3ec92c;
   background-color: #ecfcf2;
+  background-image: url(../images/check.svg);
 }
 
 .alert-success a {
index c555d5c73bf7e8ee78065434f784632ed1d06a2f..9800271a56224a6d9ef74d14cb77b2aba016ce1a 100644 (file)
@@ -96,7 +96,7 @@ Key | Description | Default
 <!-- sonarqube -->
 ### Deprecated
 [[danger]]
-| ![](/images/cross.svg) These parameters are listed for completeness, but are deprecated and should not be used in new analyses.
+| These parameters are listed for completeness, but are deprecated and should not be used in new analyses.
 
 Key | Description
 ---|----|--- 
index 5ab778280adfc417cc012faad7103530cce09929..c200b35f46c881fa54f1cd2ff19591da6d4c7404 100644 (file)
@@ -33,7 +33,7 @@ Key | Value
 `sonar.java.test.libraries` | Comma-separated paths to files with third-party libraries (JAR or Zip files) used by your tests. (For example, this should include the junit jar). Wildcards can be used: `sonar.java.test.libraries=directory/**/*.jar`
 
 [[warning]]
-| ![](/images/exclamation.svg) Android users, Jack doesn't provide the required `.class` files.
+| Android users, Jack doesn't provide the required `.class` files.
 
 
 ## Turning issues off
index 9171cee8b146fbd98bcc2bf9bd1180018882045a..29332b5b9d56b2590d9ff738401374538cee3703 100644 (file)
@@ -31,7 +31,7 @@ There are 2 built-in rule profiles for JavaScript: `Sonar way` (default) and `So
 <!-- sonarqube -->
 ## Custom rules
 [[warning]]
-| ![](/images/exclamation.svg) This feature is deprecated
+| This feature is deprecated
 ### Overview
 
 The JavaScript Analyzer parses the source code, creates an Abstract Syntax Tree (AST) and then walks through the entire tree. A coding rule is a visitor that is able to visit nodes from this AST.
@@ -71,7 +71,8 @@ You can implement both `RulesDefinition` and `CustomRulesRepository` in a single
 #### Using DoubleDispatchVisitorCheck
 `DoubleDispatchVisitorCheck` extends `DoubleDispatchVisitor` which provide a set of methods to visit specific tree nodes (these methods' names start with `visit`). To explore a part of the AST, override the required method(s). For example, if you want to explore `if` statement nodes, override the `DoubleDispatchVisitor#visitIfStatement` method that will be called each time an `IfStatementTree` node is encountered in the AST.
 
-![](/images/exclamation.svg) When overriding a visit method, you must call the `super` method in order to allow the visitor to visit the rest of the tree.
+[[warning]]
+| When overriding a visit method, you must call the `super` method in order to allow the visitor to visit the rest of the tree.
 
 #### Using SubscriptionVisitorCheck
 `SubscriptionVisitorCheck` extends `SubscriptionVisitor`. To explore a part of the AST, override `SubscribtionVisitor#nodesToVisit()` by returning the list of the `Tree#Kind` of node you want to visit. For example, if you want to explore `if` statement nodes the method will return a list containing the element `Tree#Kind#IF_STATEMENT`.
index 15e521445de0c87f9717efcff3dc7a509fbc4b50..ca069f02df134c1dc3d8bc29c8a1d89c6e2e370c 100644 (file)
@@ -63,7 +63,8 @@ Here are the step to follow:
 
 To explore a part of the AST, override a method from the PHPVisitorCheck. For example, if you want to explore "if statement" nodes, override [PHPVisitorCheck#visitIfStatement](https://github.com/SonarSource/sonar-php/blob/master/php-frontend/src/main/java/org/sonar/plugins/php/api/visitors/PHPVisitorCheck.java#L265) method that will be called each time an [ifStatementTree](https://github.com/SonarSource/sonar-php/blob/master/php-frontend/src/main/java/org/sonar/plugins/php/api/tree/statement/IfStatementTree.java) node is encountered in the AST.
 
-![](/images/exclamation.svg) When overriding a visit method, you must call the super method in order to allow the visitor to visit the children the node.
+[[warning]]
+| When overriding a visit method, you must call the super method in order to allow the visitor to visit the children the node.
 
 **Using `PHPSubscriptionCheck`**
 
index fe532e8537d370e3776d07967fae0df31898eec9..8f94b21ac7307075017f9036091c35d7a8752e17 100644 (file)
@@ -73,7 +73,8 @@ To get started a sample plugin can be found here: [python-custom-rules](https://
 
 To explore a part of the AST, override a method from the PythonCheckTree. For example, if you want to explore "if statement" nodes, override [PythonCheckTree#visitIfStatement](https://github.com/SonarSource/sonar-python/blob/39b6126e9fdef42b93004cf6cc5818e861051334/python-frontend/src/main/java/org/sonar/plugins/python/api/tree/BaseTreeVisitor.java#L56) method that will be called each time an [ifStatement](https://github.com/SonarSource/sonar-python/blob/master/python-frontend/src/main/java/org/sonar/plugins/python/api/tree/IfStatement.java) node is encountered in the AST.
 
-![](/images/exclamation.svg) When overriding a visit method, you must call the super method in order to allow the visitor to visit the children the node.
+[[warning]]
+| When overriding a visit method, you must call the super method in order to allow the visitor to visit the children the node.
 
 **Using `PythonSubscriptionCheck`**
 
index 78953578526a362a1121a513cd2bf115ed32c353..09123be504e095b547b082e2a0067fc43b3c70f9 100644 (file)
@@ -24,7 +24,8 @@ SonarCloud currently does not trigger analyses automatically - this feature will
 
 After creating a project, the tutorial available on its homepage will guide you to find how to trigger an analysis.
 
-![Info](/images/info.svg) Remember that depending on which cloud solution you are using for your developments, you can rely on dedicated integrations to help you:
+[[info]]
+| Remember that depending on which cloud solution you are using for your developments, you can rely on dedicated integrations to help you:
 
 * [GitHub](/integrations/github/)
 * [Bitbucket Cloud](/integrations/bitbucketcloud/)
index 947fd8858fb5248c814f2f197aa52f352f9d4768..dbb87bdfddea5dc8a190ac04c8e5dd943d2873a7 100644 (file)
@@ -110,7 +110,7 @@ Parameter|Description
 For detailed information about all available parameters, see [Analysis Parameters](/analysis/analysis-parameters/).
 
 [[warning]]
-| ![](/images/exclamation.svg) The "begin" step will modify your build like this:
+| The "begin" step will modify your build like this:
 | * the active `CodeAnalysisRuleSet` will be updated to match the SonarQube quality profile
 | * `WarningsAsErrors` will be turned off
 |
index 0993c6435df6d9d811edd3a11441ffee303e3e96..1cb05294455262fa20989e71bbc0a2fe7ca332f0 100644 (file)
@@ -90,7 +90,7 @@ The `RuleKey` value can be one of the following:
   * [S2091](https://rules.sonarsource.com/csharp/RSPEC-2091): XPath Injection
 
 [[info]]
-| ![](/images/info.svg) The configuration works per rule. There is no way to share configuration between rules. 
+| The configuration works per rule. There is no way to share configuration between rules. 
 
 ## File Format
 
index fde4686d55018397b440250a307d4f6bea4f994d..3bcc3bb4d3385aed81d243c804e07492b08ac9b3 100644 (file)
@@ -11,7 +11,7 @@ There are two ways to extend coding rules:
 If both are available, the Java API will be more fully-featured than what's available for XPath, and is generally preferable.
 
 [[info]]
-| ![](/images/info.svg) Before implementing a new coding rule, you should consider whether it is specific to your own context or might benefit others. If it might benefit others, you can propose it on the [Community Forum](https://community.sonarsource.com/). If there is shared interest, then it might be implemented for you directly in the related language plugin. It means less maintenance for you, and benefit to others.
+| Before implementing a new coding rule, you should consider whether it is specific to your own context or might benefit others. If it might benefit others, you can propose it on the [Community Forum](https://community.sonarsource.com/). If there is shared interest, then it might be implemented for you directly in the related language plugin. It means less maintenance for you, and benefit to others.
 
 ## Custom rule support by language
 Languages not listed here don't support custom rules
index 961256a062053b0efd855cf6eeb0a0f474cf8aef..062b6bbd6a693b01261f296c6cf25b186f151222 100644 (file)
@@ -41,7 +41,7 @@ If your plugin meets these requirements, feel free to start a new thread on the
 * the link to a PR adding a file for your plugin to the sonar-update-center-properties repo, and the elements of a "new release" email listed below.
 
 [[info]]
-| ![](/images/info.svg) We reserve the right to exclude from the Marketplace plugins that we feel would be a dis-service to the community.
+| We reserve the right to exclude from the Marketplace plugins that we feel would be a dis-service to the community.
 
 ## Announcing new releases
 When you've got a new release that should be published in the Marketplace, please:
index 2777a64d19027673e38f1025b9ceab7bdcc3fd5e..6dac3082407c44344c965b233200c601cfb93d7e 100644 (file)
@@ -253,7 +253,7 @@ public class ExamplePlugin implements Plugin {
 It is recommended not to call other components in constructors. Indeed, they may not be initialized at that time. Constructors should only be used for dependency injection.
 
 [[warning]]
-| ![](/images/exclamation.svg) Compilation does not fail if incorrect dependencies are defined, such as a scanner extension trying to call a web server extension. Still it will fail at runtime when plugin is loaded.
+| Compilation does not fail if incorrect dependencies are defined, such as a scanner extension trying to call a web server extension. Still it will fail at runtime when plugin is loaded.
 
 ### Third-party Libraries
 Plugins are executed in their own isolated classloaders. That allows the packaging and use of 3rd-party libraries without runtime conflicts with core internal libraries or other plugins. Note that since version 5.2, the SonarQube API does not bring transitive dependencies, except SLF4J. The libraries just have to be declared in the pom.xml with default scope "compile":
@@ -276,7 +276,7 @@ pom.xml
 Technically the libraries are packaged in the directory META-INF/lib of the generated JAR file. An alternative is to shade libraries, for example with maven-shade-plugin. That minimizes the size of the plugin .jar file by copying only the effective used classes.
 
 [[info]]
-| ![](/images/info.svg) The command `mvn dependency:tree` gives the list of all dependencies, including transitive ones.
+| The command `mvn dependency:tree` gives the list of all dependencies, including transitive ones.
 
 ### Configuration
 The core component [`org.sonar.api.config.Configuration`](http://javadocs.sonarsource.org/latest/apidocs/index.html?org/sonar/api/config/Configuration.html) provides access to configuration. It deals with default values and decryption of values. It is available in all stacks (scanner, web server, Compute Engine). As recommended earlier, it must not be called from constructors.
@@ -334,7 +334,7 @@ public class ExamplePlugin implements Plugin {
 ```
 
 [[info]]
-| ![](/images/info.svg) Values of the properties suffixed with `.secured` are not available to non-authorized users (anonymous and users without project or global administration rights). `.secured` is needed for passwords, for instance.
+| Values of the properties suffixed with `.secured` are not available to non-authorized users (anonymous and users without project or global administration rights). `.secured` is needed for passwords, for instance.
 
 The annotation [`@org.sonar.api.Property`](http://javadocs.sonarsource.org/latest/apidocs/index.html?org/sonar/api/Property.html) can also be used on an extension to declare a property, but org.sonar.api.config.PropertyDefinition is preferred.
 ```
index 59e04475a80edeb1aca93b8b079c961a3f39b77b..96cb28548e03bbbb2ee1ed8e0a526d47dbdcf1a6 100644 (file)
@@ -91,7 +91,7 @@ Notes:
 You can ignore issues on certain components and for certain coding rules. To list a specific rule, use the fully qualified rule ID.
 
 [[info]]
-| ![](/images/info.svg) You can find the fully qualified rule ID on the Rule definition.
+| You can find the fully qualified rule ID on the Rule definition.
 
 Examples:
 
index c7d0b32fe8ced6bef3a470f460c6da43b2969cb1..5672d9053a3bf9d2938bae14807cd1666053dca0 100644 (file)
@@ -5,7 +5,8 @@ url: /requirements/requirements/
 ## Prerequisite
 The only prerequisite for running SonarQube is to have Java (Oracle JRE 11 or OpenJDK 11) installed on your machine.
 
-![](/images/exclamation.svg) **Note:** _On Mac OS X it is highly recommended to install Oracle JDK 11 instead of the corresponding Oracle JRE since the JRE installation does not fully set up your Java environment properly. See [this post](http://stackoverflow.com/questions/15624667/mac-osx-java-terminal-version-incorrect) for more information._
+[[warning]]
+| **Note:** _On Mac OS X it is highly recommended to install Oracle JDK 11 instead of the corresponding Oracle JRE since the JRE installation does not fully set up your Java environment properly. See [this post](http://stackoverflow.com/questions/15624667/mac-osx-java-terminal-version-incorrect) for more information._
 
 ## Hardware Requirements
 1. A small-scale (individual or small team) instance of the SonarQube server requires at least 2GB of RAM to run efficiently and 1GB of free RAM for the OS. If you are installing an instance for a large teams or Enterprise, please consider the additional recommendations below.
index d6ce081b1624edf7c4d258132afbfb3984ea525e..b9dbfae1c3e36b782fc01c9a340639147a78e54f 100644 (file)
@@ -12,9 +12,9 @@ Create an empty schema and a `sonarqube` user. Grant this `sonarqube` user permi
 
 ### Microsoft SQL Server
 
-![](/images/exclamation.svg) Collation **MUST** be case-sensitive (CS) and accent-sensitive (AS).
-
-![](/images/exclamation.svg) `READ_COMMITED_SNAPSHOT` **MUST** be set on the SonarQube database.
+[[warning]]
+| Collation **MUST** be case-sensitive (CS) and accent-sensitive (AS).  
+| `READ_COMMITED_SNAPSHOT` **MUST** be set on the SonarQube database.
 
 MS SQL database's shared lock strategy may impact SonarQube runtime. Making sure that `is_read_committed_snapshot_on` is set to `true` to prevent SonarQube from facing potential deadlocks under heavy loads. 
 
index 4db73aa438e48f26621fcecc8f9ae5973a751fc2..43d90320ee3ea4264cc60cf7b1293189bc790edf 100644 (file)
@@ -13,11 +13,12 @@ Example 2 : 6.2 -> 6.7, migration path is 6.2 -> 6.7.x LTS (where x is the lates
 
 This is a generic upgrade guide. Carefully read the [Release Upgrade Notes](/setup/upgrade-notes/) of your target version and of any intermediate version(s).
 
-![](/images/info.svg) **Planning to Upgrade to a Commercial Edition?**
-If you are moving to 6.7 LTS and installing a Commercial Edition, please read this [documentation](https://docs.sonarqube.org/display/SONARQUBE67/SonarSource+Editions).
+[[info]]
+| **Planning to Upgrade to a Commercial Edition?**  
+| If you are moving to 6.7 LTS and installing a Commercial Edition, please read this [documentation](https://docs.sonarqube.org/display/SONARQUBE67/SonarSource+Editions).
 
 [[warning]]
-| ![](/images/exclamation.svg) Before you start, back up your SonarQube Database. Upgrade problems are rare, but you'll want the backup if anything does happen.
+| Before you start, back up your SonarQube Database. Upgrade problems are rare, but you'll want the backup if anything does happen.
 
 1. Download and unzip the SonarQube distribution of your edition in a fresh directory, let's say `$NEW_SONARQUBE_HOME`
 2. Manually install the non-default plugins that are compatible with your version of SonarQube. Use the [Compatibility Matrix](https://docs.sonarqube.org/display/PLUG/Plugin+Version+Matrix) to ensure that the versions you install are compatible with your server version. Note that the most recent versions of all SonarSource code analyzers available in your edition are installed by default. Simply copying plugins from the old server to the new is not recommended; incompatible or duplicate plugins could cause startup errors.
index 4154a679fee208df03915172d624f0d12b8c2ff5..fecd6dbc68e654bf823f1dfc21217e7dfa9eb411 100644 (file)
@@ -20,7 +20,8 @@ For GitHub repositories, there are 2 ways to have your code analyzed:
 With AutoScan, SonarCloud will autonomously pull your code and scan your default branch and your pull requests.
 Please read the ["AutoScan Beta Feature"](/autoscan/) documentation page to get the details.
 
-![](/images/exclamation.svg) This is currently a Beta feature which does not work for all languages and comes with limitations. 
+[[warning]]
+| This is currently a Beta feature which does not work for all languages and comes with limitations. 
 
 ### ... using your CI service
 
index 564c109456388bfd15d496f39b9bd7cce7fefeb1..bbfa507f08134d44a8c7392eecbf7b8c42fc8f09 100644 (file)
@@ -10,7 +10,7 @@ url: /integrations/vsts/
 You can connect to SonarCloud using your Azure DevOps account. On the [login page](/#sonarcloud#/sessions/new), just click on the "Log in with Azure DevOps" button.
 
 [[warning]]
-| ![Warning](/images/exclamation.svg) Only work and school Azure DevOps accounts are authorized to login on SonarCloud.
+| Only work and school Azure DevOps accounts are authorized to login on SonarCloud.
 
 ## Install the SonarCloud Azure DevOps extension
 
index 8e2b53a6ad2a5b4329b9df07049d9f28394845b6..46706ab44e3c35a105bb5f29f39de1055560067f 100644 (file)
   padding: var(--gridSize) calc(2 * var(--gridSize));
 }
 
+.documentation-content.markdown .alert .custom-block-body {
+  padding-left: 24px;
+  background-position: left 6px;
+  background-repeat: no-repeat;
+}
+
+.documentation-content.markdown .alert-success .custom-block-body {
+  background-image: url(/images/check.svg);
+}
+
+.documentation-content.markdown .alert-info .custom-block-body {
+  background-image: url(/images/info.svg);
+}
+
+.documentation-content.markdown .alert-warning .custom-block-body {
+  background-image: url(/images/exclamation.svg);
+}
+
+.documentation-content.markdown .alert-error .custom-block-body,
+.documentation-content.markdown .alert-danger .custom-block-body {
+  background-image: url(/images/cross.svg);
+}
+
 .documentation-content.markdown .collapse-container {
   border: 1px solid var(--barBorderColor);
   border-radius: 2px;
index 07028c0d42d1e9c0b6fd16dcc2e2b0fb26f1e7cb..00d63f3ae46c7475b9d18a7566f6ca01f55bc782 100644 (file)
   display: none;
 }
 
-.markdown-content .alert-error {
+.markdown-content .alert-error,
+.markdown-content .alert-danger {
   border-color: var(--alertBorderError);
   background-color: var(--alertBackgroundError);
   color: var(--alertTextError);
 }
 
-.markdown-content .alert-error .alert-icon {
+.markdown-content .alert-error .alert-icon,
+.markdown-content .alert-danger .alert-icon {
   border-color: var(--alertBorderError);
 }