12 lines
No EOL
356 B
XML
12 lines
No EOL
356 B
XML
<?xml version='1.1' ?>
|
|
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:import href="include/StandardTransforms.xsl"/>
|
|
|
|
<xsl:template match="Process">
|
|
<xsl:text>Process started as PID </xsl:text>
|
|
<xsl:value-of select="@id"/>
|
|
<xsl:call-template name="PrintReturn"/>
|
|
</xsl:template>
|
|
|
|
</xsl:transform> |