You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ju...@apache.org on 2008/03/09 10:18:47 UTC

svn commit: r635202 - /incubator/pdfbox/trunk/migration/sf2asf.xslt

Author: jukka
Date: Sun Mar  9 01:18:46 2008
New Revision: 635202

URL: http://svn.apache.org/viewvc?rev=635202&view=rev
Log:
PDFBOX-1: Added issue type column

Modified:
    incubator/pdfbox/trunk/migration/sf2asf.xslt

Modified: incubator/pdfbox/trunk/migration/sf2asf.xslt
URL: http://svn.apache.org/viewvc/incubator/pdfbox/trunk/migration/sf2asf.xslt?rev=635202&r1=635201&r2=635202&view=diff
==============================================================================
--- incubator/pdfbox/trunk/migration/sf2asf.xslt (original)
+++ incubator/pdfbox/trunk/migration/sf2asf.xslt Sun Mar  9 01:18:46 2008
@@ -9,6 +9,8 @@
   <xsl:template match="artifact[status='Open']">
     <xsl:value-of select="submitted_date"/>
     <xsl:text>;</xsl:text>
+    <xsl:apply-templates select="artifact_type"/>
+    <xsl:text>;</xsl:text>
     <xsl:apply-templates select="category"/>
     <xsl:text>;"</xsl:text>
     <xsl:value-of select="str:replaceAll(string(summary),'&quot;','&quot;&quot;')"/>
@@ -27,6 +29,14 @@
     <xsl:text>"
 </xsl:text>
   </xsl:template>
+
+  <xsl:template match="artifact_type[.=552835]">New Feature</xsl:template>
+  <xsl:template match="artifact_type[.=773649]">New Feature</xsl:template>
+  <xsl:template match="artifact_type[.=831990]">New Feature</xsl:template>
+  <xsl:template match="artifact_type[.=552834]">Improvement</xsl:template>
+  <xsl:template match="artifact_type[.=773648]">Improvement</xsl:template>
+  <xsl:template match="artifact_type[.=831989]">Improvement</xsl:template>
+  <xsl:template match="artifact_type">Bug</xsl:template>
 
   <xsl:template match="category[.='lucene']">Lucene</xsl:template>
   <xsl:template match="category[.='PDModel']">PDModel</xsl:template>