mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
svn merge -r 2597:2649 svn://www.alfresco.org/alfresco/BRANCHES/V1.2.0/root HEAD/root git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2650 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
111 lines
3.6 KiB
Plaintext
111 lines
3.6 KiB
Plaintext
<alfresco-config>
|
|
|
|
<!-- Example of overriding the from email address -->
|
|
<!--
|
|
<config>
|
|
<client>
|
|
<from-email-address>someone@your-domain.com</from-email-address>
|
|
<search-max-results>100</search-max-results>
|
|
</client>
|
|
</config>
|
|
-->
|
|
|
|
<!-- Example of adding languages to the list in the login page -->
|
|
<!--
|
|
<config evaluator="string-compare" condition="Languages">
|
|
<languages>
|
|
<language locale="fr_FR">French</language>
|
|
<language locale="de_DE">German</language>
|
|
<language locale="ja_JP">Japanese</language>
|
|
</languages>
|
|
</config>
|
|
-->
|
|
|
|
<!-- Example of configuring advanced search -->
|
|
<!--
|
|
<config evaluator="string-compare" condition="Advanced Search">
|
|
<advanced-search>
|
|
<content-types>
|
|
</content-types>
|
|
<custom-properties>
|
|
<meta-data aspect="app:simpleworkflow" property="app:approveStep" />
|
|
</custom-properties>
|
|
</advanced-search>
|
|
</config>
|
|
-->
|
|
|
|
<!-- Example of changing the sort direction for a view in the client -->
|
|
<!--
|
|
<config evaluator="string-compare" condition="Views">
|
|
<views>
|
|
<view-defaults>
|
|
<topic>
|
|
<sort-direction>ascending</sort-direction>
|
|
</topic>
|
|
</view-defaults>
|
|
</views>
|
|
</config>
|
|
-->
|
|
|
|
<!-- Example of adding a custom icon to the Create Space dialog -->
|
|
<!--
|
|
<config evaluator="string-compare" condition="cm:folder icons">
|
|
<icons>
|
|
<icon name="space-icon-custom" path="/images/icons/space-icon-custom.gif" />
|
|
</icons>
|
|
</config>
|
|
-->
|
|
|
|
<!-- The config below shows how to incorporate the example model-->
|
|
<!-- into the web client, for this to work you will need to -->
|
|
<!-- rename example-model-context.xml.sample to example-model-context.xml -->
|
|
<!--
|
|
<config evaluator="string-compare" condition="Custom Content Types">
|
|
<content-types>
|
|
<type name="my:sop" />
|
|
</content-types>
|
|
</config>
|
|
|
|
<config evaluator="node-type" condition="my:sop">
|
|
<property-sheet>
|
|
<show-property name="name" show-in-edit-mode="false" />
|
|
<show-property name="mimetype" display-label-id="mimetype" converter="org.alfresco.faces.MimeTypeConverter" show-in-edit-mode="false" />
|
|
<show-property name="title" show-in-edit-mode="false" />
|
|
<show-property name="description" show-in-edit-mode="false" />
|
|
<show-property name="size" display-label-id="size" converter="org.alfresco.faces.ByteSizeConverter" show-in-edit-mode="false" />
|
|
<show-property name="my:publishedDate" />
|
|
<show-association name="my:signOff" />
|
|
<show-property name="my:authorisedBy" />
|
|
<show-child-association name="my:processSteps" />
|
|
</property-sheet>
|
|
</config>
|
|
|
|
<config evaluator="aspect-name" condition="my:imageClassification">
|
|
<property-sheet>
|
|
<show-property name="my:width"/>
|
|
<show-property name="my:height"/>
|
|
<show-property name="my:resolution"/>
|
|
</property-sheet>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Action Wizards">
|
|
<aspects>
|
|
<aspect name="my:imageClassification"/>
|
|
</aspects>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Advanced Search">
|
|
<advanced-search>
|
|
<content-types>
|
|
<type name="my:sop" />
|
|
</content-types>
|
|
<custom-properties>
|
|
<meta-data type="my:sop" property="my:authorisedBy" />
|
|
<meta-data aspect="my:imageClassification" property="my:resolution" />
|
|
</custom-properties>
|
|
</advanced-search>
|
|
</config>
|
|
-->
|
|
|
|
</alfresco-config>
|