... 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...
Suppose you have an xml string like this: <table><row attr1="val1" attr2="val2"/><row attr1="val11" attr2="val12"/></table> Only instead of two row elements...
... Well, so will it be. Your XML isn't wellformed. (Or, popular variation, you've an encoding problem.) XML input of a few MBytes are almost nothing to tDOM....
rolf@...
Sep 9, 2007 1:24 am
1720
... Yes, using a DTD you can have default values for attributes not given in the XML. Though, there isn't a #DEFAULT token in the DTD syntax (a #FIXED,...
rolf@...
Sep 9, 2007 1:35 am
1721
1) XML is definitely well-formed and doesn't have any encoding issues. It's coming out of Microsoft SQL Server 2000's SELECT FOR XML. 2) Simply placing...
... The XML specifications say that the order of attributes is not relevant. If you need ordering you should consider rewriting your XML to use child elements...
OK, let's try again. I suspect, your first mail under this subject was some kind of bug report. But you don't provide a clear, small and stripped down example,...
rolf@...
Sep 9, 2007 1:22 pm
1727
Hi, I would like to mention that the problem reported in http://tech.groups.yahoo.com/group/tdom/message/1364 is still present in the latest tdom release. The...