From 02ca294e3634edf938e37f080b00662bedde5125 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Tue, 01 Oct 2013 17:25:29 -0400 Subject: [PATCH] Tweak diffstat css --- src/main/distrib/data/gitblit.properties | 18 +++++++++++++++--- 1 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 2318447..7c62c5a 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -145,6 +145,18 @@ # SINCE 1.2.0 git.allowCreateOnPush = true +# Global setting to control anonymous pushes. +# +# This setting allows/rejects anonymous pushes at the level of the receive pack. +# This trumps all repository config settings. While anonymous pushes are convenient +# on your own box when you are a lone developer, they are not recommended for +# any multi-user installation where accountability is required. Since Gitblit +# tracks pushes and user accounts, allowing anonymous pushes compromises that +# information. +# +# SINCE 1.4.0 +git.allowAnonymousPushes = false + # The default access restriction for new repositories. # Valid values are NONE, PUSH, CLONE, VIEW # NONE = anonymous view, clone, & push @@ -153,7 +165,7 @@ # VIEW = authenticated view, clone, & push # # SINCE 1.0.0 -git.defaultAccessRestriction = NONE +git.defaultAccessRestriction = PUSH # The default authorization control for new repositories. # Valid values are AUTHENTICATED and NAMED @@ -897,8 +909,8 @@ # SINCE 0.5.0 web.showSearchTypeSelection = false -# Generates a line graph of repository activity over time on the Summary page. -# This uses the Google Charts API. +# Controls display of activity graphs on the dashboard, activity, and summary +# pages. Charting makes use of the external Google Charts API. # # SINCE 0.5.0 web.generateActivityGraph = true -- Gitblit v1.9.1