xsl-list
[Top] [All Lists]

RE: Extract First node

2005-09-01 22:01:48
Hi,
Couple of things, I am using stylesheet v="2.0" with Saxon-B8.5 instead
of version="1.0" and Saxon8.4. I also tried to transform it with
Xalan2.7.0 and get the desired output as is yours. But I have to use
vesrion="2.0" for other stuff in my real xslt as this one is just an
example. Can anyone tell me if this is a known issue with Saxon-B8.5
Thanks.

-----Original Message-----
From: omprakash(_dot_)v(_at_)polaris(_dot_)co(_dot_)in 
[mailto:omprakash(_dot_)v(_at_)polaris(_dot_)co(_dot_)in]
Sent: Friday, 2 September 2005 2:31 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Extract First node







Hi,
  My stylesheet is as follows:

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


<xsl:output method="xml"></xsl:output>

      <xsl:template match="/a">
      <xsl:value-of select="b/c[attribute::type='pdf'][1]"/>
  </xsl:template>

</xsl:stylesheet>


and the output Iam getting:

<?xml version="1.0" encoding="UTF-8"?>First Pdf File

You could also do

<xsl:value-of select="b/c[(_at_)type='pdf'][1]"/>


Hope this helps.

Cheers,
prakash




 

                      "SINGH Navpreet"

                      <Navpreet.SINGH@         To:
<xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>

                      Tenix.com>               cc:      (bcc:
omprakash.v/Polaris)

                                               Subject: RE: [xsl]
Extract First node                                                   
                      09/02/2005 09:31

                      AM

                      Please respond

                      to xsl-list

 

 





Are you getting "First Pdf File". If so can you tell me if you are using
<xsl:value-of select="b/c[attribute::type='pdf'][1]"/> or anything else.

-----Original Message-----
From: omprakash(_dot_)v(_at_)polaris(_dot_)co(_dot_)in 
[mailto:omprakash(_dot_)v(_at_)polaris(_dot_)co(_dot_)in]
Sent: Friday, 2 September 2005 1:53 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Extract First node







Hi,
      It works correctly for me with saxon8.4.

cheers,
prakash







                      "SINGH Navpreet"

                      <Navpreet.SINGH@         To:
<xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>

                      Tenix.com>               cc:      (bcc:
omprakash.v/Polaris)

                                               Subject: [xsl] Extract
First node
                      09/02/2005 05:53

                      AM

                      Please respond

                      to xsl-list









Hi
I am having a problem with XPath expression for XSLT. I am trying to
extract a node from xml with a special attribute. For example
<a>
  <b>
    <c type="html">HTML file</c>
  </b>
  <b>
    <c type="text">Text File</c>
  </b>
  <b>
    <c type="pdf">First Pdf File</c>
  </b>
  <b>
    <c type="pdf">Second Pdf File</c>
  </b>
  <b>
    <c type="rtf">Rtf File</c>
  </b>
</a>

Element <c> can appear in any order and there could be a number of <c>
with
attribute type="pdf". I want to extract the first occurence of the
element
<c> which has a attribute type="pdf". I tried to extract it with
<xsl:value-of select="b/c[attribute::className='pdf'][1]"/>
after matching the template for <a>. But I am getting "First Pdf File
Second Pdf File". Can anyone tell me where I am making mistake. I am
using
Saxon-B8.5.
Thanks
Navpreet.



--~------------------------------------------------------------------
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>
--~--





This e-Mail may contain proprietary and confidential information and is
sent for the intended recipient(s) only.
If by an addressing or transmission error this mail has been misdirected
to you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction,
dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its
attachment other than by its intended recipient/s is strictly
prohibited.

Visit Us at http://www.polaris.co.in

--~------------------------------------------------------------------
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>
--~--





This e-Mail may contain proprietary and confidential information and is
sent for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected
to you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction,
dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its
attachment other than by its intended recipient/s is strictly
prohibited.

Visit Us at http://www.polaris.co.in

--~------------------------------------------------------------------
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>
--~--



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