diff options
author | G. Ann Campbell <ann.campbell@sonarsource.com> | 2019-04-26 10:50:11 -0400 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-04-26 20:21:07 +0200 |
commit | 5544c158c1d076b429b00e3ed3a10cb6c748910b (patch) | |
tree | 1895e520252a956ed4286558f0fc8d69a9828e87 /server/sonar-docs/src/pages | |
parent | 0619f3cd296045ab29ff44b48768c34a8dd2bcde (diff) | |
download | sonarqube-5544c158c1d076b429b00e3ed3a10cb6c748910b.tar.gz sonarqube-5544c158c1d076b429b00e3ed3a10cb6c748910b.zip |
DOC improve DEV docs nav & text tweaks
Diffstat (limited to 'server/sonar-docs/src/pages')
4 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-docs/src/pages/extend/developing-plugin.md b/server/sonar-docs/src/pages/extend/developing-plugin.md index 05cc7ac8fb6..1c804375a92 100644 --- a/server/sonar-docs/src/pages/extend/developing-plugin.md +++ b/server/sonar-docs/src/pages/extend/developing-plugin.md @@ -1,5 +1,5 @@ --- -title: Developing a plugin +title: Plugin basics url: /extend/developing-plugin/ --- diff --git a/server/sonar-docs/src/pages/extend/extend-web-app.md b/server/sonar-docs/src/pages/extend/extend-web-app.md index cffa351e212..2b4fae014d2 100644 --- a/server/sonar-docs/src/pages/extend/extend-web-app.md +++ b/server/sonar-docs/src/pages/extend/extend-web-app.md @@ -1,5 +1,5 @@ --- -title: Extending the Web App +title: Adding pages to the webapp url: /extend/extend-web-app/ --- SonarQube provides the ability to add a new JavaScript page. A page (or page extension) is a JavaScript application that runs in the SonarQube environment. You can find the example of page extensions in the SonarQube or [sonar-custom-plugin-example](https://github.com/SonarSource/sonar-custom-plugin-example/tree/6.x/) repositories on GitHub. diff --git a/server/sonar-docs/src/pages/extend/i18n.md b/server/sonar-docs/src/pages/extend/i18n.md index cb2279234c9..c0f660df83c 100644 --- a/server/sonar-docs/src/pages/extend/i18n.md +++ b/server/sonar-docs/src/pages/extend/i18n.md @@ -5,7 +5,7 @@ url: /extend/i18n/ This page gives guidelines to I18n for: -* Plugin developers who would like to apply the i18n mechanism in their own plugin, so that this plugin can be available in several languages. +* Plugin developers who would like to apply the i18n mechanism in their own plugins, so that these plugins can be available in several languages. * People who would like to help the community by making the platform available in a new language. ## Principles diff --git a/server/sonar-docs/src/pages/extend/new-langauges.md b/server/sonar-docs/src/pages/extend/new-langauges.md index 26db3f6ae11..b6a5ee34edb 100644 --- a/server/sonar-docs/src/pages/extend/new-langauges.md +++ b/server/sonar-docs/src/pages/extend/new-langauges.md @@ -9,7 +9,7 @@ The steps to cover a new programming language are: 1. Write the grammar. This is the hardest part. 1. Write a parser (a parser simply parses an input based on your grammar to yield a parse tree). 1. Test your grammar, to ensure it is able to parse real-life language files. -1. Write a few parse tree visitors. Some visitors will compute metrics, while others will enforce [coding rules](/extend/adding-coding-rules/). A dozen or so visitors is sufficient for an initial release. +1. Write a few parse tree visitors. Some visitors will compute metrics such as [executable lines](/extend/executable-lines/), while others will enforce [coding rules](/extend/adding-coding-rules/). A dozen or so visitors is sufficient for an initial release. 1. Write a scanner Sensor, in a SonarQube plugin, to launch the visitors. 1. Compute 1. issues |