472,985 Members | 2,692 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

change some attribute values using xsl

Hello,

I am hoping this is a simple question with a straightforward solution.
I do not understand xsl much, so I apologize in advance if I am asking
a stupid question.

Is it possible to write an xsl that changes some attributes when
applied to an xml document, while preserving rest of it. Is it possible
to write this xsl independently of the structure of the xml document
itself, and only depend on the expression that identifies the attribute
and the value to assign to this attribute ?

For example, I am looking for the xsl document that will do the
following when applies to any xml document:

1. Replace the value of attribute password anywhere it appears in the
xml document with the string '***'
2. Replace the value of attribute password in the element User as above
3. Replace the value of attribute password by prepending and appending
the string 'AAA' to it.

I will really appreciate if someone can provide a sample for this.
Thanks in advance,

- hemal

Dec 13 '06 #1
4 21575

Hemal Pandya wrote:
Is it possible to write an xsl that changes some
attributes when applied to an xml document, while
preserving rest of it.
There's a very basic (and absolutely essential) technique
called 'identity transformation'. The following template
matches and copies all the nodes and attributes
recursively:

<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>

If you need to exclude some nodes from the identity
transformation, you create exclusion templates.
Is it possible to write this xsl independently of the
structure of the xml document itself,
Of course not, you must possess some knowledge about the
structure of the document in question to do anything
non-trivial with it.
and only depend on the expression that identifies the
attribute and the value to assign to this attribute ?
That *is* knowledge about the structure of the document.
1. Replace the value of attribute password anywhere it
appears in the xml document with the string '***'
<xsl:template match="@password">
<xsl:attribute name="password">
<xsl:text>***</xsl:text>
</xsl:attribute>
</xsl:template>
2. Replace the value of attribute password in the element
User as above
<xsl:template match="@password[parent::User]">
<xsl:attribute name="password">
<xsl:text>***</xsl:text>
</xsl:attribute>
</xsl:template>
3. Replace the value of attribute password by prepending
and appending the string 'AAA' to it.
<xsl:template match="@password[parent::User]">
<xsl:attribute name="password">
<xsl:value-of select="concat('AAA',.,'AAA')"/>
</xsl:attribute>
</xsl:template>

I would strongly recommend reading a decent XPath/XSLT
tutorial. You'll learn everything about stuff like this,
and more.

--
Pavel Lepin

Dec 13 '06 #2
Thanks for your helpful response Pavel.

Pavel Lepin wrote:
Hemal Pandya wrote:
Is it possible to write an xsl that changes some
attributes when applied to an xml document, while
preserving rest of it.

There's a very basic (and absolutely essential) technique
called 'identity transformation'.
I googled for 'xsl identity transformation' and came across
http://www.dpawson.co.uk/xsl/sect2/i....html#d5687e43. After
reading that I think I understand most of what you suggest.

[....]
I would strongly recommend reading a decent XPath/XSLT
tutorial. You'll learn everything about stuff like this,
and more.
The reason I am interested in this is to change one of the files in the
project that comes from version control. So far I have been changing it
by hand but realized I can perhaps use xsl. I know I aught to read up
but I was hoping the problem is simple enough that I can use some magic
words.

Unfortunately, I realized too late that the example I gave is not quite
similar to the document I am working with. The document I am working
with has the following structure:

<group name="user">
<property name="password" value="none"/>
</group>

Now, I need to modify the value attribute or all property elements
contained in group user that have name=password. I could go as far as
the following for my exclusion template:

<xsl:template match="//group[@name='user']/property[@name='password']">

But I am not able to figure out what goes inside. I am thinking
whatever I put inside will replace the entire property element; what I
need is preserve all of the element except for the value attribute. I
can imagine that it will again be the same principle of identity
conversion with exclusion but can't quite figure it out with my
seat-of-pants approach.

Can you please explain how I would do that?

Thanks,

- hemal
>
--
Pavel Lepin
Dec 13 '06 #3

Hemal Pandya wrote:
Pavel Lepin wrote:
Hemal Pandya wrote:
Is it possible to write an xsl that changes some
attributes when applied to an xml document, while
preserving rest of it.
There's a very basic (and absolutely essential)
technique called 'identity transformation'.

I googled for 'xsl identity transformation' and came
across
http://www.dpawson.co.uk/xsl/sect2/i....html#d5687e43
After reading that I think I understand most of what you
suggest.
By the way, that's a part of an *excellent* (if somewhat
poorly organized) XSL FAQ. Most of it is probably
irrelevant to your present woes, but it's definitely worth
reading if you intend to start studying XSLT seriously.
I would strongly recommend reading a decent XPath/XSLT
tutorial. You'll learn everything about stuff like
this, and more.

I know I aught to read up but I was hoping the problem is
simple enough that I can use some magic words.
You're probably not interested in my preachings, but I can
tell you from painful personal experiences that it's always
best to understand the magic you're invoking (if you can
afford it time- and cost-wise).
<group name="user">
<property name="password" value="none"/>
</group>

<xsl:template
match="//group[@name='user']/property[@name='password']">
You're almost there. Indeed, it is workable as is, but
that's a somewhat inelegant solution. Since you need to
change just the value attribute, *match* just the value
attribute:

<xsl:template
match=
"
group[@name='user']/property[@name='password']/@value
">
<xsl:attribute name="value">
<xsl:value-of select="concat('AAA',.,'AAA')"/>
</xsl:attribute>
</xsl:template>

--
Pavel Lepin

Dec 13 '06 #4
Pavel Lepin wrote:
[....]

Thanks a ton Pavel. I got it working. I do realize I should study it if
I want to do anything serious, but with your kind help I am in good
shape for now.

Best regards.

- hemal

Dec 14 '06 #5

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

Similar topics

9
by: Iain | last post by:
I want to create an XML configuration file which might look like <REGION Name="Europe" WingDing="Blue"> <COUNTRY Name="UK" WingDing="white"> <TOWN Name="London" WingDing="Orange" /> </COUNTRY>...
4
by: Lénaïc Huard | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I've some namespace problems when defining default values for attributes. My problem seems to come from the fact that the attributes are...
3
by: Dimitris \(GIS\) | last post by:
Hi I am a JavaScript rookie. I have an applet and want to change it's parameters with multiple links in my page. How can I do it? this is my code: <applet code="GIS.class"> <param...
2
by: Bill Cohagan | last post by:
In my app I'm validating an XML file against an XSD which contains several attribute default value specifications. I'm performing the validation via an xml document load() using a...
0
by: beanweed | last post by:
BACKGROUND ---------- I have an ASP.NET application having two panels. In one panel, an XML document, transformed using xsl, is displayed. In the other panel are some controls that allow a user...
10
by: Jon Noring | last post by:
Out of curiosity, may a CDATA section appear within an attribute value with datatype CDATA? And if so, how about other attribute value datatypes which accept the XML markup characters? To me,...
2
by: Philipp | last post by:
Hi, I wrote a small c# programm, which generates an xml-string by serializing a class and sends it to a server. Now I want to change some values in that xml-string. The only way for me to do...
5
by: Soledad Vel | last post by:
Hi All, i write this code: var sliderwidth=100; var sliderheight = 100; var div1 = document.createElement('div'); div1.setAttribute('id','d5'); div1.setAttribute('style',...
8
by: patrizio.trinchini | last post by:
Hi All, I'would like to write an XSL transformation that changes the value of the atribute of a given element according to the value of another atttribute of the same element. For instance,...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
4
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.