12-26-2008 11:19 AM
03-18-2009 03:04 PM
03-18-2009 04:45 PM
06-12-2009 08:18 AM
06-15-2009 04:34 AM
08-20-2009 10:46 AM
08-20-2009 11:16 AM
02-09-2010 01:13 AM
<alfresco-config>
<!– Document Library config section –>
<config evaluator="string-compare" condition="DocumentLibrary" replace="true">
<!–
Whether the folder Tree component should enumerate child folders or not.
This is a relatively expensive operation, so should be set to "false" for Repositories with broad folder structures.
–>
<tree>
<evaluate-child-folders>false</evaluate-child-folders>
</tree>
<!–
Used by the "Manage Aspects" action
For custom aspects, remember to also add the relevant i18n string(s)
cm_myaspect=My Aspect
–>
<aspects>
<!– Aspects that a user can see –>
<visible>
<aspect name="cm:generalclassifiable" />
<aspect name="cm:complianceable" />
<aspect name="cm:dublincore" />
<aspect name="cm:effectivity" />
<aspect name="cm:summarizable" />
<aspect name="cm:versionable" />
<aspect name="cm:templatable" />
<aspect name="cm:emailed" />
<aspect name="emailserver:aliasable" />
<aspect name="cm:taggable" />
</visible>
<!– Aspects that a user can add. Same as "visible" if left empty –>
<addable>
</addable>
<!– Aspects that a user can remove. Same as "visible" if left empty –>
<removeable>
</removeable>
</aspects>
<!–
Used by the "Change Type" action
Define valid subtypes using the following example:
<type name="cm:content">
<subtype name="cm:mysubtype" />
</type>
Remember to also add the relevant i18n string(s):
cm_mysubtype=My SubType
–>
<types>
<type name="cm:content">
<subtype name="cm:mycontentsubtype" />
</type>
<type name="cm:folder">
<subtype name="cm:myfoldersubtype" />
</type>
</types>
</config>
<config evaluator="node-type" condition="cm:content">
<forms>
<form>
<field-visibility>
<show id="cm:name" />
<show id="cm:title" force="true" />
<show id="cm:description" force="true" />
<show id="mimetype" />
<show id="cm:author" force="true" />
<show id="size" for-mode="view" />
<show id="cm:creator" for-mode="view" />
<show id="cm:created" for-mode="view" />
<show id="cm:modifier" for-mode="view" />
<show id="cm:modified" for-mode="view" />
<!– cm:effectivity aspect –>
<show id="cm:from"/>
<show id="cm:to"/>
<!– MediaHub aspect –>
<show id="hub:captionWho" for-mode="edit"/>
<show id="hub:captionWhat" for-mode="edit"/>
<!– dublin core –>
<show id="cm:publisher" for-mode="edit"/>
<show id="cm:contributor" for-mode="edit"/>
<show id="cm:type" for-mode="edit"/>
<show id="cm:identifier" for-mode="edit"/>
<show id="cm:dcsource" for-mode="edit"/>
<show id="cm:coverage" for-mode="edit"/>
<show id="cm:rights" for-mode="edit"/>
<show id="cm:subject" for-mode="edit"/>
</field-visibility>
<appearance>
<field id="cm:from" label="From"/>
<field id="cm:to" label="To"/>
<field id="hub:captionWho" label="Caption Who"/>
<field id="hub:captionWhat" label="Caption What"/>
<set id="dublin-core" appearance="panel" template="/custom-set-dublincore.ftl" />
<field id="cm:publisher" set="dublin-core" label="Publisher"/>
<field id="cm:contributor" set="dublin-core" label="Contributor"/>
<field id="cm:type" set="dublin-core" label="Type"/>
<field id="cm:identifier" set="dublin-core" label="Identifier"/>
<field id="cm:dcsource" set="dublin-core" label="DC Source"/>
<field id="cm:coverage" set="dublin-core" label="Coverage"/>
<field id="cm:rights" set="dublin-core" label="Rights"/>
<field id="cm:subject" set="dublin-core" label="Subject"/>
</appearance>
</form>
</forms>
</config>
</alfresco-config>
<#if form.fields["cm:publisher"]??>
<#if form.mode == "view">
<@formLib.renderField field=form.fields["cm:publisher"] />
<@formLib.renderField field=form.fields["cm:contributor"] />
<@formLib.renderField field=form.fields["cm:type"] />
<@formLib.renderField field=form.fields["cm:identifier"] />
<@formLib.renderField field=form.fields["cm:dcsource"] />
<@formLib.renderField field=form.fields["cm:coverage"] />
<@formLib.renderField field=form.fields["cm:rights"] />
<@formLib.renderField field=form.fields["cm:subject"] />
<#else>
<div class="yui-g">
<div class="yui-u first">
<@formLib.renderField field=form.fields["cm:publisher"] />
</div>
<div class="yui-u">
<@formLib.renderField field=form.fields["cm:contributor"] />
</div>
</div>
<div class="yui-g">
<div class="yui-u first">
<@formLib.renderField field=form.fields["cm:type"] />
</div>
<div class="yui-u">
<@formLib.renderField field=form.fields["cm:identifier"] />
</div>
</div>
<div class="yui-g">
<div class="yui-u first">
<@formLib.renderField field=form.fields["cm:dcsource"] />
</div>
<div class="yui-u">
<@formLib.renderField field=form.fields["cm:coverage"] />
</div>
</div>
<div class="yui-g">
<div class="yui-u first">
<@formLib.renderField field=form.fields["cm:rights"] />
</div>
<div class="yui-u">
<@formLib.renderField field=form.fields["cm:subject"] />
</div>
</div>
<div style="clear: both;"></div>
</#if>
</#if>
02-09-2010 01:19 AM
02-11-2010 09:24 AM
02-11-2010 02:38 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.