Files
alfresco-community-repo/config/alfresco/model/applicationModel.xml
Kevin Roast d03bc33acb . Moved avm specific types from ContentModel (cm) into WCMModel (wcm)
. Updated appropriate AVM and client classes to use new types
. Updated application types to derive from wcm types
NOTE: You will need a new database - this is NOT backward compatible with current websites!

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4022 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-10-04 16:39:26 +00:00

210 lines
6.7 KiB
XML

<model name="app:applicationmodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<description>Alfresco Application Model</description>
<author>Alfresco</author>
<published>2005-09-29</published>
<version>1.0</version>
<imports>
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
<import uri="http://www.alfresco.org/model/system/1.0" prefix="sys"/>
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
<import uri="http://www.alfresco.org/model/wcmmodel/1.0" prefix="wcm"/>
</imports>
<namespaces>
<namespace uri="http://www.alfresco.org/model/application/1.0" prefix="app"/>
</namespaces>
<types>
<!-- TODO: Glossary will be revisited when implementation is better understood -->
<type name="app:glossary">
<parent>cm:folder</parent>
<!--
<mandatory-aspects>
<aspect>CategoryContainable</aspect>
</mandatory-aspects>
<associations>
<association name="app:namespace">
<target-type>Category</target-type>
<target-multiplicity>0..*</target-multiplicity>
<source-mulitplicity>0..1<source-multiplicity>
<duplicates-allowed>false</duplicates-allowed>
</association>
</associations>
-->
</type>
<type name="app:configurations">
<title>Configurations</title>
<parent>cm:systemfolder</parent>
</type>
<type name="app:filelink">
<title>File Link Object</title>
<parent>cm:link</parent>
</type>
<type name="app:folderlink">
<title>Folder Link Object</title>
<parent>cm:link</parent>
</type>
<type name="app:webfolder">
<title>AVM Website Folder</title>
<parent>wcm:avmfolder</parent>
<properties>
<!-- root name of the avm staging stores for this web folder -->
<property name="app:avmstore">
<type>d:text</type>
</property>
</properties>
<associations>
<child-association name="app:formtriples">
<source>
<mandatory>false</mandatory>
<many>false</many>
</source>
<target>
<class>app:formtriple</class>
<mandatory>false</mandatory>
<many>true</many>
</target>
</child-association>
<child-association name="app:webuser">
<source>
<mandatory>false</mandatory>
<many>false</many>
</source>
<target>
<class>app:webuser</class>
<mandatory>false</mandatory>
<many>true</many>
</target>
</child-association>
</associations>
</type>
<type name="app:formtriple">
<title>Website Form Triple</title>
<parent>sys:base</parent>
<properties>
<property name="app:form">
<type>d:noderef</type>
<mandatory>true</mandatory>
</property>
<property name="app:workflow">
<type>d:noderef</type>
<mandatory>true</mandatory>
</property>
<property name="app:script">
<type>d:noderef</type>
</property>
</properties>
</type>
<type name="app:webuser">
<title>Website User Information</title>
<parent>sys:base</parent>
<properties>
<property name="app:username">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
<property name="app:role">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
</properties>
</type>
</types>
<aspects>
<aspect name="app:uifacets">
<title>UI Facets</title>
<parent>cm:titled</parent>
<properties>
<property name="app:icon">
<type>d:text</type>
</property>
</properties>
</aspect>
<aspect name="app:inlineeditable">
<title>Inline Editable</title>
<properties>
<property name="app:editInline">
<title>Edit Inline</title>
<type>d:boolean</type>
</property>
</properties>
</aspect>
<!-- TODO: Is this needed - should simpleworkflow ? -->
<aspect name="app:workflow">
<title>Workflow</title>
</aspect>
<aspect name="app:simpleworkflow">
<parent>app:workflow</parent>
<properties>
<property name="app:approveStep">
<type>d:text</type>
<protected>true</protected>
</property>
<property name="app:approveFolder">
<type>d:noderef</type>
<protected>true</protected>
</property>
<property name="app:approveMove">
<type>d:boolean</type>
</property>
<property name="app:rejectStep">
<type>d:text</type>
<protected>true</protected>
</property>
<property name="app:rejectFolder">
<type>d:noderef</type>
<protected>true</protected>
</property>
<property name="app:rejectMove">
<type>d:boolean</type>
</property>
</properties>
</aspect>
<aspect name="app:configurable">
<title>Configurable</title>
<associations>
<child-association name="app:configurations">
<source>
<mandatory>false</mandatory>
<many>false</many>
</source>
<target>
<class>app:configurations</class>
<mandatory>false</mandatory>
<many>false</many>
</target>
</child-association>
</associations>
</aspect>
<aspect name="app:feedsource">
<title>Feed Source</title>
<properties>
<property name="app:template">
<title>Feed Template</title>
<type>d:noderef</type>
<mandatory>false</mandatory>
</property>
</properties>
</aspect>
</aspects>
</model>