Search the web
Sign In
New User? Sign Up
tdom · tDOM - fast DOM / XPath for Tcl in C
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1749 - 1804 of 1978   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1749
... from where did you get this information? You can't share tdom structures across multiple threads. What you can do is to have a single thread holding the...
gustafn
Offline Send Email
Nov 2, 2007
9:50 am
1750
... Good question. Could you say a word about that, qiangqianggao? ... Well, you can. Although the documentation is silent about that, as I just realized....
rolf@...
Send Email
Nov 2, 2007
12:48 pm
1751
I am getting an error msg "Wrong # of arguments" from the following command. If the command only has one attribute test, then it works, but not with two...
Kevin Partin
Kevin.Partin@...
Send Email
Nov 7, 2007
7:58 pm
1752
... $root selectNode {(DMM|OTM)/file[attribute::type="geometry" or attribute::type="matrix"]} Enclose string literals in {curly-braces}. You also avoid having...
Dossy Shiobara
dossy
Online Now Send Email
Nov 7, 2007
8:04 pm
1754
... Dossy is right. The selectNodes method(*) expects the XPath expression as one argument. If your XPath expression includes spaces you've to do the normal...
rolf@...
Send Email
Nov 8, 2007
4:38 pm
1755
Thanks for the tdom education! In the short term, you can also use Tcl's append command to put together XPath instructions that contain quotes, braces and...
Kevin Partin
Kevin.Partin@...
Send Email
Nov 8, 2007
5:19 pm
1761
I keep getting: couldn't load file "./libtdom0.8.2.so": ./libtdom0.8.2.so: undefined symbol: __ctype_tolower_loc while executing "load ./libtdom0.8.2.so" ...
Brad Chick
mdotmoment11
Offline Send Email
Nov 26, 2007
2:31 pm
1762
... Hm. Yes, looks like a libc or linking problem. ... gcc 2.95.4 - wasn't that the egcs gcc? What does ldd libtdom0.8.2.so say? Strange; never saw nor heard...
rolf@...
Send Email
Nov 26, 2007
2:48 pm
1763
... libc.so.6 => /lib/libc.so.6 (0x4007e000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) ... It's not a libc5 system. The problem seems to be that...
Brad Chick
mdotmoment11
Offline Send Email
Nov 26, 2007
2:54 pm
1764
... [...] ... Your /usr/include/ctype.h is outdated. Replace it with a newer one. -- Dossy -- Dossy Shiobara | dossy@... |...
Dossy Shiobara
dossy
Online Now Send Email
Nov 26, 2007
3:05 pm
1765
... Sorry, got that backwards--your ctype.h is for a newer glibc. Somehow, your system headers and your glibc install got out of sync. -- Dossy -- Dossy...
Dossy Shiobara
dossy
Online Now Send Email
Nov 26, 2007
3:07 pm
1768
Hi all, I am trying to get hold of the latest tDOM source code. The site tdom.org does not seem to respond anymore and I can not find any other source. Does...
nickmilleruk
Offline Send Email
Dec 31, 2007
2:14 am
1769
... Ups ... Yes. The hosting server switched IP address, but the tdom.org dns entries didn't got updated. I've send mails out, to fix the problem, though it's...
Rolf Ade
rolf@...
Send Email
Dec 31, 2007
12:37 pm
1770
hi gays: I couldn't visit the www.tdom.org site. where can I get the tdom-0.8.1 package for activetcl in windows? Would you send me a copy ASAP ? Thanks a lot!...
f z
zhangjiakouzf
Offline Send Email
Jan 9, 2008
4:54 am
1771
... No need to. ActiveTcl 8.4.17 (and earlier) do contain tDOM. From your question I guess you have only ActiveTcl 8.5.0. During installation there should have...
Matthias Kraft
matzek
Offline Send Email
Jan 9, 2008
8:21 am
1772
... http://listserv.activestate.com/mailman/listinfo/activetcl ... Thanks a lot for your reply! I will try again. ...
f z
zhangjiakouzf
Offline Send Email
Jan 9, 2008
9:00 am
1780
I would like to recursively transform some XML files, and I thought that xsltmessagecmd would be great for that: open XML transform with XSLT when you get to...
dclaarit
Online Now Send Email
Jan 29, 2008
11:47 pm
1781
A7Soft is pleased to announce the release of JExamXML a java based freeware command line tool for comparing and merging XML files. A7Soft JExamXML is available...
Joe Andersen
joeandersen2003
Offline Send Email
Jan 30, 2008
8:02 am
1782
... Your description of what you want to do is a bit from a sky high viewpoint. I don't have a clear picture of your problem, so excuse me, if my guessing is...
Rolf Ade
rolf@...
Send Email
Jan 30, 2008
11:54 am
1783
Umm, yeah, doh! Thanks, that's exactly what I need. I'm still learning this XSLT thing (I guess that's pretty obvious, huh?) and completely missed that one. ...
dclaarit
Online Now Send Email
Jan 30, 2008
9:21 pm
1784
Hello, I have a problem when I want to output the XML of a node with its namespace. In the following example dom createDocumentNS "myNamespace" Test doc $doc...
mtotschnig
Offline Send Email
Feb 6, 2008
10:26 am
1785
... That's not a mistake, that's a good idea. In other words: No, you are right to believe that asXML should at least be able to output the node with its...
Rolf Ade
rolf@...
Send Email
Feb 6, 2008
11:11 pm
1786
... I have found a way to insert the namespace of the node on which asXML is called like this proc asXmlNs {node} { set name [$node localName] set ns [$node...
mtotschnig
Offline Send Email
Feb 7, 2008
12:36 pm
1787
... Yes, it isn't that simple. I had temporarily adding all XML namespace declaration in scope of $node in mind, then asXML, then remove. Adding all XML...
Rolf Ade
rolf@...
Send Email
Feb 7, 2008
5:47 pm
1788
... Thank you, Yes that seems to work. But I would like to know what exactly you mean by magic and no-nos. Is it the namespace axis in the selectNodes...
mtotschnig
Offline Send Email
Feb 8, 2008
3:32 pm
1789
... The bit magic is the namespace axis, yes (but is may be too much said). The no-no is, to use DOM 1 methods (setAttribute, removeAttribute, hasAttribute)...
Rolf Ade
rolf@...
Send Email
Feb 8, 2008
6:36 pm
1797
java question and answer at http://javaanswers1.blogspot.com/...
sofiya.sena5
Offline Send Email
Feb 16, 2008
10:44 am
1802
I'm using tDOM to parse HTML. (I need the XPath query capability, so htmlparse is not sufficient for my needs.) The following form causes an unexpected problem...
saintpaulsnail
Offline Send Email
Feb 28, 2008
3:17 pm
1803
With email text wrapping it is a little hard to see what is happening, but the input attributes need to be quoted. If you run xmllint --debug on the input,...
Kevin Partin
Kevin.Partin@...
Send Email
Feb 28, 2008
3:53 pm
1804
... You've already successfully reported the bug. Reporting problems here on the list is perfect. I confirm the bug for 0.8.2. It seems to work well with...
Rolf Ade
rolf@...
Send Email
Feb 28, 2008
4:05 pm
Messages 1749 - 1804 of 1978   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help