James Moger
2014-05-07 3b23dcdde4ef55927e45e56596e7023ce2cf9424
src/main/java/com/gitblit/Constants.java
@@ -68,6 +68,8 @@
   public static final String SPARKLESHARE_INVITE_PATH = "/sparkleshare/";
   public static final String RAW_PATH = "/raw/";
   public static final String BRANCH_GRAPH_PATH = "/graph/";
   public static final String BORDER = "*****************************************************************";
@@ -423,6 +425,8 @@
      public static final AccessPermission [] NEWPERMISSIONS = { EXCLUDE, VIEW, CLONE, PUSH, CREATE, DELETE, REWIND };
      public static final AccessPermission [] SSHPERMISSIONS = { VIEW, CLONE, PUSH };
      public static AccessPermission LEGACY = REWIND;
      public final String code;
@@ -538,6 +542,30 @@
      }
   }
   public static enum Transport {
      // ordered for url advertisements, assuming equal access permissions
      SSH, HTTPS, HTTP, GIT;
      public static Transport fromString(String value) {
         for (Transport t : values()) {
            if (t.name().equalsIgnoreCase(value)) {
               return t;
            }
         }
         return null;
      }
      public static Transport fromUrl(String url) {
         int delim = url.indexOf("://");
         if (delim == -1) {
            // if no protocol is specified, SSH is assumed by git clients
            return SSH;
         }
         String scheme = url.substring(0, delim);
         return fromString(scheme);
      }
   }
   @Documented
   @Retention(RetentionPolicy.RUNTIME)
   public @interface Unused {