* Store paths are now abbreviated in the generated HTML file.
Hovering over the abbreviated path will reveal the full path. This probably only works in Mozilla.
This commit is contained in:
@@ -17,9 +17,7 @@
|
||||
<xsl:template match="nest">
|
||||
<div class='nesting'>
|
||||
<div class='head'>
|
||||
<code>
|
||||
<xsl:value-of select="head"/>
|
||||
</code>
|
||||
<xsl:apply-templates select='head'/>
|
||||
</div>
|
||||
<blockquote class='body'>
|
||||
<xsl:for-each select='line|nest'>
|
||||
@@ -52,10 +50,17 @@
|
||||
</div>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="line">
|
||||
<code class='line'>
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:template match="head|line">
|
||||
<code>
|
||||
<xsl:apply-templates/>
|
||||
</code>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="storeref">
|
||||
<em class='storeref'>
|
||||
<span class='z'><span class='popup'><xsl:apply-templates/></span></span>
|
||||
<span class='elided'>(...)</span><xsl:apply-templates select='name'/><xsl:apply-templates select='path'/>
|
||||
</em>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
Reference in New Issue
Block a user