Hi,
To better plan the work packages it would be great to know who is
participating to the Moose Dojo that is held at ESUG 2008?
Cheers,
Doru
--
www.tudorgirba.comwww.tudorgirba.com/blog
"Every thing should have the right to be different."
Hi,
Please register (see below) for attending the Camp Smalltalk and
implicitly if you want to attend the Moose Dojo.
Cheers,
Doru
Begin forwarded message:
>>> From: stephane ducasse <stephane.ducasse(a)free.fr>
>>> Date: August 14, 2008 2:05:24 PM CEDT
>>> To: esug-list(a)lists.esug.org
>>> Cc: The general-purpose Squeak developers list <squeak-dev(a)lists.squeakfoundation.org
>>>> , VWNC List <vwnc(a)cs.uiuc.edu>
>>> Subject: Registration needed for the Smalltalk Camp at ESUG 2008
>>>
>>> Hi all
>>>
>>> To be able to access to the building where the Smalltalk Camp of
>>> ESUG 2008 will occur,
>>> you need to register!
>>> So if you want to attend the Camp please send an email with the
>>> following header
>>> [Camp] your name and first name
>>> to denker(a)acm.org
>>>
>>> Pay attention you should send this information before wednesday
>>> 20th.
>>>
>>>
>>> Stef and the ESUG organization.
>>
--
www.tudorgirba.comwww.tudorgirba.com/blog
"There are no old things, there are only old ways of looking at them."
Hi,
For an overview on presence/absence of class comments in Moose/Squeak see SqueakSource/PackageExplorer.
In order to fix absent class comments I'd need a minimal understanding of the design. A certain book called "object-oriented reengineering patterns" tells me - among other advices - to "skim the documentation". Can you give me a hint what to read on the architecture of MOOSE ?
cu
Pascal
----- Original Nachricht ----
Von: Stéphane Ducasse <stephane.ducasse(a)univ-savoie.fr>
An: Related to the development of Moose and other related tools <moose-dev(a)iam.unibe.ch>
Datum: 23.06.2008 11:08
Betreff: [Moose-dev] Re: who can help
> Thanks pascal.
> Amy be we should create an account for you.
> making a list of the class that lack comments and fixing them would be
> good.
> Sorting also some tests: sometimes we have one class with one test
> would be good to.
> and help porting....
> Stef
>
>
> On Jun 23, 2008, at 12:12 AM, pascal.vollmer(a)nexgo.de wrote:
>
> > Hi,
> >
> > I am prepared to do jobs in the area of: qa, documentation, test,
> > statistical methods. I will be of limited use wrt coding since I
> > have small experience here (coming from C++ and diving into
> > Smalltalk since 2 years only.)
> > If this makes sense to you just drop a message what is the job you
> > would like to be done.
> >
> > cheers,
> > Pascal
> >
> >
> > ----- Original Nachricht ----
> > Von: Stéphane Ducasse <stephane.ducasse(a)inria.fr>
> > An: Related to the development of Moose and other related tools
> > <moose-dev(a)iam.unibe.ch>
> > Datum: 22.06.2008 12:29
> > Betreff: [Moose-dev] who can help
> >
> >> Hi
> >>
> >> I would like to who besides doru can really help in migrating Moose
> >> to
> >> Squeak and maintaining.
> >> Because so far I see only me alex and doru.
> >>
> >> Stef
> >>
> >> _______________________________________________
> >> Moose-dev mailing list
> >> Moose-dev(a)iam.unibe.ch
> >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> >>
> >
> > Pascal Vollmer
> > Email: pascal.vollmer(a)ieee.org
> >
> > Jetzt komfortabel bei Arcor-Digital TV einsteigen: Mehr Happy Ends,
> > mehr Herzschmerz, mehr Fernsehen! Erleben Sie 50 digitale TV
> > Programme und optional 60 Pay TV Sender, einen elektronischen
> > Programmführer mit Movie Star Bewertungen von TV Movie. Außerdem,
> > aktuelle Filmhits und spannende Dokus in der Arcor-Videothek. Infos
> > unter www.arcor.de/tv
> >
> > _______________________________________________
> > Moose-dev mailing list
> > Moose-dev(a)iam.unibe.ch
> > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> >
>
>
> _______________________________________________
> Moose-dev mailing list
> Moose-dev(a)iam.unibe.ch
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
Pascal Vollmer
Email: pascal.vollmer(a)ieee.org
Jetzt komfortabel bei Arcor-Digital TV einsteigen: Mehr Happy Ends, mehr Herzschmerz, mehr Fernsehen! Erleben Sie 50 digitale TV Programme und optional 60 Pay TV Sender, einen elektronischen Programmführer mit Movie Star Bewertungen von TV Movie. Außerdem, aktuelle Filmhits und spannende Dokus in der Arcor-Videothek. Infos unter www.arcor.de/tv
new version of Moose Development
FAMIXMethod>>isStub
isStub
"a fAMIXMethod is stub if it is declared as stub or if it belongs to
a stub class"
^super isStub or: [self belongsTo isStub].
a new version of Moose Development:
FAMIXPackage>>isStub
isStub
"a fAMIXPackage isStub if it is declared as stub or if all its
classes and the classes extended in it are stubs -Note that in the
last case it should contain at less one class or extended class-"
^super isStub
or:
[(self definedClasses isEmpty and: [self extendedClasses isEmpty])
not
and:
[(self definedClasses allSatisfy: [:each | each isStub])
and:
[self extendedClasses allSatisfy: [:each| each isStub]]]]
----> one related test is fixted: when a package has no class it is
not surely a stub.
a new version of Moose Development:
FAMIXNamespace>>isStub
isStub
"a fAMIXNamespace isStub if it is declared as stub or if all its
classes are stubs -Note that in the last case it should contain at
less one class-"
^super isStub or: [self classes isNotEmpty and: [self classes
allSatisfy: [:each | each isStub]]].
a new version of Moose Development:
FAMIXInvocation>>isStub
isStub
"a FAMIXInvocation is stub if it has at less one candidate -invoked-
methode, if one of the candidate methods is stub, or if the invocation
is done by a stub method"
^self candidateList isNil
or: [self candidateList isEmpty
or: [(self candidateList anySatisfy: [:mtd| mtd isStub])
or: [self invokedBy isStub]]]