alfresco-share

How do I disable Alfresco main menu items?

被刻印的时光 ゝ 提交于 2019-12-02 05:15:22
问题 The main menu on the Alfresco Share app contains a couple of items that the project team for our deployment wants to have disabled. Specifically "My Files" and "Shared Files". Hiding would be good enough, but if we can disable them completely that would be best. Those are functions that the users are not to have any access to. All their interactions should be through the sites. Is there an Alfresco supported (as in "won't break when we upgrade versions") way to do this? 回答1: You have blog

How do I disable Alfresco main menu items?

寵の児 提交于 2019-12-01 23:31:35
The main menu on the Alfresco Share app contains a couple of items that the project team for our deployment wants to have disabled. Specifically "My Files" and "Shared Files". Hiding would be good enough, but if we can disable them completely that would be best. Those are functions that the users are not to have any access to. All their interactions should be through the sites. Is there an Alfresco supported (as in "won't break when we upgrade versions") way to do this? You have blog post describing how to hide main menu items at this link. It turned out later that this approach wasn't working

Alfresco REST API for downloading document

二次信任 提交于 2019-12-01 10:38:19
I want to use the Afresco REST API to download a document. After some research I find out this REST API: /alfresco/s/api/node/content{property}/{store_type}/{store_id}/{id} But I am not sure how to pass the parameters. If my document details URL in Share is : http://127.0.0.1:8080/share/page/context/mine/document-details?nodeRef=workspace://SpacesStore/7f77488a-60a0-48c3-9369-77183ccad0d2 What should be passed in {property} , {store_type} , {store_id} and {id} ? For this NodeRef workspace://SpacesStore/7f77488a-60a0-48c3-9369-77183ccad0d2 the values for parameter will be: {property}: content

How to Update Document properties using CMIS

浪子不回头ぞ 提交于 2019-12-01 09:54:38
问题 I have one external web application through that i connected to alfresco repository using CMIS. I am already able to upload document in to repository or able to download n view document. Now my requirement is, I have to Update Specific Documents Properties. So can any one please provide sample code or steps to update document properties Using CMIS. Thanks in Advance... 回答1: try this worked fine for me Session session = getSession(serverUrl, username, password); Document targetFile = (Document

How to Do Mass Update in Alfresco Using CMIS

天大地大妈咪最大 提交于 2019-12-01 01:42:35
Is it possible to do mass update using CMIS in alfresco. I have Different Documents Types and Every Document type is having multiple documents in alfresco repository. Now my requirement is, If i will Update any single property of any document, then it should reflect with all the documents of same type. Can i do this USING CMIS? If yes, please provide the steps and sample code to do this. Thanks in Advance The hard way (and chatty way) is to query for your documents and then set the properties on each one. But the CMIS spec actually provides a better way: Bulk updates. Here is what the code

How to Do Mass Update in Alfresco Using CMIS

纵饮孤独 提交于 2019-11-30 22:10:43
问题 Is it possible to do mass update using CMIS in alfresco. I have Different Documents Types and Every Document type is having multiple documents in alfresco repository. Now my requirement is, If i will Update any single property of any document, then it should reflect with all the documents of same type. Can i do this USING CMIS? If yes, please provide the steps and sample code to do this. Thanks in Advance 回答1: The hard way (and chatty way) is to query for your documents and then set the

Alfresco community 5.1.x workflow form add input fields dynamically

北慕城南 提交于 2019-11-30 06:06:39
问题 I am using Alfresco Community 5.1.x. I want to create a custom workflow using kickstart in that one of the forms I have + button when + button add text fields dynamically. Is this possible? How? 回答1: I hope you will get some idea from this control. On Share configration, <field id="myco:userDetails" set="userDetails" label="User Details" > <control template="/org/alfresco/components/form/controls/workflow/userdetails.ftl" /> </field> userdetails.ftl <style> .yui-dt{ border: 1px solid #ccc;

Alfresco community 5.1.x workflow form add input fields dynamically

一曲冷凌霜 提交于 2019-11-28 14:22:17
I am using Alfresco Community 5.1.x. I want to create a custom workflow using kickstart in that one of the forms I have + button when + button add text fields dynamically. Is this possible? How? I hope you will get some idea from this control. On Share configration, <field id="myco:userDetails" set="userDetails" label="User Details" > <control template="/org/alfresco/components/form/controls/workflow/userdetails.ftl" /> </field> userdetails.ftl <style> .yui-dt{ border: 1px solid #ccc; font-weight: normal; } .yui-dt th { margin: 0; padding: 0; border: none; border-right: 1px solid #CBCBCB;

How to implement digital signature with my existing web project

99封情书 提交于 2019-11-26 21:23:24
问题 I'm working on the project where the user needs to do a digital signature on a document. I checked in the google and know about sinadura which is a desktop application but I need to invoke this into my web application. I installed alfresco community edition on Linux server (https://www.alfresco.com/thank-you/thank-you-downloading-alfresco-community-edition) and followed the instruction as below GitHub link. https://github.com/zylklab/alfresco-sinadura I've implemented successfully with above