xsl-list
[Top] [All Lists]

Re: [xsl] xslt transformation did not create any output

2011-12-09 09:10:48

<xsl:template match="/" > 
    <xsl:apply-templates select="head"/>
     <xsl:apply-templates select="content"/>
     <xsl:apply-templates select="bottom" />
 </xsl:template>

First you match the root element, thats ok.
But the 3 apply-templates select are doing nothing because

a) there is no corresponding    <xsl:template match="head">...</xsl:template>
                                                        <xsl:template 
match="content">...</xsl:template>
                                                        <xsl:template 
match="bottem">...</xsl:template>

b) the elements "head", "content" bottom" do not exist in the xml input file, 
so there is nothing to process.



Op 9 dec 2011, om 14:09 heeft Roelof Wobben het volgende geschreven:





Hello, 



I did not skip that part,

I think I get confused during the way.



But according to this page : 
http://www.w3schools.com/xsl/xsl_apply_templates.asp



I have to be this way :



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

<xsl:template match="/" > 
    <xsl:apply-templates select="head"/>
     <xsl:apply-templates select="content"/>
     <xsl:apply-templates select="bottom" />
 </xsl:template>

 <xsl:template match="head" >
   <head>  
       <title>
            <xsl:value-of select="$website-name"/> - <xsl:value-of 
select="$page-title"/>
        </title>  
       <link rel="stylesheet" type="text/css" 
href="{$workspace}/assets/css/style.css"/>  
       <link rel="alternate" type="application/rss+xml" title="Notepad Chaos 
RSS Feed" href="http://www.notepadchaos.com/feed/"; />
       <link rel="pingback" href="http://www.notepadchaos.com/xmlrpc.php"; />
       <link rel="alternate" type="application/rss+xml" title="Notepad Chaos 
Feed" href="http://www.notepadchaos.com/feed/"; />
       <link rel="alternate" type="application/rss+xml" title="Notepad Chaos 
Comments Feed" href="http://www.notepadchaos.com/comments/feed/"; />
        <link rel="EditURI" type="application/rsd+xml" title="RSD" 
href="http://www.notepadchaos.com/xmlrpc.php?rsd"; />
        <link rel="wlwmanifest" type="application/wlwmanifest+xml" 
href="http://www.notepadchaos.com/wp-includes/wlwmanifest.xml"/> 
         <link rel='index' title='Notepad Chaos' 
href='http://www.notepadchaos.com/' /> 
   </head>
 </xsl:template>



But still the same error. 



Roelof




----------------------------------------
Date: Fri, 9 Dec 2011 12:59:48 +0000
From: andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] xslt transformation did not create any output

Roelof, it seems like you've skipped 'hello world' as you are missing
some of the basics... maybe give that a go before struggling on.


--
Andrew Welch
http://andrewjwelch.com

--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--
                                       
--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--