If you want to know which attributes and value are available in a sharepoint list (item), you can add the following code in the itemstyle.xsl:

<xsl:for-each select="@*">
Item: <xsl:value-of select="name()"/>
Value: <xsl:value-of select="."/><br/>
</xsl:for-each>