Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

gobo-eiffel · Gobo Eiffel

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 981 - 1029 of 1821   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
981 Alexander Kogtenkov
kogtenkov Send Email
Oct 2, 2003
1:29 pm
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...
982 Sven Ehrke
svenehrkeweb Send Email
Oct 5, 2003
8:44 am
... 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...
983 Alexander Kogtenkov
kogtenkov Send Email
Oct 6, 2003
9:04 am
... 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)...
986 Patrick Schoenbach
pschoenbach Send Email
Oct 13, 2003
7:19 pm
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...
987 Bertrand.Meyer@... Send Email Oct 13, 2003
7:21 pm
988 Eric Bezault
gobosoft Send Email
Oct 13, 2003
9:19 pm
... 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...
989 Franck Arnaud
nenieorg Send Email
Oct 14, 2003
3:52 pm
... 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 ...
992 Alexander Kogtenkov
kogtenkov Send Email
Oct 29, 2003
6:23 am
Is it possible to tell geant that it's OK if the Eiffel compiler reports errors? (like "accept_errors" in "exec") Thanks, Alexander Kogtenkov...
993 Alexander Kogtenkov
kogtenkov Send Email
Oct 29, 2003
7:42 am
Is it possible to tell geant to preserve the modification time of the file when executing the task "copy"? Thanks, Alexander Kogtenkov...
994 Eric Bezault
gobosoft Send Email
Oct 29, 2003
9:31 am
... 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...
996 Sven Ehrke
svenehrkeweb Send Email
Oct 30, 2003
6:30 am
... No, this is not possible at the moment. Is there a good reason why this should be supported? - Sven ...
997 Alexander Kogtenkov
kogtenkov Send Email
Oct 30, 2003
8:44 am
... 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...
998 Sven Ehrke
svenehrkeweb Send Email
Nov 2, 2003
8:41 am
... OK. ... This is a good idea. We even could make attribute 'accept_errors' obsolete then since attribute 'exit_code&#39; would take over it's role as well. The...
999 Marcio Marchini
sglebs Send Email
Nov 2, 2003
2:51 pm
... If I am not mistaken the way libxslt solved this was with EXSLT, where functions/extensions can be defined in Javascript. Example: ...
1000 Eric Bezault
gobosoft Send Email
Nov 3, 2003
2:50 pm
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. ...
1003 Eric Bezault
gobosoft Send Email
Nov 11, 2003
9:51 am
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...
1005 Patrick Schoenbach
pschoenbach Send Email
Nov 16, 2003
12:10 am
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...
1006 Franck Arnaud
nenieorg Send Email
Nov 16, 2003
3:20 am
... 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@... Send Email
Nov 16, 2003
2:48 pm
... The file looks like this: <?xml version="1.0"?> <!DOCTYPE map SYSTEM "traffic02.dtd"> <map name="Paris&quot; images="images"> <background> <polygon> <color...
1008 Franck Arnaud
nenieorg Send Email
Nov 16, 2003
7:43 pm
... 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@... Send Email
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 ...
1010 Franck Arnaud
nenieorg Send Email
Nov 16, 2003
9:55 pm
... 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...
1011 Emmanuel Stapf [ES]
manus_eiffel Send Email
Nov 18, 2003
7:50 am
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...
1012 Berend de Boer
berenddeboer Send Email
Nov 18, 2003
9:39 am
... 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 ...
1013 Franck Arnaud
nenieorg Send Email
Nov 18, 2003
8:24 pm
... 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...
1024 Emmanuel Stapf [ES]
manus_eiffel Send Email
Nov 26, 2003
6:06 am
... 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...
1025 Berend de Boer
berenddeboer Send Email
Nov 26, 2003
6:57 am
... 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...
1026 Emmanuel Stapf [ES]
manus_eiffel Send Email
Nov 26, 2003
7:09 am
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@... Send Email
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...
1029 Franck Arnaud
nenieorg Send Email
Nov 26, 2003
5:27 pm
... What about: <element ...> My text is here and we should not remove the whitespace </element> I'd expect a normaliser to normalise to your...
Messages 981 - 1029 of 1821   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help