Hi, Everyone: Here is my situation. It might not be directly related with tDom, but as I encounter this problem when using tDom, I will try to ask it here...
... AFAICT, there are no race conditions in a single-threaded environment. Event handlers are serialized and while one event handler is executing, nothing else...
Hi Gang, Definitely not tdom specific, but here are a few suggestions... Unless you're looking for DB-like transactional processing (eg, in addition to your...
Rent-A-Pro.com consulting marketplace offers on demand staffing and service delivery for information technology projects. We represents a wide variety of...
Greetings: I was wondering if there are any examples of interfaceing C/C++ to the DOM loaded by Tdom? Yes I know Tdom is C code and yes I could read the source...
... Hmm. Not really. Well, see the header files in the generic directory, especially dom.h. They define the 'internal API', as it is used by tDOMs C core. It's...
rolf@...
Apr 13, 2005 11:34 am
1062
Well this is either where I give away my age or my profession…. What about FORTRAN, engineers still got TONS of it! (chuckle) What this means is my apps are...
Hi, im quite new to tcl so its hard for me to get into the whole thing because there arent so many tutorials around anymore. To my question: i have a XML file...
... Well, without an at least basic understanding of tcl (and XML) you may not be able to get the full possible mileage out of tDOM ;) For a tcl tuorial see: ...
rolf@...
Apr 14, 2005 5:54 pm
1066
Hello, Is there any list of known issues with tdom. I am getting a seg fault when i try to do parse. parse seems to work for small sample example. Thanks. ...
... The most issues are really obscure, outlying details, at least as I'm aware of. Especially, I don't easily belive, that [dom parse $xml] (or set parser...
rolf@...
Apr 15, 2005 12:22 am
1068
... well i have seen both tcl and tdom tutorials you posted here but they didnt give me the right idea how to do it. I have been working with tcl / tk for one...
Ok. I found what the problem was. I was trying a simple XML Parse and no database or SAX interface. The problem was, I was loading TclDom package in the same...
hi, Which is the fastest way to get an Element with XPath from a tDOM structure? I have not found anything about how XPath searches and which is the fastest...
Lot's of questions, metaxmlmaster. ... What a given XPath returns for a given XML document is specified by the XPath recommendation. How a certain XPath engine...
rolf@...
Apr 23, 2005 11:42 pm
1072
Hello TCL Gurus, I want to pass values of an array declared in C Program. which i want to use in TCL Script. Means, ... C Code ... int xx[100]; for (i=0;...
hello, is there a way to change the name of an element? I would have thought that nodeName would have allowd this, but it only returns the current name. ...
... There isn't a way to change the name of an element; the nodeName method is read-only (die DOM rec calls the tag name of an node an (unmutable)...
rolf@...
May 6, 2005 1:26 pm
1076
Hello, There are many user cases where it is interesting to manipulate the dom tree easily. Current methods of manipulation make it possible but quite complex....
... Sure. Adding new nodes, removing nodes, setting or removing attributes, creating new subtrees, changing the value of text nodes etc. -- all that are tasks...
rolf@...
May 6, 2005 3:48 pm
1078
... From: tdom@yahoogroups.com [mailto:tdom@yahoogroups.com] On Behalf Of rolf@... Sent: Friday, May 06, 2005 11:50 AM To: tdom@yahoogroups.com ...
Ralf, ... an ... One case is when you try to implement a cheap XSLT in TCL and want to convert a node from one specification to a similar node in another...
... Didn't understand completely what you're trying to do from your description. Could you please provide stripped down (even pseudo-) code snipped to clarify?...
rolf@...
May 6, 2005 6:52 pm
1081
... Hmmm, I've in fact a proc in one of my applications, that does exactly this: if the given node doesn't has child nodes, then it adds a text node child with...
rolf@...
May 6, 2005 6:55 pm
1082
... From: tdom@yahoogroups.com [mailto:tdom@yahoogroups.com] On Behalf Of rolf@... Sent: Friday, May 06, 2005 2:54 PM To: tdom@yahoogroups.com ...
Ralf, As you can see from the Aamer mail, he is using a helper function to append text to a node: appendTextElement. Everybody use their helper functions...
Hello, We're running into a problem where when adding text to a textNode (via createTextNode) that has a control chars. tdom complains about 'invalid chars. In...