Author: kkolinko Date: Tue Jun 21 08:01:20 2011 New Revision: 1137900 URL: http://svn.apache.org/viewvc?rev=1137900&view=rev Log: Implement support for Google's site verification token. Mark is using one.
Modified: tomcat/site/trunk/docs/index.html tomcat/site/trunk/xdocs/index.xml tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1137900&r1=1137899&r2=1137900&view=diff ============================================================================== --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Tue Jun 21 08:01:20 2011 @@ -4,6 +4,7 @@ <head> <title>Apache Tomcat - Welcome!</title> <meta name="author" content="Apache Tomcat Project"/> +<meta name="google-site-verification" content="nA9F0GvGNjVCU9W7HBziONQVx6FehvgQglI1X7WPfRw"/> <link type="text/css" href="stylesheets/tomcat.css" rel="stylesheet"/> <link type="text/css" href="stylesheets/tomcat-printer.css" rel="stylesheet" media="print"/> </head> Modified: tomcat/site/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1137900&r1=1137899&r2=1137900&view=diff ============================================================================== --- tomcat/site/trunk/xdocs/index.xml (original) +++ tomcat/site/trunk/xdocs/index.xml Tue Jun 21 08:01:20 2011 @@ -4,6 +4,9 @@ <properties> <author>Apache Tomcat Project</author> <title>Welcome!</title> + <!-- Allows markt to monitor site via Google's webmaster tools --> + <!-- Please don't delete unless it is causing problems (in which case go ahead!) --> + <google-site-verification>nA9F0GvGNjVCU9W7HBziONQVx6FehvgQglI1X7WPfRw</google-site-verification> </properties> <body> Modified: tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl?rev=1137900&r1=1137899&r2=1137900&view=diff ============================================================================== --- tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl (original) +++ tomcat/site/trunk/xdocs/stylesheets/tomcat-site.xsl Tue Jun 21 08:01:20 2011 @@ -52,6 +52,9 @@ <meta name="email" content="{$email}"/> --> </xsl:for-each> + <xsl:for-each select="properties/google-site-verification"> + <meta name="google-site-verification" content="{.}"/> + </xsl:for-each> <xsl:if test="properties/base"> <base href="{properties/base/@href}"/> </xsl:if> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org