[Pharo-users] tinychat

2015-04-21 Thread stepharo
Hi just finished to translate our tinychat tutorial in english http://sdmeta.gforge.inria.fr/Teaching/TinyChat/ Stef

Re: [Pharo-users] SDL2 and fork

2015-04-21 Thread Esteban Lorenzano
> On 20 Apr 2015, at 22:47, Nicolai Hess wrote: > > > > 2015-04-20 16:56 GMT+02:00 Alexandre Bergel >: > I see the point, but SDL seems to be pretty stable isn’t it? > Only two versions are reported on their website (1.2 and 2.0). Maybe it would > be better t

Re: [Pharo-users] SDL2 and fork

2015-04-21 Thread Esteban Lorenzano
> On 20 Apr 2015, at 23:30, Nicolai Hess wrote: > > > 2015-04-20 14:20 GMT+02:00 Esteban Lorenzano >: > Hi, > > I just committed my prototype/experiment for windows with OSWindow, SDL2 and > Athens. > to check them: > > Gofer it > smalltalkhubUser: 'Pha

Re: [Pharo-users] SDL2 and fork

2015-04-21 Thread Esteban Lorenzano
> On 21 Apr 2015, at 02:12, Sean P. DeNigris wrote: > > Sean P. DeNigris wrote >> VM latest > > That's odd... I opened the image with the latest VM and still got "Error: > Failed to find SDL2 library" even though I can see libSDL2-2.0.0.dylib in > the Plugins folder it should be ok… at least i

Re: [Pharo-users] SDL2 and fork

2015-04-21 Thread Sean P. DeNigris
#40609 + latest VM + 40 sources - works on OS X 10.9.5 - can't find SDL2 library on OS X 10.8.5 - Cheers, Sean -- View this message in context: http://forum.world.st/SDL2-and-fork-tp4818623p4820797.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] SDL2 and fork

2015-04-21 Thread Sean P. DeNigris
EstebanLM wrote > stable vm is from march 25 so it will be no difference between stable and > latest right now In http://files.pharo.org/vm/pharo/mac/ : Stable: 1. stable.zip 9/2014 2. stable-20150325.zip 3/2015 3. stable-20150403.zip 4/15 4. Pharo-VM-mac-stable.zip one day earlier than #1 Lates

Re: [Pharo-users] SDL2 and fork

2015-04-21 Thread Esteban Lorenzano
> On 21 Apr 2015, at 13:22, Sean P. DeNigris wrote: > > EstebanLM wrote >> stable vm is from march 25 so it will be no difference between stable and >> latest right now > > In http://files.pharo.org/vm/pharo/mac/ : > > Stable: > 1. stable.zip 9/2014 > 2. stable-20150325.zip 3/2015 > 3. stable-

Re: [Pharo-users] tinychat

2015-04-21 Thread Sean P. DeNigris
stepharo wrote > Hi just finished to translate our tinychat tutorial in english Cool! Is it on github like the book chapters? I want to fix a few words still in French... - Cheers, Sean -- View this message in context: http://forum.world.st/tinychat-tp4820781p4820807.html Sent from the Pha

[Pharo-users] Pharo is too much fun!

2015-04-21 Thread Sean P. DeNigris
The problem with Pharo is sometimes it's too much fun to play with objects. I could've just renamed my 5 classes via copy/paste, but I couldn't resist... classes := Smalltalk organization classesInCategory: packageName. classes do: [ :cls | | newName | newName := newPrefix, (cls name allBut

Re: [Pharo-users] tinychat

2015-04-21 Thread stepharo
Le 21/4/15 15:29, Sean P. DeNigris a écrit : stepharo wrote Hi just finished to translate our tinychat tutorial in english Cool! Is it on github like the book chapters? I want to fix a few words still in French... Yes it is in FunWithPharo on github and thanks for the editing pass. I was in

[Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Sebastian Heidbrink
Hi all! I asked this question on the Moose list already ,but it seems nobody can help me there. I would liek to deploy a pharo app based on Glamour and Roassal as a "hands on demo". I was told Damien's Pharo launcher is currently somehow the reference implementation for a "fullscreen" phar

Re: [Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Thierry Goubier
Hi Sebastian, there is a top-level approach to do that via Morphic, which is to call openFullScreen in a StandardWindow instance. If you can get a hold of the top-level window of your Glamour before it opens, then you just have to send openFullScreen to it. SpecWindow inherit from StandardWindow,

Re: [Pharo-users] tinychat

2015-04-21 Thread Sean P. DeNigris
stepharo wrote > Yes it is in FunWithPharo on github and thanks for the editing pass. No problem. I just committed the fixes. - Cheers, Sean -- View this message in context: http://forum.world.st/tinychat-tp4820781p4820832.html Sent from the Pharo Smalltalk Users mailing list archive at Na

Re: [Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Sebastian Heidbrink
Hi Thierry, This does somehow not really work. I get an error due to the fact that a BrickWrapper's state is undefined and therefore does not understand "isOnParent". So this is why I thought there must be a different way for GLMSystemWindow or other non SPEC windows. I'll check with the M

Re: [Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Andrei Chis
Hi Sebastian, Can you give us more info about the error that you are getting and maybe a way to reproduce it. Cheers, Andrei On Tue, Apr 21, 2015 at 4:28 PM, Sebastian Heidbrink wrote: > Hi Thierry, > > This does somehow not really work. > I get an error due to the fact that a BrickWrapper's

Re: [Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Sebastian Heidbrink
Hi Chris, this is the basic idea. One will have to find the right instance. In my case this is executed suring the startup process while there are no windows opened. | browser | browser := GLMTabulator new. browser openOn: ($a to: $d). GLMSystemWindow allInstances first open

Re: [Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Andrei Chis
Why not execute this code: | browser | browser := GLMTabulator new. (browser openOn: ($a to: $d)) openFullscreen. When calling 'GLMSystemWindow allInstances first' you must have only a single window in the system (including windows that have been closed but not garbaged collected). Cheers, Andre

Re: [Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Sebastian Heidbrink
Hi again! well this is weird. I tried it and it worked! My tool now also starts in fullscreen mode. Well then I assume ther emust have been something reinitialiyed while doing your Example browser test. That is weird. Well, then forget the whole thread! Everything is fine and I might just hav

[Pharo-users] Wrong slave for CI job

2015-04-21 Thread Serge Stinckwich
I add a new CI job here:https://ci.inria.fr/pharo-contribution/job/Cormas/ bu every time I try to run the job, the job is executed on a pharo-contribution-raspberrypi-linux slave and fails ... I try to change the node without success ... -- Serge Stinckwich UCBN & UMI UMMISCO 209 (IRD/UPMC) Every

Re: [Pharo-users] [Bulk] Re: Fwd: Fwd: Debris' Quuve - Technologies used

2015-04-21 Thread Mariano Martinez Peck
Hi Stef, Similar to what Yanni said, 99% of our extensions are to Magritte-Seaside, not to magritte core itself. I honestly see Magritte as a very small and super extensible framework from which you can build your own on top of it. Like QCMagritte. Or likely what Yanni did, or likely what we did.

Re: [Pharo-users] Wrong slave for CI job

2015-04-21 Thread Blondeau Vincent
Hi, In the configuration of your job, you should add in the configuration matrix the slaves on which your job should be executed. Click on add axis, and choose "Slaves" to add it. After you have to choose one label. I think that "32" is nice for a standard job. Best, Vincent Blondeau -Mess

Re: [Pharo-users] Wrong slave for CI job

2015-04-21 Thread Serge Stinckwich
Thank you Vincent. I add the Slaves axis in the configuration and select 32, but the job is still running on raspberry pi ... On Tue, Apr 21, 2015 at 5:30 PM, Blondeau Vincent wrote: > Hi, > > In the configuration of your job, you should add in the configuration matrix > the slaves on which you

Re: [Pharo-users] Wrong slave for CI job

2015-04-21 Thread Blondeau Vincent
Indeed, but it seems that is not the main problem. As you use a configuration matrix, you should go inside one "cell" to see the real problem. For example, go to: https://ci.inria.fr/pharo-contribution/job/Cormas/PHARO=40,VERSION=development,VM=vm,label=32/8/console You will see that the job tries

[Pharo-users] Time traveling Pharo

2015-04-21 Thread Johan Fabry
Hi all, finally having some time to develop again, I downloaded the 4.0 image sources and vm (http://files.pharo.org/get-files/40/pharo.zip et cetera) through the links on the downloads page. It’s a bit strange that the image version is 5000, but OK I can understand it. More funny is the time

Re: [Pharo-users] Time traveling Pharo

2015-04-21 Thread Marcus Denker
This is not correct… can you enter an issue? > On 21 Apr 2015, at 19:07, Johan Fabry wrote: > > Hi all, > > finally having some time to develop again, I downloaded the 4.0 image sources > and vm (http://files.pharo.org/get-files/40/pharo.zip et cetera) through the > links on the downloads pag

Re: [Pharo-users] Time traveling Pharo

2015-04-21 Thread Johan Fabry
Time travel is not a bug, it’s a feature! ;-) https://pharo.fogbugz.com/f/cases/15376/Pharo-4-0-sais-it-s-5-0-in-the-about-window > On Apr 21, 2015, at 14:11, Marcus Denker wrote: > > This is not correct… can you enter an issue? > >> On 21 Apr 2015, at 19:07, Johan Fabry wrote: >> >> Hi all

Re: [Pharo-users] deploying a desktop GUI based image

2015-04-21 Thread Hilaire
Hi Sebastian, You may want to look at the DrGeo desktop application. There is no documentation but you can dig in the DrGeoInstaller class[1] and the shell build script[2] [1] http://smalltalkhub.com/#!/~HilaireFernandes/DrGeo [2] http://bazaar.launchpad.net/~drgeo-developers/drgeo/trunk/files/h

Re: [Pharo-users] [Bulk] Re: Fwd: Fwd: Debris' Quuve - Technologies used

2015-04-21 Thread stepharo
Le 21/4/15 18:26, Mariano Martinez Peck a écrit : Hi Stef, Similar to what Yanni said, 99% of our extensions are to Magritte-Seaside, not to magritte core itself. I honestly see Magritte as a very small and super extensible framework from which you can build your own on top of it. Like QCMa

Re: [Pharo-users] [Bulk] Re: Fwd: Fwd: Debris' Quuve - Technologies used

2015-04-21 Thread Cameron Sanders via Pharo-users
--- Begin Message --- Magritte could be improved to allow a context of usage to be specified e.g. #tableReport, or #editor, and then allow class designers to specify the pairs of keys for CSS style to be written for the context. We'll follow up on this point soon. Seaside could accept more renderi

Re: [Pharo-users] [Bulk] Re: Fwd: Fwd: Debris' Quuve - Technologies used

2015-04-21 Thread stepharo
thanks for the explanation. Le 22/4/15 08:41, Cameron Sanders via Pharo-users a écrit :

[Pharo-users] You love success stories, us too

2015-04-21 Thread stepharo
Hi guys http://pharo.org/success I know that you love success stories and we love them too. So to get success stories we need people to give us theirs. A success story is simple! - you do not have to been able to buy google based on your cash flow - you do not have to buy apple either

[Pharo-users] QualityAssistant v0.4

2015-04-21 Thread Yuriy Tymchuk
Hi everyone! Probably most of you know, that I am developing a tool called QualityAssistant, which displays current critics about your code in SystemBrowser, Inspector and Spotter. I’m happy to tell you that there is a new release v0.4 which does not require you to do any previous setup! Just