AEM Sites output has options to specify custom templates as well as clientlibs when generating output from DITA. However, I don't find an option to specify the same with the HTML5 output.As per DITA OT documentation there is an option to specify a property file with arguments such as CSS root, copy ...
AEM Sites output has options to specify custom templates as well as clientlibs when generating output from DITA. However, I don't find an option to specify the same with the HTML5 output.As per DITA OT documentation there is an option to specify a property file with arguments such as CSS root, copy...
What do you mean by not able to see in the UI? Based on the screenshot you have, all the three are actually present in the UI. Pathbrowser is your input field where /content/dam is currentlty present in the image. Searchtype is the dropdown where Files & Folders is selected and mimetype is your File...
Hi all, Received an update from the engineering team via daycare.So, the right way to register the Preprocessor is to implement the PreProcessor interface but register it as an IProcessor service. @component((immediate = true))
@Service((IProcessor.class))
public class MyPreProcessor implements IPre...
I've tried it before and there was no difference. It doesn't work.I tried it again now and still the same.However, the question is, how would it identify if the service is a PreProcessor or PostProcessor if you are registering it as IProcessor?I would assume IPreProcessor would be the right service ...
Here you go.The only difference in the code from my original questions vs the service running in my instance is the name of the class. I've renamed it from MyPreProcessor to ACRPreProcessor. The underlying code is exactly the same.A more fundamental question with this issue is, when would the PrePro...
I was able to deduce that from the docs.If you look at the sample code that I posted in the original question, the isSupported method returns true always.But the control never reaches the isSupported method.There are no logs that I have printed in that method nor are there any errors in the log file...
Hi all,I was going through the AEM Forms Java Docs and came across the class IPreProcessor (AEM Forms API).The description readsIPreProcessor is a service that is called directly before executing any operation. This can be used to do some pre-processing like authorization or request modification be...