Subject: AW: including javascript??
From: "Marcus Klinge" <klinge@xxxxxxxxxxxxxxx>
Date: Fri, 6 Apr 2001 15:45:07 +0200
|
I am sorry.
Of course I have a call-tenmplate hidden in my general.xsl
and of course, the test failed. now I have all the output I want and need.
Thank you for your time and patience.
Marcus Klinge
Web Producing
----------------------
Karzauninkat Webdesign
Barner Strasse 14
22765 Hamburg
Tel: 040 39834 771
Fax: 040 39834 779
Marcus,
You don't tell us what doesn't work. I'm going to guess that you don't get
any output.
I presume you are doing a <xsl:call-template name="javascript_head" />
somewhere. If not then use match instead of name <xsl:template
match="javascript_head">. So then you will need a <javascript_head> element.
Let's assume you are getting into the template. The next problem might be
that the test is failing <xsl:when test="number(NAVIGATION/KAPITEL)=1"> is
saying if the numeric value of NAVIGATION/KAPITEL is 1 then output some
text. This will be true if you have the following xml
<current context node>
<NAVIGATION>
<KAPITEL>1</KAPITEL>
</NAVIGATION>
If you don't have that structure then the test will be false and you will
get no output.
Here are 2 files that work fine.
<?xml version="1.0"?>
<javascript_head>
<NAVIGATION>
<KAPITEL>1</KAPITEL>
</NAVIGATION>
</javascript_head>
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="javascript_head">
<html>
<xsl:call-template name="javascript_head" />
</html>
</xsl:template>
<!-- your template here -->
</xsl:stylesheet>
Ciao Chris
XML/XSL Portal
http://www.bayes.co.uk/xml
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- RE: MSXML, xsl:copy, XML Output and BR tags., (continued)
- Paul Hammond - Fri, 6 Apr 2001 04:19:00 -0400 (EDT)
- David Carlisle - Fri, 6 Apr 2001 05:18:17 -0400 (EDT)
- Marcus Klinge - Fri, 6 Apr 2001 05:48:25 -0400 (EDT)
- Chris Bayes - Fri, 6 Apr 2001 06:31:01 -0400 (EDT)
- Marcus Klinge - Fri, 6 Apr 2001 09:44:07 -0400 (EDT) <=
- Michael Kay - Sat, 7 Apr 2001 07:12:55 -0400 (EDT)
- Michael Kay - Tue, 10 Apr 2001 06:59:36 -0400 (EDT)
|
|