Re: [Pharo-users] XClipboard

2015-03-24 Thread Peter Uhnák
I know how frustrating this can be (frustrating enough that I found the courage to dive into VM :)). Also in case you want to use pharo launcher you need to set it there too (since Launcher launches a new process). In PhLImage>>launch: change last line to ^OSProcess command: vmCommand , ' --texte

Re: [Pharo-users] Git overriding repo load from different source

2015-03-24 Thread Peter Uhnák
On Sun, Mar 22, 2015 at 11:19 PM, Dale Henrichs < dale.henri...@gemtalksystems.com> wrote: > I keep an eye out for posts with Metacello in the subject line so I missed > this one ... > I'll keep that in mind next time. > If so then the trick is to use the Metacello `lock` ... Do the following >

Re: [Pharo-users] Git overriding repo load from different source

2015-03-24 Thread Peter Uhnák
> > I'm not sure how to answer all those cases Those were just options that came to my mind how to solve it - practically just one is needed. > (did I remember a conversation during PharoDays?). > We spoke only very briefly about something else since I didn't use Git at the time yet. > Can you

Re: [Pharo-users] XClipboard

2015-03-24 Thread Julien Delplanque
Ho thanks for pointing me this solution it works well. I will use it because I don't like the fact I had to touch to the System for my solution. You're saving me from a lot of Chromium->Sublime Text, Sublime Text->Pharo :) Thank you once again! Julien On 24/03/15 21:30, Peter Uhnák wrote: > Hi,

Re: [Pharo-users] Starting with Pharo Issue Tracker

2015-03-24 Thread Ben Coman
On Wed, Mar 25, 2015 at 2:33 AM, Peter Uhnák wrote: > http://pharo.org/contribute-propose-fix Thats great Jigyasa. Always good to have more contributors. Now for those of us who have been doing it a while, it is not always obvious where there are gaps to get new people started off. So please

Re: [Pharo-users] Code to create a repository

2015-03-24 Thread Sean P. DeNigris
Jan B. wrote > I would like to ask how to simply add a repository into monticello without > using monticello GUI's button +Repository, but by code. | repo | repo := MCHttpRepository "or appropriate subclass" location: url asString. MCRepositoryGroup default addRepository:

Re: [Pharo-users] Code to create a repository

2015-03-24 Thread Bernardo Ezequiel Contreras
i used to do this | myRepo myRepoDir | myRepoDir := FileDirectory on:'/home/vonbecmann/repo'. myRepo := MCDirectoryRepository new directory: myRepoDir. MCRepositoryGroup default addRepository: myRepo. in order to add my directory repository. "Ken G. Brown's idea" All in one go if you like: MCRep

[Pharo-users] Code to create a repository

2015-03-24 Thread Jan B.
Hello I would like to ask how to simply add a repository into monticello without using monticello GUI's button +Repository, but by code. If I'm loading baseline or configuration via Gofer or Metacello, it creates repository automatically, but I don't want to load anything, what I need is just some

Re: [Pharo-users] XClipboard

2015-03-24 Thread Peter Uhnák
Hi, this is brutal indeed; have you tried the previously mentioned workaround with setting the encoding: http://forum.world.st/Pharo-and-X11-primary-selection-aka-middle-mouse-button-paste-tp4800635p4800679.html Interestingly enough I posted an answer to the original (your) thread but somehow it

Re: [Pharo-users] Settings browser

2015-03-24 Thread Alain Plantec via Pharo-users
--- Begin Message --- Hello Hilaire, you do it but not with a pickOne list. Yes I know it would be very cool to be able to do with a pickOne. Have a look at the setting chapter (The Setting Framework) https://ci.inria.fr/pharo-contribution/view/Books/job/DeepIntoPharo/ At the end of the chapter I

[Pharo-users] XClipboard

2015-03-24 Thread Julien Delplanque
Hi everyone, I already send a mail here about my copy/paste that doesn't work between Chromium and Pharo3/4. Since I use more and more Pharo and I don't want to move from Chromium, I tried to find a solution to my problem and so I did. Ok, I must admit, it's brutal but I managed to get the conten

Re: [Pharo-users] Settings browser

2015-03-24 Thread Hilaire
Le 24/03/2015 18:30, Peter Uhnák a écrit : > take a look at WidgetExamples class>>exampleBasicControls > one of the inputs is a morph drop list. > Hi Peter, I know but my question is about using such morph drop list from the Settings browser. Hilaire -- Dr. Geo - http://drgeo.eu iStoa - http://

Re: [Pharo-users] Collection with memory?

2015-03-24 Thread Alain Rastoul
Hi Stef Thinking to that today, I remembered myself two excellent links on this subject. Googling a bit to retrieve the links gave me tons of interesting stuff (reactive, linq etc), but those ones are "classicals" . Erik Meijer on duality of Enumerable and Observer http://csl.stanford.edu/~ch

Re: [Pharo-users] Starting with Pharo Issue Tracker

