Author: jlboudart
Date: Sun Jun 30 12:18:55 2013
New Revision: 1498101
URL: http://svn.apache.org/r1498101
Log:
Fix null on deprecated configuration
Modified:
ant/easyant/plugins/trunk/easyant-plugin-documentation/module.ivy
ant/easyant/plugins/trunk/easyant-plugin-documentation/src/main/resources/easyant-report-mardown.xsl
Modified: ant/easyant/plugins/trunk/easyant-plugin-documentation/module.ivy
URL:
http://svn.apache.org/viewvc/ant/easyant/plugins/trunk/easyant-plugin-documentation/module.ivy?rev=1498101&r1=1498100&r2=1498101&view=diff
==============================================================================
--- ant/easyant/plugins/trunk/easyant-plugin-documentation/module.ivy (original)
+++ ant/easyant/plugins/trunk/easyant-plugin-documentation/module.ivy Sun Jun
30 12:18:55 2013
@@ -16,7 +16,7 @@
-->
<ivy-module version="2.0" xmlns:ea="http://www.easyant.org">
<info organisation="org.apache.easyant.plugins"
module="easyant-plugin-documentation" status="integration"
- revision="0.9">
+ revision="0.10">
<extends organisation="org.apache.easyant.plugins"
module="parent-plugin" revision="0.1" location="../parent.ivy" />
<ea:build organisation="org.apache.easyant.buildtypes"
module="build-std-ant-plugin" revision="0.1" />
</info>
@@ -30,4 +30,4 @@
<publications>
<artifact type="ant" />
</publications>
-</ivy-module>
\ No newline at end of file
+</ivy-module>
Modified:
ant/easyant/plugins/trunk/easyant-plugin-documentation/src/main/resources/easyant-report-mardown.xsl
URL:
http://svn.apache.org/viewvc/ant/easyant/plugins/trunk/easyant-plugin-documentation/src/main/resources/easyant-report-mardown.xsl?rev=1498101&r1=1498100&r2=1498101&view=diff
==============================================================================
---
ant/easyant/plugins/trunk/easyant-plugin-documentation/src/main/resources/easyant-report-mardown.xsl
(original)
+++
ant/easyant/plugins/trunk/easyant-plugin-documentation/src/main/resources/easyant-report-mardown.xsl
Sun Jun 30 12:18:55 2013
@@ -118,7 +118,9 @@
<xsl:text>|</xsl:text>
<xsl:value-of select="@visibility" />
<xsl:text>|</xsl:text>
- <xsl:value-of select="@deprecated" />
+ <xsl:if test="@deprecated != null">
+ <xsl:value-of select="@deprecated" />
+ </xsl:if>
<xsl:text>|</xsl:text>
<xsl:value-of select="$newline" />
</xsl:for-each>