Re: [Pharo-dev] Did we lose edit-in-place in GT Inspector in Pharo 6?

2017-03-11 Thread Tudor Girba
Hi, Indeed, this feature is temporarily not available due to the move to FastTable, but we are working on adding it back. Doru > On Mar 12, 2017, at 3:36 AM, Sean P. DeNigris wrote: > > Double clicking on a value in the raw tab seems to have no effect. > > p.s I

[Pharo-dev] Did we lose edit-in-place in GT Inspector in Pharo 6?

2017-03-11 Thread Sean P. DeNigris
Double clicking on a value in the raw tab seems to have no effect. p.s I asked twice in Discord with no response. I guess I'm finally getting old enough that I don't understand how to use new platforms ;) - Cheers, Sean -- View this message in context:

Re: [Pharo-dev] [Pharo-users] What is the craziest bug you ever face

2017-03-11 Thread John Brant
> On Mar 9, 2017, at 12:50 PM, stepharong wrote: > > The idea is that we want to see how we cn improve our debugging arsenal. > So it is important that your scenario give use some hints. > It is difficult to convey what we are really looking for :) I think one of the

Re: [Pharo-dev] Why do we have doublequoting for "?

2017-03-11 Thread Tudor Girba
Hi Stef, I am still thinking about this point, but I do not have an intelligent answer yet. I just wanted to say that I did not forget it :). Cheers, Doru > On Feb 26, 2017, at 11:16 PM, stepharong wrote: > > I hate my mail client > Apparently I wrote email to

Re: [Pharo-dev] 60437 empty catalog

2017-03-11 Thread Ben Coman
On Sat, Mar 11, 2017 at 10:41 PM, David T. Lewis wrote: > On Sat, Mar 11, 2017 at 10:14:58PM +0800, Ben Coman wrote: >> Anyone else getting an empty Catalog? >> >> In 60437 & CoInterpreter * VMMaker.oscog-eem.2143 uuid: >> fe064b6b-e530-4766-837d-799ffe1e8dcd Mar 3 2017 >>

Re: [Pharo-dev] 60437 empty catalog

2017-03-11 Thread David T. Lewis
On Sat, Mar 11, 2017 at 10:14:58PM +0800, Ben Coman wrote: > Anyone else getting an empty Catalog? > > In 60437 & CoInterpreter * VMMaker.oscog-eem.2143 uuid: > fe064b6b-e530-4766-837d-799ffe1e8dcd Mar 3 2017 > (i386itimer-201703031554.zip) > > Sorry I'm too tired to bisect it myself right

[Pharo-dev] 60437 empty catalog

2017-03-11 Thread Ben Coman
Anyone else getting an empty Catalog? In 60437 & CoInterpreter * VMMaker.oscog-eem.2143 uuid: fe064b6b-e530-4766-837d-799ffe1e8dcd Mar 3 2017 (i386itimer-201703031554.zip) Sorry I'm too tired to bisect it myself right now. (Just spent 10 hours sanding the wooden floors of my brothers house)

Re: [Pharo-dev] Debugger: is there a way to skip a message?

2017-03-11 Thread Ben Coman
On Sat, Mar 11, 2017 at 4:20 AM, stepharong wrote: > Hi > > I need to skip message while debugging and I thought that it was possible. > May be I do not see it. This would be a nice feature. I never noticed if we ever had it Two work arounds I sometimes use... * select rest

[Pharo-dev] what is the SpecLayout architecture?

2017-03-11 Thread Peter Uhnak
Hi, this is probably a tall order, but is there some description of SpecLayout architecture? To clarify: I am NOT asking how to use SpecLayout, I am asking how SpecLayout works internally. iirc SpecInterpreter was rewritten by Johan & Stef, so maybe you guys have some notes? Thanks, Peter

Re: [Pharo-dev] Fwd: Where are the Metacello ConfigurationOfYourProject supposed to be?

2017-03-11 Thread Peter Uhnak
On Sat, Mar 11, 2017 at 09:12:55PM +0800, Ben Coman wrote: > On Sat, Mar 11, 2017 at 1:34 AM, stepharong wrote: > > Nicolas > > Since a couple of years already we have one MetaRepo per version > > > > MCSmalltalkhubRepository owner: 'Pharo' project: 'MetaRepoForPharo60' >

Re: [Pharo-dev] Mini Pharo -> JavaScript translator?

2017-03-11 Thread Ben Coman
On Sat, Mar 11, 2017 at 1:16 PM, H. Hirzel wrote: > http://www.squeaksource.com/@xxu3r2Ma7SbqJi3E/1j-SgMCf (74000 downloads). Hi Hannes, That link doesn't work. You need to pick the html one under "Links" heading half way down the project page. cheers -ben

Re: [Pharo-dev] image not opening.

2017-03-11 Thread Ben Coman
Maybe related? http://forum.world.st/BUG-A-problem-with-callbacks-that-shows-up-in-64bits-but-is-on-32bits-too-td4938152.html On Sat, Mar 11, 2017 at 2:22 AM, Cyril Ferlicot wrote: > > On ven. 10 mars 2017 at 18:42, stepharong wrote: >> >> We found

Re: [Pharo-dev] Fwd: Where are the Metacello ConfigurationOfYourProject supposed to be?

2017-03-11 Thread Ben Coman
On Sat, Mar 11, 2017 at 1:34 AM, stepharong wrote: > Nicolas > Since a couple of years already we have one MetaRepo per version > > MCSmalltalkhubRepository owner: 'Pharo' project: 'MetaRepoForPharo60' > user: 'StephaneDucasse' password: '' > MCSmalltalkhubRepository

Re: [Pharo-dev] PharoSpur32Vm

2017-03-11 Thread Nicolas Cellier
Hi Nicolai, If you look at appveyor.yml configuration on https://github.com/OpenSmalltalk/opensmalltalk-vm/blob/Cog/.appveyor.yml, you will see that the pharo brand is not yet in the matrix. It's because builds are based on cygwin, but as I understood, some library used by some plugin required

Re: [Pharo-dev] Debugger: is there a way to skip a message?

2017-03-11 Thread Tudor Girba
Ah, I got it. It is not supported at the moment and as far as I know, it was not supported in the SpecDebugger either. But, it would definitely be an interesting thing to have. Doru > On Mar 11, 2017, at 9:24 AM, Nicolas Cellier > wrote: > > Hi Stef, I

Re: [Pharo-dev] Debugger: is there a way to skip a message?

2017-03-11 Thread Nicolas Cellier
Hi Stef, I guess what you want is something like: 1) step into 2) then return entered value like 'self'? but in a single action. 2017-03-11 8:18 GMT+01:00 Tudor Girba : > Hi Stef, > > I am not sure I understand what you mean by "skip a messageā€. Is it > different then