Hi there, Using the DT_GREGORIAN_CALENDAR, is there a way to get the week_number of a date ? What I managed to do quickly using the Gobo classes is the...
1246
Paolo Redaelli
tybor76
Feb 14, 2005 10:17 pm
Is there any tool that helps to reformat Eiffel sources following GOBO guidelines (gobo/doc/guidelines)? -- Paolo Redaelli <paolo.redaelli@...>...
1247
Peter Gummer
peter_gummer
Feb 14, 2005 11:20 pm
... Buona sera, Paolo. Have a look at http://sharedjourney.co.uk/. The Scriba product is still in beta, but it looks like you can apply to become a beta...
1248
Paolo Redaelli
tybor76
Feb 15, 2005 6:39 am
... Scriba System Requirements: Windows XP, 2000, NT 4.0, ME, or 98. I cannot be a beta testers since I don't have those operative systems. I mainly work on...
1249
Roger Browne
eiffeltm
Feb 15, 2005 6:05 pm
... I've not tried it, but Berend de Boer's extensions for the Eiffel mode of the emacs editor http://www.berenddeboer.net/emacs/ includes a function...
1250
Eric Bezault
gobosoft
Feb 16, 2005 5:35 pm
... You can do that: my_stream: KI_CHARACTER_INPUT_STREAM ... my_scanner.set_input_buffer (my_scanner.new_file_buffer (my_stream)) -- Eric Bezault ...
1251
Paolo Redaelli
tybor76
Feb 17, 2005 7:27 am
I'm doing some work on the GTK wrappers, part of the Eiffel Wrapper Generator (http://ewg.sf.net). I would like to insert some features in the GTK2 wrap...
1252
Cheng-Chang Wu
chengchangwu
Feb 17, 2005 12:57 pm
Hi, I've seen once somewhere in old version of vegtk or slyboots there are portable features like not_yet_implemented_warning which doesn't crash, but report...
1253
Roger Browne
eiffeltm
Feb 17, 2005 11:18 pm
... It's abusing the mechanism somewhat, but how about using the 'obsolete39; clause: feature foo is obsolete "not yet implemented" do end That way, you get a...
1254
Paolo Redaelli
tybor76
Feb 26, 2005 10:57 am
What are the tools needed to build gobo documentation?...
1255
Colin Paul Adams
colin@...
Feb 26, 2005 11:04 am
... Paolo> What are the tools needed to build gobo documentation? This differs somewhat between 3.3 and the CVS version. In 3.3, you need to install an XSLT...
1256
Eric Bezault
gobosoft
Feb 26, 2005 5:17 pm
... I think that you should make sure that `last_string39; is emptied when you reach the end of input. -- Eric Bezault mailto:ericb@... ...
1257
Brian Heilig
heiligb
Feb 28, 2005 9:08 pm
The wording of some of the cursor positions is a little confusing to me. Can someone clarify please? Here is `cursor_after39; and `cursor_before39; cursor_after...
1258
Eric Bezault
gobosoft
Mar 1, 2005 3:44 am
... The terminology used in Gobo is explained in the book "Reusable Software" from Bertrand Meyer I think (I cannot check in my copy because I'm currently...
1259
Franck Arnaud
nenieorg
Mar 1, 2005 11:45 am
... 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...
1260
Brian Heilig
heiligb
Mar 1, 2005 4:54 pm
... 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?"...
1261
Eric Bezault
gobosoft
Mar 1, 2005 5:04 pm
... 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. ...
1262
Paolo Redaelli
tybor76
Mar 5, 2005 6:54 am
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...
1263
Eric Bezault
gobosoft
Mar 5, 2005 6:58 am
... Yes, "almost". The difference is that you can redefine `foo_once' in a descendant class. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
1264
Paolo Redaelli
tybor76
Mar 5, 2005 9:59 am
... 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") ...
1265
Brian Heilig
heiligb
Mar 8, 2005 5:10 pm
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: ...
1266
Franck Arnaud
nenieorg
Mar 9, 2005 2:18 pm
... 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 ... ...
1267
Brian Heilig
heiligb
Mar 9, 2005 3:13 pm
... 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...
1268
Franck Arnaud
nenieorg
Mar 9, 2005 4:24 pm
... 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...
1269
Eric Bezault
gobosoft
Mar 10, 2005 6:00 pm
... 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...
1270
Jocelyn
djoce_net
Mar 11, 2005 8:04 am
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...
1271
Franck Arnaud
nenieorg
Mar 11, 2005 11:18 am
... 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...
1272
Jocelyn
djoce_net
Mar 11, 2005 5:29 pm
Thank you for the precision and for the "éèà" ... I realized I had a remaining (almost hidding) 'set_string_mode_ascii39; and then of course .. any é would...
1273
Franck Arnaud
nenieorg
Mar 11, 2005 5:37 pm
... It's also the default now, so you don't even need to call it....
1274
Paolo Redaelli
tybor76
Apr 25, 2005 9:02 pm
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...