Re: [Pharo-users] Presenting Pharo in Greece

2016-05-15 Thread stepharo
I suggest to follow some videos too because there are some advanced points and also ways to present concepts. We prefered to do it in french to make sure that we have an excellent french versions instead of a average english one. Now all the texts are in english (and some in french) All the m

Re: [Pharo-users] Presenting Pharo in Greece

2016-05-15 Thread Dimitris Chloupis
Ah thats very nice, I registered and started the course , thank you Stef :) On Sun, May 15, 2016 at 11:32 AM stepharo wrote: > I suggest to follow some videos too because there are some advanced points > and also ways to present concepts. > > We prefered to do it in french to make sure that we h

[Pharo-users] MOOC mistakes

2016-05-15 Thread Dimitris Chloupis
I will use this thread to point some mistakes in MOOC first here Introduction -General Interface - English version https://www.fun-mooc.fr/courses/inria/41010/session01/courseware/f46620814dcc498c9ca15991e99a1f71/052c79a8f7af4ad790733e51d9ef3bdd/ it says "Zone2: upload videos in 3 different for

Re: [Pharo-users] blue ink - format on accept?

2016-05-15 Thread stepharo
Le 14/5/16 à 15:11, Esteban Lorenzano a écrit : On 14 May 2016, at 15:01, stepharo > wrote: Please we did not add it because we were afraid that people do not want :) people do not want (I don’t) :) But indeed I would like to have another button so that we can do

Re: [Pharo-users] Update website request: Pharo 5.0 packages on ArchLinux

2016-05-15 Thread stepharo
thanks Laurent! Stef Le 14/5/16 à 15:08, laurent laffont a écrit : Hi, I've updated Pharo packages for ArchLinux. Could you please update install procedure onhttp://pharo.org/gnu-linux-installation ? Install Pharo launcher + Spur + old VM using command line: $ yaourt pharo-launcher th

Re: [Pharo-users] Update website request: Pharo 5.0 packages on ArchLinux

2016-05-15 Thread Tudor Girba
Thanks you, indeed! And good to see you around here, Laurent :). Doru > On May 15, 2016, at 3:08 PM, stepharo wrote: > > thanks Laurent! > > > Stef > > > Le 14/5/16 à 15:08, laurent laffont a écrit : >> Hi, >> >> I've updated Pharo packages for ArchLinux. Could you please update >> insta

Re: [Pharo-users] OSProcess in Pharo 5?

2016-05-15 Thread Ben Coman
On Sat, May 14, 2016 at 8:06 AM, Mariano Martinez Peck wrote: > If you are only interested in Unix / Linux / OSX, What is the plan for Windows support? cheers -ben > then you may want to try > OSSubprocess (it does work correctly in Pharo 5.0) > > https://github.com/marianopeck/OSSubprocess > >

Re: [Pharo-users] Pharo and HiDPI

2016-05-15 Thread Ben Coman
The little I know is only what I recently read on Squeak-dev and vm-dev lists... http://forum.world.st/long-Squeak-and-High-DPI-td4893349.html http://forum.world.st/commit-3665-Squeak-is-actually-not-DPI-aware-yet-td4887342.html#a4893318 cheers -ben On Sat, May 14, 2016 at 9:19 PM, Luis Felipe

Re: [Pharo-users] Presenting Pharo in Greece

2016-05-15 Thread Ben Coman
On Fri, May 13, 2016 at 5:24 PM, Sven Van Caekenberghe wrote: > >> On 13 May 2016, at 11:09, Sven Van Caekenberghe wrote: >> >> >>> On 13 May 2016, at 10:32, Dimitris Chloupis wrote: >>> >>> thanks any idea where i can get the card that contains the pharo syntax ? >> >> Maybe you are looking for

Re: [Pharo-users] Update website request: Pharo 5.0 packages on ArchLinux

2016-05-15 Thread Tudor Girba
Nice! I would be interested in collecting your experience. Would you mind connecting with me in private to talk about it? Cheers, Doru > On May 15, 2016, at 7:27 PM, laurent laffont > wrote: > > Indeed, I'm not so far :) For two years I develop a Pharo / Moose > application at work that is

Re: [Pharo-users] Update website request: Pharo 5.0 packages on ArchLinux

2016-05-15 Thread stepharo
This is a super cool news. Stef Le 15/5/16 à 19:27, laurent laffont a écrit : Indeed, I'm not so far :) For two years I develop a Pharo / Moose application at work that is used to analyze our Redmine tickets (see screenshot). A second person may work on it starting from next month to connect

[Pharo-users] GLMFormatedPresentation>>format bug?

2016-05-15 Thread Alistair Grant
Hi All, I'm currently porting my personal documentation system from Python / Django to Pharo and am trying to display formatted text in a new pane in the inspector. If I execute something like: | text | text := 'Hello World' asText. text addAttribute: TextColor green from: 1 to: 6. text in a p

Re: [Pharo-users] GLMFormatedPresentation>>format bug?

2016-05-15 Thread Andrei Chis
Hi Alistair, Try something like this. Now 100% sure it will work. gtInspectIn: composite ^ composite text title: 'Meme'; format: [self asText]. The display block should return the object to be displayed, which is this case is self. Cheers, Andre

Re: [Pharo-users] GLMFormatedPresentation>>format bug?

2016-05-15 Thread Alistair Grant
Hi Andrei, On Mon, May 16, 2016 at 12:08:01AM +0200, Andrei Chis wrote: > Hi Alistair, > > Try something like this. Now 100% sure it will work. > > gtInspectIn: composite >         > >         ^ composite text >                 title: 'Meme'; >                 format: [self asText]. > > The d

Re: [Pharo-users] GLMFormatedPresentation>>format bug?

2016-05-15 Thread Ben Coman
On Mon, May 16, 2016 at 6:28 AM, Alistair Grant wrote: > Hi Andrei, > > On Mon, May 16, 2016 at 12:08:01AM +0200, Andrei Chis wrote: >> Hi Alistair, >> >> Try something like this. Now 100% sure it will work. >> >> gtInspectIn: composite >> >> >> ^ composite text >>

Re: [Pharo-users] GLMFormatedPresentation>>format bug?

2016-05-15 Thread Tudor Girba
Hi, > On May 16, 2016, at 1:00 AM, Ben Coman wrote: > > On Mon, May 16, 2016 at 6:28 AM, Alistair Grant wrote: >> Hi Andrei, >> >> On Mon, May 16, 2016 at 12:08:01AM +0200, Andrei Chis wrote: >>> Hi Alistair, >>> >>> Try something like this. Now 100% sure it will work. >>> >>> gtInspectIn: c

Re: [Pharo-users] GLMFormatedPresentation>>format bug?

2016-05-15 Thread Alistair Grant
On Mon, May 16, 2016 at 05:42:54AM +0200, Tudor Girba wrote: > Hi, > > > On May 16, 2016, at 1:00 AM, Ben Coman wrote: > > On Mon, May 16, 2016 at 6:28 AM, Alistair Grant > wrote: > > Hi Andrei, > > On Mon, May 16, 2016 at 12:08:01AM +0200, Andrei Chis wrote: > >

[Pharo-users] TextAction bugs

2016-05-15 Thread Alistair Grant
Hi All, TextAction appears to have a couple of issues: TextAction>>actOnClick: anEvent for: anObject in: paragraph editor: editor "sent when a user clicks on a piece of text to which I am applied in an editor" "may be self is included in the event or an Object. " ^ actO