Re: [Pharo-users] #storeOn: question

2015-12-21 Thread stepharo
How this method is packaged? Because I do not want to have in the core like that especially if it add dependencies to MC Stef Le 16/12/15 22:47, Tudor Girba a écrit : Hi, I wanted to have an easy way to distinguish between a class that ships with Pharo and another class that is built on top.

Re: [Pharo-users] RemoteTask does not work on Macos

2015-12-21 Thread Stephan Eggermont
On 21/12/15 21:17, David T. Lewis wrote: My expectation is that a Unix VM (interpreter, Cog, Spur) running on Mac with X11 display should work with the current RemoteTask, exactly as on on Linux. But I have not personally tried it, and I am not really sure what would be required to get it working

Re: [Pharo-users] Where is the documentation for the FFI ?

2015-12-21 Thread Dimitris Chloupis
ah ok found it , its actually PharoLimbo , thanks Stef :) On Mon, Dec 21, 2015 at 10:28 PM stepharo wrote: > there is X11 tutorial that was written by laurent laffond and that I > rewrote with asking stupi questions to igor. > It is on github ReadyToReview or something like that. > Stef > > >

Re: [Pharo-users] Pharo RDBMS Support Survey

2015-12-21 Thread Esteban A. Maringolo
2015-11-26 0:02 GMT-03:00 Esteban A. Maringolo : > Hello all, > > I just created a survey to collect > information about the users of RDBMS in Pharo. > > Please promote it in the social networks, so I can get as many > responses as possible. > I'll share the results in a month or before if I get 10

Re: [Pharo-users] Where is the documentation for the FFI ?

2015-12-21 Thread stepharo
there is X11 tutorial that was written by laurent laffond and that I rewrote with asking stupi questions to igor. It is on github ReadyToReview or something like that. Stef Le 19/12/15 12:06, Dimitris Chloupis a écrit : I am considering porting my python bridge from sockets to a C DLL , but I

Re: [Pharo-users] RemoteTask does not work on Macos

2015-12-21 Thread David T. Lewis
On Mon, Dec 21, 2015 at 06:09:05PM +0100, Stephan Eggermont wrote: > On 21/12/15 14:47, David T. Lewis wrote: > >I think that your VM is missing a couple of necessary plugins. The > >XDisplayControlPlugin is used to close the socket connection to the > >X display in the new child VM/image. You may

Re: [Pharo-users] [Pharo-dev] [ANN] Multiple Desktop support for Pharo 5

2015-12-21 Thread Torsten Bergmann
Hi Hannes, I've just added support for this. Update your version or load latest from Catalog. You can then use the menu or CTRL + D and then CTRL + R like "Desktop" -> "Rename" so now you have: CTRL + D and then CTRL + D like "Desktop" -> "Desktop switcher" (a custom Spotter) CTR

Re: [Pharo-users] RemoteTask does not work on Macos

2015-12-21 Thread Stephan Eggermont
On 21/12/15 18:09, Stephan Eggermont wrote: On 21/12/15 14:47, David T. Lewis wrote: I think that your VM is missing a couple of necessary plugins. The XDisplayControlPlugin is used to close the socket connection to the X display in the new child VM/image. You may also be missing the OSProcessPl

Re: [Pharo-users] RemoteTask does not work on Macos

2015-12-21 Thread Stephan Eggermont
On 21/12/15 14:47, David T. Lewis wrote: I think that your VM is missing a couple of necessary plugins. The XDisplayControlPlugin is used to close the socket connection to the X display in the new child VM/image. You may also be missing the OSProcessPlugin. Note, I developed this in Squeak on Li

Re: [Pharo-users] RemoteTask does not work on Macos

2015-12-21 Thread Dimitris Chloupis
ok thanks David :) On Mon, Dec 21, 2015 at 3:48 PM David T. Lewis wrote: > On Mon, Dec 21, 2015 at 01:23:35PM +, Dimitris Chloupis wrote: > > I tried to run the parrarelExample method of RemoteTask class which is > > loadable from CommandShell project and it seems it looks for a plugin > tha

Re: [Pharo-users] [Pharo-dev] [ANN] Multiple Desktop support for Pharo 5

2015-12-21 Thread H. Hirzel
Hello Torsten the desktops are named 'Desktop 1' 'Desktop 2' 'Desktop 3'. Is it possible to change these names? Regards Hannes On 8/27/15, Torsten Bergmann wrote: > Julien Delplanque provided this week a goodie to switch between > "desktops" - but his initial solution was more or

Re: [Pharo-users] [Question] Inspecting a collection of strings in Pharo 5 -- edit pane for a string?

2015-12-21 Thread Sven Van Caekenberghe
> On 21 Dec 2015, at 14:29, Nicolai Hess wrote: > > > > 2015-12-21 13:58 GMT+01:00 H. Hirzel : > On 12/20/15, Sven Van Caekenberghe wrote: > > I think the original question was how to change one element from a > > collection by another one, in this case, replace a string by another one, by >

Re: [Pharo-users] RemoteTask does not work on Macos

2015-12-21 Thread David T. Lewis
On Mon, Dec 21, 2015 at 01:23:35PM +, Dimitris Chloupis wrote: > I tried to run the parrarelExample method of RemoteTask class which is > loadable from CommandShell project and it seems it looks for a plugin that > cant find. > > It gives me a warning > > forkSqueak requires XDispalyControlPl

Re: [Pharo-users] [Question] Inspecting a collection of strings in Pharo 5 -- edit pane for a string?

2015-12-21 Thread Nicolai Hess
2015-12-21 13:58 GMT+01:00 H. Hirzel : > On 12/20/15, Sven Van Caekenberghe wrote: > > I think the original question was how to change one element from a > > collection by another one, in this case, replace a string by another > one, by > > 'editing' an item, not to destructively modify a string

[Pharo-users] RemoteTask does not work on Macos

2015-12-21 Thread Dimitris Chloupis
I tried to run the parrarelExample method of RemoteTask class which is loadable from CommandShell project and it seems it looks for a plugin that cant find. It gives me a warning forkSqueak requires XDispalyControlPlugin if I proceed I get another warning process accessor module not available

Re: [Pharo-users] [Question] Inspecting a collection of strings in Pharo 5 -- edit pane for a string?

2015-12-21 Thread H. Hirzel
On 12/20/15, Sven Van Caekenberghe wrote: > I think the original question was how to change one element from a > collection by another one, in this case, replace a string by another one, by > 'editing' an item, not to destructively modify a string (which would be a > bad idea (tm)). > > Inspect: >

Re: [Pharo-users] [Question] Inspecting a collection of strings in Pharo 5 -- edit pane for a string?

2015-12-21 Thread H. Hirzel
On 12/20/15, Marcus Denker wrote: > On Sat, Dec 19, 2015 at 9:24 PM, Tudor Girba wrote: > >> Hi, >> >> Strings are supposed to be immutable, and that is why we do not support >> editing by default :). >> >> > I do not think this is good... yes, it would be nice if *literal* strings > *would* be i