Hi,
being a end user, I am bit confused with these 2 frameworks: Fame and Magritte.
There are both meta-meta-models. So what make them different from a conceptual point of view ?
For my models, I would like to have the persistency for free (from Fame) and the UI edition and model validation for free (from Magritte).
Today I must write two times the description of my language (one in Fame and one in Magritte), and it feels like I would need only one description.
Any info on this would be appreciated.
Thanks.
Francois
OK, I just had this problem today, not previously during the week, and I can't find the source.
When updating my Moose image I got:
Loading default of ConfigurationOfMoose... <connection closed>
Fetched -> Famix-ManifestMf-tg.6 --- http://www.squeaksource.com/Moose --- http://www.squeaksource.com/Moose
Project: MooseAlgos for Moose default
Project: PetitParser for Moose default
Project: Glamour for Petit 2.0-beta.7
Fetched -> Morphic-MorphTreeWidget-AlainPlantec.88 --- http://www.squeaksource.com/Momo10 ---
(....)
Two strange things going on:
- PetitParser default requiring Glamour for Petit 2.0-beta.7 (probably a bug when the config was copied to the Moose repo for the 4.0 release. This is now fixed)
- Morphic-MorphTreeWidget-AlainPlantec.88 got fetched, I have no idea how/which project required this package which dates back to january 2010 (it's not Glamour 2.0-beta.7)
Can anyone reproduce this problem, starting from a 4.1 release then updating to default? Or starting fresh and loading default?
Dale, I think I have another use case for the Metacello browser, it's being able to debug such a case, by simulating/resolving which versions of a package would actually be loaded, and which project requested this version (in case there are multiple projects also, whether there was a conflict).
--
Simon
Hi!
I very welcome contribution made on Mondrian. But please, enter your complete name when accepting methods and comming. For example, I have no idea who 'jl' is.
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
jannik laval?
On Sep 24, 2010, at 6:17 PM, Alexandre Bergel wrote:
> Hi!
>
> I very welcome contribution made on Mondrian. But please, enter your complete name when accepting methods and comming. For example, I have no idea who 'jl' is.
>
> Cheers,
> Alexandre
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> Moose-dev(a)iam.unibe.ch
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Hi Moosers!
It our pleasure to announce (with a one week delay) that
the 4th edition of FAMOOSr is over, and that it was a success.
We had a dozen participants attending. Several had no a priori
knowledge about the moose platform but were eager to learn.
The talks stirred discussions and the bazaar session became a
demos and discussions session (this is not that surprising: the
time we had was too short for coding). The two blitz demos of
Doru (on Glamour) and Andrei (on the Glamour/Seaside
integration) were very liked.
Until the next time,
Happy research to each one of you :)
Simon and Mircea.
Hi Doru,
I tried your GTTools. I like GTCodeBrowser. What is missing is the update mechanism. Is it supported by Glamour? Is this easy to implement?
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
I am writing a Java to MSE exporter called VerveineJ.
(I was supposed to announce it at some point but I keep waiting for a
reasonably stable version)
But let's go to the point.
For Java packages I am creating FAMIX Namespaces
Now I discovered the notion of childScopes and two questions arose:
- should VerveineJ create a "childScope link" between two java
Packages (i.e. FAMIX Namespace) that are included one in the other
(e.g.: "org.eclipse.help" and "org.eclipse.help.internal" and
"org.eclipse.help.internal.browser")
- if the answer is yes to the 1st question, then should VerveineJ
create new FAMIX Namespaces at the "intersection" of two other
namespaces. For example, for "org.eclipse.core.internal.plugins" and
"org.eclipse.core.runtime", one could create "org.eclipse.core" as a
parent scope of both...
Eclipse, which is my reference here, does not consider hierarchy of
packages. Even if, on the disk, one package is implemented as a
subdirectory of another one, in the Package Explorer, they are listed
as two separate ones.
Any opinion?
nicolas
--
Nicolas Anquetil    Univ. Lille1 / INRIA-equipe RMod
Hello,
I wonder if it is possible to have a browser that tansmit from several
origins, that means having a source code like that:
browser transmit
from: #row1;
from: #row2;
to row: #row3;
andShow: ......
and in the same time to transform one of the output. So having something
like:
browser transmit
from: #row1;
from: #row2;
transformed: [ ... ];
to row: #row3;
andShow: ......
If it is possible, what should be put in the transform block? because we
have several outputs, so how do we deal with them and what should be
returned in the block ?