... Such questions are for sure more suited here. ... The format-date() function is new in XSLT 2.0 (which itself is in state 'draft'). tDOM doesn't support...
rolf@...
Jun 3, 2005 3:48 pm
1107
Hello, Does tdom have sopport for XML Schema? In case it does not, are there any plans to add it? I would like to know the experts opinion comparing DTD and ...
... That depends -- better for what? But in my experience, W3C XML Schema is the worst of the alternatives for just about any use case I can think of. Relax NG...
Joe English
jenglish@...
Jun 4, 2005 5:48 pm
1109
... No and no (assuming, you mean w3c XML Schema). ... Depends. DTDs have obvious limitations, but in cases, where they fit, there's no reason to switch to w3c...
rolf@...
Jun 4, 2005 6:41 pm
1110
... My only complaint with Relax NG is that the documentation is so poor. The tutorials are sketchy and require that you understand XML Schema and DTD...
Hello Everybody, I need to set the value of the attribute as /Pᄆヨdþᄆà but i get the following error. Invalid attribute value '/Pᄆヨdþᄆà ' Anybody...
... You try to set an attribute via $someNode setAttribute attName <yourValue ? By default, values of attributes are checked, if they are allowed attribute...
rolf@...
Jun 7, 2005 1:01 am
1115
... Thank you. I searched the list archives and found an article where you discussed ways in which to do this. Very helpful! ...
another inexperienced question What behavior is expected when calling xslt from a child node of a document? e.g. % set doc [dom parse {<example> <begin...
... It happens exactly the same as if you had used the document cmd. It currently doesn't matter, what node out of the doc tree you use; the node is only used...
rolf@...
Jun 7, 2005 2:58 pm
1118
... I am just learning this topic, so I am tackling problems in hackneyed ways as I learn. I want to generate multiple html files from one xml file. I was ...
... XSLT 1.0 creates always only one result tree; there's no way with a stock 1.0 xslt processor to create several result trees (or documents) from one...
rolf@...
Jun 7, 2005 4:10 pm
1120
Hello, I have edited a dom tree with a couple of 'appendFromList' commands. Then I tried to get the tree as XML using 'catch {set xml [$dom asXML]} result]'....
... What tdom version do you use? The tcl command [catch] catches only Tcl errors, it can't catch seg faults. Please provide a small script that shows the...
rolf@...
Jun 9, 2005 2:53 pm
1122
... Version 0.8.0 However, the reason were some german umlauts, so after converting to utf-8 before writing to DOM everything went ok. But then, another ...
... Err.. what? This doesn't make much sense to me, unless you telled us only the half story in your mail yesterday, and still do now. So you didn't report a...
rolf@...
Jun 10, 2005 9:22 am
1124
... It's the interpreter, that makes the difference. We use an own wish with a number of our own extensions. The interpreter is started from within a ...
... The local modifications, you did to your tcl/tk version, perhaps? :) It seems, your modified tcl/tk version has a problem related to the encoding system....
rolf@...
Jun 10, 2005 12:19 pm
1126
... Wait... Your interpreter is embedded? So you don't have a call to Tcl_Main()? Do you have a Tcl_FindExecutable() call befor the first Tcl_InterpCreate()?...
rolf@...
Jun 10, 2005 12:31 pm
1127
... Ok, I have to discuss this with the c++ people, thank you for your response, Regards Oliver...
We're using tDOM 0.8.0 with AOLserver 3.4.2, and I just recently tried porting it to work in 64-bit mode on an IBM blade with Intel Nocona CPUs (EM64T/x86_64),...
Hi, This is not really a tdom question, but I know there are some really smart XSLT people here, so I ask anyway! :) I have an application that has an XML file...
... That may be 3 different problems. The first msg is from inside configure and just means, that configure wasn't able to figure out the compiler/linker...
rolf@...
Jun 21, 2005 11:24 am
1131
... The xslt mailing list is a good place to ask general xslt/xpath questions. See http://www.mulberrytech.com/xsl/xsl-list/ ... No, this doesn't work (as you...
rolf@...
Jun 21, 2005 11:58 am
1132
Hi Rolf, ... Bookmarked! ... [snip] ... Ha! I wish... It is all web-based and has to run in a Java portal. But this was the great in-depth answer I have come...
I love tdom, but I wish it handled memory management better. Af far as I know, there are two ways to deal with memory in tdom. Manual: set doc [dom parse...
... Oh, to the contrary, I hope it manages memory pretty well. But you're catching for garbage collection. Well, there are several more or less pretty...