Re: [Pharo-users] Launcher User Templates

2018-03-29 Thread Sean P. DeNigris
CyrilFerlicot wrote > I also have a way to add a private Jenkins, but I need to clean it > before integrating it to the Pharo Launcher. Cool :) In my case, I'm wanting to integrate with GitLab CI. That said, I'm definitely interested in your work (no rush though). - Cheers, Sean -- Sent

Re: [Pharo-users] Launcher User Templates

2018-03-29 Thread Cyril Ferlicot D.
Le 29/03/2018 à 23:13, Christophe Demarey a écrit : > > If you want to do so, you can instantiate a PhLJenkins2Server class: > PhLJenkins2Server name: ’Sean''s Jenkins' url: 'https://jenkins.mine' > asZnUrl > > Than add it to the groups class method of PhLTemplateGroupRepository. > It

Re: [Pharo-users] Launcher User Templates

2018-03-29 Thread Christophe Demarey
> Le 29 mars 2018 à 19:14, Sean P. DeNigris a écrit : > > demarey wrote >> Does the doc answer your needs? > > It clearly describes current options, but I think I will have to extend, > especially because some of the templates would come from CI for private > projects.

Re: [Pharo-users] Question about GLORP class models

2018-03-29 Thread Alejandro Infante
Thanks! I will try that. Alejandro > On Mar 29, 2018, at 2:47 PM, Esteban A. Maringolo > wrote: > > This is a question best suited to the Glorp mailing list (which I'm > cc'ing in this email). > > What you need is an HorizontalTypeResolver, and define a common class >

Re: [Pharo-users] Question about GLORP class models

2018-03-29 Thread Esteban A. Maringolo
This is a question best suited to the Glorp mailing list (which I'm cc'ing in this email). What you need is an HorizontalTypeResolver, and define a common class as the ancestor for both of your classes. You'll have to define a descriptor for it, and you will use it to reference the "parent" of

Re: [Pharo-users] Launcher User Templates

2018-03-29 Thread Sean P. DeNigris
demarey wrote > Does the doc answer your needs? It clearly describes current options, but I think I will have to extend, especially because some of the templates would come from CI for private projects. I'll keep you posted! - Cheers, Sean -- Sent from:

Re: [Pharo-users] evaluate: with bindings

2018-03-29 Thread Stephane Ducasse
Thanks! On Tue, Mar 27, 2018 at 7:38 PM, Sean P. DeNigris wrote: > Stephane Ducasse-3 wrote >> I would like to be able to do the following: > > Smalltalk compiler > bindings: {#aValue -> 33} asDictionary; > evaluate: 'aValue + aValue' > > > > - >

Re: [Pharo-users] Looking for small boards and tiny computers which can run Pharo

2018-03-29 Thread Stephane Ducasse
Hi Jonathan we are interested too. Stef On Wed, Mar 28, 2018 at 2:53 PM, Jonathan van Alteren wrote: > No, I haven't done much with Pharo yet, least of all adapt it to run on an > IoT device ;-) I'm interested though, but it will take me considerable time >

[Pharo-users] Question about GLORP class models

2018-03-29 Thread Alejandro Infante
Hi guys! I’m trying to use GLORP and I’m having problems defining the class model for a class which has an instance variable which is a collection of instances of two different classes: I have 3 classes named: { Section . Question . QuestionGroup } and I have problems for specifying the glorp

Re: [Pharo-users] Zoom x-axis in RTGrapher?

2018-03-29 Thread Alistair Grant
Hi Alexandre, On 29 March 2018 at 15:07, Alexandre Bergel wrote: > Easy. > > You can add a reset button: > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > v := RTView new. > b := [ :someClasses | >g := RTGrapher new. >g view: v. >ds := RTData new. >ds

Re: [Pharo-users] RTDoubleScrollBar is not rendered properly in html

2018-03-29 Thread Alexandre Bergel
Exactly Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Mar 29, 2018, at 11:24 AM, Andrei Stebakov wrote: > > Thanks, Alexandre > Looks like

Re: [Pharo-users] RTDoubleScrollBar is not rendered properly in html

2018-03-29 Thread Andrei Stebakov
Thanks, Alexandre Looks like RTResizeableViewContextInteraction has no effect for the tree that goes beyond the page. On the other hand RTEmptyViewContextInteraction makes the tree that used to be shrunk to fit in the page go beyond the page, as expected I guess. So the

Re: [Pharo-users] Zoom x-axis in RTGrapher?

2018-03-29 Thread Alexandre Bergel
Easy. You can add a reset button: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= v := RTView new. b := [ :someClasses | g := RTGrapher new. g view: v. ds := RTData new. ds points: someClasses. ds y: [ :cls | cls numberOfMethods ]. ds x: [ :cls | cls

[Pharo-users] [TechTalk] Report 2017 Pharo Consortium and Association.

2018-03-29 Thread Marcus Denker
Hi, We have a (small) techtalk today: Report 2017 Pharo Consortium and Association. https://association.pharo.org/event-2797067 - 29 Mar 2018 - 5:00 PM - 7:00 PM

Re: [Pharo-users] Zoom x-axis in RTGrapher?

2018-03-29 Thread Alistair Grant
Hi Alexandre, Thanks! (more below) On 28 March 2018 at 14:56, Alexandre Bergel wrote: > Hi Alistair! > > Yes, this is something we thought about some times ago. > > After updating Roassal, try this: > -=-=-=-=-=-=-=-=-=-=-=-= > v := RTView new. > b := [ :someClasses |

Re: [Pharo-users] Launcher User Templates

2018-03-29 Thread Christophe Demarey
> Le 28 mars 2018 à 21:55, Sean P. DeNigris a écrit : > > demarey wrote >> If you mean "How would I make my own templates available via Launcher? > > Yes, that's it. Sorry about the wrong terminology! No problem! Does the doc answer your needs?