<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
                xmlns:gp="http://www.groundspeak.com/cache/1/0" >

<xsl:template match="gp:logs"/>

<!--If there is no corresponding template, then just put it in, as-is-->
<xsl:template match="*|@*|text()"> 
	<xsl:copy>
		<xsl:apply-templates select="*|@*|text()"/>
	</xsl:copy>
</xsl:template>

</xsl:stylesheet>
