Hi community,
I'm trying to find a way to activate the page properties without activating the content of the components.
So, I want to activate only the jcr:content node without the child nodes.
I've read the replication API but I can't find something to help me. ReplicationContentFilter and also check EventHandler
I've all the code, I added a new button in the top bar of sites.html, which invokes a servlet to make the publication. But when using replicator.replicate with the jcr: content node, the content of the child components is also activated.
Does anyone have any idea how to do it?
Thanks in advance
Solved! Go to Solution.
Views
Replies
Total Likes
Finally i found the solution!! and yes, it is using Sling Content Distribution api.
Find below the most import part of the code and let me know if you have questions
...
import org.apache.sling.distribution.DistributionRequestType;
import org.apache.sling.distribution.DistributionResponse;
import org.apache.sling.distribution.Distributor;
import org.apache.sling.distribution.SimpleDistributionRequest;
...
@Reference
private Distributor slingDistributor;
...
DistributionResponse distributionResponse = distributeResource(resourceResolver, path);
....
private DistributionResponse distributeResource(ResourceResolver resolver, String path) {
SimpleDistributionRequest sdr =
new SimpleDistributionRequest(DistributionRequestType.ADD, false, path);
return slingDistributor.distribute("publish", resolver, sdr);
}
Thanks!
Views
Replies
Total Likes
The replication API is not designed to replicate single nodes which do have child nodes.
For your case I would build a content-package, which just contains the jcr:content node you are interested in and replicate this package then. Please make sure that your merge settings are correct (otherwise you might purge all nodes below on publish).
Jörg
Hi Jörg_Hoh
Can i do that by code? I need to add a custom action for the authors.
What do you think about
Views
Replies
Total Likes
Views
Replies
Total Likes
Finally i found the solution!! and yes, it is using Sling Content Distribution api.
Find below the most import part of the code and let me know if you have questions
...
import org.apache.sling.distribution.DistributionRequestType;
import org.apache.sling.distribution.DistributionResponse;
import org.apache.sling.distribution.Distributor;
import org.apache.sling.distribution.SimpleDistributionRequest;
...
@Reference
private Distributor slingDistributor;
...
DistributionResponse distributionResponse = distributeResource(resourceResolver, path);
....
private DistributionResponse distributeResource(ResourceResolver resolver, String path) {
SimpleDistributionRequest sdr =
new SimpleDistributionRequest(DistributionRequestType.ADD, false, path);
return slingDistributor.distribute("publish", resolver, sdr);
}
Thanks!
Views
Replies
Total Likes