Hello, although there is so much spam on the tdom-group, I hope to find some help this way. I have an XML-Document looking like this: <Equation ID="Equ1"> ...
... Because this is, what you normally want. The probably major technical reason is, that the XPath data model doesn't know anything about CDATA Sections. I'm...
rolf@...
May 15, 2007 5:15 pm
1610
Given an XML document with the following line in it <library>test</library> shouldn't the following command return the text node containing the value "test" %...
Kevin Partin
Kevin.Partin@...
May 24, 2007 8:47 pm
1611
... No. ... The return value 1 is correct. An XPath expression doesn't necessary return always a node set. Your XPath expression is a boolean expression. You...
rolf@...
May 24, 2007 10:51 pm
1666
Hi everybody. There seems to be a bug in the HTML parser of tdom. When an option is pared, the content of the option element is moved on output after the...
... Thanks for reporting. I've fixed that problem in cvs head. (Without creating other problems, I hope. The HTML reader is (as any HTML reader, I suspect) a...
rolf@...
Jul 23, 2007 12:09 am
1670
Thanks a lot. Great support! Is there a chance, that tdom 0.8.1 will be released soon?...
It would be nice if a new version came out, b/c for normal mortals installing from a cvs checkout is a bummer. Also, the last release date on the website...
... There never will be a 0.8.1 release. The next release will be 0.8.2. For way too long the cvs head version has 0.8.1. I'll pick up the linux and tile...
rolf@...
Aug 3, 2007 12:31 am
1684
The first release candidate of tDOM 0.8.2 is now available from http://www.tdom.org/files/tDOM-0.8.2rc1.tgz There's no special overwhelming new feature in this...
rolf@...
Aug 5, 2007 7:41 pm
1687
Due to off-list feedback (thanks to Reinhard Max) a problem on 64-bit platforms and using -externalentitycommand was detected. A new release candidate is...
rolf@...
Aug 7, 2007 12:28 am
1688
Thanks for doing this Rolf. I tested the included directions for install on OS X 10.4.10 and it returned an error on make/make install as hightlighted here: ...
... Thanks for testing and reporting. Looks like, it doesn't find the tclstub lib. Do you have a full tcl installation on that box? Does other loadable tcl...
rolf@...
Aug 7, 2007 11:18 am
1691
Hello, I maintain the packaging for tdom for the Fedora Linux distribution. During a random audit of package licensing, a few issues with tdom were brought to...
... That point was already void, at the time you send that. And you knew that, as you wrote below. So, why did you mention? ... That's an editorial mistake....
rolf@...
Aug 10, 2007 11:10 pm
1693
Get it from: http://www.tdom.org/files/tDOM-0.8.2rc4.tgz rolf...
rolf@...
Aug 11, 2007 11:32 pm
1699
tDOM 0.8.2 is now available from http://www.tdom.org/files/tDOM-0.8.2.tgz Windows binaries are available from http://www.tdom.org/files/tDOM-0.8.2-win32.tgz ...
rolf@...
Aug 15, 2007 12:19 am
1701
... I am encountering a core dump with tDOM 0.8.2. Platform: SPARC Solaris 9 Sun's C compiler Tcl 8.5 cvs head as of Aug 15, 2007 snapshot by Activestate tdom...
... Add --disable-tdomalloc to the configure options, and you should be fine. rolf...
rolf@...
Aug 16, 2007 9:12 pm
1704
Does anyone know of any limitations that tdom has? I am trying to parse some xml data that has 500 elements but whenever I create a list using selectNodes, it...
... Sure it has. The most obvious (not the only) is, that you need enough memory, to hold the DOM tree in memory. But you don't hit any of them so easy, that's...
rolf@...
Aug 21, 2007 1:03 pm
1706
The piece of code that I use to get the attributes is as follows: set doc [dom parse $xmloutput] set root [$doc documentElement] set jobNumberList [$root...
Not to be cheeky, but doesn't the { $ind < 70 } end condition in your for loop guarantee you'll never get more than 70 entries in your xml(job$ind,jobNumber)...
... Obviously there are just 70 nodes, which are matched by the XPath expression /job_info/queue_info/job_list/JB_job_number/text() in your XML document. ...
rolf@...
Aug 22, 2007 2:00 pm
1709
Ah, I had a feeling I was being too glib with that last post! Sorry, I should have reread the part about the conditions under which the error occurs before...
... You're aware that this isn't a well-formed XML doc? The -simple parser don't catch this (well, that's because it is the simple one), but the default expat...
rolf@...
Aug 23, 2007 1:11 am
1712
Thanks. Not that it matters but the xml document is well-formed and passes various parsers just fine. A question on what will result in better performance. ...
... Thank _you_ for reporting (forgot that, yesterday). The bug is fixed in tdom cvs head. One had to use a special invalid XPath expr (as yours) as match...
rolf@...
Aug 23, 2007 6:57 pm
1714
Hi, Does anyone know whether tDOM provides any API/command to load an xml document/file to a tcl multidimentional array? If so, where can I find the document...