James Moger
2012-10-22 2711bc82a373a3c2e357b5948e2a6e0c477d8534
src/com/gitblit/models/TeamModel.java
@@ -29,6 +29,7 @@
import com.gitblit.Constants.AccessRestrictionType;
import com.gitblit.Constants.RegistrantType;
import com.gitblit.Constants.Unused;
import com.gitblit.utils.StringUtils;
/**
 * TeamModel is a serializable model class that represents a group of users and
@@ -97,7 +98,7 @@
   public List<RegistrantAccessPermission> getRepositoryPermissions() {
      List<RegistrantAccessPermission> list = new ArrayList<RegistrantAccessPermission>();
      for (Map.Entry<String, AccessPermission> entry : permissions.entrySet()) {
         list.add(new RegistrantAccessPermission(entry.getKey(), entry.getValue(), RegistrantType.REPOSITORY));
         list.add(new RegistrantAccessPermission(entry.getKey(), entry.getValue(), true, RegistrantType.REPOSITORY));
      }
      Collections.sort(list);
      return list;
@@ -127,6 +128,18 @@
         }
      }
      return false;
   }
   /**
    * Returns true if the team has an explicitly specified access permission for
    * this repository.
    *
    * @param name
    * @return if the team has an explicitly specified access permission
    */
   public boolean hasExplicitRepositoryPermission(String name) {
      String repository = AccessPermission.repositoryFromRole(name).toLowerCase();
      return permissions.containsKey(repository);
   }
   
   /**
@@ -172,9 +185,9 @@
            permission = p;
         }
      } else {
         // search for regex permission match
         // search for case-insensitive regex permission match
         for (String key : permissions.keySet()) {
            if (repository.name.matches(key)) {
            if (StringUtils.matchesIgnoreCase(repository.name, key)) {
               AccessPermission p = permissions.get(key);
               if (p != null) {
                  permission = p;