2015-03-24 Thread Peter Uhnák
Hi, here's a guide http://pharo.org/contribute-propose-fix Peter On Tue, Mar 24, 2015 at 7:26 PM, Jigyasa Grover wrote: > Hi ! > I am clueless and would like to start off by solving a bug. > Any suggestions ? Where do I start from ? > Thanks and Regards > Jigyasa Grover >

[Pharo-users] Starting with Pharo Issue Tracker

2015-03-24 Thread Jigyasa Grover
Hi ! I am clueless and would like to start off by solving a bug. Any suggestions ? Where do I start from ? Thanks and Regards Jigyasa Grover

Re: [Pharo-users] Question about loading Roassal2 in Pharo4

2015-03-24 Thread Javier Pimás
OK, that did the trick, thank you! On Tue, Mar 24, 2015 at 2:22 PM, Andrei Chis wrote: > Use: > > Gofer new > smalltalkhubUser: 'Moose' project: 'Glamour'; > package: 'Glamour-Tools'; > package: 'Glamour-Roassal2-Presentations'; > load > > > On Tue, Mar 24, 2015 at 6:15 PM, Javier Pimás

Re: [Pharo-users] Settings browser

2015-03-24 Thread Peter Uhnák
Hi, take a look at WidgetExamples class>>exampleBasicControls one of the inputs is a morph drop list. Peter On Tue, Mar 24, 2015 at 6:02 PM, Hilaire wrote: > Hello, > > From the settings browser, I want a drop list populated with morph of my > choice; for example coloured rectangle morphs: I w

Re: [Pharo-users] Question about loading Roassal2 in Pharo4

2015-03-24 Thread Andrei Chis
Use: Gofer new smalltalkhubUser: 'Moose' project: 'Glamour'; package: 'Glamour-Tools'; package: 'Glamour-Roassal2-Presentations'; load On Tue, Mar 24, 2015 at 6:15 PM, Javier Pimás wrote: > Loading Glamour-Tools was ok with: > > Gofer new > smalltalkhubUser: 'Moose' project: 'GToolkit'

Re: [Pharo-users] Question about loading Roassal2 in Pharo4

2015-03-24 Thread Javier Pimás
Loading Glamour-Tools was ok with: Gofer new smalltalkhubUser: 'Moose' project: 'GToolkit'; package: 'Glamour-Tools'; load Yet, I don't know where to find Glamour-Roassal2-Presentations package On Mon, Mar 23, 2015 at 5:17 PM, Andrei Chis wrote: > You should also load the packages Glamour-Too

[Pharo-users] Settings browser

2015-03-24 Thread Hilaire
Hello, >From the settings browser, I want a drop list populated with morph of my choice; for example coloured rectangle morphs: I want the user to select a colour from such a predefined set and not from a text list. I did not find it is possible. Did I miss something ? (aBuilde

Re: [Pharo-users] Using Google service discovery API's with Pharo Smalltalk by Richard J. Prinz

2015-03-24 Thread Andy Burnett
Sven wrote <<< I hadn't seen this posted on the mailing list, but this is really cool stuff. Using Google service discovery API's with Pharo Smalltalk by Richard J. Prinz http://www.min.at/prinz/?x=entry:entry150318-104537 < http://www.min.at/prinz/?x=entry:entry150318-104537;comments:1#comments>

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-24 Thread Merwan Ouddane
Thanks for the instructions, I'll do it as soon as I can :) There is an issue that i'd like to report too, I have a team with a non-ascii character, and i can't remove team members nor delete the entire team, I'll try to fix it too. Merwan On 24/03/2015 11:55, Stephan Eggermont wrote: On 2

Re: [Pharo-users] USB in Pharo?

2015-03-24 Thread kilon alios
If the library is big you can use TalkFFI (you will find it in smalltalkhub) that automates the wrapping with nativeboost. On Tue, Mar 24, 2015 at 4:58 PM, Udo Schneider wrote: > I guess not :-) > > I'll try to wrap libUSB then. > > I assume the future-proof way to use "a" FFI framework is to us

Re: [Pharo-users] Boardician (board game framework)

2015-03-24 Thread kilon alios
Well done Laura. I really enjoyed your games and I definitely welcome your documentation. I will give it a try , thank you . On Tue, Mar 24, 2015 at 4:41 PM, Laura Risani wrote: > Hi all, > > A time ago i posted two board games on the list and Stéphane said that he > would like to extract from

[Pharo-users] woden-roassal view increase size?

2015-03-24 Thread Lusa Nicolas
Hi, I am working with woden-roassal and I noticed that re-sizing the OpenGL view screws up things that are displayed. Though I really would love to have a bigger view, I checked if in RWView and WDApplication there was something to make the OpenGL view larger from the beginning (so no need of r

Re: [Pharo-users] USB in Pharo?

2015-03-24 Thread Udo Schneider
I guess not :-) I'll try to wrap libUSB then. I assume the future-proof way to use "a" FFI framework is to use the NB notation? Do I remember correctly that the NB notation is supposed to remain the same although the backend will change to something more like traditional FFI? So using NB not

