PHP Classes

File: resources/xslt/targets.xsl

Recommend this page to a friend!
  Classes of jawira   Phing Build File Visualizer   resources/xslt/targets.xsl   Download  
File: resources/xslt/targets.xsl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Phing Build File Visualizer
Render chart to represent a Phing build process
Author: By
Last change:
Date: 4 years ago
Size: 476 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text" version="2.0" encoding="UTF-8" indent="no"/> <xsl:param name="color"/> <xsl:template match="/project"> <xsl:for-each select="./target"> <xsl:text>(</xsl:text> <xsl:value-of select="@name"/> <xsl:text>)</xsl:text> <xsl:text>&#10;</xsl:text> </xsl:for-each> </xsl:template> </xsl:stylesheet>