473,386 Members | 2,114 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,386 software developers and data experts.

strange xml xpath xsl error:

I've xml code like this:

roles.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<roles xmlns="http://www.wolterinkwebdesign.com/xml/roles">

<!--
! The admin role.
! And admin should have all permisions to do its task
!
!-->
<role id="admin" isadmin="true">
<name>Administrator</name>
<description>De Administrator kan alles verwijderen, toevoegen en bewerken op de site.</description>
<grants>
<for name="all">
<action name="edit" grant="true" />
<action name="new" grant="true" />
<action name="read" grant="true" />
</for>
</grants>
</role>

<!--
! A generic visitor role.
! Anybody who is not given a role explicit is a visitor
!-->
<role id="visitor" isvisitor="true">
<name>Bezoeker</name>
<description>Bezoeker van de site</description>
a
<grants>
b
<for name="all">
<action name="read" grant="true" />
<action name="edit" grant="true" />
</for>
<for name="gastenboek">
<action name="new" grant="true"/>
<action name="edit" grant="true" />
</for>
<for name="medewerkers">
<action name="new" grant="true"/>
</for>
<for name="files">
y
<action name="new" grant="true">d</action>
</for>
<for name="news">
<action name="new" grant="true"/>
</for>
</grants>
</role>

</roles>
XSL code like this:
ps, $roles is always the above roles.xml
<!--
This template below works on for example
<page:button-edit-delete module="files" id="3"/>
-->
<xsl:template match="page:button-edit-delete">
<xsl:if test="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]/r:action[@name='edit']/@grant='true' or $roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='all']/r:action[@name='edit']/@grant='true'">
<[cut]
</xsl:if>
</xsl:template>

<!--
This template below does NOT work on for example
<page:button-new module="files" id="3"/>
-->
<xsl:template match="page:button-new">
<!-- debug code -->
BUTTON NEW MATCHED!
<xsl:value-of select="./@module"/>
<xsl:copy-of select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]"/>
<xsl:copy-of select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='files']"/>
<!-- end debug code -->

<xsl:if test="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]/r:action[@name='new']/@grant='true' or $roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='all']/r:action[@name='new']/@grant='true'">
[cut]
</xsl:if>
</xsl:template>
Strange enough:
this works: <xsl:value-of select="./@module"/> output:files
this does not work:
<xsl:copy-of select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]"/> output= ""
and this does work:
<xsl:copy-of select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='files']"/>

I do not understend the if test in the second template is almost the same as in the first template, but the first template always works and
the second not..... i cannot find the error
Jul 20 '05 #1
4 1522
[cut]

i've had the following solution:

<!--
! Matches a new button
!-->
<xsl:template match="page:button-new">
<xsl:variable name="module" select="./@module"/>
<xsl:if test="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=$module]/r:action[@name='new']/@grant='true' or $roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='all']/r:action[@name='new']/@grant='true'">
<div class="new_button">
<form enctype="multipart/form-data" action="$php_self" method="post">
<input type="hidden" name="module" value="{@module}" />
<input type="hidden" name="name" value="{@multiple}" />
<input type="hidden" name="new_request" value="true" />
<input class="new_button" type="submit" value="Nieuw item toevoegen" />
</form>
</div>
</xsl:if>
</xsl:template>

But that is ugly!! I think it must be possible without the xsl:variable
Jul 20 '05 #2
>
Strange enough:
this works: <xsl:value-of select="./@module"/> output:files
this does not work:
<xsl:copy-of select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]"/> output= ""
and this does work:
<xsl:copy-of select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='files']"/>

I do not understand the if test in the second template is almost the same as in the first template, but the first template always works and
the second not..... i cannot find the error


Hi,
you could use this:
<xsl:copy-of select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=current()/@module]"/>

Explanation:

In this Xpath expression:
<xsl:value-of select="./@module"/>
the period (.) selects the context node, which - in this case- is equal to the current node-set of the template.

But between the [brackets] in:
<xsl:copy-of select="/r:for[@name=./@module]"/>
, the context node is changed to the node preceding the left bracket ('r:for'). So this expression is trying to access the 'module' attribute of 'r:for'. In other words, you cannot access the current node-set with '.' when you're between brackets. You have to use 'current()' in stead.

regards,
--
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-v...i?userid=38041)
Ceterum censeo XML omnibus esse utendum
Jul 20 '05 #3
Joris Gillis wrote:

