... OK. ... This is a good idea. We even could make attribute 'accept_errors' obsolete then since attribute 'exit_code' would take over it's role as well. The...
Hello, Gobo 3.3 is now available for download from the usual places in SourceForge and gobosoft.com. The CVS repository in SourceForge has been tagged GE_3_3. ...
Hello, Are there people out there that are still using Gobo with ISE 5.1 or SmallEiffel -0.74? The latest Gobo releases have not been tested with these two...
Hi Franck, for a project at ETH Zurich, we use the Gobo XML parser. Since students are involved, we use Gobo 3.1 that is delivered with ISE Eiffel 5.3 to make...
... 3.1 already used the full Eiffel parser that parses DTDs, so it should work fine. Could you give me a small example of document it fails to parse? It's not...
... The file looks like this: <?xml version="1.0"?> <!DOCTYPE map SYSTEM "traffic02.dtd"> <map name="Paris" images="images"> <background> <polygon> <color...
Patrick Schoenbach
pschoenb@...
Nov 16, 2003 2:48 pm
1008
... http://gobo-eiffel.sourceforge.net/gobo/doc/xml/using.html last paragraph, 'Resolution of external entities'. So, set the file resolver, or include the DTD...
... My code looks like this, but it still does not work (parse error): make is -- Create parser. do xml_parser := new_xml_parser create tree_pipe.make ...
Patrick Schoenbach
pschoenb@...
Nov 16, 2003 8:56 pm
1010
... Looks OK. Is traffic02.dtd in the process' current directory? You can try to see if the file resolver object is called, and if yes why it fails to find the...
Hi, Sorry if this has already been asked. But why does XM_FORMATTER not insert newlines and tabs to have a nice looking XML file? My second issue is that I'm...
... Hash: SHA1 ... Because it certain circumstances it would introduce white space where non is warranted. It works for data based XML, but it's not so easy ...
... As Berend said, it's because (content) whitespace is data in XML, that is we don't know which tags contain character data where whitespace matters. I'll...
... Our use of XML is basic. Either an XML element has other XML elements, or it has some text data. As a consequence when it has an XML element we want the...
... Hash: SHA1 ... A completely different option is eposix. It has a streaming XML writer (EPX_XML_WRITER), so you cannot dynamically create a document, but...
... Emmanuel> <ROOT xmlns="" xmlns:ns1=""></ROOT> Emmanuel> However, Internet Explorer reports an error on this XML Emmanuel> file: Emmanuel> << The XML page...
Colin Paul Adams
colin@...
Nov 26, 2003 8:00 am
1029
... What about: <element ...> My text is here and we should not remove the whitespace </element> I'd expect a normaliser to normalise to your...
... It's a documented ;-) bug in XM_FORMATTER: doc/xml/TODO.txt> - check XM_FORMATTER handling of namespaces If it works at all in some case, you're lucky...
Hi, I have a problem using XM_PRETTY_PRINT_FILTER. I have an XML document with the following tag: <my_element> Some random text. </my_element> Using...
... I think you are suffering from an aliasing problem. The newline string is, as acceptable, a once string, so you will always get the same object for all...
Thanks Arnaud, Very informative. I have tried to duplicate on a smaller system but everything works ok. It seems, as you pointed out, the content string is...
... Franck> It's a documented ;-) bug in XM_FORMATTER: Franck> doc/xml/TODO.txt> - check XM_FORMATTER handling of Franck> namespaces Franck> If it works at all...
Colin Paul Adams
colin@...
Dec 5, 2003 7:30 pm
1035
... Interesting. If I skimmed the xml-names-1.1 correctly, it means 'ns1 is not a defined prefix anymore', not to be confused with 'ns1 refers to the ""...
... Franck> Interesting. If I skimmed the xml-names-1.1 correctly, it Franck> means 'ns1 is not a defined prefix anymore', not to be Franck> confused with 'ns1...
Colin Paul Adams
colin@...
Dec 6, 2003 8:47 am
1037
How do you tell the XML parser to operate in namespace aware mode? Or put it another way, how does the parser know whether or not this document is well-formed:...
Colin Paul Adams
colin@...
Dec 7, 2003 9:20 am
1038
... XM_EIFFEL_PARSER: -- Namespace mode disable_namespaces -- Disable namespace parsing and allow strict -- XML 1.0 names (eg ":" or ":a:b:c:"). -- Namespace...
... Could you explain your aversion to DTDs? I just started a project that will make use of XML. Several of the members will be generating XML files of the...
... There's nothing wrong with what DTDs do (typing the structure of an XML document) it's just that it's a poor way to do this job, and there is a failure of...
... Well, I'd hoped to use the Gobo XML parser. As we are just getting started, there is still time to switch. What does Gobo support? What do you recommend? ...