From d1231c63669f4bc3643985b9032de7f998612e08 Mon Sep 17 00:00:00 2001
From: Jason Pyeron <jpyeron@pdinc.us>
Date: Sun, 19 Aug 2012 21:35:52 -0400
Subject: [PATCH] fixed build to allow builds where a proxy is needed for access to outside resources see: http://ant.apache.org/manual/proxy.html

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

diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties
index f3e2ac1..80cbb7e 100644
--- a/distrib/gitblit.properties
+++ b/distrib/gitblit.properties
@@ -12,6 +12,17 @@
 # RESTART REQUIRED
 git.repositoriesFolder = git
 
+# Build the available repository list at startup and cache this list for reuse.
+# This reduces disk io when presenting the repositories page, responding to rpcs,
+# etc, but it means that  Gitblit will not automatically identify repositories
+# added or deleted by external tools.
+#
+# For this case you can use curl, wget, etc to issue an rpc request to clear the
+# cache (e.g. https://localhost/rpc?req=CLEAR_REPOSITORY_CACHE)
+#
+# SINCE 1.1.0
+git.cacheRepositoryList = true
+
 # Search the repositories folder subfolders for other repositories.
 # Repositories MAY NOT be nested (i.e. one repository within another)
 # but they may be grouped together in subfolders.
@@ -20,6 +31,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.1.0
+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.1.0
+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.1.0
+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
@@ -47,6 +86,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.1.0
+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 +103,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 +120,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 +134,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 +148,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 +169,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 +186,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
@@ -767,6 +820,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