Re: [Pharo-project] removing some dust in Morph

2010-05-01 Thread Stéphane Ducasse
On May 1, 2010, at 10:33 PM, Igor Stasenko wrote: > On 1 May 2010 22:30, Stéphane Ducasse wrote: >> Morph removeSelector: #affiliatedSelector! >> Morph removeSelector: #completeModificationHash! >> Morph removeSelector: #constructorString! >> Morph removeSelector: #duplicateMorphImage:! >> Morph

Re: [Pharo-project] gettext package

2010-05-01 Thread Hilaire Fernandes
Stéphane Ducasse a écrit : - If we want the gettext package to be loadable, the method String>>translated in core could be changed to return self, then the gettext packaged provided the translated version to effectively handle the translation. but this would be an override. Yes, is it a pr

Re: [Pharo-project] removing some dust in Morph

2010-05-01 Thread Igor Stasenko
On 1 May 2010 22:30, Stéphane Ducasse wrote: > Morph removeSelector: #affiliatedSelector! > Morph removeSelector: #completeModificationHash! > Morph removeSelector: #constructorString! > Morph removeSelector: #duplicateMorphImage:! > Morph removeSelector: #haloDelayTime! > Morph removeSelector: #m

[Pharo-project] removing some dust in Morph

2010-05-01 Thread Stéphane Ducasse
Morph removeSelector: #affiliatedSelector! Morph removeSelector: #completeModificationHash! Morph removeSelector: #constructorString! Morph removeSelector: #duplicateMorphImage:! Morph removeSelector: #haloDelayTime! Morph removeSelector: #modificationHash! Morph removeSelector: #preserveTrash! Mor

[Pharo-project] Morph users... please shout :)

2010-05-01 Thread Stéphane Ducasse
Do we use removeMouseUpAction programmedMouseUp: anEvent for: aMorph mouseUpCodeOrNil addMouseUpActionWith: addMouseUpAction fire firedMouseUpCode doButtonAction in Morph I would like to remove them. Stef

Re: [Pharo-project] TextMorph >> string:fontName:size:wrap: bug?

2010-05-01 Thread Sean P. DeNigris
Okay, I'll file a bug and fix it soon... Sean -- View this message in context: http://forum.world.st/TextMorph-string-fontName-size-wrap-bug-tp2122277p2122301.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com. ___ Pharo-project ma

Re: [Pharo-project] does anybody know what is an Object>>actionMap?

2010-05-01 Thread Stéphane Ducasse
thanks lukas I will not comment :) On May 1, 2010, at 8:12 PM, Lukas Renggli wrote: > That's part of the second generation observer implementation, if 1. > update:/changed:, 2. actions (when:send:to:), and 3. announcements. > > Lukas > > On 1 May 2010 19:43, stephane ducasse wrote: >> In cuis

Re: [Pharo-project] TextMorph >> string:fontName:size:wrap: bug?

2010-05-01 Thread Stéphane Ducasse
I do not know, Sean. Probably We should really clean up that part too. stef On May 1, 2010, at 8:33 PM, Sean P. DeNigris wrote: > > I assumed that this method would set the contents of my TextMorph with the > given arguments. However, the contents are set before the font is changed: > > >> st

[Pharo-project] TextMorph >> string:fontName:size:wrap: bug?

2010-05-01 Thread Sean P. DeNigris
I assumed that this method would set the contents of my TextMorph with the given arguments. However, the contents are set before the font is changed: > string: aString fontName: aName size: aSize wrap: shouldWrap > > shouldWrap > ifTrue: [self contentsWrapped: aString

Re: [Pharo-project] does anybody know what is an Object>>actionMap?

2010-05-01 Thread Lukas Renggli
That's part of the second generation observer implementation, if 1. update:/changed:, 2. actions (when:send:to:), and 3. announcements. Lukas On 1 May 2010 19:43, stephane ducasse wrote: > In cuis I read > > actionMap >        "Answer an action map" >        "Do NOT duplicate this in Morphic3 /

[Pharo-project] Morph fire, doButtonAction and firedMouseUpCode

2010-05-01 Thread stephane ducasse
Hi I was wondering if we could remove some stuff from morph In Cuis Morph selectors size 453 in Pharo 910 Stef ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/ph

[Pharo-project] does anybody know what is an Object>>actionMap?

2010-05-01 Thread stephane ducasse
In cuis I read actionMap "Answer an action map" "Do NOT duplicate this in Morphic3 / LightWidgets Views should not trigger events!" ^self valueOfProperty: #actionMap Stef ___ Pharo-project mailing list Pharo-project@l

[Pharo-project] [update 1.1] #11332

2010-05-01 Thread Stéphane Ducasse
11332 - - Issue 503:[Pending Etoy Cleaning] PasteUpMorph>>toggleAutoLineLayout. Thanks Jannik - FewMetricsDefinedOnClasses. Thanks Alexandre - Issue 2371: Forbid weird quoted literals. Thanks Nicolas More to come :) Stef Fixing complex tests, Hashed collection. _

