Re: [Pharo-project] Url / HTTPSocket with https://

2011-03-01 Thread Sven Van Caekenberghe
On 02 Mar 2011, at 08:16, laurent laffont wrote: > Hi, > > (Url absoluteFromText: 'https://www.google.com') retrieveContents > > or > > HTTPSocket httpGet:'https://www.google.com'. > > fail because they don't like https://. How can I get content on https:// ? > > > Laurent Laffont - @lolgz

[Pharo-project] Url / HTTPSocket with https://

2011-03-01 Thread laurent laffont
Hi, (Url absoluteFromText: 'https://www.google.com') retrieveContents or HTTPSocket httpGet:'https://www.google.com'. fail because they don't like https://. How can I get content on https:// ? Laurent Laffont - @lolgzs Pharo Smalltalk Screencasts: http://www.ph

Re: [Pharo-project] Is it possible to setup Russian fonts in Pharo + Cog VM?

2011-03-01 Thread Eliot Miranda
On Tue, Mar 1, 2011 at 7:11 PM, Dennis Schetinin wrote: > Pharo One-Click with "classic" VM simply shows all the "native" fonts and > displays russian symbols correctly if I choose, say Courier New. The same > with Cog does not work: it shows only 2 fonts and even if I add system fonts > using cl

Re: [Pharo-project] Is it possible to setup Russian fonts in Pharo + Cog VM?

2011-03-01 Thread Dennis Schetinin
Pharo One-Click with "classic" VM simply shows all the "native" fonts and displays russian symbols correctly if I choose, say Courier New. The same with Cog does not work: it shows only 2 fonts and even if I add system fonts using classic VM and then open that image with Cog, it refuses to show tho

Re: [Pharo-project] Issue 3753 in pharo: SimpleMorphic Layout Code missing

2011-03-01 Thread pharo
Comment #4 on issue 3753 by ken.dic...@whidbey.com: SimpleMorphic Layout Code missing http://code.google.com/p/pharo/issues/detail?id=3753 I have two sets of code for save/restore of solitaire games, one which works in the Pharo port of the Game (ported from Squeak) and one which works in

Re: [Pharo-project] Is there a way to get a merge from a configurationOf?

2011-03-01 Thread Alexandre Bergel
Indeed, all the pieces are already there. Alexandre Le 1 mars 2011 à 20:01, Dale Henrichs a écrit : > On 03/01/2011 01:24 PM, stephane ducasse wrote: >> Hi >> >> I would like to know how I can get all the changes (like the merge button in >> MC) of a configurationOf >> >> Stef > > St

Re: [Pharo-project] Is there a way to get a merge from a configurationOf?

2011-03-01 Thread Dale Henrichs
On 03/01/2011 01:24 PM, stephane ducasse wrote: Hi I would like to know how I can get all the changes (like the merge button in MC) of a configurationOf Stef Stef, The MetacelloBrowser is getting close to providing something like that ... this morning I just added the ability to get th

Re: [Pharo-project] About RPackage

2011-03-01 Thread Tudor Girba
This was the main problem in the original implementation because the logic of the organizer also depended on this. So, we took it out and I find this way better :). Of course, we can create a helper method for compatibility reasons, but no internal logic should depend on this. Cheers, Doru O

Re: [Pharo-project] About RPackage

2011-03-01 Thread Stéphane Ducasse
Another point RPackage>>named: aString | newPackage | newPackage := self new name: aString ;yourself. "self organizer registerPackage: newPackage." ^ newPackage does not register the package and this looks suspicion to me. In addition I do not remember the exact

Re: [Pharo-project] About RPackage

2011-03-01 Thread Tudor Girba
Hi Stef, This was the decisions that two of us (I mean me and you) took :). Categories are mapped one-to-one to RPackages. The reason is that this is the simplest path to replace categories in the system. The second step is to map the current Monticello package to RPackages so that we can load

[Pharo-project] About RPackage

2011-03-01 Thread Stéphane Ducasse
Hi cyrille/doru and others. I do not understand why RPackage organizer packages contains System? In fact all the categories are mapped to packages and I wonder why. I imagine that this is to avoid to have mostSpecific* logic of packageInfo, but it means that in such a case we should mer

Re: [Pharo-project] [BUG]: XMLRPC 1.0-alpha4 calls with -/+ 1 arg fail

