You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/10/21 11:04:44 UTC

svn commit: r1765989 [3/3] - in /poi/site: publish/changes.html src/documentation/resources/stylesheets/changes2document.xsl

Modified: poi/site/src/documentation/resources/stylesheets/changes2document.xsl
URL: http://svn.apache.org/viewvc/poi/site/src/documentation/resources/stylesheets/changes2document.xsl?rev=1765989&r1=1765988&r2=1765989&view=diff
==============================================================================
--- poi/site/src/documentation/resources/stylesheets/changes2document.xsl (original)
+++ poi/site/src/documentation/resources/stylesheets/changes2document.xsl Fri Oct 21 11:04:43 2016
@@ -72,18 +72,26 @@
 
  <xsl:template match="actions">
   <section><title>Changes</title>
-  <ul>
+  <table>
+   <thead>
+   <tr>
+    <th>Type</th>
+    <th>Bug</th>
+    <th style="width: 100%;">Description</th>
+   </tr>
+   </thead>
    <xsl:apply-templates/> <!-- action's -->
-  </ul>
+  </table>
   </section>
  </xsl:template>
 
  <xsl:template match="action">
-  <li>
+  <tr>
+  <td>
    <icon src="images/{@type}.jpg" alt="{@type}"/>
+  </td>
 
-   <xsl:text> </xsl:text>
-
+  <td>
    <xsl:if test="@fixes-bug">
     <xsl:choose>
      <xsl:when test="contains(@fixes-bug, ',')">
@@ -106,9 +114,10 @@
       </xsl:choose>
      </xsl:otherwise>
     </xsl:choose>
-    <xsl:text> - </xsl:text>
    </xsl:if>
+  </td>
 
+  <td>
    <xsl:apply-templates/>
 
    <xsl:if test="@due-to and @due-to!=''">
@@ -125,8 +134,9 @@
     </xsl:choose>
     <xsl:text>.</xsl:text>
    </xsl:if>
+  </td>
 
-  </li>
+  </tr>
  </xsl:template>
 
 </xsl:stylesheet>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org