Here's a skeletal workflow for the Gartner demo. Doesn't do anything besides

printing a log message and showing up appropriately in task lists.  The task 
screens aren't quite delectable but they show up.  
Fixed a misplaced store level property and added a new one ".website.name" to
user sandbox stores so that the corresponding staging sandbox can be determined
efficiently from a user sandbox.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3870 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-09-20 22:01:37 +00:00
parent 258bf49736
commit adb1b17c1e
6 changed files with 195 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<model name="wcmwf:submitmodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<imports>
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
<import uri="http://www.alfresco.org/model/bpm/1.0" prefix="bpm"/>
</imports>
<namespaces>
<namespace uri="http://www/alfresco.org/model/wcmwf/1.0" prefix="wcmwf"/>
</namespaces>
<types>
<type name="wcmwf:baseSubmitTask">
<parent>bpm:workflowTask</parent>
<properties>
<property name="wcmwf:description">
<title>Description</title>
<type>d:text</type>
</property>
<property name="wcmwf:sourcePath">
<title>Source Sandbox Path</title>
<type>d:text</type>
</property>
</properties>
</type>
<type name="wcmwf:startSubmit">
<parent>wcmwf:baseSubmitTask</parent>
<properties>
<property name="wcmwf:submitDueDate">
<title>Due Date</title>
<type>d:date</type>
</property>
</properties>
<associations>
<association name="wcmwf:assignee">
<title>Assignee</title>
<source>
<mandatory>false</mandatory>
<many>false</many>
</source>
<target>
<class>cm:person</class>
<mandatory>true</mandatory>
<many>false</many>
</target>
</association>
</associations>
</type>
<type name="wcmwf:review">
<title>Review</title>
<parent>wcmwf:baseSubmitTask</parent>
</type>
</types>
</model>