Author: kkolinko
Date: Sun Aug 16 03:39:52 2009
New Revision: 804557
URL: http://svn.apache.org/viewvc?rev=804557&view=rev
Log:
Correct template for HTML META tag. It does not have 'value' attribute, but has
'content'.
Also, do not publish e-mails.
Modified:
tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl
Modified: tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl
URL:
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl?rev=804557&r1=804556&r2=804557&view=diff
==============================================================================
--- tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl (original)
+++ tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl Sun Aug 16 03:39:52 2009
@@ -47,8 +47,10 @@
<xsl:variable name="email">
<xsl:value-of select="@email"/>
</xsl:variable>
- <meta name="author" value="{$name}"/>
- <meta name="email" value="{$email}"/>
+ <meta name="author" content="{$name}"/>
+ <!-- Don't publish e-mail addresses
+ <meta name="email" content="{$email}"/>
+ -->
</xsl:for-each>
<xsl:if test="properties/base">
<base href="{properties/base/@href}"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]