I'm curious if it is possible to create custom .xsl files in the /admin directory, using the same xsl params that appear in in the web interfaces that ship with Icecast2. Here's an example that (currently) isn't working for me. Any help or comments on the way Icecast2 handles the processing of these files would be super: <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" > <xsl:output method="html" indent="yes" /> <xsl:template match = "/icestats" > <HTML> <HEAD> <title>Simple Icecast stats</title> </HEAD> <BODY> <xsl:for-each select="source"> <xsl:value-of select="@mount" /> <br> </xsl:for-each> </BODY> </HTML> </xsl:template> </xsl:stylesheet> Any help would be appreciated. -mp