Browse Source

Correctly echo selected properties.

PR: 18588
Submitted by:	Gary Gregory <ggregory at seagullsw dot com>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274473 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 22 years ago
parent
commit
da4c9d0f1d
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      src/etc/log.xsl

+ 5
- 5
src/etc/log.xsl View File

@@ -3,7 +3,7 @@
<!-- <!--
The Apache Software License, Version 1.1 The Apache Software License, Version 1.1


Copyright (c) 2000-2002 The Apache Software Foundation. All rights
Copyright (c) 2000-2003 The Apache Software Foundation. All rights
reserved. reserved.


Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
@@ -199,10 +199,10 @@
</tr> </tr>
</table> </table>
<table border="1" cellspacing="2" cellpadding="3" width="100%" style="font-size:80%"> <table border="1" cellspacing="2" cellpadding="3" width="100%" style="font-size:80%">
<tr class="a"><td width="1">ant.file</td><td><xsl:value-of select="substring-after(message[contains(text(),'ant.file')], '->')"/></td></tr>
<tr class="b"><td width="1">ant.version</td><td><xsl:value-of select="substring-after(message[contains(text(),'ant.version')], '->')"/></td></tr>
<tr class="a"><td width="1">java.version</td><td><xsl:value-of select="substring-after(message[contains(text(),'java.vm.version')], '->')"/></td></tr>
<tr class="b"><td width="1">os.name</td><td><xsl:value-of select="substring-after(message[contains(text(),'os.name')], '->')"/></td></tr>
<tr class="a"><td width="1">ant.file</td><td><xsl:value-of select="substring-after(//message[contains(text(),'ant.file')], '->')"/></td></tr>
<tr class="b"><td width="1">ant.version</td><td><xsl:value-of select="substring-after(//message[contains(text(),'ant.version')], '->')"/></td></tr>
<tr class="a"><td width="1">java.version</td><td><xsl:value-of select="substring-after(//message[contains(text(),'java.vm.version')], '->')"/></td></tr>
<tr class="b"><td width="1">os.name</td><td><xsl:value-of select="substring-after(//message[contains(text(),'os.name')], '->')"/></td></tr>
</table> </table>
<!-- build information --> <!-- build information -->
<h3>Build events</h3> <h3>Build events</h3>


Loading…
Cancel
Save