From 17c417dad5c7be28df4b6e1fd25ec56b484faaff Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 26 May 2011 17:22:03 -0400 Subject: [PATCH] Changed git.otherUrls to web.otherUrls. --- distrib/gitblit.properties | 21 +++++++++++++-------- 1 files changed, 13 insertions(+), 8 deletions(-) diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index de243d2..4e2965f 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 @@ -16,9 +16,6 @@ # Search repositories folder for nested repositories # e.g. /libraries/mylibrary.git git.nestedRepositories = true - -# The root clone url -git.cloneUrl = https://localhost/git/ # # Authentication Settings @@ -34,7 +31,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 +39,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, @@ -52,6 +49,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. @@ -66,10 +66,15 @@ web.datestampShortFormat = yyyy-MM-dd web.datetimestampLongFormat = EEEE, MMMM d, yyyy h:mm a z +# 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. +# web.otherUrls = ssh://localhost/git/{0} git://localhost/git/{0} +web.otherUrls = + # Choose how to present the repositories list. # grouped = group nested/subfolder repositories together (no sorting) # flat = flat list of repositories (sorting allowed) -web.repositoryListType = flat +web.repositoryListType = grouped # If using a grouped repository list and there are repositories at the # root level of your repositories folder, you may specify the displayed -- Gitblit v1.9.1