We are using ACS Commons static reference rewriter and ACS Commons versioned-clientlibs, but only one is working at a time which is having higher order no.
Also we implemented custom static reference rewriter [domainsharding]. Now only one is working at a time which have higher order no.
But we need all three to be worked. Please find below all the three configurations:
Versioned-clientlibs
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:Folder"
contentTypes="[text/html]"
enabled="{Boolean}true"
generatorType="htmlparser"
order="{Long}2"
serializerType="htmlwriter"
transformerTypes="[linkchecker,versioned-clientlibs]"/>
Static reference rewriter
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="nt:unstructured"
contentTypes="[text/html]"
enabled="{Boolean}true"
generatorType="htmlparser"
order="{Long}1"
serializerType="htmlwriter"
transformerTypes="[linkchecker,akamai-static]"/>
Custom rewriter Domainsharding
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:Folder"
contentTypes="[text/html]"
enabled="{Boolean}true"
generatorType="htmlparser"
order="{Long}10"
serializerType="htmlwriter"
transformerTypes="[domainsharding]"/>
Please advise.