Hello,
There are several tests failing in Moose 4.9. Majority of them are related
to OSProcess and some others are related to Moose and Roassal. We have
Pharo sprint next week so, here in Lille, we can work on making unstable
builds on the moose jenkins green (Moose 4.9, Moose-algos, and
Moose-on-the-web). Because, it will be difficult for us to move the
downstream projects to Moose 4.9 unless the build is stable.
It would be good to know the roadmap to move to Pharo 3.0 because the major
change between Moose 4.8 and Moose 4.9 is removing Mondrian. So when do we
move to Pharo 3.0?
regards,
Usman
Hi guys
This is important. If you ever contributed to Pharo please send your information and this is also good for your visibility
this is a win-win situation.
Stef
Begin forwarded message:
> From: Stéphane Ducasse <stephane.ducasse(a)inria.fr>
> Subject: [Pharo-users] Please contributors fill up this form...
> Date: October 9, 2013 1:34:07 PM GMT+02:00
> To: Any question about pharo is welcome <pharo-users(a)lists.pharo.org>, Pharo Development List <pharo-dev(a)lists.pharo.org>
> Reply-To: Any question about pharo is welcome <pharo-users(a)lists.pharo.org>
>
> Hi guys
>
> I would like to get
> contributors.pharo.org a bit more representative of Pharo.
>
> We should have Previous contributors and enhance the current list.
> Can you please reply to this mail
>
> PharoContributor new
> name: 'Esteban Lorenzano';
> id: 'estebanlm';
> email: 'estebanlm(a)gmail.com';
> website: 'http://smallworks.eu';
> description: 'Pharo core team. Contributor of several projects, including Kernel, DBXTalk, Voyage, Mars, etc. Also I work on the VM.';
> image: 'http://www.gravatar.com/avatar/193af464509ae8fbcc04abad70b72fc0?s=120';
> yourself
>
>
> Stef
(Sorry if this is a repost. I have a problem with Nabble.com.)
Whenever i try to load ConfigurationOfGlamour in a 20621 Pharo image i get
the following error:
Error: Could not resolve: CollectionExtensions
[CollectionExtensions-TudorGirba.34.mcz] in /Users/wm/Pharo
Images/package-cache
So i can no longer load ConfigurationOfGlamour. I tried 2.4 and 2.5-snapshot
and i did also empty my package-cache. No difference. Any idea where the
problem lies?
--
View this message in context: http://forum.world.st/Problem-loading-ConfigurationOfGlamour-tp4711634.html
Sent from the Moose mailing list archive at Nabble.com.
n := elements size nthRoot: 3 ceiling
should be
n := (elements size nthRoot: 3) ceiling
in
on: elements
| n rowSizes rowPositions columnSizes columnPositions levelSizes
levelPositions |
n := elements size nthRoot: 3 ceiling.
"Initialize the cell sizes"
rowSizes := Array new: n.
columnSizes := Array new: n.
levelSizes := Array new: n.
Otherwise, Array is initialized on a float and that gives an error.
usman