是否可以在 Alfresco Share 中的某个方面的属性中添加描述或帮助文本?我无法更改标题,因为它需要太多文字。
问问题
192 次
1 回答
1
在定义类型或方面时,您可以设置标题和描述。这些通常会显示在表单、共享和资源管理器中,并且通常是向用户和开发人员解释您的模型的最简单方法。
要查看它的使用情况,请查看 Alfresco 中的音频:音频方面,最新版本可在此处获得。您会看到一些方面属性既有标题又有描述。如果您将 MP3 上传到 Alfresco 4,并在 Share 中编辑它的元数据,您应该会看到该信息显示。
不过,作为一般指南,您的方面应该类似于:
<aspect name="test:thing">
<title>Testing Content</title>
<description>Aspect applied to mark content as being for testing use</description>
<properties>
<property name="test:edition">
<title>Test Edition</title>
<description>Which testing edition does this belong to?</description>
<type>d:int</type>
</property>
<property name="test:notes">
<title>Test Notes</title>
<description>Notes for using this content in testing</description>
<type>d:text</type>
</property>
</properties>
</aspect>
如果您打算在多语言系统中使用您的类型或方面,那么您应该查看模型本地化指南以获取有关如何从可以本地化的属性包中指定名称、标题和描述的信息
于 2012-04-20T09:46:59.610 回答