Re: [Pharo-project] Issue 2372: HelpSystem for 1.1

2010-05-01 Thread Stéphane Ducasse
Hi, The help core package and the according tests package are ready for integration in the pharo inbox. After talking today with Stephane I also removed the squeak specific stuff, so it is ready for inclusion in Pharo 1.1. core image. The idea is to have the basic help support (help

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

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

[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,

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] 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] Xemina Pharo, Hà nội, Vi ệt Nam

2010-05-01 Thread Igor Stasenko
2010/4/29 Torsten Bergmann asta...@gmx.de: 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

[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

[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

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]

[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

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 element is an empty

[Pharo-project] Fwd: DropPlugin issue?

2010-05-01 Thread Stéphane Ducasse
Begin forwarded message: From: Johannes Rasche johannesras...@mac.com 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

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 johannesras...@mac.com Date: May 1, 2010 3:54:48 PM GMT+02:00 To:

[Pharo-project] [update 1.1] #11332

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

[Pharo-project] does anybody know what is an ObjectactionMap?

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] 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

Re: [Pharo-project] does anybody know what is an ObjectactionMap?

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 stephane.duca...@free.fr wrote: In cuis I read actionMap        Answer an action map        Do NOT duplicate

[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] 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: string:

Re: [Pharo-project] does anybody know what is an ObjectactionMap?

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

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

[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

[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!

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

2010-05-01 Thread Igor Stasenko
On 1 May 2010 22:30, Stéphane Ducasse stephane.duca...@inria.fr wrote: Morph removeSelector: #affiliatedSelector! Morph removeSelector: #completeModificationHash! Morph removeSelector: #constructorString! Morph removeSelector: #duplicateMorphImage:! Morph removeSelector: #haloDelayTime!

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 Stringtranslated 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

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 stephane.duca...@inria.fr wrote: Morph removeSelector: #affiliatedSelector! Morph removeSelector: #completeModificationHash! Morph removeSelector: #constructorString! Morph removeSelector: