Hey guys, I am new to the group and just wanted to say hi! If you would like to check out a pic of me I took yesterday, or talk to me check my profile our over...
Bubiboo
reid3688@...
Nov 3, 2004 8:11 am
990
i am novice to tcltk.I have problem in parsing my xml file using tdom.could you please give me some examples.i dont know how to start a program as i dont have...
hallo, i dont know how to parse xml file using tdom. can you give me some examples for getting an idea best regards, k.c.vaka K.C.Vaka The happening world of...
... Please don't confuse tdom and tcldom (as mentioned in your subject). They are different packages. Does http://mini.net/tcl/8984 help you start? rolf...
rolf@...
Nov 12, 2004 3:12 pm
993
Hi *, I am trying to compile tDOM 0.8.0 in an external build directory. While the actual compilation runs through the making of the library does not work. See...
... This is currently not supported (it is on the todo list) and known to be troublesome (though, with a bit tweaking of the created Makefile possible). Build...
rolf@...
Nov 12, 2004 4:17 pm
995
Hey people! I am pretty new to the group and I don't mean to be annoying, but I wanted to let all of you know I finally got my webcam back. It took a while to...
WetnWaitin18
reid3688@...
Nov 13, 2004 2:28 pm
996
... I see. This is not possible in my environment, however. I have to build outside of the source tree... With a little luck, I had today, the bug was found...
Hey people! I am pretty new to the group and I don't mean to be annoying, but I wanted to let all of you know I finally got my webcam back. It took a while to...
WetnWaitin18
reid3688@...
Nov 17, 2004 7:06 pm
1001
preferably with a test suite ?? Ok, maybe I ask too much... I'm currently using jabberlib with a modified TclXML library (all script) for the parser. S2S...
... I don't know about one. ... What about writing a tDOM based one? I glanced some days ago over the thing, which is needed to drive the newest tkchat...
rolf@...
Dec 1, 2004 12:59 am
1003
... I'd love to actually. It looks like wrapper.tcl in jabberlib does the XML crossover. ... Yes, I'm attempting the IRC gateway right now. IRC half is...
... Keep in mind, that I haven't studied that code in deep. But as far as I see... --- Simplest starting point would probably be to just replace the tclxml SAX...
rolf@...
Dec 1, 2004 1:37 am
1005
Hello to everyone . Interested in enchancing your programming and designing skills ? Looking to bid on projects ? Finding it tough at websites which are...
... That feature (to create an empty document, without document element) was added to 0.8.0, see [dom createDocumentNode]. Though I need this also for other...
rolf@...
Dec 15, 2004 11:51 am
1008
I'm building a transformation that takes an XML file through a succession of XSLT transforms. The output is fine after the first transformation, but bogus...
... Good catch. I've commited a fix to CVS. I obviously missed this one, as I did a (as I thought) rigorous review of the integrity of the result docs of an...
rolf@...
Dec 21, 2004 2:24 am
1010
All, First, to those who are also members of the AOLserver mailing list, my apologies for the double post. We are running tDOM version 0.8.0 (just upgraded!)...
... This cannot work, at least with stock tDOM. This is not tDOM syntax. ... This isn't a tDOM error msg. It looks to me, you try to use tDOM with some kind of...
rolf@...
Jan 8, 2005 3:29 pm
1012
... However, if for some reason you can't change it, there is a workaroumd: interp alias {} dom::DOMImplementation {} dom This creates an alias so when you...
Hey folks, I just ran into this rather odd behavior: % set myfile [open /tmp/foo w] file3 % fcntl $myfile NOBUF 1 % package require tdom 0.8.0 % fcntl $myfile...
... What is "fcntl" ? ... As I see you have a memory corruption in your code. It barks on tdom allright, but it can bark on any other place. This is pure...
... It's one of the Tclx commands ( http://wiki.tcl.tk/2000), in this case attempting to set a file handle to non-buffered I/O. ... I was guessing it could be...
... I'm sure you're going to get many replies asking this, but in the hopes of being first: have you considered using: fconfigure $chan -buffering off ...
... PANIC. If your Tcl lib is compiled with threads and you load TclX which is non-mt-safe, all sorts of ugly things start to fly in your face. Dossy is right....