Re: [Pharo-users] Trapping the Pharo window close event

2016-04-15 Thread Esteban A. Maringolo
Maybe he refers to the option to abort the close request programmatically in an event based approach. Something like that UI close event is handled and triggers a "QuitSmalltalkRequested" event (or announcement) with a boolean value holder as argument, if no one handling such event/announcement ve

Re: [Pharo-users] Turning off Growl notifications

2016-04-15 Thread Nicolai Hess
I think there is no easy way. At least I don't see a setting for this. 2016-04-15 17:20 GMT+02:00 kmo : > Is there an easy way to turn off the Growl notification > > Information - EvaluateCommandLineHandler successfully finished > > that comes up when an expression is evaluated on the command lin

Re: [Pharo-users] Trapping the Pharo window close event

2016-04-15 Thread Peter Uhnák
> > I did not really get it. Now I have the impression that changing the > method definition shows that Pharo does not > offer the correct possibility. > Am I correct? > I disagree. Closing the window should not decide on it's own whether the session should be saved. Asking the user is the right t

Re: [Pharo-users] List with Border

2016-04-15 Thread stepharo
I wish we could remove this self widget ifNotNil: but this is more complex than I would like. stef Le 14/4/16 21:10, Stephan Eggermont a écrit : On 14-04-16 16:53, peaslee wrote: I do not understand your answer. I am too new at this. ListModel is a subclass of AbstractWidgetModel. Abstra

Re: [Pharo-users] [ANN] Introspect web content (Soup with some GT extensions)

2016-04-15 Thread stepharo
This is a nice addition. I would like to do some HTML scraping again (as soon as I have the right to spend time hacking little programs :)). Stef Le 14/4/16 13:01, Torsten Bergmann a écrit : Hi, I added a few GT inspector extensions to Soup and cleaned up a little bit. Released as a new vers

Re: [Pharo-users] Trapping the Pharo window close event

2016-04-15 Thread stepharo
I did not really get it. Now I have the impression that changing the method definition shows that Pharo does not offer the correct possibility. Am I correct? Stef Le 14/4/16 20:58, Peter Uhnák a écrit : The closing is intercepted in PasteUpMorph>>windowEvent: from where this is called WorldS

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread stepharo
Yes it looks like :) Le 15/4/16 20:06, Thomas Heniart a écrit : Thanks a lot for your help Thierry, this is just perfect :D Cheers, Thomas 2016-04-15 19:08 GMT+02:00 Thierry Goubier >: Le 15/04/2016 18:49, Damien Pollet a écrit : On 15 April 20

Re: [Pharo-users] Hello World (found a RoelTyper Bug)

2016-04-15 Thread stepharo
Hello Diego Good initiative! RoelTyper is not a Moose project. It is just used in moose. Now it would be good to check a bit (RoelTyper was made to work on VisualWorks and Squeak/Pharo) and it would be nice to make sure that we do not need the VW specificities. RoelTyper is managed by RMoD so

Re: [Pharo-users] Constants and the Playground

2016-04-15 Thread stepharo
Le 15/4/16 18:28, Thibault Raffaillac a écrit : Hi, My work on OpenGL ES is almost done, Cool I'm curious if we could have an Athens backend based on it :) and I am now trying to play with it in the Playground. However, since constants are stored in a pool dictionary you have to create a

Re: [Pharo-users] Pharo-users Question about the symbols

