modifying string values in a transformation - i think!!
7 Jun 2006 15:21:34 -0700
Hi,
I have an attribute based xml file which i want to to transform to an
element based file with some slight modifications
The original file is:
<?xml version="1.0" encoding="utf-8" ?>
- <folder>
<photo FileName="\My Documents\My Pictures\HPIM0024.jpg"
Measurement="Measurement: 2m 239cm" X="115" Y ...
|
XML & XSL in firefox or other browsers?
7 Jun 2006 14:56:43 -0700
Does firefox not support this or do I need to install something?
I have a XML file associated with a XSL file. It works fine in IE but I
'm wondering if it's possible to get firefox to do the same
thanks in advance
...
|
How to select date from attribute?
Wed, 7 Jun 2006 10:53:16 -0500
How do I select the "published" attribute from the first of the files
identified in IndexAll.xml?
thanks
LJB
---------------------Index.xsl---------------------
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ms="urn:schemas-microsoft-com:xslt"
version="1.0" >
<xsl:output met ...
|
Great time in France
Wed, 7 Jun 2006 16:03:02 +0100
Hello
I had a fantastic time in France, hope to visit again soon.
I found a holiday cottage from these guys www.looktogo.co.uk http://www.looktogo.co.uk
Regards,
Dancer: ). ...
|
Renaming Same-name nodes
7 Jun 2006 07:47:46 -0700
How do you rename nodes that have the same name? I currently have an
XSL to rename the nodes based on position, but the position changes
from file to file (which we receive from a third-party). Thus the
position() function is no longer working.
A simplified version of the XML
<Lead>
<Borrower>
<P ...
|
Move child nodes to new parent
6 Jun 2006 07:02:27 -0700
Two questions. First, how do I create a new parent node using XLS?
Second, how do I move child nodes to my new parent?
For example, here is my original XML:
<Information>
<Employee>
<Data>something</Data>
<RoleType1>Home</RoleType1>
<Type1>Phone</Type1>
<Value1>555-555-5555</Value1>
...
|
XML to simple built-in string and visversa?
Mon, 5 Jun 2006 09:23:02 -0700
Hi All,
I have a question about transform a XML to a simple text which is going to
be a text value of one element. For example:
Below is the target XML which will be generated by using XSLT:
<GetSomthing>
<parameter><Request > some data </Request></parameter>
</GetSomthing>
As you see, the t ...
|
|
|
is it possible to get the xml filename that is being processed?
Sun, 4 Jun 2006 16:32:01 -0700
With my setup, i am not explicitly loading the xml file from within my xsl
style sheet, as there are too many & varied xml files that need to be
individually translated. Instead, any xml file that wants to be translated
explicitly invokes the xsl stylesheet using <?xml-stylesheet type="text/xsl"
href="fil ...
|
How to build a tlabe?
Sun, 4 Jun 2006 10:15:01 -0700
I am trying to build a 2-column table but am getting errors. The code that I
am using is similar to:
<table>
<xsl:for-each match="parent">
<xsl:if test="position() mod 2 = 1">
<tr>
</xsl:if>
<td>
<xsl:apply-templates match="child"/>
</td>
<xsl:if test="position() mod 2 = 0")
</tr>
...
|
does xpath expressions/matches support variables?
Sat, 3 Jun 2006 16:38:01 -0700
I need to use a variable (similar scenario also for a template parameter)
that has been assigned with an xpath string as an xpath expression/match for
xsl elements such as xsl:if, xsl:what, xsl:template, etc.
Eg. xsl snippet - intended to invoke execute-code block if the node exists.
It works perfectly i ...
|