Preamble The relative paths in geant are interpreted as being relative to the current working directory - ${cwd}. However, sometimes we need to get the path of...
... I think that Alexander's proposal is a good idea. It actually adds flexibility in that paths starting with "." or ".." would be relative to the build...
... As far as I can see, there are only two possibilities: interpret the relative path as being 1) relative to the build file where this path is written or 2)...
Hi, I am using the Gobo version that comes with ISE Eiffel 5.3. Which character set does the parser use by default? UTF8? Can I switch the character set and if...
... The version of Gobo that comes with ISE Eiffel 5.3 is 3.1. Franck, do you remember what kind of encoding was supported in this version and tell Patrick the...
... Only the mandatory encodings, utf-8 and utf-16, were supported then. Now, latin 1 is also included. The default is utf-8, as per the XML spec, unless the ...
... geant's copy does not preserve modification time nor permission status because the setting of these information is not supported by the Gobo file classes...
... Yes. Here are some of the scenarios: - the project misses some object modules, but it will be linked by the third-party developers anyway - the source code...
... OK. ... This is a good idea. We even could make attribute 'accept_errors' obsolete then since attribute 'exit_code39; 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...
1007
Patrick Schoenbach
pschoenb@...
Nov 16, 2003 2:48 pm
... The file looks like this: <?xml version="1.0"?> <!DOCTYPE map SYSTEM "traffic02.dtd"> <map name="Paris" images="images"> <background> <polygon> <color...
... 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...
1009
Patrick Schoenbach
pschoenb@...
Nov 16, 2003 8:56 pm
... 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 ...
... 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...
When I have a generated XM_DOCUMENT generated by the XM_FORMATTER created with: create xm_document.make_with_root_named ("ROOT", create ...
1027
Colin Paul Adams
colin@...
Nov 26, 2003 8:00 am
... Emmanuel> <ROOT xmlns="" xmlns:ns1=""></ROOT> Emmanuel> However, Internet Explorer reports an error on this XML Emmanuel> file: Emmanuel> << The XML page...