You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

directory2project.xsl 429B

123456789101112131415161718192021
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. version="1.0">
  5. <xsl:param name="base"/>
  6. <xsl:template match="directory">
  7. <project>
  8. <xsl:apply-templates/>
  9. </project>
  10. </xsl:template>
  11. <xsl:template match="entry">
  12. <xsl:if test="not(@directory)">
  13. <resource source="{@href}" target="{$base}{@href}"/>
  14. </xsl:if>
  15. </xsl:template>
  16. </xsl:stylesheet>