<?xml version="1.0"?>

<xsl:transform version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:html="http://www.w3.org/1999/xhtml"
  xmlns:rdf  ="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dataview="http://www.w3.org/2003/g/data-view#"
  exclude-result-prefixes="html">

<xsl:template match="*">
  <xsl:copy>
    <xsl:apply-templates select="@*" />
    <xsl:apply-templates />
  </xsl:copy>
</xsl:template>

<xsl:template match="@*">
  <xsl:copy-of select="." />
</xsl:template>

<!-- need hAtom etc. -->
<xsl:template match="/html:html/html:head">
	<html:head>
  		<xsl:attribute name="profile">http://www.purl.org/stuff/rev# http://www.w3.org/2006/03/hcard http://purl.org/stuff/glink/</xsl:attribute>
  	</html:head>
</xsl:template>

 </xsl:transform>