2011-03-01 Thread Germán Arduino
Hi Sean: I looked into it and seems that the cs introduce a failing test. Will check deeper when have time. Cheers. 2011/2/28 Germán Arduino : > Thanks for the report and .cs. Will look asap. > Cheers. > > 2011/2/28, Sean P. DeNigris : >> It seems that 1.0-alpha4 only handles calls with one argu

Re: [Pharo-project] Is there a way to get a merge from a configurationOf?

2011-03-01 Thread Alexandre Bergel
This is currently not supported unfortunately. Cheers, Alexandre On 1 Mar 2011, at 18:24, stephane ducasse wrote: > Hi > > I would like to know how I can get all the changes (like the merge button in > MC) of a configurationOf > > Stef -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,

[Pharo-project] Is there a way to get a merge from a configurationOf?

2011-03-01 Thread stephane ducasse
Hi I would like to know how I can get all the changes (like the merge button in MC) of a configurationOf Stef

Re: [Pharo-project] Issue 3773 in pharo: should get a better completionDialog

2011-03-01 Thread pharo
Comment #1 on issue 3773 by stephane...@gmail.com: should get a better completionDialog http://code.google.com/p/pharo/issues/detail?id=3773 OBCompletionRequest is the configuration of the OBCompletionDialog (OBCompletionDialog openOn: aReqest) answer would be good also to merge OBPluggable

[Pharo-project] [update 1.3] #13069

2011-03-01 Thread Stéphane Ducasse
13069 - - Issue 3737: Behavior>>allSubclasses comment does not match actual implementation. - Issue 3704: remove FakeClassPool adopt: and its senders. Thanks Nicolas Cellier for the idea. - Issue 3691: Cleaning by comparing SimpleMorphic and Morphic. Thanks Fernando Olivero for the

[Pharo-project] Issue 3773 in pharo: should get a better completionDialog

2011-03-01 Thread pharo
Status: Accepted Owner: stephane...@gmail.com Labels: Milestone-1.3 New issue 3773 by stephane...@gmail.com: should get a better completionDialog http://code.google.com/p/pharo/issues/detail?id=3773 OBCompletionDialog / OBCompletionRequest come with the OB from Pharo 1.2. The way to use it

Re: [Pharo-project] Issue 3753 in pharo: SimpleMorphic Layout Code missing

2011-03-01 Thread pharo
Comment #3 on issue 3753 by stephane...@gmail.com: SimpleMorphic Layout Code missing http://code.google.com/p/pharo/issues/detail?id=3753 what do you mean by "What would be the suggested strategy to get save/restore working?"

Re: [Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Stéphane Ducasse
do not lose time on that we should fix everything. This architecture is dull. There is something wrong. And registeredClasses should not hold objects but classes. Stef > Den 1. mars 2011 kl. 20:05 skrev Stéphane Ducasse : > >> see igor mail :) >> >> ioBeep{ >> } >> >> does not beep :) >>

[Pharo-project] Issue 3772 in pharo: taskbar doesn’t adapt to resized window

2011-03-01 Thread pharo
Status: New Owner: New issue 3772 by thereluc...@fastmail.fm: taskbar doesn’t adapt to resized window http://code.google.com/p/pharo/issues/detail?id=3772 Pharo image: Projekt Pharo 1.2/PharoOneClick1.2/build #162 Pharo core version: Pharo1.2rc2 Latest update: #12339 Virtual machine used

Re: [Pharo-project] Issue 3691 in pharo: Cleaning by comparing SimpleMorphic and Morphic

2011-03-01 Thread pharo
Updates: Status: Closed Comment #5 on issue 3691 by stephane...@gmail.com: Cleaning by comparing SimpleMorphic and Morphic http://code.google.com/p/pharo/issues/detail?id=3691 in 13069

Re: [Pharo-project] Issue 3704 in pharo: remove FakeClassPool adopt: and its senders

2011-03-01 Thread pharo
Updates: Status: closed Comment #5 on issue 3704 by stephane...@gmail.com: remove FakeClassPool adopt: and its senders http://code.google.com/p/pharo/issues/detail?id=3704 13069

Re: [Pharo-project] Issue 3704 in pharo: remove FakeClassPool adopt: and its senders

