<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp "&#160;"> <!ENTITY lf "&#10;">]>

<!-- $NetBSD: update-portcache.xsl,v 1.2 2008/02/11 23:08:01 pavel Exp $ -->

<!-- Copyright (c) 2007
	The NetBSD Foundation, Inc.  ALL RIGHTS RESERVED. -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

  <xsl:strip-space elements="people"/>

  <xsl:include href="listmaintports.xsl"/>

  <!-- this template, applied to developerdb.xml, returns a list of
       port with their maintainers in the following format:
       <ports>
       <port name="eniac">
       <maintainer><name>John Foo</name><email>foo@</email></maintainer>
       (...)
       </port>
       (...)
       </ports>
       Possibly with duplicates, if there are more maintainers for a port.
  -->

  <xsl:template match="people">
    <ports>
      <xsl:apply-templates mode="listports"/>
    </ports>
  </xsl:template>  
</xsl:stylesheet>
