From 0fe70c1cf434f492286e01e8528322134a10281a Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Sat, 18 Jun 2011 09:39:01 -0400 Subject: [PATCH] Override settings from command-line. --- src/com/gitblit/Constants.java | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index b674182..b874a7b 100644 --- a/src/com/gitblit/Constants.java +++ b/src/com/gitblit/Constants.java @@ -33,9 +33,13 @@ public static final String PROPERTIES_FILE = "gitblit.properties"; - public static final String GIT_SERVLET_PATH = "/git/"; + public static final String GIT_PATH = "/git/"; - public static final String ZIP_SERVLET_PATH = "/zip/"; + public static final String ZIP_PATH = "/zip/"; + + public static final String SYNDICATION_PATH = "/feed/"; + + public static final String BORDER = "***********************************************************"; public static enum AccessRestrictionType { NONE, PUSH, CLONE, VIEW; -- Gitblit v1.9.1