Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

minisanu
minisanu
Online

Badges

Badges
16

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
9

Posts

Posts
46

Discussions

Discussions
16

Questions

Questions
30

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by minisanu
Customize the badges you want to showcase on your profile
Re: Unit testing framework - Adobe Experience Manager 02-08-2017
Thanks Everyone for your valuable inputs

Views

862

Likes

0

Replies

0
Re: Permission on Content Fragment - Adobe Experience Manager Assets 02-08-2017
I have tried it but it is not working in the case of content fragments. I granted only read access for slave and for master I gave all access. I am able to edit the variation created for slave in content fragment.

Views

1.4K

Likes

0

Replies

0
Re: Permission on Content Fragment - Adobe Experience Manager Assets 02-08-2017
How can we set permission for content fragment based on user groups?

Views

1.4K

Likes

0

Replies

0
Permission on Content Fragment - Adobe Experience Manager Assets 02-08-2017
Hi Everyone,I need to set up permission on the content fragment in such a way that only the MASTER can access and edit it, SLAVE can only access and SUB SLAVE should not even view it. 1)To be more clear, we have parent(company), child(dealers) and sub child(shops) relationship in our requirement. Some of the content should be accessible only to master and not child or sub child. Some of the content are accessible to parent and child but not sub child. The sub child should not even allowed to vie...

Views

3.1K

Likes

0

Replies

6
Unit testing framework - Adobe Experience Manager 18-07-2017
Hi Everyone,Could you please suggest good unit testing framework for JSP, JAVA, Sightly,component dialogs. You can provide me the optimal unit testing framework for each technology.Any help would be greatly appreciated.Thanks Yamini

Views

1.2K

Like

1

Replies

3
Not exposing the "/content/dam/project" and "/content/project " in redirect urls - Adobe Experience Manager 10-05-2017
Hi Everyone,I have a requirement for not exposing the "/content/dam/project" and "/content/project" in the rendered html so users do not get to see the internal paths.If we need to sling redirect URL mapping. How can we achieve it? Please explain with example.We have used a method to remove the /content/project from all of the HTML using the below method. /** * This method is used for reverse map the urls on page. * @retrun- if url start with /content it remove the /content/proj& append html to url. * @ retrun- if url is null, blank or not start with /content than it return the same url. * */ public String getResourceResolverMapURl(SlingHttpServletRequest slingRequest, String url ){ if(url!=null && !"".equals(url) && (url.startsWith("/content/proj") || url.startsWith("/content/dam"))){ String extension = ""; int index = url.lastIndexOf('.'); if (index >= 0) { extension = url.substring(index+1).toUpperCase(); } if(extension.isEmpty()){ url=url+".html"; } return slingRequest.getResourceResolver().map(slingRequest, url ); } else { return url; } }We have 6500 url s still getting redirected to /content/project or /content/dam . Any help would be greatly appreciated.Thanks

Views

544

Likes

0

Replies

1
Re: Breadcrumb type mismatch - Adobe Experience Manager 25-04-2017
Thanks kautuk for your quick response:)

Views

786

Likes

0

Replies

0
Breadcrumb type mismatch - Adobe Experience Manager 25-04-2017
Hi Everyone,When migrating from 5.6.1 to 6.1, I am getting an error in breadcrumb.jsp. I don't see any issue in 5.6.1 but 6.1 it throws an error. "Type mismatch:cannot convert from Integer to long".In the below line, 0 should be replaced by 0L. long endLevel = currentStyle.get("relParent", 0);Why it didnt throw an compilation error in 5.6.1 and why in AEM 6.1 , it throws an error ThanksYamini

Views

863

Likes

0

Replies

2
breadcrumb issue in AEM 6.1 - Adobe Experience Manager 25-04-2017
Hi Everyone,When migrating from 5.6.1 to 6.1, I am getting an error in breadcrumb.jsp. "Type mismatch:cannot convert from Integer to long" .I don't see any issue in 5.6.1 but 6.1 it throws an error. What could be the reason?Any ideas..?PFB the code used for breadcrumb. <%-- Breadcrumb component--%><%@include file="/libs/foundation/global.jsp"%><%@include file="/apps/vaa/global/functions.jsp"%><%@page import="com.vaaWebsite.vaa.helpers.StaticResourceHelper,com.day.cq.wcm.api.WCMMode"%><% StaticRe...

Views

753

Likes

0

Replies

1
Re: RTE CTRL+V copying inline styles - Adobe Experience Manager 19-10-2016
Hi Kautuk, This will work only for single paragraph. I need to remove it for multiple paragraphs.Thanks Mini

Views

1.2K

Like

1

Replies

0