Files
alfresco-community-repo/config/alfresco/model/applicationModel.xml
Kevin Roast 4003f0e36f . Big and juicy application/WCM model refactoring
- WARNING: this change requires a new DB as the WCM model has changed significantly, yes I have probably broken a few WCM things :)

Previously the following statements were true:
 - Most of the model constants were defined in the ContentModel class - including web-client Application specific model items
 - WCMModel class was a mix of WCM repository and WCM application model constants
 - The applicationModel.xml definition file contained both web-client Application and WCM application model definitions
 - The wcmModel.xml definition file contained both WCM repository and WCM application model definitions

The following statements are now true:
 - All web-client application specific model constants have been moved from ContentModel to a new model constants class ApplicationModel
 - A new WCM application model has been defined with the prefix "wca" and URI: http://www.alfresco.org/model/wcmappmodel/1.0
 - All WCM application specific model constants have been renamed/moved from ContentModel/WCMModel to a new model constants class WCMAppModel
 - The mix of WCM application specific model definitions in contentModel.xml and applicationModel.xml has been moved to a new definition file wcmAppModel.xml
 - A patch is not required for standard Alfresco as only WCM definitions have actually changed

. Fix to issue created during workflow id/name refactor
. Fix to allow forms in the Available Content Forms panel to have correct sandbox/username context for action dialog

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4448 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-11-27 15:03:12 +00:00

142 lines
4.4 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>
</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>