I was able to fix this with the below code.
try (ZipOutputStream zos = new ZipOutputStream(new FileOutputStream("C:\\Project\\TestZip\\assets.zip"));) {int count =0;for(InputStream in:inputStreamList){ByteArrayOutputStream os = new ByteArrayOutputStream();BufferedImage jImage = ImageIO.read(in);Im...
Unable to rollout a page from master to country nodes.It is listing all child pages while trying to rollout, but unable to deselect pages so that they can be rolled out only to specific child nodes.
I have a query as below: path=/home/project/usersproperty=customGroupproperty.value=Unverifiedtype=rep:User From this result I need to filter whoseregistrationCompletedDate or jcr:createdDate value is greater than 5 days Both these properties are of type Date.Can you help how I need to modify the qu...
Found the root cause of this issue. OOB Vanity URL's were not working because of internal sling mapping and dispatcher mapings. So as a solution we implemented custom vanity url path by appending the /content/site/locale path internally thorugh code and now OOB vanity urls are working.
I tried <include pattern="/apps/site/components(/.*)?"/> and this did not work. Also, in my case exclude pattern will not work as we have a designs package which i would like to exclude inorder to remove the dependency between apps and design package. Since the clientlib folder resides in designs pa...
@BrianKasingli I have installed the package manually and saw the changes inside dialog.xml was not refflecting by just giving <include pattern="/apps/site/components"/>. I cannot give filter root alone as there are some folder which we don't need to be added as part of the package and hence giving t...
@Albin_Issac If we give <filter root="/apps/site"/> , the full nodes under site will be included right which I dont want. Hence given required paths only using include pattern. But my question is if i need to include all nodes and files under <include pattern="/apps/site/components"/>, how do i need...
@Shashi_Mulugu AEM versio is 6.4, Content maven version is 0.5.1, We are using include pattern so that we can inslude only the required folders other than including everthing in the package.