[Pharo-users] How to intercept every instance variable write on all objects

2019-01-31 Thread Petr Fischer via Pharo-users
--- Begin Message --- Hello, is possible to intercept (before writeú all instance variable writes on every existing objects? I found a discussion here: http://forum.world.st/Is-it-possible-to-follow-an-object-through-a-computation-td5092459.html Known solutions: 1) jugglery with object read o

Re: [Pharo-users] Corrupted fonts in P7 after loading Glamorous Toolkit

2019-01-31 Thread Tim Mackinnon
As an observation that might help with this - I’ve not been able to recreate the corruption after I had re-saved the image and cured the original corruption. I will go back to my original starting image and see if I can corrupt it from there (previously I had been able to). So I’m not sure why

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread David Richards
Very excellent. Thanks Sven. On Thu, 31 Jan 2019 at 08:44, Sven Van Caekenberghe wrote: > Even simpler: > > Just inspect: > > Integer>>#factorial. > > and one of the tabs is the source code. > > You can also do: > > (Integer>>#factorial) browse. > > > On 31 Jan 2019, at 17:38, Cyril Ferlico

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread David Richards
Thanks Hernán and Cyril. Although I've been a programmer since 1977, with professional experience in functional and object-oriented development, I'm a total newcomer to the Pharo/ST ecosystem. Your replies are much appreciated. David On Thu, 31 Jan 2019 at 08:38, Cyril Ferlicot wrote: > > > On

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread Sven Van Caekenberghe
Even simpler: Just inspect: Integer>>#factorial. and one of the tabs is the source code. You can also do: (Integer>>#factorial) browse. > On 31 Jan 2019, at 17:38, Cyril Ferlicot wrote: > > > > On Thu, Jan 31, 2019 at 5:23 PM David Richards > wrote: > Thanks Hernán. > > Small

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread Cyril Ferlicot
On Thu, Jan 31, 2019 at 5:23 PM David Richards < david.i.richards@gmail.com> wrote: > Thanks Hernán. > > Smalltalk tools browser open. > > This code expression is helpful to see and understand. > > My question goes further however -- to how we can open the browser to > display a specifie

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread Hernán Morales Durand
Hi David, You can open the browser on a method using #openOnMethod: Smalltalk tools browser openOnMethod: (Integer>>#factorial) Cheers, Hernán El jue., 31 ene. 2019 a las 13:23, David Richards (< david.i.richards@gmail.com>) escribió: > Thanks Hernán. > > Smalltalk tools browser op

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread David Richards
Thanks Hernán. Smalltalk tools browser open. This code expression is helpful to see and understand. My question goes further however -- to how we can open the browser to display a specified method of a specified class (e.g. the 'factorial' method of class 'Integer'). David On Thu, 31 Jan

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread Hernán Morales Durand
Hi David, This is the way: Smalltalk tools browser open. Cheers, Hernán El jue., 31 ene. 2019 a las 8:57, David Richards (< david.i.richards@gmail.com>) escribió: > From 2018-09-29-UpdatedPharoByExample.pdf page 20: > > [image: image.png] > > How to do this with Calypso? > > Smalltalk

[Pharo-users] Opening a System Browser

2019-01-31 Thread David Richards
>From 2018-09-29-UpdatedPharoByExample.pdf page 20: [image: image.png] How to do this with Calypso? Smalltalk tools openClassBrowser ...?... Thanks.

Re: [Pharo-users] LibGit error at start up

2019-01-31 Thread Hilaire
I should add the host is Linux 64bits, configured with 32 bits libraries, and DrGeo/32bits was running fine so far (version of June 2018 with P7 32bits image and VM of then). It should not be related to the issue. Le 31/01/2019 à 10:29, Hilaire a écrit : > I downloaded separately stable P7.0 32 bi

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-01-31 Thread Sven Van Caekenberghe
All my packages work on Pharo 6, 6.1 and 7 (and 8) without any changes. YMMV. > On 31 Jan 2019, at 11:05, tomo wrote: > > Hernan, > >> Yes, ideally my package will work on both versions, Pharo 6 and Pharo 7. >> The first option was about splitting MyPackage into MyPackage-Common, >> MyPackage-P

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-01-31 Thread tomo
Hernan, > Yes, ideally my package will work on both versions, Pharo 6 and Pharo 7. > The first option was about splitting MyPackage into MyPackage-Common, > MyPackage-Pharo6 and > MyPackage-Pharo7 with corresponding methods/classes moved. In my project, I migrated MyPackage into Pharo 7, and cre

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-01-31 Thread Guillermo Polito
Well, I've said it somewhere in the mail, probably got lost in all my blablbla, so I'll summarize. - I use tags to identify releases. - A same release works in Pharo6 and Pharo7 - In the baseline I have defined some conditional package that is loaded in Pharo6 that provides compatibility from P

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-01-31 Thread Hernán Morales Durand
Hi Guillermo El jue., 31 ene. 2019 a las 6:08, Guillermo Polito (< guillermopol...@gmail.com>) escribió: > Hi Hernán, > > On Thu, Jan 31, 2019 at 8:20 AM Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > >> I would like your advice on this: What's the effortless way to migrate >> Githu

[Pharo-users] LibGit error at start up

2019-01-31 Thread Hilaire
Hi, I downloaded separately stable P7.0 32 bits image and linux VM. When I fire up, I got this start up error related to Git (which I do not use), see log. It looks like reproducible problem. On the CLI, there is a funny error message "file too short": hilaire@PCHome:~/Travaux/Developpement/Dr

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-01-31 Thread Guillermo Polito
Hi Hernán, On Thu, Jan 31, 2019 at 8:20 AM Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > I would like your advice on this: What's the effortless way to migrate > Github repository from Pharo 6 to Pharo 7? > Can you give us some more detail? Do you already have your project in github

Re: [Pharo-users] [Pharo-dev] [ANN] Pharo open documentation

2019-01-31 Thread Norbert Hartl
Very good initiative! Did you talk about the catalog, too? This list somehow mirrors the catalog. And as it is done in markdown it does not easily work as a parsable document, does it? Norbert > Am 30.01.2019 um 15:00 schrieb Cyril Ferlicot : > > Hi everyone! > > With some other members of t

Re: [Pharo-users] Fwd: startup error in windows 10

2019-01-31 Thread Hilaire
Le 31/01/2019 à 01:58, Ben Coman a écrit : > Maybe not critical. Just trying to get coverage.  Agree > If two people download the same binary and get different results, then > its something different in the environment The situation is a bit different. According to the user description, Dr. Geo was

Re: [Pharo-users] Fwd: startup error in windows 10

2019-01-31 Thread Hilaire
Hi Benoit, You seems to describe another problem I am not sure to understand. Is it related to the encoding of your name in the path of your system? Does it look to your related to these bugs: https://bugs.launchpad.net/drgeo/+bug/1468205 https://bugs.launchpad.net/drgeo/+bug/1412834 ? Thank