Re: [Pharo-users] [Pharo-dev] TestAsserter>>assertCollection:hasSameElements:

2015-10-26 Thread jtuc...@objektfabrik.de
Am 25.10.15 um 16:33 schrieb Peter Uhnák: > assert:equals: it's just more typing than #= with no additional outcome I also disagree, but that may be also because maybe we write tests for different purpse. If you write tests just to test your code, then whatever... I don't do that so I c

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Serge Stinckwich
Great job ! This could be a great poster ;-) Maybe you have to put Pharo Logo in the middle and enhance the fonts of different topics in blue circle (Server, Data, etc ...) so the people can read them more easily. Regards, On Mon, Oct 26, 2015 at 1:23 AM, Adam wrote: > Hello, > > next update. I

Re: [Pharo-users] Problem to connect Seaside and Pharo

2015-10-26 Thread Justine STIENNE
I have just done it. And now, on 'http://localhost:8080/config/hello' , I can choose 'a WAHelloWorld', but not 'WAHelloWorld'. When I go to 'http://localhost:8080/hello', I have : MessageNotUnderstood: WAHelloWorld>>new Your request could not be completed. An exception occurred. Thanks in advanc

Re: [Pharo-users] Problem to connect Seaside and Pharo

2015-10-26 Thread Sven Van Caekenberghe
Could you do a File Out of your WAHelloWorld class code and show us ? > On 26 Oct 2015, at 08:58, Justine STIENNE wrote: > > I have just done it. And now, on 'http://localhost:8080/config/hello' , I can > choose 'a WAHelloWorld', but not 'WAHelloWorld'. > When I go to 'http://localhost:8080/hel

Re: [Pharo-users] Problem to connect Seaside and Pharo

2015-10-26 Thread Justine STIENNE
Of course. Sorry to bother you but I'm a beginner. 2015-10-26 9:01 GMT+01:00 Sven Van Caekenberghe : > Could you do a File Out of your WAHelloWorld class code and show us ? > > > On 26 Oct 2015, at 08:58, Justine STIENNE > wrote: > > > > I have just done it. And now, on 'http://localhost:8080/co

Re: [Pharo-users] Problem to connect Seaside and Pharo

2015-10-26 Thread Sven Van Caekenberghe
> On 26 Oct 2015, at 09:09, Justine STIENNE wrote: > > Of course. Sorry to bother you but I'm a beginner. OK, no problem. You are mixing instance and class side. All your methods except #renderContentOn: should be on the class side. There should also be no super initialise on the class side.

Re: [Pharo-users] TestAsserter>>assertCollection:hasSameElements:

2015-10-26 Thread jtuc...@objektfabrik.de
Hi Peter, I just realize it is probably best to return to your initial post in order to not drift into D) ;-) Am 24.10.15 um 20:36 schrieb Peter Uhnák: bump? :) On Tue, Sep 29, 2015 at 12:57 AM, Peter Uhnák > wrote: How practical it is to do set-based comparis

Re: [Pharo-users] Is GitFileTree broken on Pharo 5 ?

2015-10-26 Thread Dimitris Chloupis
tried with another repo, same issue, looks like I will be reverting back to filetree, not a big problem On Mon, Oct 26, 2015 at 1:09 AM Dimitris Chloupis wrote: > the output is > > * master > > nothing confidential all i did was create a new repo in github and just > git clone it to my hard dis

[Pharo-users] How to store an image file as a method source

2015-10-26 Thread Dimitris Chloupis
So how you guys covert image files to strings to be stored as method sources ? I want to make a custom GUI that will contain a lot of images and I am a bit on a dilema whether I should put the images as method source as we do already with pharo icons OR just link to external files and find how I c

Re: [Pharo-users] How to programatically select an item in a Spec TreeModel ?

2015-10-26 Thread Edouard KLEIN
What is FT ? I did some debugging. When I send the selected:#true message to a root node, it goes down to the Morphic classes, and everything is fine, when I send it to a child node, the dependents array of the TreeNodeModel is nil, so nobody gets the message. I don't know enough about Spec yet to

Re: [Pharo-users] How to programatically select an item in a Spec TreeModel ?

2015-10-26 Thread Ferlicot D. Cyril
Le 26/10/2015 10:38, Edouard KLEIN a écrit : > What is FT ? > FT is FastTable. This is a project begun by Esteban to replace the old slow list on Pharo. Pharo 5 uses FastTable now. > I did some debugging. When I send the selected:#true message to a root > node, it goes down to the Morphic classe

Re: [Pharo-users] How to store an image file as a method source

