kaz 2002/06/05 08:03:59
Modified: src/dvsl/xdocs site.dvsl
Log:
Fixed an issue where the logo's, if specified as URLs, did not work.
Thanks to jmacgill for pointing this out.
Revision Changes Path
1.50 +2 -2 jakarta-turbine-maven/src/dvsl/xdocs/site.dvsl
Index: site.dvsl
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/dvsl/xdocs/site.dvsl,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- site.dvsl 4 Jun 2002 03:20:51 -0000 1.49
+++ site.dvsl 5 Jun 2002 15:03:59 -0000 1.50
@@ -104,7 +104,7 @@
#end
<a href="$home">
- #if( $src.startsWith("http") )
+ #if( $src.toString().startsWith("http") )
<img src="$src" align="left" alt="$alt" border="0" />
#else
<img src="$relativePath$src" align="left" alt="$alt" border="0" />
@@ -129,7 +129,7 @@
#set( $src = $pom.logo )
<a href="$home">
- #if ( $src.startsWith("http") )
+ #if ( $src.toString().startsWith("http") )
<img src="$src" align="right" alt="$alt" border="0"/>
#else
<img src="$relativePath$src" align="right" alt="$alt"
border="0"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>