xsl-list
[Top] [All Lists]

Re: undeclared namespace ?

2004-02-16 05:33:20
At 2004-02-16 10:18 +0000, Arthur Maloney wrote:
How does namespace work?

XSLT goes beyond XML Namespace requirements by needing the use of prefixes in attribute values to be declared as you would declare a prefix for elements and attributes.

--------------
StyleSheet1    Has include for StyleSheet2

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                        xmlns:fo="http://www.w3.org/1999/XSL/Format";>

I do not see a declaration for xmlns:str above.

You probably also want exclude-result-prefixes="str" as well in the above.

<xsl:include href="util_vb6.xsl" />
<xsl:output method="text" />

<!-- Main entry point. -->
<xsl:template match="/">

   <xsl:call-template name="str:change-case">

You are using the prefix in the above attribute, so it must be in scope (according to XSLT rules, not according to XML rules).

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
         xmlns:str="http://www.seipas.com/namespaces/strings";
         extension-element-prefixes="str">

You probably want exclude-result-prefixes="str" here again as well.

I hope this helps.

......................... Ken


--
Public courses: upcoming world tour of hands-on XSL training events
Each week:    Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO
Washington, DC: 2004-03-15            San Francisco, CA: 2004-03-22
Hong Kong: 2004-05-17    Germany: 2004-05-24    England: 2004-06-07
World-wide on-site corporate, government & user group XML training!

G. Ken Holman                  mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.           http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0     +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness   http://www.CraneSoftwrights.com/s/bc


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>