You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by rd...@apache.org on 2009/05/22 08:48:44 UTC

svn commit: r777404 - in /incubator/rat/main/trunk/apache-rat-core/src: main/resources/org/apache/rat/plain-rat.xsl test/java/org/apache/rat/ReportTest.java

Author: rdonkin
Date: Fri May 22 06:48:44 2009
New Revision: 777404

URL: http://svn.apache.org/viewvc?rev=777404&view=rev
Log:
RAT-53 Don't display archive readability. Will revise handling of archives later, probably to use commons compress. https://issues.apache.org/jira/browse/RAT-53

Modified:
    incubator/rat/main/trunk/apache-rat-core/src/main/resources/org/apache/rat/plain-rat.xsl
    incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java

Modified: incubator/rat/main/trunk/apache-rat-core/src/main/resources/org/apache/rat/plain-rat.xsl
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/main/resources/org/apache/rat/plain-rat.xsl?rev=777404&r1=777403&r2=777404&view=diff
==============================================================================
--- incubator/rat/main/trunk/apache-rat-core/src/main/resources/org/apache/rat/plain-rat.xsl (original)
+++ incubator/rat/main/trunk/apache-rat-core/src/main/resources/org/apache/rat/plain-rat.xsl Fri May 22 06:48:44 2009
@@ -49,10 +49,9 @@
 </xsl:for-each>
 *******************************
 
-Archives (+ indicates readable, $ unreadable): 
-
- <xsl:for-each select='descendant::resource[type/@name="archive"]'>
- <xsl:choose><xsl:when test='archive-type/@name="readable"'>+ </xsl:when><xsl:otherwise>$ </xsl:otherwise></xsl:choose><xsl:value-of select='@name'/>
+Archives:
+<xsl:for-each select='descendant::resource[type/@name="archive"]'>
+ + <xsl:value-of select='@name'/>
  <xsl:text>
  </xsl:text>
  </xsl:for-each>

Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java?rev=777404&r1=777403&r2=777404&view=diff
==============================================================================
--- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java (original)
+++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java Fri May 22 06:48:44 2009
@@ -55,7 +55,7 @@
             "\n" +
             "*******************************\n" + 
             "\n" + 
-            "Archives (+ indicates readable, $ unreadable): \n" + 
+            "Archives:\n" + 
             "\n" + 
             " + " + pElementsPath + "/dummy.jar\n" + 
             " \n" +