\r
*SINCE 1.5.0*\r
\r
-Document (limited) plugin infrastructure.\r
+Gitblit supports extending and enhacing the core functionality through plugins. This mechanism is very young and incomplete with few extension points, but you can expect it to evolve rapidly in upcoming releases.\r
+\r
+### Architecture\r
+\r
+The existing plugin mechanism is based on [pf4j](https://github.com/decebals/pf4j). Plugins are distributed as zip files and may include their runtime dependencies or may rely on the bundled dependencies of other plugins and/or Gitblit core.\r
+\r
+The zip plugins are stored in `${baseFolder}/plugins` and are unpacked on startup into folders of the same name.\r
+\r
+A plugin defines it's metadata in the META-INF/MANIFEST.MF file:\r
+\r
+ Plugin-Class: com.gitblit.plugins.cookbook.CookbookPlugin\r
+ Plugin-Dependencies: foo, bar\r
+ Plugin-Id: gitblit-plugin\r
+ Plugin-Provider: John Doe\r
+ Plugin-Version: 1.0\r
+\r
+In addition to extending Gitblit core, plugins can also define extension points that may be implemented by other plugins. Therefore a plugin may depend on other plugins.\r
+\r
+ Plugin-Dependencies: foo, bar\r
+\r
+Plugins are controlled by the `plugin` SSH dispatch command. Only *administrators* have permission to use this dispatch command.\r
+\r
+The pf4j plugin framework relies on a javac apt processor to generate compile-time extension information, so be sure to enable apt processing in your build process.\r
+\r
+### Extension Point: SSH DispatchCommand\r
+\r
+You can provide your own custom SSH commands by extending the DispatchCommand.\r
+\r
+For some examples of how to do this, please see:\r
+\r
+[gitblit-cookbook-plugin (Maven project)](https://dev.gitblit.com/summary/gitblit-cookbook-plugin.git)\r
+[gitblit-powertools-plugin (Ant/Moxie project)](https://dev.gitblit.com/summary/gitblit-powertools-plugin.git)\r
+\r
+### Mac OSX Fonts\r
+\r
+Gitblit's core SSH commands and those in the *powertools* plugin rely on use of ANSI border characters to provide a pretty presentation of data. Unfortunately, the fonts provided by Apple - while very nice - don't work well with ANSI border characters. The following public domain fixed-width, fixed-point, bitmapped fonts work very nicely. I find the 6x12 font with a line spacing of ~0.8 to be quite acceptable.\r
+\r
+[6x12.dfont](6x12.dfont)\r
+[6x13.dfont](6x13.dfont)\r
+[7x13.dfont](7x13.dfont)\r
+[7x14.dfont](7x14.dfont)\r
+\r