diff options
Diffstat (limited to 'distrib/gitblit.properties')
-rw-r--r-- | distrib/gitblit.properties | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index 5292a91e..8e768262 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -362,6 +362,16 @@ web.loginMessage = gitblit # SINCE 0.5.0
web.repositoriesMessage = gitblit
+# Ordered list of charsets/encodings to use when trying to display a blob.
+# If empty, UTF-8 and ISO-8859-1 are used. The server's default charset
+# is always appended to the encoding list. If all encodings fail to cleanly
+# decode the blob content, UTF-8 will be used with the standard malformed
+# input/unmappable character replacement strings.
+#
+# SPACE-DELIMITED
+# SINCE 1.0.0
+web.blobEncodings = UTF-8 ISO-8859-1
+
# Manually set the default timezone to be used by Gitblit for display in the
# web ui. This value is independent of the JVM timezone. Specifying a blank
# value will default to the JVM timezone.
@@ -432,6 +442,7 @@ web.forwardSlashCharacter = / # e.g.
# web.otherUrls = ssh://localhost/git/{0} git://localhost/git/{0}
#
+# SPACE-DELIMITED
# SINCE 0.5.0
web.otherUrls =
|