mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V2.2 to HEAD
7462: Renamed ManageLinkValidationTaskDialog to ManageReviewTaskDialog as it is now more generic Enabled deployment and link validation in parallel review tasks Created separate JSP page for manage change request task dialog When a server is edited it is now scrolled to Some minor UI tidyup 7467: Added ability to define excludes for a deployment via a regular expression 7475: Incorporated new icons from Linton 7492: Allows multiple callbacks for deployment. Adds new FAILED deployment event. 7493: Added ability to view previous deployment attempts git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8380 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -49,6 +49,7 @@ public final class DeploymentServerConfig implements Serializable
|
||||
public static final String PROP_URL = "url";
|
||||
public static final String PROP_SOURCE_PATH = "sourcePath";
|
||||
public static final String PROP_TARGET_NAME = "targetName";
|
||||
public static final String PROP_EXCLUDES = "excludes";
|
||||
public static final String PROP_ALLOCATED_TO = "allocatedTo";
|
||||
public static final String PROP_ON_APPROVAL = "onApproval";
|
||||
|
||||
@@ -153,6 +154,11 @@ public final class DeploymentServerConfig implements Serializable
|
||||
repoProps.put(WCMAppModel.PROP_DEPLOYSOURCEPATH, (Serializable)this.props.get(PROP_SOURCE_PATH));
|
||||
}
|
||||
|
||||
if (this.props.get(PROP_EXCLUDES) != null && ((String)this.props.get(PROP_EXCLUDES)).length() > 0)
|
||||
{
|
||||
repoProps.put(WCMAppModel.PROP_DEPLOYEXCLUDES, (Serializable)this.props.get(PROP_EXCLUDES));
|
||||
}
|
||||
|
||||
if (this.props.get(PROP_ALLOCATED_TO) != null && ((String)this.props.get(PROP_ALLOCATED_TO)).length() > 0)
|
||||
{
|
||||
repoProps.put(WCMAppModel.PROP_DEPLOYSERVERALLOCATEDTO, (Serializable)this.props.get(PROP_ALLOCATED_TO));
|
||||
@@ -217,6 +223,11 @@ public final class DeploymentServerConfig implements Serializable
|
||||
this.props.put(PROP_SOURCE_PATH, (String)repoProps.get(WCMAppModel.PROP_DEPLOYSOURCEPATH));
|
||||
}
|
||||
|
||||
if (repoProps.get(WCMAppModel.PROP_DEPLOYEXCLUDES) != null)
|
||||
{
|
||||
this.props.put(PROP_EXCLUDES, (String)repoProps.get(WCMAppModel.PROP_DEPLOYEXCLUDES));
|
||||
}
|
||||
|
||||
if (repoProps.get(WCMAppModel.PROP_DEPLOYSERVERALLOCATEDTO) != null)
|
||||
{
|
||||
this.props.put(PROP_ALLOCATED_TO, (String)repoProps.get(WCMAppModel.PROP_DEPLOYSERVERALLOCATEDTO));
|
||||
|
Reference in New Issue
Block a user