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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 826 - 855 of 1978   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
826
Hi folks. I'm trying to compile tDOM 0.7.8 on a sparc-sun-solaris (SunOS 5.8) and I'm getting the following error: gcc -pipe -DHAVE_UNISTD_H=1...
charly_tokic
Offline Send Email
Jul 5, 2004
8:37 am
827
... Please check if you have CFLAGS defined in your environment. If yes, unset the CFLAGS and rerun the configure. Cheers, Zoran...
Zoran Vasiljevic
vungerk
Offline Send Email
Jul 5, 2004
9:33 am
828
... 5.8) ... Hi. No, CFLAGS is not set. It seems this is a bug in the tDOM-configure script. I added the string "-DHAVE_MEMMOVE=1" to the Makefile at TCL_DEFS...
charly_tokic
Offline Send Email
Jul 5, 2004
10:48 am
829
Hi, I am writinga WebDAV server and constructing the XML responses with tDOM. One of the responses takes a while to contructs so I am trying to improve the...
Dave Bauer
daveb5d
Offline Send Email
Jul 6, 2004
5:14 pm
830
... You can't. The appendFromList method always appends one subtree (or, in XML speech, what you append must be a well-formed XML document, not only a...
rolf@...
Send Email
Jul 6, 2004
6:29 pm
831
Hi, I am processing xml docbook documents using tdom. The encoding of these documents is iso8859-1 and they contains some non-ascci characters like accented...
Guillermo Calderon - ...
siete_y_tres
Offline Send Email
Jul 9, 2004
3:35 pm
832
... That code skeleton looks about right (assuming, that you've also [fconfigure]d the $out channel to -encoding iso8859-1). ... That's, how the tcl I/O system...
rolf@...
Send Email
Jul 9, 2004
6:31 pm
833
... I'm sorry. I was confussed about the contents of my file. It doesn't really contain non-ascci characters; instead it contains entities like "&aacute;" . ...
siete_y_tres
Offline Send Email
Jul 10, 2004
5:05 pm
834
... Sure. Just provide an external entity resolver with the -externalentitycommand option. If your XML files have a valid file SYSTEM identifier just use the...
rolf@...
Send Email
Jul 11, 2004
5:36 pm
835
There seem to be a bunch of xml diff utilities out there, but none appear to provide a tcl interface. are there any tdom procs/methods out there for comparing...
Aamer Akhter
aakhter
Online Now Send Email
Jul 20, 2004
6:34 am
836
... Nothing, that I'm aware of. Simple things, like comparing two (non namespaced) documents for equality is a matter of just a few lines of tcl code. ...
rolf@...
Send Email
Jul 20, 2004
11:25 am
837
... rolf, good points ... i noticed other xml diff tools have an option, but this is something i probably wouldn't need ... hadn't even thought about this, but...
Aamer Akhter
aakhter
Online Now Send Email
Jul 20, 2004
1:19 pm
838
Hello, is there work being planned to support the new xpath2.0 regex functions? %$connectlib::deviceInfo selectNodes {matches(//connection/protocol,'tel')} ...
Aamer Akhter
aakhter
Online Now Send Email
Jul 22, 2004
7:38 pm
839
... I continue to dislike W3C XML Schema (or more frankly spoken I think W3C XML Schema is a POS^H^H^Hdisaster) and parts of xpath/xslt 2.0 (especially their...
rolf@...
Send Email
Jul 22, 2004
10:08 pm
840
... absolutely not. given infinite time, it would be nice. but frankly, only some things are actually going to be used. i see the regex stuff as very useful...
Aamer Akhter
aakhter
Online Now Send Email
Jul 22, 2004
10:28 pm
841
... Hm. Are you searching for {/foo/bar/bobo | /foo/moo/bobo} ? ... Should work. Or use another custom tcl coded xpath function. Something along the lines of ...
rolf@...
Send Email
Jul 22, 2004
11:43 pm
842
... # wrong. ... # use instead: foreach node $arg1Value { ... Obviously. And still not. rolf...
rolf@...
Send Email
Jul 22, 2004
11:50 pm
843
Hello all, I have not been able to read, parse and write again an XML text so spacing (newlines in particular) is preserved in the process. In particular, ...
spanmeifyoucan
Offline Send Email
Jul 23, 2004
12:01 pm
844
... set xml2 [[dom parse -keepEmpties $xml] asXML -indent none] rolf...
rolf@...
Send Email
Jul 23, 2004
12:15 pm
845
... That works. Thanks a lot. :-)....
spanmeifyoucan
Offline Send Email
Jul 23, 2004
4:01 pm
846
Rolf, it appears that XML expat parsing crashes AOLserver under certain circumstances. I can reliably crash AOLserver 4.0.5 with tDOM 0.7.8 by executing the...
Bart Teeuwisse
bart_teeuwisse
Online Now Send Email
Jul 23, 2004
10:00 pm
847
... Being in a hurry I just did a few first tests. Well, it basically seems to work for me. But using valgrind I can see some invalid mem reads under some...
rolf@...
Send Email
Jul 24, 2004
11:34 am
848
Rolf, [snip] ... The filename is correct, in fact if the filename is incorrect then tDOM produces an appropriate error message. ... I just downloaded CVS HEAD...
Bart Teeuwisse
bart_teeuwisse
Online Now Send Email
Jul 24, 2004
7:28 pm
849
... For example, parsing this xml <list> <item> bla bla </item> </list> with this DTD <!ELEMENT list (item)+> <!ATTLIST list id ID #IMPLIED type...
spanmeifyoucan
Offline Send Email
Jul 27, 2004
7:39 pm
850
Use: set parser [expat \ -externalentitycommand resolve_entity \ -paramentityparsing always \ -useForeignDTD true] See the http://www.tdom.org/expat.html...
Bart Teeuwisse
bart_teeuwisse
Online Now Send Email
Jul 27, 2004
7:49 pm
851
... I guess, after checking the expat.html, that this is for external DTDs. I'm trying to get default values for the internal dtd attributes. Is this the same...
spanmeifyoucan
Offline Send Email
Jul 27, 2004
9:29 pm
852
... If the parser has the information about attribute default values, they will be inserted in the tree. Your example document doesn't has a DTD - how should...
rolf@...
Send Email
Jul 27, 2004
9:56 pm
853
... Ok, now it works. Isnt' this such a general need that could be better be provided as the default behaviour? A default externalEntityRefHandler , such as...
spanmeifyoucan
Offline Send Email
Jul 28, 2004
8:06 am
854
... I'm not sure, what do you mean. To feed an external subset into the parser, although the document doesn't have a doctype declaration? It happens, that...
rolf@...
Send Email
Jul 28, 2004
2:02 pm
855
... Well, I said this several times and will say it again, now: tDOM CVS HEAD is normally the best tDOM you can get. I try hard, to keep CVS in good shape (and...
rolf@...
Send Email
Jul 28, 2004
5:48 pm
Messages 826 - 855 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