From f5d0ad7e706f1743b01dcc71f42112d533de89c2 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Sat, 23 Apr 2011 19:16:53 -0400 Subject: [PATCH] Basic Create/Edit Repository. JGit 0.12-stable. Tag icon. --- src/com/gitblit/Constants.java | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index 052055a..d5fc1a4 100644 --- a/src/com/gitblit/Constants.java +++ b/src/com/gitblit/Constants.java @@ -4,12 +4,20 @@ public final static String NAME = "Git:Blit"; - public final static String VERSION = "0.0.1"; + public final static String VERSION = "0.1.0-SNAPSHOT"; + + public final static String ADMIN_ROLE = "admin"; + + public final static String PULL_ROLE = "pull"; + + public final static String PUSH_ROLE = "push"; + + public final static String PROPERTIES_FILE = "gitblit.properties"; public static String getGitBlitVersion() { return NAME + " v" + VERSION; } - + public static String getJGitVersion() { return "JGit 0.11.3"; } -- Gitblit v1.9.1