2
votes
3answers
28 views
XSLT: deep child copy
My need: I want to deep copy all the childs of a single selected node without actually copying it. Example: from
<father><son i="1" /><son i="2" /><son i="0" …
0
votes
1answer
36 views
Fastest/One-liner way to get XML nodes into array of “path/to/nodes” in Ruby?
What is the fastest, one-liner/shortest way to get an Array of "strings/that/are/paths" from an XML file, using Nokogiri preferably. I'd like to build the array with an arbitrary …
4
votes
2answers
37 views
SelectSingleNode always returns null?
Taking this simplifed example of my XML:
<?xml version="1.0"?>
<message xmlns="http://www.mydomain.com/MyDataFeed" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x …
1
vote
2answers
20 views
VTD XML inner XPath Expressions
Hi I have a xml file for example like this
<root>
<test>
<bla>test1</bla>
</test>
<test>
<bla>test2</bla>
</test>
&l …
0
votes
2answers
30 views
Pulling content from one node only
I am trying to pull a specific node from my xml document, but continue to get content from all nodes. I am testing for a specific jNumber by passing the number to the xslt in a var …
0
votes
1answer
55 views
XPath Expression must evaluate to a node-set with OK XPath Path (Tested with online XPath tester and Oxygen)
The program I am working on is having a null reference exception whenever it tries to delete the node.
The buggy code:
First one is where the variable is declared for getting the …
0
votes
1answer
35 views
nokogiri multiple css classes
How is it possible to select an html element that have two classes.
For example, hot to select the element p bellow in an html document (given that it has two css classes) class='c …
0
votes
3answers
52 views
How to display XSD validated XML using XSLT
I've been fighting with this for some time now, and haven't been able to find a clear answer to this yet.
As I understand correctly I can store data in an XML file, validate it us …
1
vote
1answer
14 views
Selecting Comments by their inner xml in xpath/xsl
Hi,
Given the following xml document
<root>
<childnode0/>
<childnode2/>
<!--Comment1-->
<childnode3/>
<childnode4/>
<!--C …
1
vote
2answers
72 views
C# XML adding/copying
Hi,
With the following XML I am trying to copy and add to another XML but I haven't used the C# XML document objects before. So here is the XML
<config>
<configXML& …
0
votes
3answers
39 views
xsl recursive loop node by index
I have created a recursive template for getting the first n number of items from my XML.
It uses an index(counter) just like how I would in a for loop. Now how can I get a node fr …
0
votes
3answers
61 views
XSLT: What this exactly do: test=”element[@attribute]”
what this exactly do :
<xsl:if test="./employee/first-name[@id='14']" >
I mean, when will this case be true, if ./employee/first-name[@id] != null or "", or what exactly? …
0
votes
3answers
38 views
Xpath noob: querying an xml element using xpath and a unique attribute?
I am querying a particularly ugly HTML file using xpath. I want to extract an HTML table that is buried deep within the document. However instead of going down through the hierar …
1
vote
3answers
52 views
Using selenium in order to read emails on gmail
I'm using selenium-rc and I'm trying to click on a specific email on gmail in order to get into the email page. More specifically: on the gmail inbox, click on a email with a speci …
0
votes
2answers
29 views
Filtering a structure in XML by attribute
I have a nested simple XML structure that I load with PHP's simpleXML.
Some elements of the structure contain "context" attributes.
<tab context="new_item, edit_item">
&l …