2011-03-01 Thread pharo
Comment #4 on issue 3704 by stephane...@gmail.com: remove FakeClassPool adopt: and its senders http://code.google.com/p/pharo/issues/detail?id=3704 (No comment was entered for this change.) Attachments: fakePool.1.cs 4.6 KB

Re: [Pharo-project] Issue 3715 in pharo: Workspace shouting after switching between shout/unshout

2011-03-01 Thread pharo
Updates: Status: Closed Comment #3 on issue 3715 by stephane...@gmail.com: Workspace shouting after switching between shout/unshout http://code.google.com/p/pharo/issues/detail?id=3715 Benjamin I'm sure that there is a solution without the Smalltalk at:... Now that there is a NullSty

Re: [Pharo-project] Issue 3737 in pharo: Behavior>>allSubclasses comment does not match actual implementation

2011-03-01 Thread pharo
Updates: Status: closed Comment #4 on issue 3737 by stephane...@gmail.com: Behavior>>allSubclasses comment does not match actual implementation http://code.google.com/p/pharo/issues/detail?id=3737 (No comment was entered for this change.)

Re: [Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Henrik Johansen
Den 1. mars 2011 kl. 20:05 skrev Stéphane Ducasse : > see igor mail :) > > ioBeep{ >} > > does not beep :) > > On Mar 1, 2011, at 6:18 PM, Henrik Johansen wrote: > >> >> Btw, you changed >> DummySoundSystem class >> #initialize >>SoundService register: self. >> >> Why? >> >> This

[Pharo-project] doing an update now...

2011-03-01 Thread Stéphane Ducasse

[Pharo-project] Assert SystemWindow not visible

2011-03-01 Thread laurent laffont
Hi, I'm currently exploring ways of doing TDD on GUI. (Is there a framework for this ?) How can I know a window has been closed ? #visible always return true. self assert: (SystemWindow new openInWorld delete) visible not. fails. However this works but a bit "heavy": (SystemWindow labelled:

Re: [Pharo-project] Issue 3769 in pharo: Printing an object depends on #isKindOf:

2011-03-01 Thread pharo
Comment #2 on issue 3769 by stephane...@gmail.com: Printing an object depends on #isKindOf: http://code.google.com/p/pharo/issues/detail?id=3769 Yes we will remove them this is on my radar.

Re: [Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Stéphane Ducasse
see igor mail :) ioBeep{ } does not beep :) On Mar 1, 2011, at 6:18 PM, Henrik Johansen wrote: > > On Mar 1, 2011, at 4:49 39PM, Stéphane Ducasse wrote: > >> Hi >> >> Could we have the primitiveBeep beeping again? >> What was the reason to disable it? >> >> Stef > > > Prolly a mi

[Pharo-project] [COTDC] 22 - EditableTextMorphAnnouncement

2011-03-01 Thread laurent laffont
Today: EditableTextMorphAnnouncement 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, deprecate it. Results: http://code.google.com/p/phar

Re: [Pharo-project] [COTDC] 21 - DictionaryInspector

2011-03-01 Thread laurent laffont
Thanks Carlo and Noury. Laurent Laffont - @lolgzs Pharo Smalltalk Screencasts: http://www.pharocasts.com/ Blog: http://magaloma.blogspot.com/ On Tue, Mar 1, 2011 at 1:48 PM, Carlo wrote: > I provide a custom inspector for classes of type Dictionary. > These cus

Re: [Pharo-project] Is it possible to setup Russian fonts in Pharo + Cog VM?

2011-03-01 Thread Eliot Miranda
On Mon, Feb 28, 2011 at 7:33 PM, Dennis Schetinin wrote: > AFAIK, Cog VM does not allow to use system fonts. What makes you think that? Cog should be the same as the standard VM. At Teleplace, for example, they use Cog with the NativeFontPlugin without problems. > But still, is there a way

Re: [Pharo-project] Issue 3769 in pharo: Printing an object depends on #isKindOf:

2011-03-01 Thread pharo
Comment #1 on issue 3769 by nicolas@gmail.com: Printing an object depends on #isKindOf: http://code.google.com/p/pharo/issues/detail?id=3769 Anyway, you'll have to remove references to FakeClassPool. See #3704

[Pharo-project] Issue 3771 in pharo: avoid proposing a menu when nil is the doItReceiver of an interactive evaluation,

