From 0e44acbb2fec928a1606dc60f427a148fff405c9 Mon Sep 17 00:00:00 2001
From: Mohamed Ragab <moragab@gmail.com>
Date: Wed, 02 May 2012 11:15:01 -0400
Subject: [PATCH] Added a script to facilitate setting the proxy host and port and no proxy hosts, and then it concatenates all the java system properties for setting the java proxy configurations and puts the resulting string in an environment variable JAVA_PROXY_CONFIG, modified the scirpts gitblit,  gitblit-ubuntu, and gitblit-centos to source the java-proxy-config.sh script and then include the resulting java proxy configuration in the java command

---
 src/com/gitblit/models/TeamModel.java |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/src/com/gitblit/models/TeamModel.java b/src/com/gitblit/models/TeamModel.java
index 195b9d5..3d176e5 100644
--- a/src/com/gitblit/models/TeamModel.java
+++ b/src/com/gitblit/models/TeamModel.java
@@ -16,8 +16,10 @@
 package com.gitblit.models;
 
 import java.io.Serializable;
+import java.util.ArrayList;
 import java.util.Collection;
 import java.util.HashSet;
+import java.util.List;
 import java.util.Set;
 
 /**
@@ -35,6 +37,9 @@
 	public String name;
 	public final Set<String> users = new HashSet<String>();
 	public final Set<String> repositories = new HashSet<String>();
+	public final Set<String> mailingLists = new HashSet<String>();
+	public final List<String> preReceiveScripts = new ArrayList<String>();
+	public final List<String> postReceiveScripts = new ArrayList<String>();
 
 	public TeamModel(String name) {
 		this.name = name;
@@ -76,6 +81,12 @@
 		users.remove(name.toLowerCase());
 	}
 
+	public void addMailingLists(Collection<String> addresses) {
+		for (String address:addresses) {
+			mailingLists.add(address.toLowerCase());
+		}
+	}
+
 	@Override
 	public String toString() {
 		return name;

--
Gitblit v1.9.1