diff options
author | James Moger <james.moger@gitblit.com> | 2011-10-11 17:46:04 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-10-11 17:46:04 -0400 |
commit | 4c6dab80ae0a8ef38e7e163e798d629afcbe999a (patch) | |
tree | 545010105ff2b657df62c940f2d237db623de2b5 | |
parent | 4cd2f6126c5b094ac1d170fcd59c004c165a69a4 (diff) | |
download | gitblit-4c6dab80ae0a8ef38e7e163e798d629afcbe999a.tar.gz gitblit-4c6dab80ae0a8ef38e7e163e798d629afcbe999a.zip |
Documentation.
-rw-r--r-- | distrib/gitblit.properties | 3 | ||||
-rw-r--r-- | docs/00_index.mkd | 1 | ||||
-rw-r--r-- | docs/01_setup.mkd | 2 | ||||
-rw-r--r-- | src/com/gitblit/IUserService.java | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index 2d9bb030..0746ef62 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -465,7 +465,8 @@ server.tempFolder = temp # RESTART REQUIRED
server.useNio = true
-# Context path for the application.
+# Context path for the GO application. You might want to change the context
+# path if running Gitblit behind a proxy layer such as mod_proxy.
#
# SINCE 0.7.0
# RESTART REQUIRED
diff --git a/docs/00_index.mkd b/docs/00_index.mkd index b208ccad..943dd0ef 100644 --- a/docs/00_index.mkd +++ b/docs/00_index.mkd @@ -45,6 +45,7 @@ Gitblit requires a Java 6 Runtime Environment (JRE) or a Java 6 Development Kit - added: IUserService.setup(IStoredSettings) for custom user service implementations
- added: setting to control Gitblit GO context path for proxy setups
**New:** *server.contextPath = /*
+- updated: MarkdownPapers 1.2.3
issues, binaries, and sources @ [Google Code][googlecode]<br/>
sources @ [Github][gitbltsrc]
diff --git a/docs/01_setup.mkd b/docs/01_setup.mkd index 42f7c0ca..c7a8ff61 100644 --- a/docs/01_setup.mkd +++ b/docs/01_setup.mkd @@ -177,7 +177,7 @@ public interface IUserService { * Setup the user service.
*
* @param settings
- * @since 0.6.1
+ * @since 0.7.0
*/
@Override
public void setup(IStoredSettings settings) {
diff --git a/src/com/gitblit/IUserService.java b/src/com/gitblit/IUserService.java index a85c997f..e143c794 100644 --- a/src/com/gitblit/IUserService.java +++ b/src/com/gitblit/IUserService.java @@ -34,7 +34,7 @@ public interface IUserService { * relying on the GitBlit static singleton.
*
* @param settings
- * @since 0.6.1
+ * @since 0.7.0
*/
void setup(IStoredSettings settings);
|