2015-10-26 Thread Peter Uhnák
I use IconFactory (which I wrote for this purpose) ( http://smalltalkhub.com/#!/~peteruhnak/IconFactory or Catalog Browser ), it works in the same way as Pharo icons (base64 representation of the image which is then converted to a Form object). Catalog browser offers also ExternalIconFamily but I

Re: [Pharo-users] fast subclassing/class creation in tests

2015-10-26 Thread Peter Uhnák
Thanks Nicolai, the suspension seems to have quite a significant performance impact. Out of curiosity I did some benchmarking. Although the numbers seems to vary a lot based on something (the size of the image jumped from 25 to 40MB after I was done... and there seems to be some correlation with t

Re: [Pharo-users] How to programatically select an item in a Spec TreeModel ?

2015-10-26 Thread Edouard KLEIN
> FT is FastTable. This is a project begun by Esteban to replace the old slow list on Pharo. > Pharo 5 uses FastTable now. Thanks for the details. Should I update to Pharo5 tu use FT ? As for my progress in debugging things. I see that the roots and the children behave differently (although they

Re: [Pharo-users] Is GitFileTree broken on Pharo 5 ?

2015-10-26 Thread Thierry Goubier
Le 26/10/2015 09:58, Dimitris Chloupis a écrit : tried with another repo, same issue, looks like I will be reverting back to filetree, not a big problem Strange. I tried from a fresh Pharo5 rebuild, and I have no error whatsoever. Could you do a bit of debug on the error? It looks like the c

Re: [Pharo-users] [ANN] Mathex 0.3 is out! How hard would it be to give the possibility to use it with Pillar?

2015-10-26 Thread Damien Cassou
Julien Delplanque writes: > On 22/10/15 17:56, Damien Cassou wrote: >> Julien Delplanque writes: >> >>> I wonder how hard it would be to give the possibility to write Mathex >>> directly inside Pillar? Mathex provide pdf/png generation under Linux, >>> so it is possible to create images for non

Re: [Pharo-users] Is GitFileTree broken on Pharo 5 ?

2015-10-26 Thread Dimitris Chloupis
I have a slight suspicion that my macos may have done something weird, all this happened as soon as I installed the new command line XCODE tools update. I will give the debug a try when I get home and be back to you. >From the time being I reverted back to using just filetree and it works ok, at le

Re: [Pharo-users] How to store an image file as a method source

2015-10-26 Thread Dimitris Chloupis
thanks Peter it works like a charm :) I will your tools , very useful. On Mon, Oct 26, 2015 at 1:30 PM Peter Uhnák wrote: > I use IconFactory (which I wrote for this purpose) ( > http://smalltalkhub.com/#!/~peteruhnak/IconFactory or Catalog Browser ), > it works in the same way as Pharo icons (

Re: [Pharo-users] VM crash on Ubuntu 14.04

2015-10-26 Thread Johan Fabry
Hi Robert, thanks for the hints. Unfortunately running in Pharo 5 is not feasible. PhaROS does not do any low-level calls as far as I am aware (I did not implement it, I’m just using it). I will try to run it in gdb as soon as I can find a reliable way to reproduce the crash. > On Oct 24, 20

Re: [Pharo-users] VM crash on Ubuntu 14.04

2015-10-26 Thread Johan Fabry
Hi Nicolai, thanks for following up on this. I am in the process of determining what causes the crash. I fear that to reproduce the problem you will need to have ROS installed, I have not yet been able to reproduce it without ROS running. I do not want to inflict the installation of ROS on you

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Ben Coman
Thanks Adam. This is a great initiative. I really like the internal/external distinction. A few questions... Why is "Compilers" outside the circle? What is the "VB" part of "VB-Regex" ? and a few suggestions... > About categories I would group in different way but it's personal choice. > Lik

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Hernán Morales Durand
2015-10-26 11:08 GMT-03:00 Ben Coman : > Thanks Adam. This is a great initiative. I really like the > internal/external distinction. > > A few questions... > > Why is "Compilers" outside the circle? > > What is the "VB" part of "VB-Regex" ? > > Vassili Bykov was the original author of Regex11 and

Re: [Pharo-users] Problem to connect Seaside and Pharo

2015-10-26 Thread Justine STIENNE
Thank you for your help. You're right, I'm mixing instance and class side, I will revise it. I'm following the standard Pharo book. Justine 2015-10-26 9:31 GMT+01:00 Sven Van Caekenberghe : > > > On 26 Oct 2015, at 09:09, Justine STIENNE > wrote: > > > > Of course. Sorry to bother you but I'm a

Re: [Pharo-users] [ANN] Working with Pharo on the Raspberry Pi

2015-10-26 Thread Attila Magyar
Hi Torsten, Have you tried the cogvm on the Pi? It is much faster than the stack vm. If I remember correctly, I used this one last time: http://www.mirandabanda.org/files/Cog/VM/VM.r3427/cogspurlinuxhtARM-15.33.3427.tgz Attila -- View this message in context: http://forum.world.st/ANN-Working

Re: [Pharo-users] Updated Pharo By Example

2015-10-26 Thread Mariano Martinez Peck
Hi Dimitris, Thank you very much for your hard work. It was so much needed. In fact, I need it now :) I have question... remember the old PBE used to have a VM + image for the book, which was the image expected to be used while reading the book. Is there a new VM + image prepared for UPBE? If true

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Martin Bähr
Excerpts from Adam's message of 2015-10-26 01:23:09 +0100: > Pharo is mostly development platform, and image shows mostly libraries and > frameworks for development, but "Development" circle in the image is more > about tools primarly targeted to support process of development. So, if Gofer > an

Re: [Pharo-users] Updated Pharo By Example

2015-10-26 Thread Dimitris Chloupis
Hello Mariano, thank you for your kind word of course I am one of the many contributors and UPBE is a collective effort. We dont have an image right now for UPBE and I think that the best way to approach this is to make a package for the Catalog Browser . This means you will be able to use UPBE ex

Re: [Pharo-users] Pharo family update

2015-10-26 Thread stepharo
You can safely remove Marina. It is unmaintained, undocumented and not finished. I did not see Fuel. Could be close to STON Would be nice to have parsers Smacc OMeta PetitParser Le 25/10/15 20:23, Adam a écrit : Hello, next update. I tried to follow all sugestions - but not all is

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Esteban A. Maringolo
Magritte could be categorized as meta-modelling. PostgreSQL, Magma, MongoDB, etc should be Databases. Persistency should include Voyage, GLORP, SandstoneDB, etc. Esteban A. Maringolo 2015-10-26 17:19 GMT-03:00 stepharo : > You can safely remove Marina. > It is unmaintained, undocumented and not

Re: [Pharo-users] How to programatically select an item in a Spec TreeModel ?

2015-10-26 Thread stepharo
We should make sure that we can use FT instead of NewList (this is on my todo since ages). Stef Le 26/10/15 08:27, Edouard KLEIN a écrit : > FT is FastTable. This is a project begun by Esteban to replace the old slow list on Pharo. > Pharo 5 uses FastTable now. Thanks for the details. Should

Re: [Pharo-users] How to programatically select an item in a Spec TreeModel ?

2015-10-26 Thread stepharo
Le 24/10/15 06:06, Peter Uhnák a écrit : > Unless Cyril is going to do the rewrite himself. Wasn't that the plan? I'm confused :) Oh? I do not remember anyone mentioning on the mailing list that someone will change Spec to use FT. Or was this from some internal discussion at Inria/

Re: [Pharo-users] TestAsserter>>assertCollection:hasSameElements:

2015-10-26 Thread Peter Uhnák
On Mon, Oct 26, 2015 at 8:27 AM, jtuc...@objektfabrik.de < jtuc...@objektfabrik.de> wrote: > Am 25.10.15 um 16:33 schrieb Peter Uhnák: > > > assert:equals: it's just more typing than #= with no additional outcome >> > > I also disagree, but that may be also because maybe we write tests for > diff

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Adam
Thanks for all comments. Dne Po 26. října 2015 12:18:31, Hernán Morales Durand napsal(a): > 2015-10-26 11:08 GMT-03:00 Ben Coman : > > Thanks Adam. This is a great initiative. I really like the > > internal/external distinction. > > > > A few questions... > > > > Why is "Compilers" outside the

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Adam
Dne Po 26. října 2015 16:19:36, stepharo napsal(a): > You can safely remove Marina. > It is unmaintained, undocumented and not finished. > OK > I did not see Fuel. Could be close to STON > Would be nice to have parsers > Smacc > OMeta > PetitParser > Fuel is under Data - Storing

Re: [Pharo-users] Pharo family update

2015-10-26 Thread Adam
Dne Po 26. října 2015 17:26:55, Esteban A. Maringolo napsal(a): > Magritte could be categorized as meta-modelling. OK. > > PostgreSQL, Magma, MongoDB, etc should be Databases. > Persistency should include Voyage, GLORP, SandstoneDB, etc. Sounds good. Still I em wondering about "Server" circle (

Re: [Pharo-users] Updated Pharo By Example

2015-10-26 Thread stepharo
Thanks we should really use this. Le 23/10/15 15:19, Stephan Eggermont a écrit : On 23-10-15 19:15, Thierry Goubier wrote: Le 23 oct. 2015 7:00 PM, "Dimitris Chloupis" a écrit : I completely agree with Stef, I did actually removed some screenshots and someone put them pack Maybe I can

Re: [Pharo-users] [Pharo-dev] Little Meeting at Pittsburg

2015-10-26 Thread Juan Pablo Sandoval Alcocer
I am attending OOPSLA too, It would be a pleasure to be part of the meeting. Juampi 2015-10-25 19:30 GMT-03:00 stepharo : > Hi > > Guillermo, Andrei, Guido and me are attending OOPSLA so we could have a > small > Pharo meeting. > What about wednesday evening? > > Stef > > -- Saludos, Juan Pab

Re: [Pharo-users] TestAsserter>>assertCollection:hasSameElements:

2015-10-26 Thread jtuc...@objektfabrik.de
Peter, I see you clearly understand what I wanted to get into and don't give up because of my aggressive tone in the first place. Am 26.10.15 um 23:53 schrieb Peter Uhnák: On Mon, Oct 26, 2015 at 8:27 AM, jtuc...@objektfabrik.de