Re: [Pharo-users] Minimal browser

2014-05-15 Thread Hilaire Fernandes
Good evening, Le 15/05/2014 10:40, Goubier Thierry a écrit : > Would you need the script to hide the fact it is a method or not? I.e. > make it DSL-Like and hide the method header and its parameters? For now, it should have the method name to let the user define keyword script message. But this

Re: [Pharo-users] Minimal browser

2014-05-15 Thread Nicolai Hess
With Spec, it is really easy to make some simple widgets: "you have a class and a method?" class:=Morph. method:=class>>#openInWorld. "want some textmorp?" code := TextModel new. code text:method sourceCode. "with styling?" code aboutToStyle:true. "in context of the class" code behavior:class. "do

Re: [Pharo-users] Minimal browser

2014-05-15 Thread Goubier Thierry
Le 15/05/2014 09:29, Hilaire Fernandes a écrit : Thierry, I was not aware it could be that short. Yes it will be nice. All in all: - one GUI tool to edit an existing script (so no visibility on the other methods of the class) Hilaire, Would you need the script to hide the fact it is a metho

Re: [Pharo-users] Minimal browser

2014-05-15 Thread Hilaire Fernandes
Thierry, I was not aware it could be that short. Yes it will be nice. All in all: - one GUI tool to edit an existing script (so no visibility on the other methods of the class) - one GUI tool to create a method (with visibility to the other method of the class, as possible examples) Hilaire Le

Re: [Pharo-users] Minimal browser

2014-05-15 Thread Goubier Thierry
Le 14/05/2014 20:31, Hilaire Fernandes a écrit : Could be yes. Needed action is editing&recompiling code and creating new method in a given class as shown in the screenshot from DrGeo 13.10: even this one is a temporary solution because still too much is exposed to the user as the class/instanc

Re: [Pharo-users] Minimal browser

2014-05-14 Thread stepharo
It needs to be improved (mainly missing menus actions). check the Ondo package in MCHttpRepository location: 'http://smalltalkhub.com/mc/StephaneDucasse/PetitsBazars/main' user: '' password: '' I did two experiences (I wanted to see if I could build a browser only using announcem

Re: [Pharo-users] Minimal browser

2014-05-14 Thread Hilaire Fernandes
Hi Stef, It will be great, now I try to get this list down http://bug.drgeo.eu. In the meantime, I updated the script related methods to use plain Nautilus. Thanks Hilaire Le 14/05/2014 12:26, stepharo a écrit : > I did a small browser called ondoBrowser we could work together to make > it simp

Re: [Pharo-users] Minimal browser

2014-05-14 Thread Robert Shiplett
I volunteer as a test user for this mini-B and DrGeo ! - Windows XP and 7 - various Linux DrGeo rules ! On 14 May 2014 07:26, stepharo wrote: > > Hello, >> >> With Pahro 1.4, >> >> Browser newOnClass: Number selector: #+ >> >> use to open a minimal browser on the selected method (btw, it is

Re: [Pharo-users] Minimal browser

2014-05-14 Thread stepharo
Hello, With Pahro 1.4, Browser newOnClass: Number selector: #+ use to open a minimal browser on the selected method (btw, it is broken now) With: Nautilus newOnClass: Number selector: #+ I get a full browser on the method. Is it possible to have a minimal browser with Nautilus? I need it i

[Pharo-users] Minimal browser

2014-05-14 Thread Hilaire Fernandes
Hello, With Pahro 1.4, Browser newOnClass: Number selector: #+ use to open a minimal browser on the selected method (btw, it is broken now) With: Nautilus newOnClass: Number selector: #+ I get a full browser on the method. Is it possible to have a minimal browser with Nautilus? I need it in D