用于cm的Alfresco自定义子类型:文件夹无法正常工作

时间:2015-12-05 17:36:53

标签: alfresco models alfresco-share

我尝试创建一个新的文件夹类型,它继承了cm:文件夹中的所有内容,因此我在tomcat / shared / classes / alfresco / extension / models下为myModel.xml创建了一个xml文件,并添加了以下内容:它:

<?xml version="1.0" encoding="UTF-8"?>
<!-- xsi:schemaLocation="http://www.alfresco.org/model/dictionary/1.0      modelSchema.xsd" -->
<model name="my:custmodel" 
   xmlns="http://www.alfresco.org/model/dictionary/1.0" 
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<description>custom folder test</description>
<author>Max Mustermann</author>
<published>2015-11-24</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"/>
</imports>

<namespaces>
  <namespace uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
  <namespace uri="http://www.alfresco.org/model/rendition/1.0" prefix="rn"/>
  <namespace uri="http://www.alfresco.org/model/exif/1.0" prefix="exif"/>
  <namespace uri="http://www.alfresco.org/model/audio/1.0" prefix="audio"/>
  <namespace uri="http://www.alfresco.org/model/webdav/1.0" prefix="webdav"/>
  <namespace uri="http://www.example.com/model/content/1.0" prefix="my" />
</namespaces>

<types>
<type name="my:folder1">
    <title>folder1</title>
    <parent>cm:folder</parent>
    <archive>true</archive>
 </type>
 <type name="my:folder2">
    <title>folder2</title>
    <parent>cm:folder</parent>
    <archive>true</archive>
 </type>
 </types>

然后我将以下行添加到tomcat / shared / classes / alfresco / extension / custom-model-context.xml

<value>alfresco/extension/models/myModel.xml</value>

最后在tomcat / shared / classes / alfresco / web-extension / share-config-custom.xml中:

<type name="cm:folder">
            <subtype name="my:folder1" />
            <subtype name="my:folder2" />
</type>

现在详细信息 - >更改Typ,我的子类型出现了,但是当我尝试应用它们时,我得到“无法更改文档类型......”

1 个答案:

答案 0 :(得分:2)

上下文文件中的模型文件名称为

<value>alfresco/extension/models/custModel.xml</value>

在你的描述中,你的名字是&#34; myModel.xml&#34; 是一个错字?否则你的文件条目看起来很好。希望你正确地放置这些条目。

此条目

<namespace uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>

应该是<imports>代码而不是<namespaces>

的一部分

像这样的东西

 <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>