crx

How to Enable CORS in CRXDE Lite/AEM

假如想象 提交于 2019-12-07 00:25:29
We use CRX DE lite/Adobe EM as our backend for our Angularjs SPA UI/frontend. How can we set CORS for this backend technology? We have access to the tool http://localhost:4502/crx/de/index.jsp to change settings. But we are not sure how to set CORS enabled. Please advice. As of AEM 6.3 There is an OOTB service called Adobe Granite Cross-Origin Resource Sharing Policy . It was as easy as creating an OSGi configuration with the alloworigin=[http://localhost:8000] property. In my case, my Angular application was running on port 8000 trying to access the publisher on 4503. Prior AEM 6.3 What I

CQ5 - Hiding a tab within a component dialog depending on user group?

冷暖自知 提交于 2019-12-06 08:15:59
Any ideas how I would hide or show a dialog tab panel depending on which user group the user belongs to? I tried to do this through the CRX content explorers (ACL's). But I'm not getting much luck with it. Cheers As noted by anthonyh , the ACL approach is the way to go (if such a behavior is really necessary). For example, to hide the "image" tab of the base page component: edit acls for /libs/foundation/components/page/dialog/items/tabs/items/image add deny jcr:read for author login as author go to http://localhost:4502/content/geometrixx/en.html and open the page properties image tab should

How/When is CRX and Apache Jackrabbit used in CQ5/AEM?

这一生的挚爱 提交于 2019-12-04 16:39:43
问题 Lately, I have spent some time trying to better understand the AEM technology stack. There are so many pieces, it seems easy to get confused. I have been looking over the JCR implementations on AEM. I keep reading that it uses CRX. However, I know that it uses Apache Jackrabbit as well. Is it using both? What is the logic behind using both implementations? When and where is each used? A better question might be what is the relationship between CRX and Jackrabbit? 回答1: JCR (JSR-170) is the a

How/When is CRX and Apache Jackrabbit used in CQ5/AEM?

十年热恋 提交于 2019-12-03 10:48:26
Lately, I have spent some time trying to better understand the AEM technology stack. There are so many pieces, it seems easy to get confused. I have been looking over the JCR implementations on AEM. I keep reading that it uses CRX. However, I know that it uses Apache Jackrabbit as well. Is it using both? What is the logic behind using both implementations? When and where is each used? A better question might be what is the relationship between CRX and Jackrabbit? JCR (JSR-170) is the a standard Java API for content repositories. It provides an interface for Java applications to interact with

How to create chrome crx file programmatically (preferably in java)?

痴心易碎 提交于 2019-12-03 07:20:44
问题 I want to create chrome extension crx file programatically (not using chrome.exe, because it opens new chrome window). So what are the alternatives for same ? My preference is java, but if its possible in other language then also I am okay. 回答1: There is a variety of utilities to do this, in various languages (albeit; they are mostly shell/scripting languages) I cannot post the links to all of them, because I am a new stackoverflow user - I can only post 1 link, so I created a page which

How to create chrome crx file programmatically (preferably in java)?

删除回忆录丶 提交于 2019-12-02 20:56:14
I want to create chrome extension crx file programatically (not using chrome.exe, because it opens new chrome window). So what are the alternatives for same ? My preference is java, but if its possible in other language then also I am okay. There is a variety of utilities to do this, in various languages (albeit; they are mostly shell/scripting languages) I cannot post the links to all of them, because I am a new stackoverflow user - I can only post 1 link, so I created a page which lists them all - including the one C one I speak about below - http://curetheitch.com/projects/buildcrx/6/

Create Google Chrome Crx file with PHP

馋奶兔 提交于 2019-11-28 19:56:56
Id like to be able to generate a crx file with PHP. A crx file is a zip file with an additional header and Im at a lost on how to create this header. I can create a crx file if I use a pregenerated pem file but this leads to all the crx files having the same extension id and this is not good. Heres a link to what Ive got so far..... http://valorsolo.com/index.php?page=Viewing%20Message&id=1472&pagenum=2#1500 Incase it helps this has been done in Python and there is an excellent blog post on the finer details here.... http://blog.roomanna.com/12-12-2010/packaging-chrome-extensions and heres

Create Google Chrome Crx file with PHP

我怕爱的太早我们不能终老 提交于 2019-11-27 20:40:46
问题 Id like to be able to generate a crx file with PHP. A crx file is a zip file with an additional header and Im at a lost on how to create this header. I can create a crx file if I use a pregenerated pem file but this leads to all the crx files having the same extension id and this is not good. Heres a link to what Ive got so far..... http://valorsolo.com/index.php?page=Viewing%20Message&id=1472&pagenum=2#1500 Incase it helps this has been done in Python and there is an excellent blog post on