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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1259 - 1288 of 1718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1259
... It makes sense but is a bit hard to guess, as the intuitive meaning of 'valid position' will be a position with an item. What about: -- Is it possible to...
Franck Arnaud
nenieorg
Offline Send Email
Mar 1, 2005
11:45 am
1260
... Yes, the wording is almost verbatim from the class interface text in chapter 16. ... This should be "Is it _not_ possible to move the cursor to the right?"...
Brian Heilig
heiligb
Offline Send Email
Mar 1, 2005
4:54 pm
1261
... This definition does not work when the list is empty. ... Did you run a survey to confirm that? ;-) ... but does not work when the list is empty. ...
Eric Bezault
gobosoft
Offline Send Email
Mar 1, 2005
5:04 pm
1262
What are the differences between this two features? feature -- String constants foo: STRING is "Foo is nice" -- foo string foo_once: STRING is -- foo string...
Paolo Redaelli
tybor76
Offline Send Email
Mar 5, 2005
6:54 am
1263
... Yes, "almost". The difference is that you can redefine `foo_once' in a descendant class. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
gobosoft
Offline Send Email
Mar 5, 2005
6:58 am
1264
... I was meaning that the following code is labelled as non portable and it seems to compile only with SmartEiffel: featore foo is do print (once "My foo") ...
Paolo Redaelli
tybor76
Offline Send Email
Mar 5, 2005
9:59 am
1265
Guys, I'm in need of a circular class. I'm in the middle of implementing one that I'd like to provide to the Gobo library. There are currently four classes: ...
Brian Heilig
heiligb
Offline Send Email
Mar 8, 2005
5:10 pm
1266
... We could add this trivially to all cursors if that's useful: forth_circular is require not off do forth if after then start end ensure not off end ... ...
Franck Arnaud
nenieorg
Offline Send Email
Mar 9, 2005
2:18 pm
1267
... I suppose it is useful, but I believe the type I am referring to deserves its own class. ... But this is a circular array, and thus gains all the benefits...
Brian Heilig
heiligb
Offline Send Email
Mar 9, 2005
3:13 pm
1268
... Once you've done that you can also extend it to say that _all_ lists can be traversed circularly, that is: - all lists are circular from an interface...
Franck Arnaud
nenieorg
Offline Send Email
Mar 9, 2005
4:24 pm
1269
... The reason why there is no circular class in Gobo is that at the time I worked on the data structure library the circular classes of ISE EiffelBase were...
Eric Bezault
gobosoft
Offline Send Email
Mar 10, 2005
6:00 pm
1270
Hi there, I am using the last GOBO from CVS and I have a few questions 1) Is there a way with the XM_NODE classes ... to generate "<![CDATA[ my text ]]>" ? I...
Jocelyn
djoce_net
Offline Send Email
Mar 11, 2005
8:04 am
1271
... Redefine XM_PRETTY_PRINT_FILTER.on_content. (See XM_FORMATTER.process_document to use it from a tree.) You may want to use a XM_CONTENT_CONCATENATOR in...
Franck Arnaud
nenieorg
Offline Send Email
Mar 11, 2005
11:18 am
1272
Thank you for the precision and for the "éèà" ... I realized I had a remaining (almost hidding) 'set_string_mode_ascii' and then of course .. any é would...
Jocelyn
djoce_net
Offline Send Email
Mar 11, 2005
5:29 pm
1273
... It's also the default now, so you don't even need to call it....
Franck Arnaud
nenieorg
Offline Send Email
Mar 11, 2005
5:37 pm
1274
ISE supports "class GS_LIST [ITEM -> G_OBJECT create make_shared end]" and rejects "class GS_LIST [ITEM -> G_OBJECT]"; SmartEiffel the contrary. It is work for...
Paolo Redaelli
tybor76
Offline Send Email
Apr 25, 2005
9:02 pm
1275
Hello, I am using a descendent of XM_CALLBACKS to convert my XML document into a HTML document. Here is my code I am using to do this: local retried: BOOLEAN ...
Neil Collier [ES]
peel_man
Offline Send Email
May 13, 2005
4:23 pm
1276
... Neil> retried then l_string := a_doc.text.twin if not What is a_doc? Neil> My question is, that when I have an XML document that Neil> contains escape...
Colin Paul Adams
colin@...
Send Email
May 13, 2005
4:31 pm
1277
Hi, Sorry, first I should point out I am using the CVS ISE tag version of Gobo, since that may be an issue here. So... `a_doc' is just my internal document...
Neil Collier [ES]
peel_man
Offline Send Email
May 13, 2005
4:40 pm
1278
... Neil> Hi, Sorry, first I should point out I am using the CVS ISE Neil> tag version of Gobo, since that may be an issue here. Well, I don't know what...
Colin Paul Adams
colin@...
Send Email
May 13, 2005
4:45 pm
1279
... Yes, but note you may get it in pieces, eg: on_content ("if 4 ") on_content ("<") on_content (" 5") The parser is entitled by contract to split content ...
Franck Arnaud
nenieorg
Offline Send Email
May 13, 2005
5:45 pm
1280
I found the problem. Problem is because the new version unescapes characters automatically now and I was pre-parsing some content to set the document text....
Neil Collier [ES]
peel_man
Offline Send Email
May 13, 2005
5:58 pm
1281
The contract for text_substring in class YY_SCANNER is insufficient. Here is the current contract for reference: text_substring (s, e: INTEGER): STRING is --...
Brian Heilig
heiligb
Offline Send Email
Jun 27, 2005
5:27 pm
1282
... Sorry, my fault. I had it backwards and spoke too soon. But I still think: text_substring_count: Result.count = e - s + 1 is a better postcondition. It's...
Brian Heilig
heiligb
Offline Send Email
Jun 27, 2005
5:42 pm
1283
... I prefer the current postconditions where we clearly see what we get in both cases: text_substring_empty: (s > e) implies (Result.count = 0) definition: s...
Eric Bezault
gobosoft
Offline Send Email
Jun 27, 2005
6:14 pm
1284
Hello, The long awaited release of Gobo Eiffel 3.4 is now available from: http://www.gobosoft.com/ Please refer to this web site for details about the new...
Eric Bezault
gobosoft
Offline Send Email
Jul 10, 2005
1:55 pm
1285
Hi, I would like to know if the regular expression library has a built in way to tell the regular expression compiler to treat the input string in a strict...
Neil Collier [ES]
peel_man
Offline Send Email
Aug 11, 2005
10:26 pm
1286
... Hash: SHA1 ... Not sure I'm getting this Neil. The input string is the input for a regular expression?? So it's not the re itself? The input string is...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 12, 2005
8:09 am
1287
Dear List, I have tried to implement an application using the XM_EIFFEL_PARSER together with the XM_CALLBACKS_TO_TREE_FILTER, to produce a XM_DOCUMENT from an...
Bernd Schoeller
berndschoeller
Offline Send Email
Aug 17, 2005
10:29 am
1288
... You must also have a namespace resolver filter between the parser and the tree filter, that's what the precondition explains. The parser issues unresolved...
Franck Arnaud
nenieorg
Offline Send Email
Aug 18, 2005
1:01 am
Messages 1259 - 1288 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