about summary refs log tree commit diff
path: root/src/log2xml/log2html.xsl
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-03-18T13·04+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-03-18T13·04+0000
commita784fd5792a5447ad2b7dac63bea2a0b2fc379c3 (patch)
treee0ff9224f77d2b584e6f46eb0f10097abd58d92c /src/log2xml/log2html.xsl
parent8ce3dd488711d0eca43c64ccc04903eeba135836 (diff)
* Don't use tables. Konqueror likes this much better.
Diffstat (limited to 'src/log2xml/log2html.xsl')
-rw-r--r--src/log2xml/log2html.xsl32
1 files changed, 12 insertions, 20 deletions
diff --git a/src/log2xml/log2html.xsl b/src/log2xml/log2html.xsl
index 05429efef75e..4a9a6f4527be 100644
--- a/src/log2xml/log2html.xsl
+++ b/src/log2xml/log2html.xsl
@@ -22,28 +22,20 @@
       <blockquote class='body'>
         <xsl:for-each select='line|nest'>
           <xsl:if test="position() != last()">
-            <table class='x'>
-              <tr class='x'>
-                <td class='dummy'>
-                  <div class='dummy' />
-                </td>
-                <td class='line'>
-                  <xsl:apply-templates select='.'/>
-                </td>
-              </tr>
-            </table>
+            <div class='line'>
+              <span class='lineconn' />
+              <span class='linebody'>
+                <xsl:apply-templates select='.'/>
+              </span>
+            </div>
           </xsl:if>
           <xsl:if test="position() = last()">
-            <table class='y'>
-              <tr class='y'>
-                <td class='dummy'>
-                  <div class='dummy' />
-                </td>
-                <td class='line'>
-                  <xsl:apply-templates select='.'/>
-                </td>
-              </tr>
-            </table>
+            <div class='lastline'>
+              <span class='lineconn' />
+              <span class='linebody'>
+                <xsl:apply-templates select='.'/>
+              </span>
+            </div>
           </xsl:if>
         </xsl:for-each>
       </blockquote>