Hi,
i try it, but i got some error like in the screen shot.
Thank you
2014-05-13 1:26 GMT+07:00 <moose-dev-request(a)iam.unibe.ch>:
> Send Moose-dev mailing list submissions to
> moose-dev(a)iam.unibe.ch
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> or, via email, send a message with subject or body 'help' to
> moose-dev-request(a)iam.unibe.ch
>
> You can reach the person managing the list at
> moose-dev-owner(a)iam.unibe.ch
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Moose-dev digest..."
>
>
> Today's Topics:
>
> 1. Re: MOOSEDay@UPMC update (Anne Etien)
> 2. graphET panel in a GLAMOUR browser (Fabrice Atrevi)
> 3. Re: graphET panel in a GLAMOUR browser (Alexandre Bergel)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 12 May 2014 17:50:08 +0200
> From: Anne Etien <anne.etien(a)univ-lille1.fr>
> Subject: [Moose-dev] Re: MOOSEDay@UPMC update
> To: Moose-related development <moose-dev(a)iam.unibe.ch>
> Message-ID: <348EA238-FBE6-49B8-9970-5ED44C087C50(a)univ-lille1.fr>
> Content-Type: text/plain; charset="iso-8859-1"
>
> In the first mail of this conversation and more specifically in what is
> cited bellow, it seemed that it was decided to shorten the MooseDay to a
> single day. The next two mails at least went in that direction. I was so
> asking, if it is one day, which one is it? But it seems that you finally
> decided to keep it on two days?
>
> Anne
>
> Le 5 mai 2014 ? 11:05, Serge Stinckwich a ?crit :
>
> > We have only 9 people who register for the MOOSEDAY@UPMC (June 5/6
> > 2014) at the moment and 2 presentations. One of the main drawback is
> > that INRIA team does not have too much money to come this time.
> >
> > What we could do :
> > - we organize a small event on one day (some presentations in the
> > morning and a Pharo/MOOSE sprint).
> > But we definitively need more presentations ? Who is willing to come ?
>
> > - we postpone the MOOSEDAY@UPMC until september/october 2014, so more
> > people could join (Doru ?).
>
>
Hi all,
I am trying to develop a browser with GLAMOUR and I wish to have a graphET
panel therein. How can I view my graph in this panel?
thank you!
--
*ATREVI D. Fabrice*
*Master en Informatique A l'Institut de la Francophonie pour l'Informatique
(IFI/Hanoï)*
Hi!
During my Sunday evening coding session, I worked on a spectrograph in Roassal.
Here a small example:
Each vertical line is a class. Height is the total amount of methods (class + metaclass). Red = class methods, Gray = instance methods.
The script is the following:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
| b |
b := RTSpectrograph new.
b objects: (RTLayout withAllSubclasses reverseSortedAs: #numberOfMethods).
b popupText: [ :aClass :cm | cm methodClass name, '>>', cm selector ].
b lineBlock: [ :cls | cls methods, cls class methods ].
b highlight: [ :aClass :cm | cm methodClass isMeta ].
b title: 'Proportion of class methods'.
b open.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
A more sophisticated example:
Each vertical line is a class.
Green classes are Trachel classes
Gray classes are Roassal classes
Height of a class is its age, in number of days (i.e., age of the oldest methods of the class).
Each red dot is the creation of one of its method (i.e., when the method was created).
We can see that Trachel classes have not evolved that much, i.e., most of the methods have been defined on the same day.
The to obtain this visualization is the following:
-=-=-=-= -=-=-=-= -=-=-=-= -=-=-=-= -=-=-=-=
| b now |
now := DateAndTime now.
b := RTSpectrograph new.
b objects: ((RTObject withAllSubclasses , TRObject withAllSubclasses) reverseSortedAs: #livingInDays).
b highlight: [ :cls :livingDay | cls inheritsFrom: TRObject ] color: Color lightGreen.
b highlight: [ :cls :livingDay | cls gotMethodOnDay: livingDay ].
b popupText: [ :cls :age | cls name, ' ', age printString , ' days old' ].
b lineBlock: [ :cls | 0 to: cls livingInDays ].
b open.
-=-=-=-= -=-=-=-= -=-=-=-= -=-=-=-= -=-=-=-=
If you try this code one day after I posted it, all the classes will be one pixel higher :-)
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi!
I am experiencing problem with the font using Athens. Am I the only one?
After using a fresh image, the problem appears after a short while. This is frustrating :-(
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.