xml.xslt 789 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="xsl msxsl"
  4. >
  5. <xsl:param name="help"/>
  6. <xsl:output method="xml" indent="yes"/>
  7. <xsl:template match="/*">
  8. <xsl:if test="$help='true'">
  9. <xsl:message terminate="yes">
  10. Xml template for protobuf-net.
  11. This template writes the proto descriptor as xml.
  12. No options available.
  13. </xsl:message>
  14. </xsl:if>
  15. <xsl:call-template name="main"/>
  16. </xsl:template>
  17. <xsl:template match="@* | node()" name="main">
  18. <xsl:copy>
  19. <xsl:apply-templates select="@* | node()"/>
  20. </xsl:copy>
  21. </xsl:template>
  22. </xsl:stylesheet>