Solved
Need java code to convert the page names to lower case
Hi All,
is there any API or java code to convert the page names to lower case pragmatically.
Hi All,
is there any API or java code to convert the page names to lower case pragmatically.
I highly recommend using the Groovy Console (https://github.com/Citytechinc/cq-groovy-console) for this.
You can write a script like below:
getNode('/content/path/en').recurse { node -> rename node to node.name.toLowerCase() save() }And that'll take care of it for you.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.