Hi, I have snippet like this:<sly data-sly-use.svg="${'/apps/foobar/svg.js' @ pngPath={{iconPath}}, iconSize='xs', title={{label}}, desc='', alt={{label}}}"> ${svg.html @ context= 'unsafe'} </sly>I'd like to pass the handlebars expression usi...
Sorry for late reply.I've update the javax.servlet to version 3, but it generate Failure to find javax.servlet:servlet-api:jar:3.1. so I just return it back to version 2.5.
Here is my parent pom file. When I want to add additional dependency, I added it on parent pom file. I tried to add it in the core pom.xml, but it show error, so I just added it to the parent pom file.<?xml version="1.0" encoding="UTF-8"?><!-- | Copyright 2015 Adobe Systems Incorporated | | Licensed...
I'm using AEM 6.2 @jorgsmacdonald2008, I'm new in maven world, so that means that the maven repo doesn't have the javax.servlet package version 3.1, isn't it?
I add cookie to the SlingHttpServletResponse by using code: String accessToken = objectResult.getString("access_token"); Cookie responseCookie = new Cookie("web-token", accessToken); responseCookie.setMaxAge(1000); responseCookie.setPath("/"); response.addCookie(responseCookie);When I want...
Based on zane303, I can make it work.The login screen needs to be added to a list of login screens:host:port/system/console/configMgr/com.day.cq.auth.impl.LoginSelectorHandlerSo adding it to the page properties isn't enough. And it needs to be mapped to that section of the system.
I want to make a custom property for personalization targeting. By default there are age, gender, etc. For example, I want to make a custom property for VIP user. how can I do that??