cancel
Showing results for 
Search instead for 
Did you mean: 

Where are these files for custom permissions?

whispering
Champ in-the-making
Champ in-the-making
Hi

I implemented (as per the following link) a new set of custom permissions for Alfresco Share

http://wiki.alfresco.com/wiki/Custom_Permissions_in_Share

It worked. But there were a couple of pages that were not covered by the above.

Can someone tell me where to find those files so that I can edit accordingly.

The pages are:

1. Site Dashboard > Member > Search for a member (the drop down to change the role needs to be edited)

2. Site Dashboard - The Site Colleagues dashlet

thanks
whispering
1 REPLY 1

whispering
Champ in-the-making
Champ in-the-making
Hi

I found one of the two - the Site Colleagues dashlet (on the Site Dashboard)

The problem I had was that the customized roles (when displayed in the Site Colleagues dashlet) were preceded by the word "role."

The file which needs to be edited is

colleagues.get.html.ftl

The file is found in:

/Alfresco/tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/dashlets/

The following line needs to be edited

<div>${msg("role." + m.role)}</div>

It needs to be changed to

<div>${msg(m.role)}</div>

cheers