Search the web
Sign In
New User? Sign Up
gobo-eiffel · Gobo Eiffel
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1633 - 1662 of 1718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1633
Hello, A new release of Gobo is available from the usual location: https://sourceforge.net/projects/gobo-eiffel/ This version should work with the forthcoming...
Eric Bezault
gobosoft
Offline Send Email
May 11, 2008
8:40 am
1634
... Eric> $GOBO/install.sh gcc Eric> under Unix/Linux in order to generate the binary files of Eric> the Gobo tools in the directory $GOBO/bin. Hm. That...
Colin Paul Adams
colin@...
Send Email
May 11, 2008
10:27 am
1635
... I updated the script in SVN. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
gobosoft
Offline Send Email
May 11, 2008
12:55 pm
1636
Guys, While installing release 3.8 on Red Hat Linux I encountered the following error: In file included from gexslt43.c:1: gexslt.h:385:16: gc.h: No such file...
Brian Heilig
heiligb
Offline Send Email
May 12, 2008
8:35 pm
1637
... You should remove this line: <option name="garbage_collector" value="boehm"/> from the file $GOBO/src/gexslt/ge.xace. Colin, is it possible to regenerate...
Eric Bezault
gobosoft
Offline Send Email
May 12, 2008
9:12 pm
1638
Hi again, I have the following environment variable GOBO_OS=unix defined in /etc/profile. In one of my xace files I have some conditional lines, for example: ...
Brian Heilig
heiligb
Offline Send Email
May 12, 2008
9:20 pm
1639
... Actually, there seems to be two separate issues. The header and link options don't make it into compile_ge.xace at all (whether or not the conditional is...
Brian Heilig
heiligb
Offline Send Email
May 12, 2008
9:41 pm
1640
... I think that environment variables are not interpreted in Xace files. You should pass these variables using the command-line option --define. You can see...
Eric Bezault
gobosoft
Offline Send Email
May 12, 2008
9:46 pm
1641
... Which cluster? Should you send us more than just the line with the <option> in order to figure out what's going on. -- Eric Bezault ...
Eric Bezault
gobosoft
Offline Send Email
May 12, 2008
9:49 pm
1642
... Here is the .eant file for the test directory: <project name="posix_test" default="help"> <description> description: "Eiffel Ant file for Serial...
Brian Heilig
heiligb
Offline Send Email
May 12, 2008
9:54 pm
1643
... OK, I got it. Options declared at the level of the library are only taken into account when the library.xace is used as root Xace file (for example to...
Eric Bezault
gobosoft
Offline Send Email
May 13, 2008
1:07 pm
1644
... Never mind. I regenerated the file gobo38-src.tar.gz without the extra line in ge.xace. It's now online on SourceForge. -- Eric Bezault ...
Eric Bezault
gobosoft
Offline Send Email
May 13, 2008
5:34 pm
1645
Hi Guys, note2 in class DT_DATE_TIME_DURATION says: Do not take leap seconds into account Should this be: Does not take leap seconds into account ? -- Cheers, ...
Berend de Boer
berenddeboer
Online Now Send Email
May 28, 2008
6:15 am
1646
Hi All, I would like to have a duration that is a quarter (or a third) of another duration. Is that possible? -- Cheers, Berend de Boer [Non-text portions of...
Berend de Boer
berenddeboer
Online Now Send Email
May 28, 2008
6:18 am
1647
... I was using the same style convention as for feature header comments. Now I realize that it may indeed be confusing as to whether the class does not take...
Eric Bezault
gobosoft
Offline Send Email
May 28, 2008
7:04 am
1648
... There is nothing readily available. Let's consider that you have a duration of 1 month, and you want to quarter of it. What should it be? Well, I guess it...
Eric Bezault
gobosoft
Offline Send Email
May 28, 2008
10:10 am
1649
Dear Colin and Eric, Next Friday I will be pitching Eiffel to a development team at ITT Space Systems. They make heavy use of XML and I was hoping you could ...
Brian Heilig
heiligb
Offline Send Email
May 28, 2008
1:15 pm
1650
Hi Brian, I'm not Colin or Eric (obviously), but I am a happy recent user of the Gobo XML classes. A couple of weeks ago I was asked to generate a simple, dumb...
Peter Gummer
peter_gummer
Offline Send Email
May 28, 2008
2:11 pm
1651
... Eric> There is nothing readily available. Let's consider that you Eric> have a duration of 1 month, and you want to quarter of Eric> it. What should it be?...
Berend de Boer
berenddeboer
Online Now Send Email
May 28, 2008
8:19 pm
1652
... Eric> In that case I would suggest turning the duration into a Eric> definite duration (using `to_definite'). This step isn't clear when I tried it....
Berend de Boer
berenddeboer
Online Now Send Email
May 28, 2008
8:41 pm
1653
... You need an extra argument: a date-time. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
gobosoft
Offline Send Email
May 28, 2008
9:21 pm
1654
... Well, according to the doc it should take a DT_DATE_TIME as argument! The reason why it takes a DT_DATE_TIME was what I referred to in my initial message...
Eric Bezault
gobosoft
Offline Send Email
May 28, 2008
10:15 pm
1655
... Eric> ~~~~~~~~~~~~~~~~~~~ Let's consider that you have a duration of Eric> 1 month, and you want to quarter of it. What should it be? Eric> Well, I guess...
Berend de Boer
berenddeboer
Online Now Send Email
May 29, 2008
1:38 am
1656
... In that case, use the begin date for the argument of `to_definite'. ... If you use begin_date.duration (end_date), you are lucky because the result is...
Eric Bezault
gobosoft
Offline Send Email
May 29, 2008
7:14 am
1657
... Eric> Or you will get overflow because the number of seconds is too Eric> large to fit into an integer. Well, epoch does INTEGER_64 now. And this was...
Berend de Boer
berenddeboer
Online Now Send Email
May 29, 2008
10:41 am
1658
... Eric> Or you will get overflow because the number of seconds is Eric> too large to fit into an integer. Berend> Well, epoch does INTEGER_64 now. And this...
Colin Paul Adams
colin@...
Send Email
May 29, 2008
9:03 pm
1659
... Brian> Dear Colin and Eric, Next Friday I will be pitching Eiffel Brian> to a development team at ITT Space Systems. They make heavy Brian> use of XML and...
Colin Paul Adams
colin@...
Send Email
May 29, 2008
9:06 pm
1660
... Peter> file via a File Save dialog, and the XML DOM was built and It's not a DOM. It's an object oriented XML tree structure. The DOM is ghastly. Peter>...
Colin Paul Adams
colin@...
Send Email
May 29, 2008
9:11 pm
1661
... there's considerable scope for improvememt there though, this functionality could be implemented in a small fraction of the existing code (the geuc...
Franck Arnaud
nenieorg
Offline Send Email
May 30, 2008
12:27 am
1662
... see as_html in http://svn.origo.ethz.ch/viewvc/goanna/trunk/goanna/library/application/xml/goa_xml_document.e?view=markup and the related transformer...
Neal Lester
neallester
Offline Send Email
May 30, 2008
12:37 am
Messages 1633 - 1662 of 1718   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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