]> source.dussan.org Git - gitblit.git/commitdiff
Documentation
authorJames Moger <james.moger@gitblit.com>
Tue, 15 Apr 2014 12:34:50 +0000 (08:34 -0400)
committerJames Moger <james.moger@gitblit.com>
Tue, 15 Apr 2014 12:34:50 +0000 (08:34 -0400)
releases.moxie
src/site/plugins_extensions.mkd
src/site/plugins_overview.mkd
src/site/setup_transport_ssh.mkd

index 151f9c300f5d1d49ea90faacc8596b94c5378034..ac3346c55818a808bb81e63f28deb74aa6844931 100644 (file)
@@ -49,7 +49,7 @@ r22: {
     - args4j 2.0.26
     - JGit 3.3.1
     - Mina SSHD 0.10.1
-    - pf4j 0.7.1
+    - pf4j 0.8.0
     contributors:
     - James Moger
     - David Ostrovsky
@@ -57,6 +57,7 @@ r22: {
     - Jeremie Brebec
     - Tim Ryan
     - Decebal Suiu
+    - Eric Myrhe
     settings:
     - { name: 'realm.ldap.bindpattern', defaultValue: ' ' }
     - { name: 'tickets.closeOnPushCommitMessageRegex', defaultValue: '(?:fixes|closes)[\\s-]+#?(\\d+)' }
index d7469ac694efa932f3704818b0e5ac8a41619e1e..6e0e52e61f6ca82f67c02245dc29ec49ee73873c 100644 (file)
@@ -2,20 +2,56 @@
 
 Gitblit offers several extension points for enhancing and customizing it's runtime behavior.
 
-Each available extension point has a sample implementation in the [gitblit-cookbook-plugin (Maven project)](https://dev.gitblit.com/summary/gitblit-cookbook-plugin.git).
+Each available extension point has a sample implementation in the [gitblit-cookbook-plugin (Maven project)](https://github.com/gitblit/gitblit-cookbook-plugin).
+
+**NOTE:**
+Gitblit does not yet offer a comprehensize dependency injection architecture.  This will be addressed in a subsequent release.  For now you may access all of Gitblit's core managers through a static singleton app context:
+
+```java
+import com.gitblit.extensions.GitblitPlugin;
+import com.gitblit.servlet.GitblitContext;
+import com.gitblit.manager.IRuntimeManager;
+import com.gitblit.manager.IUserManager;
+import com.gitblit.manager.IAuthenticationManager;
+import com.gitblit.manager.INotificationManager;
+import com.gitblit.manager.IRepositoryManager;
+import com.gitblit.manager.IProjectManager;
+import com.gitblit.manager.IFederationManager;
+import com.gitblit.manager.IPluginManager;
+import com.gitblit.manager.IGitblit;
+
+public class ExamplePlugin extends GitblitPlugin {
+
+    @Override
+    public void start() {
+        IRuntimeManager runtime = GitblitContext.getManager(IRuntimeManager.class);
+        IUserManager users = GitblitContext.getManager(IUserManager.class);
+        IAuthenticationManager auth = GitblitContext.getManager(IAuthenticationManager.class);
+        INotificationManager notifications = GitblitContext.getManager(INotificationManager.class);
+        IRepositoryManager repos = GitblitContext.getManager(IRepositoryManager.class);
+        IProjectManager projects = GitblitContext.getManager(IProjectManager.class);
+        IFederationManager federation = GitblitContext.getManager(IFederationManager.class);
+        IPluginManager plugins = GitblitContext.getManager(IPluginManager.class);
+        IGitblit gitblit = GitblitContext.getManager(IGitblit.class);
+    }
+}
+```
 
 ### SSH Dispatch Command
 
 *SINCE 1.5.0*
 
-You can provide your own custom SSH commands by subclassing the *DispatchCommand* class.
+You can provide your own custom SSH command hierarchies by subclassing the *DispatchCommand* class.
 
 ```java
 import ro.fortsoft.pf4j.Extension;
-
+import org.kohsuke.args4j.Option;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import com.gitblit.models.UserModel;
 import com.gitblit.transport.ssh.commands.CommandMetaData;
 import com.gitblit.transport.ssh.commands.DispatchCommand;
+import com.gitblit.transport.ssh.commands.UsageExample;
 
 @Extension
 @CommandMetaData(name = "mycommands", description = "Sample SSH dispatcher")
@@ -31,6 +67,25 @@ public class MyDispatcher extends DispatchCommand {
         register(user, SubDispatcher1.class);
         register(user, SubDispatcher2.class);
     }
+
+    @CommandMetaData(name = "commanda", aliases = { "ca" }, description = "description of command a")
+    @UsageExample(syntax = "${cmd} --myflag", description = "description of commanda with --myflag")
+    public static class CommandA extends SshCommand {
+
+        protected final Logger log = LoggerFactory.getLogger(getClass());
+
+        @Option(name = "--myflag", aliases = { "-m" }, usage = "enable myflag")
+        boolean myflag;
+
+        @Override
+        public void run() throws Failure {
+            if (myflag) {
+                log.info("Run with --myflag");
+            } else {
+                log.info("Run without --myflag");
+            }
+        }
+    }
 }
 ```
 
index 5cb60d0772b4e850eabd88e0bb6f84c03d4f5a1b..45a5434487c53d910944b99a3f39c552762ac759 100644 (file)
@@ -23,6 +23,7 @@ A plugin defines it's metadata in the META-INF/MANIFEST.MF file:
     Plugin-Description: Command and control Gitblit over SSH
     Plugin-Class: com.gitblit.plugin.powertools.Powertools
     Plugin-Version: 1.2.0
+    Plugin-Requires: 1.5.0
     Plugin-Provider: gitblit.com
 
 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.
@@ -32,9 +33,9 @@ In addition to extending Gitblit core, plugins can also define extension points
 **NOTE:**
 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.
 
-#### Limitations of Dependencies & Requires
+#### Limitations of Dependencies
 
-Plugins may specify dependencies by ID, but may not specify specific versions of a dependency.  The plugin registry allows you to specify a *requires* version of Gitblit, but this is not currently enforced.
+Plugins may specify dependencies by ID, but may not specify specific versions of a dependency.
 
 ### Managing Plugins
 
index a671e5af3fec225befdcef9e2ac9b2a79a76a13d..7b53624ba5a6241aefd5095d74e52499d001ce07 100644 (file)
@@ -80,7 +80,14 @@ You can also remove all your public keys from your account.
 \r
     ssh -l <username> -p 29418 <hostname> keys remove ALL\r
 \r
-### SSH Command Plugins\r
+##### keys permission\r
+\r
+You may control the access permission for each SSH key.  This is more of a safety feature than a security measure.\r
+\r
+| Permission | Description                                     |\r
+| ---------- | ----------------------------------------------- |\r
+| V          | SSH key may not be used for clone/fetch or push |\r
+| R          | SSH key may be used to clone/fetch              |\r
+| RW         | SSH key may be used to clone/fetch and push     |\r
 \r
-Gitblit supports loading custom SSH command plugins.\r
 \r