mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
60 lines
1.7 KiB
XML
60 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<model name="fm:forummodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
|
|
|
|
<description>Forum Model</description>
|
|
<author></author>
|
|
<version>1.0</version>
|
|
|
|
<!-- Imports are required to allow references to definitions in other models -->
|
|
<imports>
|
|
<!-- Import Alfresco Dictionary Definitions -->
|
|
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
|
|
<!-- Import Alfresco Content Domain Model Definitions -->
|
|
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
|
|
</imports>
|
|
|
|
<namespaces>
|
|
<namespace uri="http://www.alfresco.org/model/forum/1.0" prefix="fm"/>
|
|
</namespaces>
|
|
|
|
<types>
|
|
<type name="fm:forums">
|
|
<parent>cm:folder</parent>
|
|
</type>
|
|
|
|
<type name="fm:forum">
|
|
<parent>cm:folder</parent>
|
|
<properties>
|
|
<property name="fm:status">
|
|
<type>d:category</type>
|
|
</property>
|
|
</properties>
|
|
</type>
|
|
|
|
<type name="fm:topic">
|
|
<parent>cm:folder</parent>
|
|
<properties>
|
|
<property name="fm:type">
|
|
<type>d:category</type>
|
|
</property>
|
|
</properties>
|
|
</type>
|
|
|
|
<type name="fm:post">
|
|
<parent>cm:content</parent>
|
|
</type>
|
|
</types>
|
|
|
|
<aspects>
|
|
<aspect name="fm:discussable">
|
|
<properties>
|
|
<property name="fm:forum">
|
|
<type>d:noderef</type>
|
|
<mandatory>true</mandatory>
|
|
</property>
|
|
</properties>
|
|
</aspect>
|
|
</aspects>
|
|
|
|
</model> |