Re: [Pharo-project] Fwd: DropPlugin issue?

2010-05-01 Thread Stéphane Ducasse
johannes did the following fix it? http://code.google.com/p/pharo/issues/detail?id=2301 Stef On May 1, 2010, at 4:04 PM, Stéphane Ducasse wrote: > > > Begin forwarded message: > >> From: Johannes Rasche >> Date: May 1, 2010 3:54:48 PM GMT+02:00 >> To: pharo-project-ow...@lists.gforge.inria.

[Pharo-project] Fwd: DropPlugin issue?

2010-05-01 Thread Stéphane Ducasse
Begin forwarded message: > From: Johannes Rasche > Date: May 1, 2010 3:54:48 PM GMT+02:00 > To: pharo-project-ow...@lists.gforge.inria.fr > Subject: DropPlugin issue? > > Hi Folks, > > just had a strange encounter, as I was dragging a picture from Firefox to > Pharo ( on Mac OS X) > - up to

Re: [Pharo-project] split : bug or feature ?

2010-05-01 Thread laurent laffont
On Sat, May 1, 2010 at 1:10 PM, Henrik Sperre Johansen < henrik.s.johan...@veloxit.no> wrote: > On 01.05.2010 10:51, laurent laffont wrote: > >> In Pharo: >> >> ':' split: 'one:two:three:' => OrderedCollection( 'one' 'two' 'three' '' >> ) >> (':' split: 'one:two:three:') size => 4 >> >> Last el

[Pharo-project] [update 1.1] #11331

2010-05-01 Thread Stéphane Ducasse
11331 - - Issue 2372: HelpSystem for 1.1 so now I would like to know how we can tag Tests to fill up the help system, Sred ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pha

Re: [Pharo-project] split : bug or feature ?

2010-05-01 Thread Henrik Sperre Johansen
On 01.05.2010 10:51, laurent laffont wrote: In Pharo: ':' split: 'one:two:three:' => OrderedCollection( 'one' 'two' 'three' '' ) (':' split: 'one:two:three:') size => 4 Last element is an empty String In Ruby: >> 'one:two:three:'.split(':') => ["one", "two", "three"] >> 'one:two:three:'.

[Pharo-project] [update 1.1] #11330

2010-05-01 Thread Stéphane Ducasse
11330 - - HashedCollection part two: Set now subclass of HashedCollection Stef soon hashed even more :), help system, compiler fix, ... ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailma

[Pharo-project] [update 1.1] #11328

2010-05-01 Thread Stéphane Ducasse
11328 - - Issue 1715: httpGetDocument:args:accept:request: enh. Thanks Jannik and Adrien. - Setting: changed to support other pragma keywords. Thanks Alain - Issue 591:ProtoObject has 6 required methods. Thanks Mariano - Issue 1092: remove EventTest because it was a duplicate. Thanks Mari

Re: [Pharo-project] Xemina Pharo, Hà nội, Vi ệt Nam

2010-05-01 Thread Igor Stasenko
2010/4/29 Torsten Bergmann : > Hi Serge, > > nice demo! Looking through the slides in "Build you own control > structure" you use #ifSeven: as example which is easy, but not a > "real world use case". > > I typically use another example: > > In a few languages you have a "REPEAT (block) UNTIL (cond

[Pharo-project] split : bug or feature ?

2010-05-01 Thread laurent laffont
In Pharo: ':' split: 'one:two:three:' => OrderedCollection( 'one' 'two' 'three' '' ) (':' split: 'one:two:three:') size => 4 Last element is an empty String In Ruby: >> 'one:two:three:'.split(':') => ["one", "two", "three"] >> 'one:two:three:'.split(':').size => 3 Laurent Laffont ___

Re: [Pharo-project] gettext package

2010-05-01 Thread Stéphane Ducasse
On May 1, 2010, at 9:24 AM, Hilaire Fernandes wrote: > Thanks to the virtual hacking session yesterday on IRC (irc.freenode.org > #pharo-project) and the help of hackers Marcus, Henrik and Korakurider we > have moved the gettext package in a workable state. Excellent > So far .po files can be

[Pharo-project] SqueakSource question: how do you make new lines in project description?

2010-05-01 Thread Igor Stasenko
On a project like: http://www.squeaksource.com/Alien.html the project description contains a nicely formatted text. But in my project, no matter what i input in project description field, it squashing to a single paragraph, removing any new lines.. What i am doing wrong? -- Best regards, Igor

Re: [Pharo-project] gettext package

2010-05-01 Thread Hilaire Fernandes
The gettext package is in the http://www.squeaksource.com/PharoInbox ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] gettext package

2010-05-01 Thread Hilaire Fernandes
Thanks to the virtual hacking session yesterday on IRC (irc.freenode.org #pharo-project) and the help of hackers Marcus, Henrik and Korakurider we have moved the gettext package in a workable state. So far .po files can be exported as domain (class category) for translation and .mo (compiled t