diff options
author | James Moger <james.moger@gitblit.com> | 2011-06-18 08:28:47 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-06-18 08:28:47 -0400 |
commit | 5450d08e4cd11176bcc50a5b3d001d291bd8982c (patch) | |
tree | ba1f99a65b25be6e63f5057be177483bd6bd7382 /src/com/gitblit/Constants.java | |
parent | 8c9a2037b5c0fed881a3ad6dd9cff364eed603d9 (diff) | |
download | gitblit-5450d08e4cd11176bcc50a5b3d001d291bd8982c.tar.gz gitblit-5450d08e4cd11176bcc50a5b3d001d291bd8982c.zip |
Mostly stable war build.
Reorganization of resources. Dropped most hard-coded webapp
configuration in favor of common web.xml file. Still contemplating
configuring git servlet from web.xml too.
Diffstat (limited to 'src/com/gitblit/Constants.java')
-rw-r--r-- | src/com/gitblit/Constants.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index 68e7b67e..b874a7b0 100644 --- a/src/com/gitblit/Constants.java +++ b/src/com/gitblit/Constants.java @@ -33,14 +33,12 @@ public class Constants { 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_SERVLET_PATH = "/feed/";
+ public static final String SYNDICATION_PATH = "/feed/";
- public static final String RESOURCE_PATH = "/com/gitblit/wicket/resources/";
-
public static final String BORDER = "***********************************************************";
public static enum AccessRestrictionType {
|