473,408 Members | 2,839 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

accessing previous context inside apply-templates?

Is it possible to access your caller's (not parent) context while
inside a <xsl:template match...> or <xsl:for-each...>? Here is the xml
I'm using:

<report-set>
...<report>
.....<detail-data>
.......<detail-column position="1" dsc="col1" sum_fg="0"/>
.......<detail-column position="2" dsc="col2" sum_fg="1"/>
.......<detail-column position="3" dsc="col3" sum_fg="1"/>
.......<detail-column position="4" dsc="col4" sum_fg="1"/>
.......<detail-column position="5" dsc="col5" sum_fg="1"/>
.....</detail-data>
.....<invoice inv_id="232243">
.......<break level="1">
.........<break level="2">
...........<break level="3">
.............<detail>
...............<row>
.................<field position="1">Text1</field>
.................<field position="2">34</field>
.................<field position="3">3400.00</field>
.................<field position="4">0.00</field>
.................<field position="5">3400.00</field>
...............</row>
...............<row>
.................<field position="1">Text2</field>
.................<field position="2">96</field>
.................<field position="3">9600</field>
.................<field position="4">0.00</field>
.................<field position="5">9600.00</field>
...............</row>
.............</detail>
...........</break>
...........<break level="3">
.............<detail>
...............<row>
.................<field position="1">Text1</field>
.................<field position="2">13</field>
.................<field position="3">1300.00</field>
.................<field position="4">-1300.00</field>
.................<field position="5">0.00</field>
...............</row>
...............<row>
.................<field position="1">Text2</field>
.................<field position="2">13</field>
.................<field position="3">2600</field>
.................<field position="4">0.00</field>
.................<field position="5">2600.00</field>
...............</row>
.............</detail>
...........</break>
.........</break>
.......</break>
.....</invoice>
...</report>
</report-set>

When I am in the <break> context (of which there can be any number), I
want to output a sum of each field based on the <detail-data> from the
top. I've tried to apply-templates on the
/report-set/report/detail-data/detail-column which can give me a
column for each <detail-column>, but I need to sum from the context
where the apply-templates was called. Is this possible? I've hacked a
way by passing my context position and break level and going back to
look for the break i want, but it's inefficient and hard to read, not
to mention ugly.

Does anyone have any ideas? Please tell me there's an easier way!

Mike Partridge..
Jul 20 '05 #1
3 1718

"Mike Partridge" <ha**********@earthlink.net> wrote in message
news:61**************************@posting.google.c om...
Is it possible to access your caller's (not parent) context while
inside a <xsl:template match...> or <xsl:for-each...>? Here is the xml
I'm using:

<report-set>
..<report>
....<detail-data>
......<detail-column position="1" dsc="col1" sum_fg="0"/>
......<detail-column position="2" dsc="col2" sum_fg="1"/>
......<detail-column position="3" dsc="col3" sum_fg="1"/>
......<detail-column position="4" dsc="col4" sum_fg="1"/>
......<detail-column position="5" dsc="col5" sum_fg="1"/>
....</detail-data>
....<invoice inv_id="232243">
......<break level="1">
........<break level="2">
..........<break level="3">
............<detail>
..............<row>
................<field position="1">Text1</field>
................<field position="2">34</field>
................<field position="3">3400.00</field>
................<field position="4">0.00</field>
................<field position="5">3400.00</field>
..............</row>
..............<row>
................<field position="1">Text2</field>
................<field position="2">96</field>
................<field position="3">9600</field>
................<field position="4">0.00</field>
................<field position="5">9600.00</field>
..............</row>
............</detail>
..........</break>
..........<break level="3">
............<detail>
..............<row>
................<field position="1">Text1</field>
................<field position="2">13</field>
................<field position="3">1300.00</field>
................<field position="4">-1300.00</field>
................<field position="5">0.00</field>
..............</row>
..............<row>
................<field position="1">Text2</field>
................<field position="2">13</field>
................<field position="3">2600</field>
................<field position="4">0.00</field>
................<field position="5">2600.00</field>
..............</row>
............</detail>
..........</break>
........</break>
......</break>
....</invoice>
..</report>
</report-set>

When I am in the <break> context (of which there can be any number), I
want to output a sum of each field based on the <detail-data> from the
top. I've tried to apply-templates on the
/report-set/report/detail-data/detail-column which can give me a
column for each <detail-column>, but I need to sum from the context
where the apply-templates was called. Is this possible? I've hacked a
way by passing my context position and break level and going back to
look for the break i want, but it's inefficient and hard to read, not
to mention ugly.