Re: [Pharo-users] Boardician (board game framework)

2015-03-24 Thread olivier auverlot
very cool ! 2015-03-24 15:41 GMT+01:00 Laura Risani : > Hi all, > > A time ago i posted two board games on the list and Stéphane said that he > would like to extract from these and other ones he has gathered a framework > for doing board games. So i developed a little one called 'Boardician' and

[Pharo-users] Boardician (board game framework)

2015-03-24 Thread Laura Risani
Hi all, A time ago i posted two board games on the list and Stéphane said that he would like to extract from these and other ones he has gathered a framework for doing board games. So i developed a little one called 'Boardician' and implemented four little example games through it. DOCUMENTATION

[Pharo-users] Pharo Minimal HowTo

2015-03-24 Thread Thierry Goubier
Hi, there is an interesting Pharo4 minimal image being built on the CI. Is there a place with some documentation and the configurations one can load on it (for example, I'd need filetree support)? I'd like to build a fast, minimal Pharo for some command-line work (the GitFileTree-MergeDriver, for

Re: [Pharo-users] Slots in Pharo

2015-03-24 Thread Juraj Kubelka
Hi, maybe class comments could help you. But I understand that we have to reveal use cases :-) Cheers, Juraj > 24. 3. 2015 v 4:08, Jigyasa Grover : > > Hi ! > I was a bit confused with the concept of 'Slots' in Pharo. > Could anyone please explain it or refer to some resources where it has be

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-24 Thread Sean P. DeNigris
Stephan Eggermont wrote > We would love submissions of code for this. It is something that should > not be very difficult, but takes some time to get right. If you want to > try this: > - install and run mongodb > - download and run a smalltalkhub image from >https://ci.inria.fr/pharo-contribu

Re: [Pharo-users] How to change title of playground?

2015-03-24 Thread Norbert Hartl
I knew it because I cannot update :) Thanks, Norbert > Am 24.03.2015 um 11:52 schrieb Tudor Girba : > > Double clicking works only since #40578 > > Doru > > On Tue, Mar 24, 2015 at 11:40 AM, Norbert Hartl > wrote: > Double clicking on the tab does nothing (I have

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-24 Thread Stephan Eggermont
On 24/03/15 11:18, Merwan Oud wrote: If the list is reduced it will be manageable, maybe not a mouseOver but a little arrow to show/hide the description under the project. We would love submissions of code for this. It is something that should not be very difficult, but takes some time to get r

Re: [Pharo-users] How to change title of playground?

2015-03-24 Thread Tudor Girba
Double clicking works only since #40578 Doru On Tue, Mar 24, 2015 at 11:40 AM, Norbert Hartl wrote: > Double clicking on the tab does nothing (I have a #40567 image). Double > clicking on the window title maximizes the window. > > Norbert > > Am 24.03.2015 um 11:27 schrieb Tudor Girba : > > You

Re: [Pharo-users] How to change title of playground?

2015-03-24 Thread Norbert Hartl
Double clicking on the tab does nothing (I have a #40567 image). Double clicking on the window title maximizes the window. Norbert > Am 24.03.2015 um 11:27 schrieb Tudor Girba : > > You can double click on the tab. > > Doru > > On Tue, Mar 24, 2015 at 11:17 AM, Norbert Hartl

Re: [Pharo-users] How to change title of playground?

2015-03-24 Thread Tudor Girba
You can double click on the tab. Doru On Tue, Mar 24, 2015 at 11:17 AM, Norbert Hartl wrote: > Is it possible? > > Norbert > > -- www.tudorgirba.com "Every thing has its own flow"

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-24 Thread Merwan Oud
2015-03-24 4:03 GMT+01:00 Martin Bähr : > Excerpts from Merwan Ouddane's message of 2015-03-23 21:22:23 +0100: > > I don't know if you want to spend some time on it, but what would be > > great is for the projects to choose if they want to appear or not in > > this list, > > there is already a dis

[Pharo-users] How to change title of playground?

2015-03-24 Thread Norbert Hartl
Is it possible? Norbert

Re: [Pharo-users] Slots in Pharo

2015-03-24 Thread Marcus Denker
> On 24 Mar 2015, at 08:08, Jigyasa Grover wrote: > > Hi ! > I was a bit confused with the concept of 'Slots' in Pharo. > Could anyone please explain it or refer to some resources where it has been > elucidated clearly ? > It would be a great help. Sadly this does not yet exist. This is in Pha

[Pharo-users] Slots in Pharo

2015-03-24 Thread Jigyasa Grover
Hi ! I was a bit confused with the concept of 'Slots' in Pharo. Could anyone please explain it or refer to some resources where it has been elucidated clearly ? It would be a great help. Thanks and Regards Jigyasa Grover