2016-04-15 Thread stepharo
Good idea! Stef Le 8/4/16 09:49, Cyril Ferlicot Delbecque a écrit : On 08/04/2016 09:05, Henrik Nergaard wrote: | s1 s2 | s1 := 1234 asString. s2 := 1234 asString. s1 = s2. "true" s1 == s2. "false" s1 asSymbol = s2 asSymbol. "true" s1 asSymbol == s2 asSymbol. "true" (s1 class allInstances

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
Thanks a lot for your help Thierry, this is just perfect :D Cheers, Thomas 2016-04-15 19:08 GMT+02:00 Thierry Goubier : > Le 15/04/2016 18:49, Damien Pollet a écrit : > >> On 15 April 2016 at 17:39, Thierry Goubier > > wrote: >> >> And then you can load your

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thierry Goubier
Le 15/04/2016 18:49, Damien Pollet a écrit : On 15 April 2016 at 17:39, Thierry Goubier mailto:thierry.goub...@gmail.com>> wrote: And then you can load your project with: Metacello new baseline: 'YourTribes'; repository: 'gitfiletree://github.com/HappyPharoHackers/Your

Re: [Pharo-users] Hello World (found a RoelTyper Bug)

2016-04-15 Thread Diego Orellana
Hi Vincent! Thanks for the answer, I'll ask in the moose-dev mailing list what can be done about it, and of course I've made an unit test that checks the bug is gone :D Cheers, Diego. 2016-04-14 12:50 GMT-03:00 Blondeau Vincent : > Hi Diego, > > > > First: welcome! > > > > RoelTyper makes indee

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Damien Pollet
On 15 April 2016 at 17:39, Thierry Goubier wrote: > And then you can load your project with: > > Metacello new > baseline: 'YourTribes'; > repository: 'gitfiletree://github.com/HappyPharoHackers/YourTribes'; > load: #(tests) > So this does the clone directly from github? YAY :D

[Pharo-users] Constants and the Playground

2016-04-15 Thread Thibault Raffaillac
Hi, My work on OpenGL ES is almost done, and I am now trying to play with it in the Playground. However, since constants are stored in a pool dictionary you have to create a class importing it to encapsulate your OpenGL calls, so cannot just write snippets in Playground. This is very annoying f

[Pharo-users] Turning off Growl notifications

2016-04-15 Thread kmo
Is there an easy way to turn off the Growl notification Information - EvaluateCommandLineHandler successfully finished that comes up when an expression is evaluated on the command line? -- View this message in context: http://forum.world.st/Turning-off-Growl-notifications-tp4890227.html Sent

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thierry Goubier
Hi Thomas, 2016-04-15 17:19 GMT+02:00 Thomas Heniart : > I have another question question > > My project is now perfectly loaded > > Assuming that I want to work from this image, how can I commit, push to my > repository without using Git command lines or a Git desktop client > > I've seen some t

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
I have another question question My project is now perfectly loaded Assuming that I want to work from this image, how can I commit, push to my repository without using Git command lines or a Git desktop client I've seen some threads about GitFileTree but I don't understand how to use it :/ Chee

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
2016-04-15 15:59 GMT+02:00 Esteban Lorenzano : > you are not saving the image after eval: > > Works perfectly :) > ./pharo Pharo.image eval --save “ > Metacello new > baseline: #YourTribes; > repository: 'github://HappyPharoHackers/YourTribes'; >

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Esteban Lorenzano
you are not saving the image after eval: ./pharo Pharo.image eval --save “ Metacello new baseline: #YourTribes; repository: 'github://HappyPharoHackers/YourTribes'; load: #(tests)" (also your line has a syntax error but I suppose that’s a

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thierry Goubier
Hi Thomas, 2016-04-15 15:51 GMT+02:00 Thomas Heniart : > Hello, > > I tried this: > ./pharo Pharo.image eval "Metacello new baseline: #YourTribes; repository: > 'github://HappyPharoHackers/YourTribes; load: #(tests)' > You need to ask your eval to save the image with: eval --save Thierry > >

[Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
Hello, I tried this: ./pharo Pharo.image eval "Metacello new baseline: #YourTribes; repository: 'github://HappyPharoHackers/YourTribes; load: #(tests)' It seems to load everything but unfortunately when I open the image, I don't see my packages And when I evaluate the Metacello expression in the

[Pharo-users] Setting the pharo window title from command line

2016-04-15 Thread kmo
I want to change the title of the pharo window to "My Example Application' but the -title command line option does not seem to allow spaces in the title string. I have tried single quotes and double quotes but I always get an error if I try to set the title to more than a singe word. I have been r

[Pharo-users] [Bug] Sometime RPackage is desync with the system

2016-04-15 Thread Yann Dubois
Hello, I loaded a repo', and later, I wanted to look my changes between my current repo' and the repo' that has been loaded. And I have this message : KeyNotFound: key #aDeletedMethod not found in MethodDirectory