| Edwin Kempin | 6a78963 | 2015-02-13 11:48:04 +0100 | [diff] [blame] | 1 | = Plugins |
| 2 | |
| 3 | The Gerrit server functionality can be extended by installing plugins. |
| 4 | |
| 5 | [[installation]] |
| 6 | == Plugin Installation |
| 7 | Plugin installation is as easy as dropping the plugin jar into the |
| 8 | `$site_path/plugins/` folder. It may take |
| 9 | link:config-gerrit.html#plugins.checkFrequency[a few minutes] until |
| 10 | the server picks up new and updated plugins. |
| 11 | |
| 12 | Plugins can also be installed via |
| 13 | link:rest-api-plugins.html#install-plugin[REST] and |
| 14 | link:cmd-plugin-install.html[SSH]. |
| 15 | |
| 16 | [[development]] |
| 17 | == Plugin Development |
| 18 | |
| 19 | How to develop plugins is described in the link:dev-plugins.html[ |
| 20 | Plugin Development Guide]. |
| 21 | |
| 22 | If you want to share your plugin under the link:licenses.html#Apache2_0[ |
| 23 | Apache License 2.0] you can host your plugin development on the |
| 24 | link:https://gerrit-review.googlesource.com[gerrit-review] Gerrit |
| 25 | Server. You can request the creation of a new Project by email |
| 26 | to the link:https://groups.google.com/forum/#!forum/repo-discuss[Gerrit |
| 27 | mailing list]. You would be assigned as project owner of the new plugin |
| 28 | project so that you can submit changes on your own. It is the |
| 29 | responsibility of the project owner to maintain the plugin, e.g. to |
| 30 | make sure that it works with new Gerrit versions and to create stable |
| 31 | branches for old releases. |
| 32 | |
| 33 | [[core-plugins]] |
| 34 | == Core Plugins |
| 35 | |
| 36 | Core plugins are packaged within the Gerrit war file and can easily be |
| 37 | installed during the link:pgm-init.html[Gerrit initialization]. |
| 38 | |
| 39 | The core plugins are developed and maintained by the Gerrit maintainers |
| 40 | and the Gerrit community. |
| 41 | |
| 42 | === commit-message-length-validator |
| 43 | |
| 44 | This plugin checks the length of a commit’s commit message subject and |
| 45 | message body, and reports warnings or errors to the git client if the |
| 46 | lengths are exceeded. |
| 47 | |
| 48 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/commit-message-length-validator[ |
| 49 | Project] | |
| 50 | link:https://gerrit.googlesource.com/plugins/commit-message-length-validator/+doc/master/src/main/resources/Documentation/about.md[ |
| 51 | Documentation] | |
| 52 | link:https://gerrit.googlesource.com/plugins/commit-message-length-validator/+doc/master/src/main/resources/Documentation/config.md[ |
| 53 | Configuration] |
| 54 | |
| 55 | === cookbook-plugin |
| 56 | |
| 57 | Sample plugin to demonstrate features of Gerrit's plugin API. |
| 58 | |
| 59 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/cookbook-plugin[ |
| 60 | Project] | |
| 61 | link:https://gerrit.googlesource.com/plugins/cookbook-plugin/+doc/master/src/main/resources/Documentation/about.md[ |
| 62 | Documentation] |
| 63 | |
| 64 | === download-commands |
| 65 | |
| 66 | This plugin defines commands for downloading changes in different |
| 67 | download schemes (for downloading via different network protocols). |
| 68 | |
| 69 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/download-commands[ |
| 70 | Project] | |
| 71 | link:https://gerrit.googlesource.com/plugins/download-commands/+doc/master/src/main/resources/Documentation/about.md[ |
| 72 | Documentation] | |
| 73 | link:https://gerrit.googlesource.com/plugins/download-commands/+doc/master/src/main/resources/Documentation/config.md[ |
| 74 | Configuration] |
| 75 | |
| 76 | === replication |
| 77 | |
| 78 | This plugin can automatically push any changes Gerrit Code Review makes |
| 79 | to its managed Git repositories to another system. Usually this would |
| 80 | be configured to provide mirroring of changes, for warm-standby |
| 81 | backups, or a load-balanced public mirror farm. |
| 82 | |
| 83 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/replication[ |
| 84 | Project] | |
| 85 | link:https://gerrit.googlesource.com/plugins/replication/+doc/master/src/main/resources/Documentation/about.md[ |
| 86 | Documentation] | |
| 87 | link:https://gerrit.googlesource.com/plugins/replication/+doc/master/src/main/resources/Documentation/config.md[ |
| 88 | Configuration] |
| 89 | |
| 90 | === reviewnotes |
| 91 | |
| 92 | Stores review information for Gerrit changes in the `refs/notes/review` |
| 93 | branch. |
| 94 | |
| 95 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/reviewnotes[ |
| 96 | Project] | |
| 97 | link:https://gerrit.googlesource.com/plugins/reviewnotes/+doc/master/src/main/resources/Documentation/about.md[ |
| 98 | Documentation] |
| 99 | |
| 100 | === singleusergroup |
| 101 | |
| 102 | This plugin provides a group per user. This is useful to assign access |
| 103 | rights directly to a single user, since in Gerrit access rights can |
| 104 | only be assigned to groups. |
| 105 | |
| 106 | [[other-plugins]] |
| 107 | == Other Plugins |
| 108 | |
| 109 | Besides core plugins there are many other Gerrit plugins available. |
| 110 | These plugins are developed and maintained by different parties. |
| 111 | The Gerrit Project doesn't guarantee proper functionality of any of |
| 112 | these plugins. |
| 113 | |
| 114 | The Gerrit Project doesn't provide binaries for these plugins, but |
| 115 | there are some public services, like the |
| 116 | link:https://ci.gerritforge.com/[CI Server from GerritForge], that |
| 117 | offer the download of ready plugin jars. |
| 118 | |
| 119 | The following list gives an overview about available plugins, but the |
| 120 | list may not be complete. You may discover more plugins on |
| 121 | link:https://gerrit-review.googlesource.com/#/admin/projects/?filter=plugins%252F[ |
| 122 | gerrit-review]. |
| 123 | |
| 124 | === admin-console |
| 125 | |
| 126 | Plugin to provide administrator-only functionality, intended to |
| 127 | simplify common administrative tasks. Currently providing user-level |
| 128 | information. Also providing access control information by project or |
| 129 | project/account. |
| 130 | |
| 131 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/admin-console[ |
| 132 | Project] | |
| 133 | link:https://gerrit.googlesource.com/plugins/admin-console/+doc/master/src/main/resources/Documentation/about.md[ |
| 134 | Documentation] |
| 135 | |
| 136 | === avatars/external |
| 137 | |
| 138 | This plugin allows to use an external url to load the avatar images |
| 139 | from. |
| 140 | |
| 141 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/avatars/external[ |
| 142 | Project] | |
| 143 | link:https://gerrit.googlesource.com/plugins/avatars/external/+doc/master/src/main/resources/Documentation/about.md[ |
| 144 | Documentation] | |
| 145 | link:https://gerrit.googlesource.com/plugins/avatars/external/+doc/master/src/main/resources/Documentation/config.md[ |
| 146 | Configuration] |
| 147 | |
| 148 | === avatars/gravatar |
| 149 | |
| 150 | Plugin to display user icons from Gravatar. |
| 151 | |
| 152 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/avatars/gravatar[ |
| 153 | Project] |
| 154 | |
| 155 | === branch-network |
| 156 | |
| 157 | This plugin allows the rendering of Git repository branch network in a |
| 158 | graphical HTML5 Canvas. It is mainly intended to be used as a |
| 159 | "project link" in a GitWeb configuration or by other Gerrit GWT UI |
| 160 | plugins to be plugged elsewhere in Gerrit. |
| 161 | |
| 162 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/branch-network[ |
| 163 | Project] | |
| 164 | link:https://gerrit.googlesource.com/plugins/branch-network/+doc/master/src/main/resources/Documentation/about.md[ |
| 165 | Documentation] | |
| 166 | link:https://gerrit.googlesource.com/plugins/branch-network/+doc/master/src/main/resources/Documentation/config.md[ |
| 167 | Configuration] |
| 168 | |
| 169 | === changemessage |
| 170 | |
| 171 | This plugin allows to display a static info message on the change screen. |
| 172 | |
| 173 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/changemessage[ |
| 174 | Project] | |
| 175 | link:https://gerrit.googlesource.com/plugins/changemessage/+doc/master/src/main/resources/Documentation/about.md[ |
| 176 | Plugin Documenatation] | |
| 177 | link:https://gerrit.googlesource.com/plugins/changemessage/+doc/master/src/main/resources/Documentation/config.md[ |
| 178 | Configuration] |
| 179 | |
| 180 | === codenvy |
| 181 | |
| 182 | Plugin to allow to edit code on-line on either an existing branch or an |
| 183 | active change using the link:http://codenvy.com[Codenvy] cloud |
| 184 | development platform. |
| 185 | |
| 186 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/codenvy[ |
| 187 | Project] |
| 188 | |
| 189 | === delete-project |
| 190 | |
| 191 | Provides the ability to delete a project. |
| 192 | |
| 193 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/delete-project[ |
| 194 | Project] | |
| 195 | link:https://gerrit.googlesource.com/plugins/delete-project/+doc/master/src/main/resources/Documentation/about.md[ |
| 196 | Documentation] |
| 197 | |
| 198 | === egit |
| 199 | |
| 200 | This plugin provides extensions for easier usage with EGit. |
| 201 | |
| 202 | The plugin adds a download command for EGit that allows to copy only |
| 203 | the change ref into the clipboard. The change ref is needed for |
| 204 | downloading a Gerrit change from within EGit. |
| 205 | |
| 206 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/egit[ |
| 207 | Project] | |
| 208 | link:https://gerrit.googlesource.com/plugins/egit/+doc/master/src/main/resources/Documentation/about.md[ |
| 209 | Documentation] |
| 210 | |
| 211 | === force-draft |
| 212 | |
| 213 | Provides an ssh command to force a change or patch set to draft status. |
| 214 | This is useful for administrators to be able to easily completely |
| 215 | delete a change or patch set from the server. |
| 216 | |
| 217 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/force-draft[ |
| 218 | Project] |
| 219 | |
| 220 | === gitblit |
| 221 | |
| 222 | GitBlit code-viewer plugin with SSO and Security Access Control. |
| 223 | |
| 224 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/gitblit[ |
| 225 | Project] |
| 226 | |
| 227 | === github |
| 228 | |
| 229 | Plugin to integrate with GitHub: replication, pull-request to Change-Sets |
| 230 | |
| 231 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/github[ |
| 232 | Project] |
| 233 | |
| 234 | === gitiles |
| 235 | |
| 236 | Plugin running Gitiles alongside a Gerrit server. |
| 237 | |
| 238 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/gitiles[ |
| 239 | Project] |
| 240 | |
| 241 | === imagare |
| 242 | |
| 243 | The imagare plugin allows Gerrit users to upload and share images. |
| 244 | |
| 245 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/imagare[ |
| 246 | Project] | |
| 247 | link:https://gerrit.googlesource.com/plugins/imagare/+doc/master/src/main/resources/Documentation/about.md[ |
| 248 | Documentation] | |
| 249 | link:https://gerrit.googlesource.com/plugins/imagare/+doc/master/src/main/resources/Documentation/config.md[ |
| 250 | Configuration] |
| 251 | |
| 252 | === Issue Tracker System Plugins |
| 253 | |
| 254 | Plugins to integrate with issue tracker systems (ITS), that (based |
| 255 | on events in Gerrit) allows to take actions in the ITS. For example, |
| 256 | they can add comments to bugs, or change status of bugs. |
| 257 | |
| 258 | All its-plugins have a common base implementation which is stored in |
| 259 | the `its-base` project. `its-base` is not a plugin, but just a |
| 260 | framework for the ITS plugins which is packaged within each ITS plugin. |
| 261 | |
| 262 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/its-base[ |
| 263 | its-base Project] | |
| 264 | link:https://gerrit.googlesource.com/plugins/its-base/+doc/master/src/main/resources/Documentation/about.md[ |
| 265 | its-base Documentation] | |
| 266 | link:https://gerrit.googlesource.com/plugins/its-base/+doc/master/src/main/resources/Documentation/config.md[ |
| 267 | its-base Configuration] |
| 268 | |
| 269 | ==== its-bugzilla |
| 270 | |
| 271 | Plugin to integrate with Bugzilla. |
| 272 | |
| 273 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/its-bugzilla[ |
| 274 | Project] | |
| 275 | link:https://gerrit.googlesource.com/plugins/its-bugzilla/+doc/master/src/main/resources/Documentation/about.md[ |
| 276 | Documentation] |
| 277 | |
| 278 | ==== its-jira |
| 279 | |
| 280 | Plugin to integrate with Jira. |
| 281 | |
| 282 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/its-jira[ |
| 283 | Project] | |
| 284 | link:https://gerrit.googlesource.com/plugins/its-jira/+doc/master/src/main/resources/Documentation/config.md[ |
| 285 | Configuration] |
| 286 | |
| 287 | ==== its-rtc |
| 288 | |
| 289 | Plugin to integrate with IBM Rational Team Concert (RTC). |
| 290 | |
| 291 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/its-rtc[ |
| 292 | Project] | |
| 293 | link:https://gerrit.googlesource.com/plugins/its-rtc/+doc/master/src/main/resources/Documentation/config.md[ |
| 294 | Configuration] |
| 295 | |
| 296 | === javamelody |
| 297 | |
| 298 | This plugin allows to monitor the Gerrit server. |
| 299 | |
| 300 | This plugin integrates JavaMelody in Gerrit in order to retrieve live |
| 301 | instrumentation data from Gerrit. |
| 302 | |
| 303 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/javamelody[ |
| 304 | Project] | |
| 305 | link:https://gerrit.googlesource.com/plugins/javamelody/+doc/master/src/main/resources/Documentation/about.md[ |
| 306 | Documentation] | |
| 307 | https://gerrit.googlesource.com/plugins/javamelody/+doc/master/src/main/resources/Documentation/config.md[ |
| 308 | Configuration] |
| 309 | |
| 310 | === menuextender |
| 311 | |
| 312 | The menuextender plugin allows Gerrit administrators to configure |
| 313 | additional menu entries from the WebUI. |
| 314 | |
| 315 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/menuextender[ |
| 316 | Project] | |
| 317 | link:https://gerrit.googlesource.com/plugins/menuextender/+doc/master/src/main/resources/Documentation/about.md[ |
| 318 | Documentation] | |
| 319 | link:https://gerrit.googlesource.com/plugins/menuextender/+doc/master/src/main/resources/Documentation/config.md[ |
| 320 | Configuration] |
| 321 | |
| 322 | === motd |
| 323 | |
| 324 | This plugin can output messages to clients when pulling/fetching/cloning |
| 325 | code from Gerrit Code Review. If the client (and transport mechanism) |
| 326 | can support sending the message to the client, it will be displayed to |
| 327 | the user (usually prefixed by “remote: ”), but will be silently |
| 328 | discarded otherwise. |
| 329 | |
| 330 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/motd[ |
| 331 | Project] | |
| 332 | link:https://gerrit.googlesource.com/plugins/motd/+doc/master/src/main/resources/Documentation/about.md[ |
| 333 | Documentation] | |
| 334 | link:https://gerrit.googlesource.com/plugins/motd/+doc/master/src/main/resources/Documentation/config.md[ |
| 335 | Configuration] |
| 336 | |
| 337 | === project-download-commands |
| 338 | |
| 339 | This plugin adds support for project specific download commands. |
| 340 | |
| 341 | Project specific download commands that are defined on a parent project |
| 342 | are inherited by the child projects. Child projects can overwrite the |
| 343 | inherited download command or remove it by assigning no value to it. |
| 344 | |
| 345 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/project-download-commands[ |
| 346 | Project] | |
| 347 | link:https://gerrit.googlesource.com/plugins/project-download-commands/+doc/master/src/main/resources/Documentation/about.md[ |
| 348 | Documentation] | |
| 349 | link:https://gerrit.googlesource.com/plugins/project-download-commands/+doc/master/src/main/resources/Documentation/config.md[ |
| 350 | Configuration] |
| 351 | |
| 352 | === quota |
| 353 | |
| 354 | This plugin allows to enforce quotas in Gerrit. |
| 355 | |
| 356 | To protect a Gerrit installation it makes sense to limit the resources |
| 357 | that a project or group can consume. To do this a Gerrit administrator |
| 358 | can use this plugin to define quotas on project namespaces. |
| 359 | |
| 360 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/quota[ |
| 361 | Project] | |
| 362 | link:https://gerrit.googlesource.com/plugins/quota/+doc/master/src/main/resources/Documentation/about.md[ |
| 363 | Documentation] |
| 364 | link:https://gerrit.googlesource.com/plugins/quota/+doc/master/src/main/resources/Documentation/config.md[ |
| 365 | Configuration] |
| 366 | |
| 367 | === reviewers |
| 368 | |
| 369 | A plugin that allows adding default reviewers to a change. |
| 370 | |
| 371 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/reviewers[ |
| 372 | Project] | |
| 373 | link:https://gerrit.googlesource.com/plugins/reviewers/+doc/master/src/main/resources/Documentation/about.md[ |
| 374 | Documentation] | |
| 375 | link:https://gerrit.googlesource.com/plugins/reviewers/+doc/master/src/main/resources/Documentation/config.md[ |
| 376 | Configuration] |
| 377 | |
| 378 | === reviewers-by-blame |
| 379 | |
| 380 | A plugin that allows automatically adding reviewers to a change from |
| 381 | the git blame computation on the changed files. It will add the users |
| 382 | that authored most of the lines touched by the change, since these |
| 383 | users should be familiar with the code and can mostly review the |
| 384 | change. |
| 385 | |
| 386 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/reviewers-by-blame[ |
| 387 | Project] | |
| 388 | link:https://gerrit.googlesource.com/plugins/reviewers-by-blame/+doc/master/src/main/resources/Documentation/about.md[ |
| 389 | Documentation] | |
| 390 | link:https://gerrit.googlesource.com/plugins/reviewers-by-blame/+doc/master/src/main/resources/Documentation/config.md[ |
| 391 | Configuration] |
| 392 | |
| 393 | === scripting/groovy-provider |
| 394 | |
| 395 | This plugin provides a Groovy runtime environment for Gerrit plugins in Groovy. |
| 396 | |
| 397 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/groovy-provider[ |
| 398 | Project] | |
| 399 | link:https://gerrit.googlesource.com/plugins/scripting/groovy-provider/+doc/master/src/main/resources/Documentation/about.md[ |
| 400 | Documentation] |
| 401 | |
| 402 | === scripting/scala-provider |
| 403 | |
| 404 | This plugin provides a Scala runtime environment for Gerrit plugins in Scala. |
| 405 | |
| 406 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/scala-provider[ |
| 407 | Project] | |
| 408 | link:https://gerrit.googlesource.com/plugins/scripting/scala-provider/+doc/master/src/main/resources/Documentation/about.md[ |
| 409 | Documentation] |
| 410 | |
| 411 | === server-config |
| 412 | |
| 413 | This plugin enables access (download and upload) to the server config |
| 414 | files. It may be used to change Gerrit config files (like |
| 415 | `etc/gerrit.config`) in cases where direct access to the file system |
| 416 | where Gerrit's config files are stored is difficult or impossible to |
| 417 | get. |
| 418 | |
| 419 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/server-config[ |
| 420 | Project] |
| 421 | |
| 422 | === serviceuser |
| 423 | |
| 424 | This plugin allows to create service users in Gerrit. |
| 425 | |
| 426 | A service user is a user that is used by another service to communicate |
| 427 | with Gerrit. E.g. a service user is needed to run the Gerrit Trigger |
| 428 | Plugin in Jenkins. A service user is not able to login into the Gerrit |
| 429 | WebUI and it cannot push commits or tags. |
| 430 | |
| 431 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/serviceuser[ |
| 432 | Project] | |
| 433 | link:https://gerrit.googlesource.com/plugins/serviceuser/+doc/master/src/main/resources/Documentation/about.md[ |
| 434 | Documentation] | |
| 435 | link:https://gerrit.googlesource.com/plugins/serviceuser/+doc/master/src/main/resources/Documentation/config.md[ |
| 436 | Configuration] |
| 437 | |
| 438 | === uploadvalidator |
| 439 | |
| 440 | This plugin allows to configure upload validations per project. |
| 441 | |
| 442 | Project owners can configure blocked file extensions, required footers |
| 443 | and a maximum allowed path length. Pushes of commits that violate these |
| 444 | settings are rejected by Gerrit. |
| 445 | |
| 446 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/uploadvalidator[ |
| 447 | Project] | |
| 448 | link:https://gerrit.googlesource.com/plugins/uploadvalidator/+doc/master/src/main/resources/Documentation/about.md[ |
| 449 | Documentation] | |
| 450 | link:https://gerrit.googlesource.com/plugins/uploadvalidator/+doc/master/src/main/resources/Documentation/config.md[ |
| 451 | Configuration] |
| 452 | |
| 453 | === websession-flatfile |
| 454 | |
| 455 | This plugin replaces the built-in Gerrit H2 based websession cache with |
| 456 | a flatfile based implementation. This implemantation is shareable |
| 457 | amongst multiple Gerrit servers, making it useful for multi-master |
| 458 | Gerrit installations. |
| 459 | |
| 460 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/websession-flatfile[ |
| 461 | Project] | |
| 462 | link:https://gerrit.googlesource.com/plugins/websession-flatfile/+doc/master/src/main/resources/Documentation/about.md[ |
| 463 | Documentation] | |
| 464 | link:https://gerrit.googlesource.com/plugins/websession-flatfile/+doc/master/src/main/resources/Documentation/config.md[ |
| 465 | Configuration] |
| 466 | |
| 467 | === wip |
| 468 | |
| 469 | This plugin adds a new button that allows a change owner to set a |
| 470 | change to Work In Progress, and a button to change from WIP back to a |
| 471 | "Ready For Review" state. |
| 472 | |
| 473 | Any change in the WIP state will not show up in anyone's Review |
| 474 | Requests. Pushing a new patchset will reset the change to Review In |
| 475 | Progress. |
| 476 | |
| 477 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/wip[ |
| 478 | Project] | |
| 479 | link:https://gerrit.googlesource.com/plugins/wip/+doc/master/src/main/resources/Documentation/about.md[ |
| 480 | Documentation] | |
| 481 | link:https://gerrit.googlesource.com/plugins/wip/+doc/master/src/main/resources/Documentation/config.md[ |
| 482 | Configuration] |
| 483 | |
| 484 | === x-docs |
| 485 | |
| 486 | This plugin serves project documentation as HTML pages. |
| 487 | |
| 488 | link:https://gerrit-review.googlesource.com/#/admin/projects/plugins/scripting/x-docs[ |
| 489 | Project] | |
| 490 | link:https://gerrit.googlesource.com/plugins/x-docs/+doc/master/src/main/resources/Documentation/about.md[ |
| 491 | Documentation] | |
| 492 | link:https://gerrit.googlesource.com/plugins/x-docs/+doc/master/src/main/resources/Documentation/config.md[ |
| 493 | Configuration] |
| 494 | |
| 495 | |
| 496 | GERRIT |
| 497 | ------ |
| 498 | Part of link:index.html[Gerrit Code Review] |
| 499 | |
| 500 | SEARCHBOX |
| 501 | --------- |