<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:sitemap="http://purl.org/net/ns/sitemap#"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:h="http://www.w3.org/1999/xhtml"
  xmlns:foaf="http://xmlns.com/foaf/0.1/"
>
 <xsl:output method="xml" media-type="application/xml" indent="yes"/>
 <xsl:template match="/h:html">
  <rdf:RDF>
   <foaf:Document rdf:about="">
    <xsl:apply-templates select="h:body/h:div[@id='complist']//h:a[@rel='section']"/>
   </foaf:Document>
  </rdf:RDF>
 </xsl:template>

 <xsl:template match="h:a">
  <sitemap:section rdf:resource="{concat(@href,'/rdf')}" dc:title="{@title} (RDF version)"/>
 </xsl:template>
</xsl:stylesheet>