aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-docs/src
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2019-04-09 13:55:26 +0200
committerSonarTech <sonartech@sonarsource.com>2019-04-23 20:21:09 +0200
commitb92d5bf5496c2ea1705cc07de0228e2a868f926e (patch)
treef1d9dd3814bece332a3bc912fcd39b7d5350bd88 /server/sonar-docs/src
parent4f885e88db04134cea9d500e89f28e6a09b65db2 (diff)
downloadsonarqube-b92d5bf5496c2ea1705cc07de0228e2a868f926e.tar.gz
sonarqube-b92d5bf5496c2ea1705cc07de0228e2a868f926e.zip
SONAR-11885 Add Hotspots to Overview page
* Update Measures links on Overview page * Add tooltips to the issues and metrics on the Overview page * Move activity page links on the Overview page * Add tests for untested components * Add bugs and vulnerabilities graphs on overview page
Diffstat (limited to 'server/sonar-docs/src')
-rw-r--r--server/sonar-docs/src/tooltips/metrics/bugs.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/code-smells.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/coverage.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/debt.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/duplicated-blocks.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/duplications.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/security-hotspots.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/unit-tests.md1
-rw-r--r--server/sonar-docs/src/tooltips/metrics/vulnerabilities.md1
9 files changed, 9 insertions, 0 deletions
diff --git a/server/sonar-docs/src/tooltips/metrics/bugs.md b/server/sonar-docs/src/tooltips/metrics/bugs.md
new file mode 100644
index 00000000000..ff8e346d96b
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/bugs.md
@@ -0,0 +1 @@
+A coding error that will break your code and needs to be fixed immediately. \ No newline at end of file
diff --git a/server/sonar-docs/src/tooltips/metrics/code-smells.md b/server/sonar-docs/src/tooltips/metrics/code-smells.md
new file mode 100644
index 00000000000..95a031e8373
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/code-smells.md
@@ -0,0 +1 @@
+Code that is confusing and difficult to maintain. \ No newline at end of file
diff --git a/server/sonar-docs/src/tooltips/metrics/coverage.md b/server/sonar-docs/src/tooltips/metrics/coverage.md
new file mode 100644
index 00000000000..28784cdc084
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/coverage.md
@@ -0,0 +1 @@
+The percentage of lines of code covered by tests. \ No newline at end of file
diff --git a/server/sonar-docs/src/tooltips/metrics/debt.md b/server/sonar-docs/src/tooltips/metrics/debt.md
new file mode 100644
index 00000000000..8b6141bf74b
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/debt.md
@@ -0,0 +1 @@
+The estimated time it will take to fix all Code Smells. \ No newline at end of file
diff --git a/server/sonar-docs/src/tooltips/metrics/duplicated-blocks.md b/server/sonar-docs/src/tooltips/metrics/duplicated-blocks.md
new file mode 100644
index 00000000000..0458c5f7df1
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/duplicated-blocks.md
@@ -0,0 +1 @@
+The number of duplicated blocks of lines of code. \ No newline at end of file
diff --git a/server/sonar-docs/src/tooltips/metrics/duplications.md b/server/sonar-docs/src/tooltips/metrics/duplications.md
new file mode 100644
index 00000000000..31ae4afde25
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/duplications.md
@@ -0,0 +1 @@
+Identical lines of code. \ No newline at end of file
diff --git a/server/sonar-docs/src/tooltips/metrics/security-hotspots.md b/server/sonar-docs/src/tooltips/metrics/security-hotspots.md
new file mode 100644
index 00000000000..a9460e893e0
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/security-hotspots.md
@@ -0,0 +1 @@
+Security-sensitive code that requires manual review to assess whether or not a vulnerability exists.
diff --git a/server/sonar-docs/src/tooltips/metrics/unit-tests.md b/server/sonar-docs/src/tooltips/metrics/unit-tests.md
new file mode 100644
index 00000000000..96fb4ef3663
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/unit-tests.md
@@ -0,0 +1 @@
+Tests that ensure your code is working properly. \ No newline at end of file
diff --git a/server/sonar-docs/src/tooltips/metrics/vulnerabilities.md b/server/sonar-docs/src/tooltips/metrics/vulnerabilities.md
new file mode 100644
index 00000000000..f7845ac883e
--- /dev/null
+++ b/server/sonar-docs/src/tooltips/metrics/vulnerabilities.md
@@ -0,0 +1 @@
+Code that can be exploited by hackers. \ No newline at end of file