473,385 Members | 1,748 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,385 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 21596

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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: 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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.