07-19-2012 08:15 PM
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN'
'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<bean id="webscripts.resources"
class="org.alfresco.i18n.ResourceBundleBootstrapComponent">
<property name="resourceBundles">
<list>
<value>alfresco.messages.messageOverrides</value>
</list>
</property>
</bean>
</beans>
<bean id="webscripts.kb.resources" class="org.springframework.extensions.surf.util.ResourceBundleBootstrapComponent">
<property name="resourceBundles">
<list>
<value>alfresco.messages.companymodel</value>
<value>alfresco.messages.companymodel_pronto</value>
<value>alfresco.messages.messageOverrides</value>
</list>
</property>
</bean>
(the other two message files had been previously added and work fine)
activitiAdhoc.workflow.description=Assign arbitrary task to colleague
activitiReview.workflow.description=Review and approval of content
activitiParallelReview.workflow.description=Parallel Review and approval of content
activitiReviewPooled.workflow.description=Pooled review and approval of content
activitiParallelGroupReview.workflow.description=Group review and approval of content
publishWebContent.workflow.description=Publishing of web content
which was copied from /opt/alfresco-4.0.d/tomcat/webapps/alfresco/WEB-INF/classes/alfresco/workflow/workflow-messages.properties and changed to suit.08-05-2012 05:05 AM
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="MyActivitiWorkflow_workflowModel_workflowBootstrap" parent="workflowDeployer">
<property name="workflowDefinitions">
<list>
<props>
<prop key="engineId">activiti</prop>
<prop key="location">alfresco/extension/workflows/MyActivitiWorkflow.bpmn20.xml</prop>
<prop key="mimetype">text/xml</prop>
<!– Should normally only be set to true during workflow development. –>
<prop key="redeploy">false</prop>
</props>
</list>
</property>
<property name="models">
<list>
<value>alfresco/extension/workflows/MyActivitiWorkflow.model.xml</value>
</list>
</property>
<property name="labels">
<list>
<value>alfresco/extension/workflows/MyActivitiWorkflow</value>
</list>
</property>
</bean>
</beans>
05-21-2014 09:29 PM
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="MyActivitiWorkflow_workflowModel_workflowBootstrap" parent="workflowDeployer">
<property name="labels">
<list>
<value>alfresco/extension/workflows/MyActivitiWorkflow</value>
</list>
</property>
</bean>
</beans>
08-06-2012 02:40 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.