From 2a7306a1d92522569a8bb6e5a7c0bcdd5cf4cfaa Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 26 May 2011 17:11:38 -0400 Subject: [PATCH] Findbugs. CodePro Audit. Checkstyle. Unit test refactoring. --- distrib/gitblit.properties | 17 +++++++++++------ 1 files changed, 11 insertions(+), 6 deletions(-) diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index d0e6375..8b0027e 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -7,7 +7,7 @@ # Base folder for repositories # Use forward slashes even on Windows!! -git.repositoriesFolder = c:/git +git.repositoriesFolder = git # Export all repositories # if false, each exported repository must have a .git/git-daemon-export-ok file @@ -17,8 +17,10 @@ # e.g. /libraries/mylibrary.git git.nestedRepositories = true -# The root clone url -git.cloneUrl = https://localhost/git/ +# Show other URLs on the summary page for accessing your git repositories +# Use spaces to separate urls. {0} is the token for the repository name. +# git.otherUrls = ssh://localhost/git/{0} git://localhost/git/{0} +git.otherUrls = # # Authentication Settings @@ -34,7 +36,7 @@ realm.realmFile = users.properties # How to store passwords. -# Valid values are plain, md5 or crypt (unix style). Default is md5. +# Valid values are plain or md5. Default is md5. realm.passwordStorage = md5 # Minimum valid length for a plain text password. @@ -42,9 +44,9 @@ realm.minPasswordLength = 5 # -# Git:Blit Web Settings +# Gitblit Web Settings # -# If blank Git:Blit is displayed. +# If blank Gitblit is displayed. web.siteName = # If web.authenticate=true, users with "admin" role can create repositories, @@ -53,6 +55,9 @@ # If web.authenticate=false, any user can execute the aforementioned functions. web.allowAdministration = true +# Allow dyanamic zip downloads. +web.allowZipDownloads = true + # This is the message display above the repositories table. # This can point to a file with Markdown content. # Specifying "gitblit" uses the internal welcome message. -- Gitblit v1.9.1