diff options
author | James Moger <james.moger@gitblit.com> | 2013-09-19 08:36:25 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-09-19 08:36:25 -0400 |
commit | a047669265c4090d7d0982f5654d4974a58ac12a (patch) | |
tree | 04f0b5f971d62e3c8cc55c0be7ea147597eca404 /src/main/distrib/data/gitblit.properties | |
parent | 4f0f65fed0613cd69eba1cb8a80d0d18d0a79983 (diff) | |
download | gitblit-a047669265c4090d7d0982f5654d4974a58ac12a.tar.gz gitblit-a047669265c4090d7d0982f5654d4974a58ac12a.zip |
Disable *most* activity graphs when web.generateActivityGraph=false
This setting originally only worked for the Summary page, but since that
page was written, other pages have offered graphing. This setting will
now disable Google Chart requests on the Dashboard, Activity, and
Summary pages.
This is related to issue-310.
Diffstat (limited to 'src/main/distrib/data/gitblit.properties')
-rw-r--r-- | src/main/distrib/data/gitblit.properties | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 2318447c..ab7b9992 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -897,8 +897,8 @@ web.showEmailAddresses = true # 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
|