1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: Arnaud Vandyck <avdyk@debian.org>
Date: Sat, 24 Jul 2010 00:26:16 +0200
Subject: [PATCH] disable logo
---
xdocs/style.xsl | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
--- a/xdocs/style.xsl
+++ b/xdocs/style.xsl
@@ -93,15 +93,15 @@
<img src="{$src}" align="left" alt="{$alt}" border="0"/>
</a>
<xsl:if test="project/logo">
- <xsl:variable name="alt">
+ <!-- xsl:variable name="alt">
<xsl:value-of select="project/logo"/>
- </xsl:variable>
+ </xsl:variable -->
<xsl:variable name="home">
<xsl:value-of select="project/@href"/>
</xsl:variable>
- <xsl:variable name="src">
+ <!-- xsl:variable name="src">
<xsl:value-of select="$relative-path"/><xsl:value-of select="project/logo/@href"/>
- </xsl:variable>
+ </xsl:variable -->
<xsl:comment>APACHE LOGO</xsl:comment>
<a href="http://www.apache.org/">
|