joerg 2003/10/20 02:37:48
Modified: src/webapp welcome.xslt Log: fixed default namespace handling: elements from other templates were not in the XHTML namespace Revision Changes Path 1.9 +4 -3 cocoon-2.1/src/webapp/welcome.xslt Index: welcome.xslt =================================================================== RCS file: /home/cvs/cocoon-2.1/src/webapp/welcome.xslt,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- welcome.xslt 20 Oct 2003 09:32:20 -0000 1.8 +++ welcome.xslt 20 Oct 2003 09:37:48 -0000 1.9 @@ -2,12 +2,13 @@ <!-- 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> <!--
