Documentation
SKELETON
usage
<SKELETON>
<element ID="number">
[<WITH depth="{n,all}"/>]
</element>
</SKELETON>
paramètres
ID: unique identifier of the element
retourne
<RESULTS/>
This command returns a tree of all elements descending of the element specified.
Its advantage over a classical GET command is its rapidity : the SKELETON is optimized to be faster than GET, but has a smaller functionnality set.
It's ideal to retrieve the whole structure of a website, because you get the ID of the element, its mediatype, its pagetocall if it has one and its title.
exemples
<SKELETON>
<MEDIA ID="2"/>
</SKELETON>
is equivalent to :
<SKELETON>
<MEDIA ID="2">
<WITH depth="all"/>
</MEDIA>
</SKELETON>
<SKELETON>
<MEDIA ID="2">
<WITH depth="3"/>
</MEDIA>
</SKELETON>