diff options
author | James Moger <james.moger@gitblit.com> | 2012-11-30 18:05:35 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-11-30 18:05:35 -0500 |
commit | 59b817a55b04b4bd8c5950a2d97998d3af6d44e3 (patch) | |
tree | 20446ddd81bc500388b751e403e6df86ed60826e /distrib | |
parent | 9e1aa2eab5a72be52ebee633557a5aafc8132eb6 (diff) | |
download | gitblit-59b817a55b04b4bd8c5950a2d97998d3af6d44e3.tar.gz gitblit-59b817a55b04b4bd8c5950a2d97998d3af6d44e3.zip |
Support alternate compressed download formats (issue-174)
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/gitblit.properties | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index ee050a48..233fdfad 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -482,6 +482,19 @@ web.allowGravatar = true # SINCE 0.5.0
web.allowZipDownloads = true
+# If *web.allowZipDownloads=true* the following formats will be displayed for
+# download compressed archive links:
+#
+# zip = standard .zip
+# tar = standard tar format (preserves *nix permissions and symlinks)
+# gz = gz-compressed tar
+# xz = xz-compressed tar
+# bzip2 = bzip2-compressed tar
+#
+# SPACE-DELIMITED
+# SINCE 1.2.0
+web.compressedDownloads = zip gz
+
# Allow optional Lucene integration. Lucene indexing is an opt-in feature.
# A repository may specify branches to index with Lucene instead of using Git
# commit traversal. There are scenarios where you may want to completely disable
|