Does anyone have any ideas? Please tell me there's an easier way!

Mike Partridge..

I am not sure what you exactly want, but if I guess well, this will answer
your question.

This transformation:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>

<xsl:key name="kDetail" match="detail-column" use="@position"/>

<xsl:template match="row">
<xsl:value-of select="sum(field[key('kDetail',
count(preceding-sibling::*)+1)/@sum_fg = 1])"/>
<xsl:text>&#xA;</xsl:text>
</xsl:template>
</xsl:stylesheet>

when applied on your source.xml:

<report-set>
<report>
<detail-data>
<detail-column position="1" dsc="col1" sum_fg="0"/>
<detail-column position="2" dsc="col2" sum_fg="1"/>
<detail-column position="3" dsc="col3" sum_fg="1"/>
<detail-column position="4" dsc="col4" sum_fg="1"/>
<detail-column position="5" dsc="col5" sum_fg="1"/>
</detail-data>
<invoice inv_id="232243">
<break level="1">
<break level="2">
<break level="3">
<detail>
<row>
<field position="1">Text1</field>
<field position="2">34</field>
<field position="3">3400.00</field>
<field position="4">0.00</field>
<field position="5">3400.00</field>
</row>
<row>
<field position="1">Text2</field>
<field position="2">96</field>
<field position="3">9600</field>
<field position="4">0.00</field>
<field position="5">9600.00</field>
</row>
</detail>
</break>
<break level="3">
<detail>
<row>
<field position="1">Text1</field>
<field position="2">13</field>
<field position="3">1300.00</field>
<field position="4">-1300.00</field>
<field position="5">0.00</field>
</row>
<row>
<field position="1">Text2</field>
<field position="2">13</field>
<field position="3">2600</field>
<field position="4">0.00</field>
<field position="5">2600.00</field>
</row>
</detail>
</break>
</break>
</break>
</invoice>
</report>
</report-set>

produces this output:

6834
19296
13
5213
In case my guess about the real meaning of your message was unsuccessful,
could you, please, describe it in a correct and unambiguous way?
Dimitre Novatchev.
FXSL developer, XML Insider,

http://fxsl.sourceforge.net/ -- the home of FXSL
Resume: http://fxsl.sf.net/DNovatchev/Resume/Res.html
Jul 20 '05 #2
No, you guessed perfectly! Thanks so much for your help, and I'm sorry
that my description was difficult to fathom. I see what you're doing,
but can you clarify something? How is count(preceding-sibling::*)+1
different than position() in this case?
I have limited understanding of how to use axes, so please bear with
me. If there are multiple <report> elements that need different sets
of <detail-column>s in <report-set> (see example xml below), how can I
reference the detail-column data from the current report only? If the
xml structure was static I could back up through parent nodes, but I
don't know how many <break>s there are so I can't hardcode the xpath.
I have a feeling there is a relatively simple way to do this using the
ancestor axis, but I'm not sure how.
If I were to create a key as you defined it for the following example
xml, they would conflict correct? That is why I think using the
ancestor axis is the best way.

<report-set>
<report>
<detail-data>
<detail-column position="1" dsc="col1" sum_fg="0"/>
<detail-column position="2" dsc="col2" sum_fg="1"/>
<detail-column position="3" dsc="col3" sum_fg="1"/>
<detail-column position="4" dsc="col4" sum_fg="1"/>
<detail-column position="5" dsc="col5" sum_fg="1"/>
</detail-data>
<invoice inv_id="232243">
<break level="1">
<break level="2">
<break level="3">
...
</break>
</break>
</break>
</invoice>
</report>
<report>
<detail-data>
<detail-column position="1" dsc="name" sum_fg="0"/>
<detail-column position="2" dsc="description" sum_fg="0"/>
<detail-column position="3" dsc="amount" sum_fg="1"/>
</detail-data>
<invoice inv_id="232244">
<break level="1">
<break level="2">
...
</break>
</break>
</invoice>
</report>
</report-set>

Thanks again for your help!

Mike Partridge

"Dimitre Novatchev" <dn********@yahoo.com> wrote in message news:<bu************@ID-152440.news.uni-berlin.de>...
"Mike Partridge" <ha**********@earthlink.net> wrote in message
news:61**************************@posting.google.c om... ....

When I am in the <break> context (of which there can be any number), I
want to output a sum of each field based on the <detail-data> from the
top. I've tried to apply-templates on the
/report-set/report/detail-data/detail-column which can give me a
column for each <detail-column>, but I need to sum from the context
where the apply-templates was called. Is this possible? I've hacked a
way by passing my context position and break level and going back to
look for the break i want, but it's inefficient and hard to read, not
to mention ugly.

