I've tried the follwing to find some data. But couldn't get any useful data out of it - and not sure what I am looking for.
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="availableloops" select="'Groups,Products,GroupFields,CustomGroupFields,CustomFieldList'" />
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes" encoding="utf-8" />
<xsl:param name="html-content-type" />
<xsl:template match="Page">
<textarea>
<xsl:copy-of select="." />
</textarea>
</xsl:template>
</xsl:stylesheet>
Help appreciated :)