to-docbook.xslt 820 B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version='1.0'?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. version='1.0'>
  4. <xsl:output method="xml"
  5. doctype-system="dtd/docbook-xml/docbookx.dtd"
  6. doctype-public="-//Norman Walsh//DTD DocBk XML V3.1//EN"
  7. indent="yes"/>
  8. <xsl:template match="/">
  9. <table>
  10. <title>Gitoyen peers</title>
  11. <tgroup cols="4">
  12. <tbody>
  13. <xsl:apply-templates/>
  14. </tbody>
  15. </tgroup>
  16. </table>
  17. </xsl:template>
  18. <xsl:template match="/peers/peer">
  19. <row>
  20. <entry><xsl:value-of select="name"/></entry>
  21. <entry><xsl:value-of select="@ix"/></entry>
  22. <entry><xsl:value-of select="as"/></entry>
  23. <entry><xsl:value-of select="contact"/></entry>
  24. <entry><xsl:value-of select="ip"/></entry>
  25. </row>
  26. </xsl:template>
  27. </xsl:stylesheet>