2011-03-01 Thread pharo
Status: FixedWaitingToBePharoed Owner: stephane...@gmail.com New issue 3771 by stephane...@gmail.com: avoid proposing a menu when nil is the doItReceiver of an interactive evaluation, http://code.google.com/p/pharo/issues/detail?id=3771 Name: Compiler-nice.187 Author: nice Time: 4 February 20

Re: [Pharo-project] Issue 3704 in pharo: remove FakeClassPool adopt: and its senders

2011-03-01 Thread pharo
Updates: Status: Fixed Comment #3 on issue 3704 by stephane...@gmail.com: remove FakeClassPool adopt: and its senders http://code.google.com/p/pharo/issues/detail?id=3704 (No comment was entered for this change.) Attachments: fullnameproblem.1.cs 1.2 KB

Re: [Pharo-project] Issue 3704 in pharo: remove FakeClassPool adopt: and its senders

2011-03-01 Thread pharo
Comment #2 on issue 3704 by stephane...@gmail.com: remove FakeClassPool adopt: and its senders http://code.google.com/p/pharo/issues/detail?id=3704 Name: Morphic-nice.519 Author: nice Time: 14 February 2011, 10:22:53.154 pm UUID: d83915ed-3966-4301-9439-0f94337843b6 Ancestors: Morphic-mtf.518

[Pharo-project] Issue 3770 in pharo: Gradient fills failure

2011-03-01 Thread pharo
Status: Accepted Owner: siguc...@gmail.com New issue 3770 by siguc...@gmail.com: Gradient fills failure http://code.google.com/p/pharo/issues/detail?id=3770 Modifications to Morphic gradients fail in current versions of Squeak (and Pharo). Using the halo menu to change the first or last color of

Re: [Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Esteban Lorenzano
yes... I just checked. I will collect all of this "absentees" to adding them as soon as possible. Please, keep reporting :) best, Esteban El 01/03/2011, a las 2:34p.m., Igor Stasenko escribió: > On 1 March 2011 18:18, Henrik Johansen wrote: >> >> On Mar 1, 2011, at 4:49 39PM, Stéphane Ducass

