Status: New
Owner: ----
CC: tudor.gi...(a)gmail.com, simon.de...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Famix Milestone-4.3
New issue 520 by tudor.gi...(a)gmail.com: Integrate MooseChef
http://code.google.com/p/moose-technology/issues/detail?id=520
MooseChef should get integrated into Famix.
Due to the traits, the only reasonable solution is to change directly the
Famix definitions for now in a dedicated query method category.
When Pharo will provide a better solution to extend a class with a trait,
we can revisit the implementation and decouple it into a separate package.
Cool news :)
Stef
Begin forwarded message:
> From: Joachim Geidel <joachim.geidel(a)onlinehome.de>
> Date: February 5, 2011 4:14:27 PM GMT+01:00
> To: VW NC <vwnc(a)cs.uiuc.edu>, "Pharo-project(a)lists.gforge.inria.fr" <Pharo-project(a)lists.gforge.inria.fr>, A friendly place where any question about pharo is welcome <pharo-users(a)lists.gforge.inria.fr>, The general-purpose Squeak developers list <squeak-dev(a)lists.squeakfoundation.org>, VWDEV list <vw-dev(a)parcplace.net>
> Subject: [squeak-dev] [ANN] JNIPort 2.0 for VisualWorks, Pharo and Squeak
> Reply-To: The general-purpose Squeak developers list <squeak-dev(a)lists.squeakfoundation.org>
>
> JNIPort 2.0 for VisualWorks, Pharo and Squeak is now available!
>
> JNIPort is a Smalltalk library which allows Java code to be invoked from
> Smalltalk. It acts as a bridge between the world of Smalltalk objects and a
> Java Virtual Machine (JVM) where Java code is executing. For more
> information see
>
> http://jniport.wikispaces.com
>
> JNIPort 2.0 for VisualWorks can be loaded from the Cincom Public Store
> Repository and from the JNIPort wiki at
>
> http://jniport.wikispaces.com/Downloads
>
> JNIPort 2.0 for Pharo and Squeak is available from SqueakSource at
>
> http://www.squeaksource.com/JNIPort.html
>
> and from the JNIPort wiki.
>
> The changes from JNIPort 1.9 are:
>
> - JNIPort can now be used in Pharo and Squeak.
>
> - Packages have been renamed such that the can be shared between Store
> and Monticello.
>
> - Platform specific code has been moved to separate packages to make the
> core packages portable between VisualWorks, Pharo, and Squeak.
>
> - The much-critized _null postfix used for selectors of wrapper methods
> which don't have arguments is gone.
>
> - A few bugs have been fixed.
>
> Installation instructions for VisualWorks are on the JNIPort wiki,
> instructions for Pharo and Squeak are on the wiki of the JNIPort project
> page of SqueakSource. I strongly encourage you to read the instructions
> before installing and using JNIPort.
>
> JNIPort 2.0 has been tested with:
>
> - VisualWorks from 7.5 to 7.8 (trent dec10.3) on Mac OS X 10.6.6 and
> Windows XP SP 3
>
> - VisualWorks from 7.7 to 7.8 (trent dec10.3) on Ubuntu 10.04 (64bit)
> with both the 32-bit and the 64-bit VisualWorks VMs
>
> - Squeak 4.2 on Mac OS X 10.6.6 and Windows XP SP 3
>
> - Pharo 1.1.1 and 1.2 on Mac OS X 10.6.6 and Windows XP SP 3
>
> Known issues:
>
> - In Pharo 1.1.1, you may encounter an error when JNIPort tries to register
> a new Java object in an internal weak dictionary. This is a bug in Pharo's
> implementation of this collection class. I can't do anything about it. If
> you can't live with it, please upgrade to Pharo 1.2.
>
> - JNIPort for Pharo and Squeak currently cannot be used with the Cog VM.
>
> - Callbacks from foreign operating system threads cannot be used in Pharo
> and Squeak. The Alien foreign function interface does not yet support
> this feature. When you run the unit tests, three tests will fail because
> of this restriction. These failures are expected and do not indicate bugs.
>
> Best regards,
> Joachim Geidel
>
>
>
Comment #9 on issue 16 by cy.delaunay: implicit importer is wrong: an
implicit variable should be attached to a method not a class
http://code.google.com/p/moose-technology/issues/detail?id=16
after looking a bit more, I think we will have to change also the code
about Invocations, which expect the parent of an ImplicitVariable to be a
Class.
Status: New
Owner: tudor.gi...(a)gmail.com
Labels: Type-Enhancement Priority-Medium Component-Finder Milestone-4.3
New issue 521 by tudor.gi...(a)gmail.com: Meta Browser needs search
capabilities
http://code.google.com/p/moose-technology/issues/detail?id=521
It would be nice if we could search for an entity in the Meta Browser
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 493 by jfa...(a)gmail.com: ConfiguTation browser menu entry raises
MNU
http://code.google.com/p/moose-technology/issues/detail?id=493
In the Hudson nightly build of 15 jan.
MooseDevBrowser class>>menuCommandOn: aBuilder
<worldMenu>
(aBuilder item: #'MooseConfigutationBrowser')
order: 6;
parent: #Moose;
label: 'Moose Configutation Browser';
action:[MooseDevBrowser open]
Not only ConfiguTation -> ConfiguRation :-), but it also raises a MNU:
reciever of "Project" is nil. Cause: "list selection" is nil in the
following part of [MooseDevBrowser>>open]
Smalltalk at: #OBCmdMetacello ifPresent: [ :x |
projectList dynamicActions: [:list |
(GLMOBCommandAdaptor new
actionsFrom: (Smalltalk at: #OBCmdMetacello) subclasses
on: list selection project configuration class
for: nil ) do: [:each | each category: 'OB Commands'] ] ]