joerg 2003/10/21 02:43:32
Modified: src/webapp welcome.xslt Log: fixed copyright sign + xhtml namespace for all elements Revision Changes Path 1.8 +6 -5 cocoon-2.2/src/webapp/welcome.xslt Index: welcome.xslt =================================================================== RCS file: /home/cvs/cocoon-2.2/src/webapp/welcome.xslt,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- welcome.xslt 8 May 2003 00:05:04 -0000 1.7 +++ welcome.xslt 21 Oct 2003 09:43:32 -0000 1.8 @@ -1,13 +1,14 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> <!-- CVS $Id$ --> -<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns="http://www.w3.org/1999/xhtml"> <xsl:param name="contextPath" select="'/cocoon'"/> <xsl:template match="welcome"> - <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <html xml:lang="en" lang="en"> <head> <title>Welcome to Apache Cocoon!</title> <!-- @@ -26,7 +27,7 @@ <h1>Welcome to Apache Cocoon!</h1> <xsl:apply-templates/> <p class="copyright"> - Copyright � @year@ <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. + Copyright © @year@ <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. </p> <p class="block"> <a href="http://cocoon.apache.org/"><img src="{$contextPath}/images/powered.gif" alt="Powered by Apache Cocoon"/></a>
