From eb870fc034460c2bab69039b21049d332a002ca1 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Fri, 10 Aug 2012 17:46:11 -0400
Subject: [PATCH] Submodules support

---
 distrib/gitblit.properties |   65 ++++++++++++++++++++++++++++++++
 1 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties
index 8e76826..836ac05 100644
--- a/distrib/gitblit.properties
+++ b/distrib/gitblit.properties
@@ -21,6 +21,34 @@
 # SINCE 0.5.0
 git.searchRepositoriesSubfolders = true
 
+# Maximum number of folders to recurse into when searching for repositories.
+# The default value, -1, disables depth limits.
+#
+# SINCE 1.0.1
+git.searchRecursionDepth = -1
+
+# List of regex exclusion patterns to match against folders found in
+# *git.repositoriesFolder*.
+# Use forward slashes even on Windows!!
+# e.g. test/jgit\.git
+#
+# SPACE-DELIMITED
+# CASE-SENSITIVE
+# SINCE 1.0.1
+git.searchExclusions =
+
+# List of regex url patterns for extracting a repository name when locating
+# submodules.
+#   e.g. git.submoduleUrlPatterns = .*?://github.com/(.*) will extract
+#   *gitblit/gitblit.git* from *git://github.com/gitblit/gitblit.git*
+# If no matches are found then the submodule repository name is assumed to be
+# whatever trails the last / character. (e.g. gitblit.git).
+#
+# SPACE-DELIMITED
+# CASE-SENSITIVE
+# SINCE 1.0.1
+git.submoduleUrlPatterns = .*?://github.com/(.*)
+
 # Allow push/pull over http/https with JGit servlet.
 # If you do NOT want to allow Git clients to clone/push to Gitblit set this
 # to false.  You might want to do this if you are only using ssh:// or git://.
@@ -47,6 +75,14 @@
 # SINCE 1.0.0
 git.defaultAccessRestriction = NONE
 
+# The default authorization control for new repositories.
+# Valid values are AUTHENTICATED and NAMED
+#  AUTHENTICATED = any authenticated user is granted restricted access
+#  NAMED = only named users/teams are granted restricted access
+#
+# SINCE 1.0.1
+git.defaultAuthorizationControl = NAMED
+
 # Number of bytes of a pack file to load into memory in a single read operation.
 # This is the "page size" of the JGit buffer cache, used for all pack access
 # operations. All disk IO occurs as single window reads. Setting this too large
@@ -56,6 +92,7 @@
 # Default on JGit is 8 KiB on all platforms.
 #
 # Common unit suffixes of k, m, or g are supported.
+# Documentation courtesy of the Gerrit project.
 #
 # SINCE 1.0.0
 # RESTART REQUIRED
@@ -72,6 +109,7 @@
 # Default on JGit is 10 MiB on all platforms.
 #
 # Common unit suffixes of k, m, or g are supported.
+# Documentation courtesy of the Gerrit project.
 #
 # SINCE 1.0.0
 # RESTART REQUIRED
@@ -85,6 +123,7 @@
 # this value.
 #
 # Common unit suffixes of k, m, or g are supported.
+# Documentation courtesy of the Gerrit project.
 #
 # SINCE 1.0.0
 # RESTART REQUIRED
@@ -98,6 +137,7 @@
 # available for network sockets and other repository data manipulation.
 #
 # Default on JGit is 128 file descriptors on all platforms.
+# Documentation courtesy of the Gerrit project.
 #
 # SINCE 1.0.0
 # RESTART REQUIRED
@@ -118,6 +158,7 @@
 # Default is 50 MiB on all platforms.
 #
 # Common unit suffixes of k, m, or g are supported.
+# Documentation courtesy of the Gerrit project.
 #
 # SINCE 1.0.0
 # RESTART REQUIRED
@@ -134,6 +175,7 @@
 #
 # Default on JGit is false. Although potentially slower, it yields much more
 # predictable behavior.
+# Documentation courtesy of the Gerrit project.
 #
 # SINCE 1.0.0
 # RESTART REQUIRED
@@ -150,6 +192,13 @@
 # RESTART REQUIRED
 # SINCE 0.8.0
 groovy.scriptsFolder = groovy
+
+# Specify the directory Grape uses for downloading libraries.
+# http://groovy.codehaus.org/Grape
+#
+# RESTART REQUIRED
+# SINCE 1.0.0
+groovy.grapeFolder = groovy/grape
 
 # Scripts to execute on Pre-Receive.
 #
@@ -294,6 +343,20 @@
 #
 # SINCE 0.7.0 
 web.enableRpcAdministration = false
+
+# Full path to a configurable robots.txt file.  With this file you can control
+# what parts of your Gitblit server respectable robots are allowed to traverse.
+# http://googlewebmastercentral.blogspot.com/2008/06/improving-on-robots-exclusion-protocol.html
+#
+# SINCE 1.0.0
+web.robots.txt = 
+
+# If true, the web ui layout will respond and adapt to the browser's dimensions.
+# if false, the web ui will use a 940px fixed-width layout.
+# http://twitter.github.com/bootstrap/scaffolding.html#responsive
+#
+# SINCE 1.0.0
+web.useResponsiveLayout = true
 
 # Allow Gravatar images to be displayed in Gitblit pages.
 #
@@ -746,6 +809,8 @@
 #
 
 # URL of the LDAP server.
+# To use encrypted transport, use either ldaps:// URL for SSL or ldap+tls:// to
+# send StartTLS command.
 #
 # SINCE 1.0.0
 realm.ldap.server = ldap://localhost

--
Gitblit v1.9.1