Re: [Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Igor Stasenko
On 1 March 2011 18:18, Henrik Johansen wrote: > > On Mar 1, 2011, at 4:49 39PM, Stéphane Ducasse wrote: > > Hi > > Could we have the primitiveBeep beeping again? > What was the reason to disable it? > > Stef > > > Prolly a missing prim in vm (surely the case if you do Beeper primitiveBeep > and he

Re: [Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Henrik Johansen
On Mar 1, 2011, at 4:49 39PM, Stéphane Ducasse wrote: > Hi > > Could we have the primitiveBeep beeping again? > What was the reason to disable it? > > Stef Prolly a missing prim in vm (surely the case if you do Beeper primitiveBeep and hear nothing), otherwise you have sound disabled. Can

Re: [Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Mariano Martinez Peck
I works here in VM: Mac OS - intel - 1066 - Croquet Closure Cog VM [CoInterpreter VMMaker-oscog.46] Croquet Cog 3.0.0 Image: Pharo1.2beta [Latest update: #12281] On Tue, Mar 1, 2011 at 4:49 PM, Stéphane Ducasse wrote: > Hi > > Could we have the primitiveBeep beeping again? > What was the reason

[Pharo-project] Mac VM 5.7b3 (21.0) Beeper primitiveBeep does not beep anymore

2011-03-01 Thread Stéphane Ducasse
Hi Could we have the primitiveBeep beeping again? What was the reason to disable it? Stef

Re: [Pharo-project] Issue 3737 in pharo: Behavior>>allSubclasses comment does not match actual implementation

2011-03-01 Thread pharo
Comment #3 on issue 3737 by marianopeck: Behavior>>allSubclasses comment does not match actual implementation http://code.google.com/p/pharo/issues/detail?id=3737 nooo I wanted him to do it ;)

[Pharo-project] Issue 3769 in pharo: Printing an object depends on #isKindOf:

2011-03-01 Thread pharo
Status: Accepted Owner: benjamin...@gmail.com New issue 3769 by benjamin...@gmail.com: Printing an object depends on #isKindOf: http://code.google.com/p/pharo/issues/detail?id=3769 Due to the method: SmalltalkEditor>>#printIt "Treat the current text selection as an expression; evalua

[Pharo-project] [update 1.3] #13068

2011-03-01 Thread stephane ducasse
13068 - Issue 3648: A "Stratified" proxy in smalltalk Stef

Re: [Pharo-project] Issue 3648 in pharo: A "Stratified" proxy in smalltalk

2011-03-01 Thread pharo
Updates: Status: Closed Comment #6 on issue 3648 by stephane...@gmail.com: A "Stratified" proxy in smalltalk http://code.google.com/p/pharo/issues/detail?id=3648 in 13068

Re: [Pharo-project] Issue 3728 in pharo: Changed MenuMorph references to go through UIManager default menuClass

2011-03-01 Thread pharo
Comment #8 on issue 3728 by fernando...@gmail.com: Changed MenuMorph references to go through UIManager default menuClass http://code.google.com/p/pharo/issues/detail?id=3728 ok, will do!

Re: [Pharo-project] Issue 3648 in pharo: A "Stratified" proxy in smalltalk

2011-03-01 Thread pharo
Updates: Labels: Milestone-1.3 Comment #5 on issue 3648 by stephane...@gmail.com: A "Stratified" proxy in smalltalk http://code.google.com/p/pharo/issues/detail?id=3648 (No comment was entered for this change.)

[Pharo-project] Issue 3768 in pharo: Deprecate String >> get/putInteger32:

2011-03-01 Thread pharo
Status: Accepted Owner: ryd...@gmail.com Labels: Milestone-1.3 New issue 3768 by ryd...@gmail.com: Deprecate String >> get/putInteger32: http://code.google.com/p/pharo/issues/detail?id=3768 String >> #getInteger32: & String >> #putInteger32:at: Previously used by Nebraska to send SmallInteger

Re: [Pharo-project] Issue 3737 in pharo: Behavior>>allSubclasses comment does not match actual implementation

2011-03-01 Thread pharo
Updates: Status: Fixed Labels: Milestone-1.3 Comment #2 on issue 3737 by stephane...@gmail.com: Behavior>>allSubclasses comment does not match actual implementation http://code.google.com/p/pharo/issues/detail?id=3737 allSubclasses "Answer an OrderedCollection of the receiver

Re: [Pharo-project] Issue 3728 in pharo: Changed MenuMorph references to go through UIManager default menuClass

2011-03-01 Thread pharo
Updates: Status: FixProposed Comment #7 on issue 3728 by stephane...@gmail.com: Changed MenuMorph references to go through UIManager default menuClass http://code.google.com/p/pharo/issues/detail?id=3728 (No comment was entered for this change.)

Re: [Pharo-project] Issue 3691 in pharo: Cleaning by comparing SimpleMorphic and Morphic

2011-03-01 Thread pharo
Updates: Status: Fixed Comment #4 on issue 3691 by stephane...@gmail.com: Cleaning by comparing SimpleMorphic and Morphic http://code.google.com/p/pharo/issues/detail?id=3691 Ok I will integrate that!

Re: [Pharo-project] Issue 3728 in pharo: Changed MenuMorph references to go through UIManager default menuClass

2011-03-01 Thread pharo
Updates: Cc: fernando22480 Comment #6 on issue 3728 by stephane...@gmail.com: Changed MenuMorph references to go through UIManager default menuClass http://code.google.com/p/pharo/issues/detail?id=3728 fernando can you have a look at that? Attachments: MenuMorph.1.cs 9.6 KB

Re: [Pharo-project] Issue 3718 in pharo: Color class>>wheel: should be (back) on class side

2011-03-01 Thread pharo
Comment #3 on issue 3718 by stephane...@gmail.com: Color class>>wheel: should be (back) on class side http://code.google.com/p/pharo/issues/detail?id=3718 Please add a changeset or slice so that we can integrate it

Re: [Pharo-project] Issue 3742 in pharo: MorphTreeMorph keyStroke: send Event object instead of Character

2011-03-01 Thread pharo
Updates: Status: closed Comment #7 on issue 3742 by stephane...@gmail.com: MorphTreeMorph keyStroke: send Event object instead of Character http://code.google.com/p/pharo/issues/detail?id=3742 already integrated

[Pharo-project] [update 1.3] #13067

2011-03-01 Thread Stéphane Ducasse
13067 - - Issue 3765: fixed printPadded. Thanks David Lewis. - Issue 3743: Fix Finder UI (add shortcuts and more commands). Thanks Benjmain van Ryseghem. - Issue 3761: overlappingPairsCollect: fails on OrderedCollections. Thanks guys :) | collection | collection := Or

Re: [Pharo-project] Issue 3762 in pharo: Refactor TextEditor >> dispatchOn:

2011-03-01 Thread pharo
Updates: Status: closed Comment #2 on issue 3762 by stephane...@gmail.com: Refactor TextEditor >> dispatchOn: http://code.google.com/p/pharo/issues/detail?id=3762 in 13067

Re: [Pharo-project] Issue 3761 in pharo: overlappingPairsCollect: fails on OrderedCollections

2011-03-01 Thread pharo
Updates: Status: Closed Comment #7 on issue 3761 by stephane...@gmail.com: overlappingPairsCollect: fails on OrderedCollections http://code.google.com/p/pharo/issues/detail?id=3761 in 13067

Re: [Pharo-project] Issue 3743 in pharo: Fix Finder UI (add shortcuts and more commands)

2011-03-01 Thread pharo
Updates: Status: closed Comment #13 on issue 3743 by stephane...@gmail.com: Fix Finder UI (add shortcuts and more commands) http://code.google.com/p/pharo/issues/detail?id=3743 in 13067. create a new report for following issues.

Re: [Pharo-project] Issue 3765 in pharo: fixed printPadded

2011-03-01 Thread pharo
Updates: Status: Closed Comment #1 on issue 3765 by stephane...@gmail.com: fixed printPadded http://code.google.com/p/pharo/issues/detail?id=3765 in 13067

Re: [Pharo-project] Issue 3766 in pharo: Lets fix this one (which is not broken)

2011-03-01 Thread pharo
Comment #1 on issue 3766 by stephane...@gmail.com: Lets fix this one (which is not broken) http://code.google.com/p/pharo/issues/detail?id=3766 oh igor what a baaddd spirit. This is not me that wrote that entry...

Re: [Pharo-project] [Esug-list] ***IMPORTANT***: Pharo consortium call for letter of intention

2011-03-01 Thread Mariano Martinez Peck
Are you accepting this letter in the Deep Smalltalk course? cheers Mariano On Tue, Mar 1, 2011 at 1:36 PM, Stéphane Ducasse wrote: > Dear Pharoers and Smalltalkers at large, > > We are pursuing an effort to bring Pharo to the next level: we will set up > a consortium of pharo users (university,

Re: [Pharo-project] [COTDC] 21 - DictionaryInspector

2011-03-01 Thread Carlo
I provide a custom inspector for classes of type Dictionary. These customizations are tools to interactively manipulate the Dictionary I'm inspecting and they are accessed in the context menu of the currently selected association. The customizations that I provide are as follows: inspect -> Cre

Re: [Pharo-project] Issue 3761 in pharo: overlappingPairsCollect: fails on OrderedCollections

2011-03-01 Thread pharo
Updates: Status: Fixed Labels: Milestone-1.3 Comment #6 on issue 3761 by stephane...@gmail.com: overlappingPairsCollect: fails on OrderedCollections http://code.google.com/p/pharo/issues/detail?id=3761 (No comment was entered for this change.)

[Pharo-project] ***IMPORTANT***: Pharo consortium call for letter of intention

2011-03-01 Thread Stéphane Ducasse
Dear Pharoers and Smalltalkers at large, We are pursuing an effort to bring Pharo to the next level: we will set up a consortium of pharo users (university, user groups) and industrial partners. Our goal is to build a legal infrastructure that will be able to sustain the development of Pharo a

[Pharo-project] Fwd: Pharo support

2011-03-01 Thread stephane ducasse
Begin forwarded message: > From: "Lorenzo Schiavina" > Date: February 25, 2011 8:25:30 AM GMT+01:00 > To: "stephane ducasse" > Subject: Re: Pharo support > > Generally speaking I am interested, but it depends on the consortium goals > and the amount of fee > > Lorenzo > - Original Messa

[Pharo-project] when a model is missing...

2011-03-01 Thread Stéphane Ducasse
Ring is the way to go. It may cost a bit of effort but the extensions possibly and building of new tools will be huge. Stef removedMethod: string with: chgRec | class tokens | tokens := Scanner new scanTokens: string. (tokens size = 3 and:[(tokens at: 2) == #removeSelect

Re: [Pharo-project] Issue 3761 in pharo: overlappingPairsCollect: fails on OrderedCollections

2011-03-01 Thread pharo
Comment #5 on issue 3761 by edoua...@gmail.com: overlappingPairsCollect: fails on OrderedCollections http://code.google.com/p/pharo/issues/detail?id=3761 Is #streamContents: better, or are there performance implications? overlappingPairsCollect: aBlock "Answer the result of evaluating aBlo

Re: [Pharo-project] Issue 3761 in pharo: overlappingPairsCollect: fails on OrderedCollections

2011-03-01 Thread pharo
Comment #4 on issue 3761 by ryd...@gmail.com: overlappingPairsCollect: fails on OrderedCollections http://code.google.com/p/pharo/issues/detail?id=3761 Yup, that is the same fix as was implemented in squeak: http://forum.world.st/The-Trunk-Collections-ul-430-mcz-td3329332.html

Re: [Pharo-project] Issue 3761 in pharo: overlappingPairsCollect: fails on OrderedCollections

2011-03-01 Thread pharo
Comment #3 on issue 3761 by gazzagu...@googlemail.com: overlappingPairsCollect: fails on OrderedCollections http://code.google.com/p/pharo/issues/detail?id=3761 Except that it would then fail if the receiver was an Array, for instance. The following should work though: overlappingPairsColle

Re: [Pharo-project] 1.2 one-click OSX and Linux: more failing tests

2011-03-01 Thread laurent laffont
On Tue, Mar 1, 2011 at 9:59 AM, Torsten Bergmann wrote: > >he problem is that I can't reproduce the behavior of Hudson built on my > >machine, especially for: > > Did you download "Pharo-1.2-AfterRunningTests.zip" from Hudson? > Yep. Laurent. > > Bye > T. > > > -- > GMX DSL Doppel-Flat ab 19,

[Pharo-project] 1.2 one-click OSX and Linux: more failing tests

2011-03-01 Thread Torsten Bergmann
>he problem is that I can't reproduce the behavior of Hudson built on my >machine, especially for: Did you download "Pharo-1.2-AfterRunningTests.zip" from Hudson? Bye T. -- GMX DSL Doppel-Flat ab 19,99 Euro/mtl.! Jetzt mit gratis Handy-Flat! http://portal.gmx.net/de/go/dsl

Re: [Pharo-project] [Hudson] News

2011-03-01 Thread Noury Bouraqadi
Thanx marcus for this continous improvements! On 28 févr. 2011, at 14:33, Marcus Denker wrote: > Hi, > > Slow but steady progress on the hudson infrastructure... > > 1) We have a Mac slave! > Alive and kicking, but not doing anything other then an hourly ping > https://pharo-ic.lille.i

Re: [Pharo-project] [COTDC] 21 - DictionaryInspector

2011-03-01 Thread Noury Bouraqadi
I'm the inspector of a dictionary :-) I provide some facility tools to interactively manipulate the inspected dictionary. Noury On 1 mars 2011, at 07:59, laurent laffont wrote: > Today: DictionaryInspector > > > Comment Of The Day Contest - One Day One Comment > Rules: > #1: Each day a not c

Re: [Pharo-project] 1.2 one-click OSX and Linux: more failing tests

2011-03-01 Thread Marcus Denker
On Mar 1, 2011, at 8:14 AM, laurent laffont wrote: > Marcus, > > the problem is that I can't reproduce the behavior of Hudson built on my > machine, especially for: > > MethodWrappers.Tests.ObjectAsOneTimeMethodWrapperTest.testInstallOnClassCategory > Tests.Release.ReleaseTest.testUndeclared

Re: [Pharo-project] Startup weekend success

2011-03-01 Thread Noury Bouraqadi
Great! Congratulations! Hope you'll present your app and the competition at ESUG next summer. It's important to let the community know about such successes. Best, Noury On 28 févr. 2011, at 15:33, Stephan Eggermont wrote: > In the weekend of 20 Feb. Diego Lont and I participated in Startup Weeken