On Fri, Jul 23, 2010 at 7:33 PM, Justin Edelson <[email protected]> wrote: >>... We really need a page describing all of the node types provided by the >> jcr.resource bundle... >> >> > Started this at > https://cwiki.apache.org/confluence/display/SLING/Sling+Node+Types using the > same structure as Jackrabbit's wiki....
As a fan of autogenerated docs I can't resist a one-liner that lists all the (hopefully commented) CND files in the Sling codebase: find . -name *.cnd | grep src/main | sort | while read f do echo; echo "CND file: $f"; cat $f done Bonus points for an additional (awk?) filter that removes the Apache License headers from that one ;-) -Bertrand
