[jbpm-commits] JBoss JBPM SVN: r4898 - in jbpm4/trunk/modules: pvm/src/main/resources and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue May 26 09:35:59 EDT 2009


Author: tom.baeyens at jboss.com
Date: 2009-05-26 09:35:58 -0400 (Tue, 26 May 2009)
New Revision: 4898

Added:
   jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.cfg.xml
Removed:
   jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.xml
Modified:
   jbpm4/trunk/modules/distro/src/main/files/jboss/jbpm.cfg.integration.tests/jbpm.cfg.xml
Log:
fixed integration test suite: removed use of synchronization for process instance end deletion and refactored example email templates

Modified: jbpm4/trunk/modules/distro/src/main/files/jboss/jbpm.cfg.integration.tests/jbpm.cfg.xml
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/jboss/jbpm.cfg.integration.tests/jbpm.cfg.xml	2009-05-26 12:57:40 UTC (rev 4897)
+++ jbpm4/trunk/modules/distro/src/main/files/jboss/jbpm.cfg.integration.tests/jbpm.cfg.xml	2009-05-26 13:35:58 UTC (rev 4898)
@@ -6,7 +6,7 @@
   <import resource="jbpm.tx.jta.cfg.xml" />
   <import resource="jbpm.jpdl.cfg.xml" />
   <import resource="jbpm.identity.cfg.xml" />
-  <import resource="jbpm.mail.templates.xml" />
+  <import resource="jbpm.mail.templates.cfg.xml" />
 
   <import resource="jbpm.mail.templates.examples.xml" />
 

Copied: jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.cfg.xml (from rev 4897, jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.xml)
===================================================================
--- jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.cfg.xml	                        (rev 0)
+++ jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.cfg.xml	2009-05-26 13:35:58 UTC (rev 4898)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<jbpm-configuration>
+
+  <process-engine-context>
+
+    <mail-template name='task-notification'>
+      <to users="${task.assignee}"/>
+      <subject>${task.name}</subject>
+      <text><![CDATA[Hi ${task.assignee},
+Task "${task.name}" has been assigned to you.
+${task.description}
+
+Sent by JBoss jBPM
+]]></text>
+    </mail-template>
+  
+    <mail-template name='task-reminder'>
+      <to users="${task.assignee}"/>
+      <subject>${task.name}</subject>
+      <text><![CDATA[Hey ${task.assignee},
+Do not forget about task "${task.name}".
+${task.description}
+
+Sent by JBoss jBPM
+]]></text>
+    </mail-template>
+
+  </process-engine-context>
+
+</jbpm-configuration>


Property changes on: jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.cfg.xml
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Deleted: jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.xml
===================================================================
--- jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.xml	2009-05-26 12:57:40 UTC (rev 4897)
+++ jbpm4/trunk/modules/pvm/src/main/resources/jbpm.mail.templates.xml	2009-05-26 13:35:58 UTC (rev 4898)
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<jbpm-configuration>
-
-  <process-engine-context>
-
-    <mail-template name='task-notification'>
-      <to users="${task.assignee}"/>
-      <subject>${task.name}</subject>
-      <text><![CDATA[Hi ${task.assignee},
-Task "${task.name}" has been assigned to you.
-${task.description}
-
-Sent by JBoss jBPM
-]]></text>
-    </mail-template>
-  
-    <mail-template name='task-reminder'>
-      <to users="${task.assignee}"/>
-      <subject>${task.name}</subject>
-      <text><![CDATA[Hey ${task.assignee},
-Do not forget about task "${task.name}".
-${task.description}
-
-Sent by JBoss jBPM
-]]></text>
-    </mail-template>
-
-  </process-engine-context>
-
-</jbpm-configuration>




More information about the jbpm-commits mailing list