mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merge branch 'master' into feature/RM-3284_UI_tests_are_failing
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
<!-- Extend Imap Service -->
|
<!-- Extend Imap Service -->
|
||||||
<bean id="rm.imapService" abstract="true" class="org.alfresco.repo.imap.ExtendedImapServiceImpl">
|
<bean id="rm.imapService" abstract="true" class="org.alfresco.repo.imap.ExtendedImapServiceImpl">
|
||||||
<property name="dictionaryService" ref="DictionaryService"/>
|
<property name="dictionaryService" ref="DictionaryService"/>
|
||||||
<property name="authenticationUtil" ref="AuthenticationUtil"/>
|
<property name="authenticationUtil" ref="rm.authenticationUtil"/>
|
||||||
</bean>
|
</bean>
|
||||||
<bean class="org.alfresco.util.BeanExtender">
|
<bean class="org.alfresco.util.BeanExtender">
|
||||||
<property name="beanName" value="imapService" />
|
<property name="beanName" value="imapService" />
|
||||||
|
@@ -104,7 +104,7 @@ reject.description=Hiermee wordt een record afgewezen en wordt het document naar
|
|||||||
reject.reason.display-label=Reden voor afwijzing
|
reject.reason.display-label=Reden voor afwijzing
|
||||||
# Request Information
|
# Request Information
|
||||||
requestInfo.title=Informatie aanvragen
|
requestInfo.title=Informatie aanvragen
|
||||||
requestInfo.description=Hiermee wordt een werkstroom gestart voor het aanvragen van meer informatie over een record.
|
requestInfo.description=Hiermee wordt een workflow gestart voor het aanvragen van meer informatie over een record.
|
||||||
# Execute script
|
# Execute script
|
||||||
executeScript.title=Script uitvoeren
|
executeScript.title=Script uitvoeren
|
||||||
executeScript.description=Hiermee wordt een script uitgevoerd.
|
executeScript.description=Hiermee wordt een script uitgevoerd.
|
||||||
|
@@ -4,8 +4,8 @@ activitiReviewPooled.workflow.email.subject=Informatie aangeleverd voor de recor
|
|||||||
activitiReviewPooled.workflow.email.body1=De gebruiker
|
activitiReviewPooled.workflow.email.body1=De gebruiker
|
||||||
activitiReviewPooled.workflow.email.body2=heeft de vereiste informatie voor de record aangeleverd.
|
activitiReviewPooled.workflow.email.body2=heeft de vereiste informatie voor de record aangeleverd.
|
||||||
|
|
||||||
rmwf_workflowmodel.type.rmwf_workflowTask.title=Werkstroomtaak
|
rmwf_workflowmodel.type.rmwf_workflowTask.title=Workflowtaak
|
||||||
rmwf_workflowmodel.type.rmwf_workflowTask.decription=Werkstroomtaak
|
rmwf_workflowmodel.type.rmwf_workflowTask.decription=Workflowtaak
|
||||||
rmwf_workflowmodel.property.rmwf_requestedInformation.title=Aangevraagde informatie
|
rmwf_workflowmodel.property.rmwf_requestedInformation.title=Aangevraagde informatie
|
||||||
rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Aangevraagde informatie
|
rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Aangevraagde informatie
|
||||||
rmwf_workflowmodel.property.rmwf_message.title=Bericht
|
rmwf_workflowmodel.property.rmwf_message.title=Bericht
|
||||||
|
@@ -236,14 +236,14 @@ public class FilePlanComponentAspect extends BaseBehaviourBean
|
|||||||
|
|
||||||
// If the node has any renditions, they inherit the file plan from their source node.
|
// If the node has any renditions, they inherit the file plan from their source node.
|
||||||
List<ChildAssociationRef> renditions = renditionService.getRenditions(nodeRef);
|
List<ChildAssociationRef> renditions = renditionService.getRenditions(nodeRef);
|
||||||
NodeRef thumbnail;
|
NodeRef rendition;
|
||||||
for (ChildAssociationRef chAssRef : renditions)
|
for (ChildAssociationRef chAssRef : renditions)
|
||||||
{
|
{
|
||||||
thumbnail = chAssRef.getChildRef();
|
rendition = chAssRef.getChildRef();
|
||||||
if (nodeService.exists(thumbnail))
|
if (nodeService.exists(rendition))
|
||||||
{
|
{
|
||||||
// Apply file plan component aspect to thumbnail
|
// Apply file plan component aspect to node's renditions
|
||||||
nodeService.addAspect(thumbnail, ASPECT_FILE_PLAN_COMPONENT, null);
|
nodeService.addAspect(rendition, ASPECT_FILE_PLAN_COMPONENT, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -54,12 +54,19 @@ public class ExtendedImapServiceImpl extends ImapServiceImpl
|
|||||||
this.dictionaryService = dictionaryService;
|
this.dictionaryService = dictionaryService;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setAuthenticationUtil(AuthenticationUtil authenticationUtil)
|
||||||
|
{
|
||||||
|
this.authenticationUtil = authenticationUtil;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void setPolicyFilter(BehaviourFilter policyBehaviourFilter)
|
public void setPolicyFilter(BehaviourFilter policyBehaviourFilter)
|
||||||
{
|
{
|
||||||
this.policyBehaviourFilter = policyBehaviourFilter;
|
this.policyBehaviourFilter = policyBehaviourFilter;
|
||||||
super.setPolicyFilter(policyBehaviourFilter);
|
super.setPolicyFilter(policyBehaviourFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void setNodeService(NodeService nodeService)
|
public void setNodeService(NodeService nodeService)
|
||||||
{
|
{
|
||||||
this.nodeService = nodeService;
|
this.nodeService = nodeService;
|
||||||
|
Reference in New Issue
Block a user