Strange enough:
this works: <xsl:value-of select="./@module"/> output:files
this does not work:
<xsl:copy-of
select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]"/>
output= ""
and this does work:
<xsl:copy-of
select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='files']"/>

I do not understand the if test in the second template is almost the
same as in the first template, but the first template always works and
the second not..... i cannot find the error


Hi,
you could use this:
<xsl:copy-of
select="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=current()/@module]"/>
Explanation:

In this Xpath expression:
<xsl:value-of select="./@module"/>
the period (.) selects the context node, which - in this case- is equal
to the current node-set of the template.

But between the [brackets] in:
<xsl:copy-of select="/r:for[@name=./@module]"/>
, the context node is changed to the node preceding the left bracket
('r:for'). So this expression is trying to access the 'module' attribute
of 'r:for'. In other words, you cannot access the current node-set with
'.' when you're between brackets. You have to use 'current()' in stead.

regards,


i thought of that, but i did not know current() existed.
But then how do you explain that this template works:

<xsl:template match="page:button-edit-delete">
<xsl:if test="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]/r:action[@name='edit']/@grant='true' or $roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='all']/r:action[@name='edit']/@grant='true'">
[cut]
</xsl:if>
</xsl:template>
And this one not:

<xsl:template match="page:button-new">
<xsl:if test="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]/r:action[@name='new']/@grant='true' or $roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='all']/r:action[@name='new']/@grant='true'">
[cut]
</xsl:if>
</xsl:template>
I do not understand that. the only differences ar in @name='edit' or @name='new' and in the match attribute of xsl:template.
Maybe i should give more detail?
Jul 20 '05 #4
> i thought of that, but i did not know current() existed.
But then how do you explain that this template works:

<xsl:template match="page:button-edit-delete">
<xsl:if test="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]/r:action[@name='edit']/@grant='true' or $roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='all']/r:action[@name='edit']/@grant='true'">
[cut]
</xsl:if>
</xsl:template>
And this one not:

<xsl:template match="page:button-new">
<xsl:if test="$roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name=./@module]/r:action[@name='new']/@grant='true' or $roles/r:roles/r:role[@id=$role]/r:grants/r:for[@name='all']/r:action[@name='new']/@grant='true'" [cut]
</xsl:if>
</xsl:template>
I do not understand that. the only differences ar in @name='edit' or @name='new' and in the match attribute of xsl:template.

I'm not really sure either. One guess is that there's an 'action' node in your XML that does not have a 'name' attribute. That node would match the XPath expression because its non-existing 'name' attribute woulkd its non-existing 'module' attribute.

btw, I think it would be better to use a shorter notation like this:
<xsl:if test="//r:roles/r:role[@id=$role]/r:grants/r:for[@name='all' or @name=current()/@module]/r:action[@name='new']/@grant='true'">

regards,
--
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-v...i?userid=38041)
Ceterum censeo XML omnibus esse utendum
Jul 20 '05 #5

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

Similar topics

1
by: bdinmstig | last post by:
I refined my attempt a little further, and the following code does seem to work, however it has 2 major problems: 1. Very limited support for XPath features Basic paths are supported for...
0
by: gael.pegliasco | last post by:
Hi, How are you dear and nice helper :) ? I'm trying to test xpath with this simple program : import xml.dom.minidom from xml.xpath.Context import Context import xml.xpath
2
by: kj | last post by:
Suppose I have some XML document that contains tags of the form <... xmlns:foo="http://www.bar.org/foo"> <... xmlns:foo="baz"> <... xmlns:frobozz="http://www.bar.org/foo"> What's the...
4
by: Rune | last post by:
I have two queries that appear to be exactly the same, but one of them returns null while the other one returns a valid result! Can anyone provide an explanation to why this is so? Below is an...
5
by: laks | last post by:
Hi I have the following xsl stmt. <xsl:for-each select="JOB_POSTINGS/JOB_POSTING \"> <xsl:sort select="JOB_TITLE" order="ascending"/> This works fine when I use it. But when using multiple...
5
by: Gnic | last post by:
Hi , I have an XmlDocument instance, I want to find a node in the xml, but I don't know it's path until runtime, for example <aaa> <bbb name="x"/> <aaa attr="y"> <ccc>sometext</ccc> </aaa>
2
by: Weston | last post by:
Poking around with XPath using SimpleXML, it looks like there are at least a few reasonably common XPath operators and predicates that aren't supported. I'd like to check my observations against...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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: 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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.