Re: [Pharo-users] CannotWriteData errors in P3 and Seaside

2020-08-21 Thread Stéphane Ducasse
+1 and I like when this is not Pharo the problem :) S. > On 21 Aug 2020, at 08:24, Sven Van Caekenberghe wrote: > > Hi Esteban, > > That is good to hear ! > > Sven > >> On 20 Aug 2020, at 23:36, Esteban Maringolo wrote: >> >> Hi all, >> >> On Thu, Aug 20, 2020 at 3:02 PM Sven Van Caekenbe

Re: [Pharo-users] Iceberg "adopt commit" behavior

2020-08-21 Thread Sean P. DeNigris
Esteban A. Maringolo wrote > so I add how do I get the IceLibgitRepository > instance? (given I provide the name). I got it via Iceberg contextMenu -> Extra -> Inspect, which works via the UI but maybe you're looking for a programmatic way? - Cheers, Sean -- Sent from: http://forum.world.st

Re: [Pharo-users] Iceberg "adopt commit" behavior

2020-08-21 Thread teso...@gmail.com
You can always get the registered repositories through: IceRepository registry But take care that the API is not intended to be stable through versions as it is always intended to be used by the UI. So, script it as you wish, we can answer whatever doubt you have, but I have warn you :D! On Fri,

Re: [Pharo-users] Iceberg "adopt commit" behavior

2020-08-21 Thread Esteban Maringolo
Hi Pablo, I did the following: 1. Have Pharo with no changes in the current branch. 2. Edit an external file (foo.txt) and commit just modifying this file. 3. Go to Pharo, select the recently created commit and do an "Adopt commit" command on it. 4. Make some change and commit in Iceberg The chan

Re: [Pharo-users] How to print playground contents as I type them.

2020-08-21 Thread Offray Vladimir Luna Cárdenas
Hi, Just a gentle remainder if anyone can point me in the right direction. By the way, despite of all the local activities where Pharo is a key core infrastructure and enabler, I'm, AFAIK, the only active Pharoer/Smalltalker in my country and (virtual) community has been key on my self-guided lea

Re: [Pharo-users] How to print playground contents as I type them.

2020-08-21 Thread Stéphane Ducasse
> On 21 Aug 2020, at 21:04, Offray Vladimir Luna Cárdenas > wrote: > > Hi, > > Just a gentle remainder if anyone can point me in the right direction. you would like to evaluate the expression at each key stroke? It means that you can register a callback (I do not know how do it but I would

Re: [Pharo-users] How to print playground contents as I type them.

2020-08-21 Thread Steven Costiou
Hi, no idea if that's what you are looking to, but there is RubScrolledTextMorph>>whenKeystrokeInTextArea: anAnnouncement self announcer announce: (anAnnouncement copy morph: self) I instrumented that in one of my projects to capture what's written in text areas and print it on the Trans