<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: 4.0c removing UI actions works on windows but not in linux in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267410#M220540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can look through the out-of-the-box evaluators in the Share web app to see what is available. If you grep for "&amp;lt;bean id=\"evaluator.doclib" you'll see they all live in slingshot-documentlibrary-context.xml. I do not see one that is based on username or group. The closest is "EditableByCurrentUser".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is possible to write your own evaluator. It's just a Java class. So you could have an evaluator that would match on username or group name and then configure the specific user or group name in Spring, then point to the evaluator in your form config.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Feb 2012 21:21:40 GMT</pubDate>
    <dc:creator>jpotts</dc:creator>
    <dc:date>2012-02-24T21:21:40Z</dc:date>
    <item>
      <title>4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267405#M220535</link>
      <description>Hi,I am customizing UI Actions Menus to reduce the actions that a user can take when dealing with a document.&amp;nbsp; One of the UI Actions I want to remove is&amp;nbsp; Publish which on windows does not show within either the document browse action menu or the document details action menu after editing the share-d</description>
      <pubDate>Thu, 23 Feb 2012 18:08:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267405#M220535</guid>
      <dc:creator>ggates1</dc:creator>
      <dc:date>2012-02-23T18:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267406#M220536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi George,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is not a good idea to change any of the files distributed with Alfresco unless there is no other way to do what you are trying to do. Instead, you should use the "extension" mechanism. Also, in Alfresco 4 it is really easy to turn off an action. Check it out:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Create a directory called web-extension under $TOMCAT_HOME/webapps/share/WEB-INF/classes/alfresco&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Create a file called share-config-custom.xml with the following content:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;alfresco-config&amp;gt;&lt;BR /&gt;&amp;lt;config evaluator="string-compare" condition="DocLibActions"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;actions&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Publish document –&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;action id="document-publish" type="javascript" label="actions.document.publish"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param name="function"&amp;gt;onActionPublish&amp;lt;/param&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;evaluator&amp;gt;evaluator.doclib.action.disableAction&amp;lt;/evaluator&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/action&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/actions&amp;gt;&lt;BR /&gt;&amp;lt;/config&amp;gt;&lt;BR /&gt;&amp;lt;/alfresco-config&amp;gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;3. Save the file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Restart Tomcat&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. The action will not appear.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All I'm doing here is overriding the definition of the "document-publish" action, and I'm giving it a new evaluator that disables the action.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 19:13:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267406#M220536</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2012-02-23T19:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267407#M220537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ah yes I see you wrapped the action tag and changed the property of the evaluator to disable.&amp;nbsp; This is slick…thanks i will give it a try.&amp;nbsp; I assume I can do these with all the ui action I want to disable. Will this also work for View in Google maps&amp;nbsp; ui action?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the quick response &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;George&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 20:25:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267407#M220537</guid>
      <dc:creator>ggates1</dc:creator>
      <dc:date>2012-02-23T20:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267408#M220538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;George,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It should work for all actions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 20:48:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267408#M220538</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2012-02-23T20:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267409#M220539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It there a way to remove UI Actions by user?&amp;nbsp; As the extension takes is out for all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;George&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2012 20:01:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267409#M220539</guid>
      <dc:creator>ggates1</dc:creator>
      <dc:date>2012-02-24T20:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267410#M220540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can look through the out-of-the-box evaluators in the Share web app to see what is available. If you grep for "&amp;lt;bean id=\"evaluator.doclib" you'll see they all live in slingshot-documentlibrary-context.xml. I do not see one that is based on username or group. The closest is "EditableByCurrentUser".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is possible to write your own evaluator. It's just a Java class. So you could have an evaluator that would match on username or group name and then configure the specific user or group name in Spring, then point to the evaluator in your form config.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2012 21:21:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267410#M220540</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2012-02-24T21:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267411#M220541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello&amp;nbsp; jpotts&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks works fine on " publish"&amp;nbsp; any chance to get the portion of code to hide workflows&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2012 19:54:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267411#M220541</guid>
      <dc:creator>nua76</dc:creator>
      <dc:date>2012-05-08T19:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267412#M220542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, NUA76, I don't know what you are asking for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2012 20:14:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267412#M220542</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2012-05-08T20:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267413#M220543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;George ask you how to hide "publish" action&amp;nbsp; on the document list action , &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have followed your exemple and it works perfectly&amp;nbsp; on my side&amp;nbsp; "publish " action is hide&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;this is the portion of code to do it &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&amp;lt;alfresco-config&amp;gt;&lt;BR /&gt;&amp;lt;config evaluator="string-compare" condition="DocLibActions"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;actions&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Publish document –&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;action id="document-publish" type="javascript" label="actions.document.publish"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param name="function"&amp;gt;onActionPublish&amp;lt;/param&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;evaluator&amp;gt;evaluator.doclib.action.disableAction&amp;lt;/evaluator&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/action&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/actions&amp;gt;&lt;BR /&gt;&amp;lt;/config&amp;gt;&lt;BR /&gt;&amp;lt;/alfresco-config&amp;gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;you wrapped the action tag and changed the property of the evaluator to disable&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;my new query was , i want to do exactly the same with the&amp;nbsp; "start worlflow action"&amp;nbsp; ( hide the start workflow action ) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;my question was,&amp;nbsp;&amp;nbsp; can you write the code exemple to apply&amp;nbsp; hiden action&amp;nbsp; "start workflow "&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 12:03:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267413#M220543</guid>
      <dc:creator>nua76</dc:creator>
      <dc:date>2012-05-09T12:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267414#M220544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;NUA76,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I see, thanks for clarifying. To hide the "Start Workflow" action you'd follow the exact same procedure. In that case, the action is called "document-assign-workflow", so to hide it, you'd do this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Assign workflow –&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;action id="document-assign-workflow" type="javascript" label="actions.document.assign-workflow"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param name="function"&amp;gt;onActionAssignWorkflow&amp;lt;/param&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;evaluator&amp;gt;evaluator.doclib.action.disableAction&amp;lt;/evaluator&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/action&amp;gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are also hiding "document-publish" or some other action, add this immediately following the other action's "&amp;lt;/action&amp;gt;" tag and before the "&amp;lt;/actions&amp;gt;" tag.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 13:47:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267414#M220544</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2012-05-09T13:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267415#M220545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cool ,&amp;nbsp; i'm going to try and come back&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for your&amp;nbsp; help&amp;nbsp; &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://connect.hyland.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 15:19:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267415#M220545</guid>
      <dc:creator>nua76</dc:creator>
      <dc:date>2012-05-09T15:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267416#M220546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;works perfectly&amp;nbsp; , thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if you have time , another question.&amp;nbsp; If i want to disable this action only for few role &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&amp;lt;evaluator&amp;gt;evaluator.doclib.action.disableAction&amp;lt;/evaluator&amp;gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;how to disable action only for " consumer + editor + contributor "&amp;nbsp; if possible ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; :wink:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2012 11:40:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267416#M220546</guid>
      <dc:creator>nua76</dc:creator>
      <dc:date>2012-05-11T11:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267417#M220547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;BY the way for people interesting in this post&amp;nbsp; , you can read &lt;/SPAN&gt;&lt;A href="http://ecmarchitect.com/images/articles/alfresco-actions/actions-article-2ed.pdf" rel="nofollow noopener noreferrer"&gt;http://ecmarchitect.com/images/articles/alfresco-actions/actions-article-2ed.pdf&lt;/A&gt;&lt;SPAN&gt; from Jeff&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;hight level documentation&amp;nbsp; for expert&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2012 12:30:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267417#M220547</guid>
      <dc:creator>nua76</dc:creator>
      <dc:date>2012-05-11T12:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: 4.0c removing UI actions works on windows but not in linux</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267418#M220548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okay we are self imploding… here is our issue with 4.0d and implementing the share-config-custom.xml.&amp;nbsp; Originally I deployed the share-config-custom.xml to&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/opt/alfresco-4.0.d/tomcat/webapps/share/WEB-INF/classes/alfresco/web-extension directory with the UI ACTIONS disabled.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;another employee was tasked to implement SSO and he placed the share-config-custom.xml in the directory &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/opt/alfresco-4.0.d/tomcat/shared/classes/alfresco/web-extension&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suggested we combine changes into one share-config-custom.xml&amp;nbsp; and we placed it in the /opt/alfresco-4.0.d/tomcat/shared/classes/alfresco/web-extension directory.&amp;nbsp; with SSO commented out the UI ACTIONS were disabled, however when he rolled his SSO changes into the file the UI ACTIONS are ignored.&amp;nbsp; So which &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;directory should we be deploying to?&amp;nbsp; Is it possible to have multiple share-config-custom.xml in different directories?&amp;nbsp;&amp;nbsp; When we combine the file and restart alfresco we get.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provid&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;er.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A server error has occured.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There are a number of reasons why this could have happened:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You have attempted to access a page that does not exist - check the URL in the address bar.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You have attempted to access a page that is not accessable to you, such as a private Site dashboard.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A valid page has been requested but the server was unable to render it due to an internal error - contact your administrator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Return to your dashboard page&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alfresco Software Inc. © 2005-2011 All rights reserved.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;any insight will be much appreciated and I think you in advance for your help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;George&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 16:27:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/4-0c-removing-ui-actions-works-on-windows-but-not-in-linux/m-p/267418#M220548</guid>
      <dc:creator>ggates1</dc:creator>
      <dc:date>2012-06-07T16:27:51Z</dc:date>
    </item>
  </channel>
</rss>