Does anyone have any ideas? Please tell me there's an easier way!

Mike Partridge..

I am not sure what you exactly want, but if I guess well, this will answer
your question.

This transformation:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>

<xsl:key name="kDetail" match="detail-column" use="@position"/>

<xsl:template match="row">
<xsl:value-of select="sum(field[key('kDetail',
count(preceding-sibling::*)+1)/@sum_fg = 1])"/>
<xsl:text>&#xA;</xsl:text>
</xsl:template>
</xsl:stylesheet>

when applied on your source.xml:

-- snip --
produces this output:

6834
19296
13
5213
In case my guess about the real meaning of your message was unsuccessful,
could you, please, describe it in a correct and unambiguous way?
Dimitre Novatchev.
FXSL developer, XML Insider,

http://fxsl.sourceforge.net/ -- the home of FXSL
Resume: http://fxsl.sf.net/DNovatchev/Resume/Res.html

Jul 20 '05 #3
"Mike Partridge" <ha**********@earthlink.net> wrote in message news:61**************************@posting.google.c om...
No, you guessed perfectly! Thanks so much for your help, and I'm sorry
that my description was difficult to fathom. I see what you're doing,
but can you clarify something? How is count(preceding-sibling::*)+1
different than position() in this case?
In this case using either of them will produce the same results.

I wanted somehow to express that there's no need for the "position"
attribute on field elements and even that one can do without a
position() function.

There are other scenarios (e.g. when position is not used within a
location step) , when position() will only return the position of the
current node in the current node-list -- this is *not* the same as
count(preceding-sibling::*)+1 and depends on the way the
xsl:apply-templates or the xsl:for-each were specified.

I have limited understanding of how to use axes, so please bear with
me. If there are multiple <report> elements that need different sets
of <detail-column>s in <report-set> (see example xml below), how can I
reference the detail-column data from the current report only? If the
xml structure was static I could back up through parent nodes, but I
don't know how many <break>s there are so I can't hardcode the xpath.
I have a feeling there is a relatively simple way to do this using the
ancestor axis, but I'm not sure how.
If I were to create a key as you defined it for the following example
xml, they would conflict correct? That is why I think using the
ancestor axis is the best way.


There's no problem -- just use:

ancestor::report[1]/detail-data
Dimitre Novatchev.
FXSL developer, XML Insider,

http://fxsl.sourceforge.net/ -- the home of FXSL
Resume: http://fxsl.sf.net/DNovatchev/Resume/Res.html
Jul 20 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: | last post by:
Is it possible to access the previous page's viewstate directly through the context object after a server.transfer. If so, how? The way i'm doing it is saving all needed items to a structure on...
5
by: Derek Cooper | last post by:
I hope you can help me. I posted this in the microsoft sql server newsgroup a few days ago and got no response so I thought I'd try here. If I can provide any clarification I'll be glad to do so....
2
by: Steven T. Hatton | last post by:
I find the surprising. If I derive Rectangle from Point, I can access the members of Point inherited by Rectangle _IF_ they are actually members of a Rectangle. If I have a member of type Point...
3
by: Pete Atkins | last post by:
Help!!!!!!!! This may have been posted bfore, but i cannot find it. Have written a db in access 2003, opened in access 2000, saved, re-opened,etc - all was fine. Added some new forms /...
8
by: nkrisraj | last post by:
Hi, I have a following structure: typedef struct { RateData rdr; int RateID; char RateBalance; } RateInfo;
0
by: sonu | last post by:
I have following client side code which i have used in my asp.net project SummaryFeatured Resources from the IBM Business Values Solution Center WHITEPAPER : CRM Done Right Improve the...
89
by: Cuthbert | last post by:
After compiling the source code with gcc v.4.1.1, I got a warning message: "/tmp/ccixzSIL.o: In function 'main';ex.c: (.text+0x9a): warning: the 'gets' function is dangerous and should not be...
2
by: Gerhard | last post by:
I have a .net application that I want to run in a DMZ, with the SQL Server and file system behind another firewall. Is there a secure way to get to files from my application, or would it be better...
15
by: Bob | last post by:
Is there anyway to access the global object from inside a function other than doing a "var _global = this;" before declaring the function? Thanks
8
by: GaryDean | last post by:
I have a Wizard page and need to affect the next and previous buttons from my code-behind. I've googled around and found two solutions, and neither appear to work. I can access the SideBarList...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.