Re: [Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread stepharo
+1 DrGeo is cool Stef On 14/5/14 15:56, Goubier Thierry wrote: Le 14/05/2014 15:38, Hilaire Fernandes a écrit : Thanks Thierry. This one I really can't discover it. Oh you could like I did: spending ages looking at the Browser, Nautilus and OmniBrowser code ;) Keep up the good work with

Re: [Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Hilaire Fernandes
Le 14/05/2014 15:56, Goubier Thierry a écrit : > Le 14/05/2014 15:38, Hilaire Fernandes a écrit : >> Thanks Thierry. >> This one I really can't discover it. > > Oh you could like I did: spending ages looking at the Browser, Nautilus > and OmniBrowser code ;) Yes, I guess. Asking to the list has

Re: [Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Goubier Thierry
Le 14/05/2014 15:38, Hilaire Fernandes a écrit : Thanks Thierry. This one I really can't discover it. Oh you could like I did: spending ages looking at the Browser, Nautilus and OmniBrowser code ;) Keep up the good work with DrGeo: it's really one of the "flagship" Pharo apps that I talk

Re: [Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Hilaire Fernandes
Thanks Thierry. This one I really can't discover it. Hilaire Le 14/05/2014 14:44, Goubier Thierry a écrit : > SystemAnnouncer uniqueInstance weak on: MethodAdded send: #update: to: > self domain. -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Goubier Thierry
Hi Hilaire, you can track the system announcements MethodModified and MethodAdded; they are browser independent (but then you need to filter to see it relates to the method you are interested in). SystemAnnouncer uniqueInstance weak on: MethodAdded send: #update: to: self domain. Thierry

[Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Hilaire Fernandes
Now I wonder how can I get noticed when code was edited and compiled from a Nautilus window. Previously I was doing: browser addDependent: self domain. and DrGeo received notice in the domain objet through the #update: method. It does not work anymore. How to do it now? Thanks Hilair