mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@2923 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
130 lines
5.1 KiB
XML
130 lines
5.1 KiB
XML
<alfresco-config>
|
|
|
|
<config>
|
|
<client>
|
|
<!-- the login page the client will use -->
|
|
<login-page>/jsp/login-override.jsp</login-page>
|
|
|
|
<!-- the maximum number of items to show in the recent spaces shelf component -->
|
|
<recent-spaces-items>1</recent-spaces-items>
|
|
|
|
<!-- Shelf component default visibility, set to false to hide the shelf by default -->
|
|
<shelf-visible>false</shelf-visible>
|
|
|
|
<!-- the minimum number of characters required for a valid search string -->
|
|
<search-minimum>10</search-minimum>
|
|
|
|
<!-- The default permissions to apply to a new users Home Space when first created -->
|
|
<!-- this permission is for other users attempting to access that Home Space -->
|
|
<!-- generally set to "Consumer" or empty value to indicate a private hidden space. -->
|
|
<!-- see org.alfresco.service.cmr.security.PermissionService for allowed values -->
|
|
<home-space-permission>Editor</home-space-permission>
|
|
|
|
<!-- the URL to the client Help file -->
|
|
<help-url>http://www.somewhere.com/help</help-url>
|
|
|
|
<!-- the type of edit link to use, NOTE: inline editable will always take precedence -->
|
|
<!-- can be: http|webdav|cifs -->
|
|
<edit-link-type>webdav</edit-link-type>
|
|
|
|
<!-- the from address to use when sending emails from the client -->
|
|
<from-email-address>me@somewhere.com</from-email-address>
|
|
</client>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Languages">
|
|
<languages>
|
|
<language locale="ja_JP">Japanese</language>
|
|
<!-- this shouldn't appear in the list twice! -->
|
|
<language locale="fr_FR">French</language>
|
|
</languages>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Advanced Search">
|
|
<!-- advanced search custom attribute config -->
|
|
<advanced-search>
|
|
<!-- custom properties to be shown in the More Options panel -->
|
|
<custom-properties>
|
|
<meta-data aspect="app:simpleworkflow" property="app:rejectStep" display-label-id="reject_step" />
|
|
</custom-properties>
|
|
</advanced-search>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Views">
|
|
<views>
|
|
<view-impl>org.alfresco.web.bean.ForumsBean$TopicBubbleViewRenderer</view-impl>
|
|
<view-defaults>
|
|
<browse>
|
|
<!-- change the default view for browse page -->
|
|
<view>details</view>
|
|
</browse>
|
|
<forum>
|
|
<!-- define a sort column to the forum page -->
|
|
<sort-column>modified</sort-column>
|
|
<!-- turn on descending sorting for the forum page -->
|
|
<sort-direction>descending</sort-direction>
|
|
<page-size>
|
|
<!-- change the details page size to 50 -->
|
|
<details>50</details>
|
|
</page-size>
|
|
</forum>
|
|
<topic>
|
|
<!-- reset the descending sort for the topic view -->
|
|
<sort-direction>ascending</sort-direction>
|
|
</topic>
|
|
</view-defaults>
|
|
</views>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="space-aspect">
|
|
<property-sheet>
|
|
<show-property name="size" read-only="true" />
|
|
<show-property name="icon" read-only="true" show-in-edit-mode="false" />
|
|
</property-sheet>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Property Viewing">
|
|
<property-sheet>
|
|
<show-property name="description" show-in-view-mode="false" show-in-edit-mode="false" />
|
|
<show-property name="icon" ignore-if-missing="false" />
|
|
<show-property name="uuid" show-in-view-mode="true" />
|
|
</property-sheet>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Dialogs">
|
|
<dialog-container>/custom/my-container.jsp</dialog-container>
|
|
|
|
<dialogs>
|
|
<dialog name="createSpace" page="/custom/my-create-space.jsp" managed-bean="MyNewSpaceDialog"
|
|
title-id="create_space_title" description-id="create_space_description" />
|
|
</dialogs>
|
|
</config>
|
|
|
|
<config evaluator="string-compare" condition="Actions Override">
|
|
<actions>
|
|
<action id="details_doc">
|
|
<label-id>view_details</label-id>
|
|
<image>/images/icons/View_details.gif</image>
|
|
<action>dialog:showCustomDocDetails</action>
|
|
</action>
|
|
|
|
<action id="custom_action">
|
|
<label-id>some_label_id</label-id>
|
|
<image>/images/icons/details.gif</image>
|
|
<action>customAction</action>
|
|
</action>
|
|
|
|
<!-- Add the custom action to the existing document_browse group -->
|
|
<action-group id="document_browse">
|
|
<show-link>true</show-link>
|
|
<action idref="custom_action" hide="false" />
|
|
<action idref="details_space" hide="true" />
|
|
</action-group>
|
|
|
|
<action-group id="new_group">
|
|
<action idref="custom_action" />
|
|
</action-group>
|
|
</actions>
|
|
</config>
|
|
|
|
</alfresco-config> |