Re: [Pharo-project] [Pharo-users] [COTDC] 78 - RBSubclassResponsibilityNotDefinedRule

2011-09-02 Thread laurent laffont
On Thu, Sep 1, 2011 at 10:08 PM, Lukas Renggli reng...@gmail.com wrote: Today: RBSubclassResponsibilityNotDefinedRule This rules identifies when several methods in a set of subclasses are defined but not in the superclass. It identifies that an abstract method is missing in the

Re: [Pharo-project] Testing Pharo OneClick 1.3

2011-09-02 Thread Stéphane Ducasse
On Sep 2, 2011, at 7:16 AM, Hernán Morales Durand wrote: Two more: ScriptLoader new installingInstaller should not work and should not be used. Nobody should use ScriptLoader :) MNU possibly related with ZnNetworkingUtils url object. -Enable underscore assignment (some packages still

Re: [Pharo-project] [Pharo-users] [COTDC] 78 - RBSubclassResponsibilityNotDefinedRule

2011-09-02 Thread Stéphane Ducasse
could be interesting. But it would just hides our poor comment quality. I prefer to see that I'm poor than pretend I'm rich :) For the RBRule what would be great (and this was on my overly long todo) was a improve the description. May be we should have a short and long one. Because something I

Re: [Pharo-project] [Pharo-users] [COTDC] 78 - RBSubclassResponsibilityNotDefinedRule

2011-09-02 Thread Lukas Renggli
For the RBRule what would be great (and this was on my overly long todo) was a improve the description. May be we should have a short and long one. Because something I do not understand (well I do most of the times) but I would love to get a nice description because we really want to push

[Pharo-project] WriteStream strangeness

2011-09-02 Thread Philippe Marschall
Hi I have run into two issues when #reset-ing WriteStreams. The first one is that #reset on WriteStream and ReadWriteStream don't have the same semantics [1] (although ReadWriteStream is a subclass of WriteStream). (WriteStream on: String new) nextPutAll: 'the content'; reset;

Re: [Pharo-project] Zinc crashing image at start up

2011-09-02 Thread Lukas Renggli
I have now had two images rendered unusable because Zinc crashes them at start up. Debug log attached. +1, I had a similar problem at some point from an image built on Jenkins. Lukas -- Lukas Renggli www.lukas-renggli.ch

Re: [Pharo-project] [Pharo-users] [COTDC] 78 - RBSubclassResponsibilityNotDefinedRule

2011-09-02 Thread Angel Nunez
On Sep 2, 2011, at 2:57 , Stéphane Ducasse wrote: could be interesting. But it would just hides our poor comment quality. I prefer to see that I'm poor than pretend I'm rich :) For the RBRule what would be great (and this was on my overly long todo) was a improve the description. May be we

[Pharo-project] Horizontal wheel

2011-09-02 Thread Alexandre Bergel
hi! Pharo supports the vertical wheel. I can use my moose wheel to scroll over a list. However, the horizontal wheel does not seem supported. It would be very cool to have it... http://code.google.com/p/pharo/issues/detail?id=4752 Cheers, Alexandre --

[Pharo-project] Fwd: Smalltalks 2011: Call for Submission/Participacion

2011-09-02 Thread Mariano Martinez Peck
-- Forwarded message -- From: gabriela arevalo gabriela.arev...@fast.org.ar Date: Thu, Sep 1, 2011 at 10:36 PM Subject: Smalltalks 2011: Call for Submission/Participacion To: Sorry for multiple copies Following you have the Spanish version of the Smalltalks 2011 Call for

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Gary Chambers
I can add the support if you can work out what the VM sends as key/char codes... ;-) Regards, Gary - Original Message - From: Alexandre Bergel alexandre.ber...@me.com To: Pharo Development Pharo-project@lists.gforge.inria.fr Sent: Friday, September 02, 2011 2:06 PM Subject:

Re: [Pharo-project] Zinc crashing image at start up

