Re: [Pharo-project] [squeak-dev] LGPL considered crippling license :)

2009-09-26 Thread Randal L. Schwartz
Igor == Igor Stasenko siguc...@gmail.com writes: Igor P.S. i found it a very good sign, that more and more open-source Igor communities gradually moving towards more permissive license, as MIT Igor is. As I've often said, with licensing, people just want permission to do what they would have

[Pharo-project] LGPL considered crippling license :)

2009-09-26 Thread Igor Stasenko
I haven't visited the Orge site long ago, i found an interesting news, that they switching license to MIT! The motivation conclusions why they decided to switch are very interesting: --- citation --- Won’t this mean people can ‘rip off’ OGRE in proprietary software? The LGPL already allowed

[Pharo-project] [update] #10459

2009-09-26 Thread Stéphane Ducasse
10459 - rollbacked and merged Kernel-StephaneDucasse.405, SystemSupport.StephaneDucasse.89, Tools-StephaneDucasse.202 - Issue 1219: Left over of uniClasses...in Object Object classnewUserInstance Object classinstanceOfUniqueClass Object

[Pharo-project] ClosureTests remove expected failures

2009-09-26 Thread Michael Roberts
Compiler-MikeRoberts.132 in Inbox Remove unexpected failures since the tests now pass with Eliot's latest batch of closure fixes. thanks, Mike ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr

Re: [Pharo-project] CairoGraphics

2009-09-26 Thread Fernando olivero
Hi Ken, good improvements to Alien! Are you are using Installer to load Alien? Would be better to put the Alien#initialize into a post Install method, does Installer have that? The AlienLoader does that, so your fixes should work. What stuff is in Alien and not in Alien Lite? Fernando Il

[Pharo-project] Compiler tests naming

2009-09-26 Thread Michael Roberts
I've noticed we've got two sets of compiler tests. One category part of the compiler and one part of its own tests package. Assume we want to just the tests all into their own package? thanks, Mike ___ Pharo-project mailing list

Re: [Pharo-project] CAnalyer

2009-09-26 Thread Schwab,Wilhelm K
Sig, Interesting. I looked at swig and decided that I would have a better chance of success with pattern matching, especially since some of the code I want to analyze is barely pseudo code (but still full of valuable information). I ended up with a bit of a mess in Dolphin, but it strangely

[Pharo-project] MethodPropertiesTests mark expected failures

2009-09-26 Thread Michael Roberts
http://code.google.com/p/pharo/issues/detail?id=1246 KernelTests-MikeRoberts.151 in Inbox thanks, Mike ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] [update] closure fixes :)

2009-09-26 Thread Michael Roberts
thanks for integrating Stef cheers Mike ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] OSProcess question

2009-09-26 Thread David T. Lewis
On Sat, Sep 26, 2009 at 11:04:37AM -0400, Schwab,Wilhelm K wrote: Dave, I just tried command shell; are you _sure_ it is possible to proceed past the errors? No, I had not checked on the most recent Pharo. So I just downloaded a Pharo image to try it. You can proceed through the warnings

Re: [Pharo-project] ClosureTests remove expected failures

2009-09-26 Thread Stéphane Ducasse
integrated. :) stef On Sep 26, 2009, at 7:27 PM, Stéphane Ducasse wrote: yes On Sep 26, 2009, at 6:22 PM, Michael Roberts wrote: Compiler-MikeRoberts.132 in Inbox Remove unexpected failures since the tests now pass with Eliot's latest batch of closure fixes. thanks, Mike

Re: [Pharo-project] OSProcess question

2009-09-26 Thread Stéphane Ducasse
check the preferences you can also ignore them or get atrace in the transcript On Sep 26, 2009, at 5:04 PM, Schwab,Wilhelm K wrote: Dave, I just tried command shell; are you _sure_ it is possible to proceed past the errors? It looks badly broken from here. I can't say I'm happy with

Re: [Pharo-project] feedback on CLFramework

2009-09-26 Thread Stéphane Ducasse
Hi nullPointer here are some feedback on your work that is really important for us. Use Smalltalk way of formatting code. == btn - button please use normal smalltalk conventions. inClassSideBoolean ifTrue: [ aClass class compile:

[Pharo-project] SocketconnectTo:port: bug? (was: OSProcess question)

2009-09-26 Thread David T. Lewis
I get a walkback from this: Socket newTCP connectTo: (NetNameResolver addressFromString: '127.0.0.1') port: 8086. Is this a known bug? The reason I am asking is that it causes test failures in the OSProcess test suite. Thanks, Dave ___

[Pharo-project] Debugger fails to launch after stacktrace is dumped to SqueakDebug file

2009-09-26 Thread Mariano Martinez Peck
http://code.google.com/p/pharo/issues/detail?id=1249 I marked it as 1.0 It was reported by John Toohey Best Mariano ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] [ANN] STicky

2009-09-26 Thread Hernán Morales Durand
STicky is a pluggable real-time evaluator and/or translator workspace aimed to learn languages. For a quick overview please take a look at the presentation video: http://www.youtube.com/watch?v=b9uUIEaGyoU The Smalltalk evaluator could be useful in learning courses or for newbies typing

[Pharo-project] key pressed

2009-09-26 Thread Tudor Girba
Hi, How can I check whether a certain key is pressed (for example, a modifier like Shift)? Cheers, Doru -- www.tudorgirba.com If you interrupt the barber while he is cutting your hair, you will end up with a messy haircut. ___ Pharo-project

Re: [Pharo-project] [squeak-dev] [ANN] STicky

2009-09-26 Thread Andrey Larionov
Its an awesome. It what i want cause i smalltalk beginer On Sun, Sep 27, 2009 at 01:20, Hernán Morales Durand hernan.mora...@gmail.com wrote: is a pluggable real-time evaluator and/or translator workspace ___ Pharo-project mailing list

Re: [Pharo-project] feedback on CLFramework

2009-09-26 Thread nullPointer
Stéphane Ducasse-2 wrote: Use Smalltalk way of formatting code. getFiles: aStringPathOfDirectory | aFileDirectory fullPathOfFile aCollection | aFileDirectory := CLFileDirectory on: aStringPathOfDirectory. aCollection := Bag new. aFileDirectory fileNames

Re: [Pharo-project] key pressed

2009-09-26 Thread Hernán Morales Durand
Hi Tudor, You can check the implementation of FixedIPluggableTextMorphkeyStroke: and HandMorph STicky protocol category in my recent STicky project, http://www.squeaksource.com/STicky.html Cheers, Hernán 2009/9/26 Tudor Girba tudor.gi...@gmail.com: Hi, How can I check whether a

Re: [Pharo-project] key pressed

2009-09-26 Thread Schwab,Wilhelm K
+1 to Sig's comments. Another problem with looking at the current state vs. state from an event is that the current state is just that, and often differs (covertly and frustratingly) from the user's intentions. Such problems often arise with mouse cursor positions. Bill -Original