Vésgu
Lübbe Onken wrote:
> Ævar Arnfjörð Bjarmason wrote:
>
>> Got a pointer from Jonathan (the great mailing list lurker) that my
>> indend was still a bit off, here is one last fix for that.
>>
>>
>> ------------------------------------------------------------------------
>>
>> --- /home/share/software/src/subversion/tools/xslt/svnindex.xsl
>> 2004-01-24 17:10:06.000000000 +0000
>> +++ /home/jeedo/www/projects/svn_style/svnindex.xsl 2004-02-12
>> 20:22:33.000000000 +0000
>> @@ -15,13 +15,13 @@
>> </xsl:if>
>> <xsl:value-of select="index/@path"/>
>> </title>
>> - <link rel="stylesheet" type="text/css" href="/svnindex.css"/>
>> + <link rel="stylesheet" type="text/css"
>> href="/projects/svn_style/svnindex.css"/>
>> </head>
>
>
> One thing I don't like about yout patch is that it contains you local
> path settings. Apart from that I can't apply it against svnindex.xsl
> from trunk, but maybe that's just me being stupid.
>
> Cheers
> -Lübbe
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>
>
--- /home/share/software/src/subversion/tools/xslt/svnindex.xsl 2004-01-24 17:10:06.000000000 +0000
+++ /home/jeedo/www/projects/svn_style/svnindex.xsl 2004-02-12 04:54:49.000000000 +0000
@@ -15,13 +15,13 @@
</xsl:if>
<xsl:value-of select="index/@path"/>
</title>
- <link rel="stylesheet" type="text/css" href="/svnindex.css"/>
+ <link rel="stylesheet" type="text/css" href="/svnindex.css"/>
</head>
<body>
<div class="svn">
<xsl:apply-templates/>
</div>
- <div class="footer">
+ <address class="footer">
<xsl:text>Powered by </xsl:text>
<xsl:element name="a">
<xsl:attribute name="href">
@@ -31,13 +31,13 @@
</xsl:element>
<xsl:text> </xsl:text>
<xsl:value-of select="@version"/>
- </div>
+ </address>
</body>
</html>
</xsl:template>
<xsl:template match="index">
- <div class="rev">
+ <h1 class="rev">
<xsl:if test="string-length(@name) != 0">
<xsl:value-of select="@name"/>
<xsl:if test="string-length(@rev) != 0">
@@ -48,29 +48,30 @@
<xsl:text>Revision </xsl:text>
<xsl:value-of select="@rev"/>
</xsl:if>
- </div>
- <div class="path">
- <xsl:value-of select="@path"/>
- </div>
- <xsl:apply-templates select="updir"/>
- <xsl:apply-templates select="dir"/>
- <xsl:apply-templates select="file"/>
+ </h1>
+ <ul id="list">
+ <li>
+ <div class="pathname"><xsl:value-of select="@path"/></div>
+ <ul>
+ <xsl:apply-templates select="updir"/>
+ <xsl:apply-templates select="dir"/>
+ <xsl:apply-templates select="file"/>
+ </ul>
+ </li>
+ </ul>
</xsl:template>
<xsl:template match="updir">
- <div class="updir">
- <xsl:text>[</xsl:text>
+ <li class="updir">
<xsl:element name="a">
<xsl:attribute name="href">..</xsl:attribute>
- <xsl:text>Parent Directory</xsl:text>
+ <xsl:text>..</xsl:text>
</xsl:element>
- <xsl:text>]</xsl:text>
- </div>
- <!-- xsl:apply-templates/ -->
+ </li>
</xsl:template>
<xsl:template match="dir">
- <div class="dir">
+ <li class="dir">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="@href"/>
@@ -78,20 +79,18 @@
<xsl:value-of select="@name"/>
<xsl:text>/</xsl:text>
</xsl:element>
- </div>
- <!-- <xsl:apply-templates/ -->
+ </li>
</xsl:template>
<xsl:template match="file">
- <div class="file">
+ <li class="file">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="@href"/>
</xsl:attribute>
<xsl:value-of select="@name"/>
</xsl:element>
- </div>
- <!-- xsl:apply-templates/ -->
+ </li>
</xsl:template>
</xsl:stylesheet>
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Feb 14 19:51:30 2004