2011-09-02 Thread Igor Stasenko
Looks like it tries to destroy socket which were left from previous session, and of course fails because in newly started image the socket handle invalid. On 2 September 2011 14:26, Lukas Renggli reng...@gmail.com wrote: I have now had two images rendered unusable because Zinc crashes them at

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Alexandre Bergel
We need a VM expert... I am sure there is a good soul on the mailing list. Alexandre On 2 Sep 2011, at 10:31, Gary Chambers wrote: I can add the support if you can work out what the VM sends as key/char codes... ;-) Regards, Gary - Original Message - From: Alexandre Bergel

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Igor Stasenko
Historically, VMs are not generating mouse wheel events, instead they interpreting OS events and generating ctrl-up/ctrl-down key events. To instroduce horizontal wheel , a changes to VM is needed. On 2 September 2011 16:39, Alexandre Bergel alexandre.ber...@me.com wrote: We need a VM expert...

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Johannes Rasche
for at least MAC OS it seems to be very cool :) to support the trackpads I cannot imagine that other platforms don't make use of trackpads yes a good soul is wanted Am 02.09.2011 um 15:45 schrieb Igor Stasenko: Historically, VMs are not generating mouse wheel events, instead they interpreting

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Igor Stasenko
On 2 September 2011 16:52, Johannes Rasche johannesras...@mac.com wrote: for at least MAC OS it seems to be very cool :) to support the trackpads I cannot imagine that other platforms don't make use of trackpads yes a good soul is wanted Am 02.09.2011 um 15:45 schrieb Igor Stasenko: Well,

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Gary Chambers
Indeed, Igor. Curious what events we get from a horizontal wheel... possibly platform dependent too. (could possibly test when in office with a mouse that has left-right wheel clickers) Regards, Gary - Original Message - From: Igor Stasenko siguc...@gmail.com To:

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Alexandre Bergel
Thanks guys for considering this. Alexandre On 2 Sep 2011, at 11:02, Gary Chambers wrote: Indeed, Igor. Curious what events we get from a horizontal wheel... possibly platform dependent too. (could possibly test when in office with a mouse that has left-right wheel clickers)

Re: [Pharo-project] Zinc crashing image at start up

2011-09-02 Thread Philippe Marschall
On 02.09.2011 15:39, Igor Stasenko wrote: Looks like it tries to destroy socket which were left from previous session, and of course fails because in newly started image the socket handle invalid. Sure, but that should signal #primitiveFailed, not segfault the vm. Cheers Philippe

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Gary Chambers
Not yet. I retrofitted the fake keys to be reified as a mouse wheel event. Even included a possible direction for just this eventualtity! I'll see if it can work on Windows/Linux next week. Regards, Gary - Original Message - From: Igor Stasenko siguc...@gmail.com To:

Re: [Pharo-project] Zinc crashing image at start up

2011-09-02 Thread Igor Stasenko
On 2 September 2011 17:27, Philippe Marschall kus...@gmx.net wrote: On 02.09.2011 15:39, Igor Stasenko wrote: Looks like it tries to destroy socket which were left from previous session, and of course fails because in newly started image the socket handle invalid. Sure, but that should signal

Re: [Pharo-project] [Pharo-users] [COTDC] 78 - RBSubclassResponsibilityNotDefinedRule

2011-09-02 Thread Stéphane Ducasse
cool thanks we will look at it. Andre started to redo it (i think). Stef On Sep 2, 2011, at 10:59 AM, Lukas Renggli wrote: For the RBRule what would be great (and this was on my overly long todo) was a improve the description. May be we should have a short and long one. Because something I

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Stéphane Ducasse
no you should just write the transcript the events have a look at HandMorph handle event method. Stef On Sep 2, 2011, at 3:39 PM, Alexandre Bergel wrote: We need a VM expert... I am sure there is a good soul on the mailing list. Alexandre On 2 Sep 2011, at 10:31, Gary Chambers wrote:

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Gary Chambers
Or make a ShowEventsTester morph ;-) Regards, Gary - Original Message - From: Stéphane Ducasse stephane.duca...@inria.fr To: Pharo-project@lists.gforge.inria.fr Sent: Friday, September 02, 2011 4:35 PM Subject: Re: [Pharo-project] Horizontal wheel no you should just write the

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Gary Chambers
Perhaps worth checking out various keyboard zoom controllers too... Regards, Gary - Original Message - From: Gary Chambers gazzagu...@btinternet.com To: Pharo-project@lists.gforge.inria.fr Sent: Friday, September 02, 2011 4:57 PM Subject: Re: [Pharo-project] Horizontal wheel Or

Re: [Pharo-project] Horizontal wheel

2011-09-02 Thread Gary Chambers
Not sure how it would translate but would be nice to get proper events for such things, handle on the image side... Regards, Gary - Original Message - From: Gary Chambers gazzagu...@btinternet.com To: Pharo-project@lists.gforge.inria.fr Sent: Friday, September 02, 2011 4:57 PM

Re: [Pharo-project] WriteStream strangeness

2011-09-02 Thread Dale Henrichs
I don't have a copy of the ANSI standard handy, but I'd be curious whether #reset and #size are already defined in the standard or not... Dale - Original Message - | From: Philippe Marschall kus...@gmx.net | To: pharo-project@lists.gforge.inria.fr | Sent: Friday, September 2, 2011

[Pharo-project] [COTDC] 79 - RefactoryChange

2011-09-02 Thread laurent laffont
A comment per day is known to expend your life expectancy. Today: RefactoryChange Comment Of The Day Contest - One Day One Comment Rules: #1: Each day a not commented class is elected. Each day the best comment will be integrated with name of the author(s). #2: If you cannot comment it,

Re: [Pharo-project] [Pharo-users] [COTDC] 78 - RBSubclassResponsibilityNotDefinedRule

2011-09-02 Thread laurent laffont
On Fri, Sep 2, 2011 at 8:57 AM, Stéphane Ducasse stephane.duca...@inria.frwrote: could be interesting. But it would just hides our poor comment quality. I prefer to see that I'm poor than pretend I'm rich :) I agree. But sometimes there's so few comments in a package that's I don't bother

Re: [Pharo-project] Zinc crashing image at start up

2011-09-02 Thread Sven Van Caekenberghe
On 02 Sep 2011, at 13:26, Lukas Renggli wrote: +1, I had a similar problem at some point from an image built on Jenkins. The current version of ZnMultiThreadedServer does not hold references to all the connections (worker processes) it creates. This has several implications. A running server

Re: [Pharo-project] Zinc crashing image at start up

2011-09-02 Thread Lukas Renggli
It would be better if this were prevented. I will have a look to see if I can keep track of these connections and worker processes in a weak data structure so that they can be managed better. Better no weak data structures. The listener process could more efficiently cleanup unused workers,

Re: [Pharo-project] Zinc crashing image at start up

2011-09-02 Thread Igor Stasenko
what you can do is at image startup , is invalidate all sockets. On 3 September 2011 00:01, Lukas Renggli reng...@gmail.com wrote: It would be better if this were prevented. I will have a look to see if I can keep track of these connections and worker processes in a weak data structure so

Re: [Pharo-project] [COTDC] 79 - RefactoryChange

2011-09-02 Thread HwaJong Oh
I am superclass of all refactoring change objects. All I have is a name for the refactoring, but I can perform one or more refactoring operations with message #execute. I am a composite object. To know about the components of mine, ask me with #changes and #changesSize. (If foreign category is

[Pharo-project] CogDroid: first public alpha available for testing

2011-09-02 Thread Dimitry Golubovsky
Hi, I am pleased to announce that the Android port of Stack Cog has reached the public alpha stage, and the first pre-built apk file is available for downloading: http://squeakvm-tablet.googlecode.com/files/CogDroid-alpha-20110903.apk This is a debug-signed Android package. When installed, it