[Pharo-users] IceGenericError: SecureTransport error: I/O error

2018-10-07 Thread Hernán Morales Durand
Hi, I don't know if this has been reported. When loading packages in Pharo 6.1 (Iceberg 1.2.1), through Metacello script in MacOS High Sierra (10.13.4) I receive this error "LGit_GIT_ERROR: SecureTransport error: I/O error." I tried with setting and unsetting these parameters before the loading e

Re: [Pharo-users] finding dependees of a package

2018-10-07 Thread Cyril Ferlicot D.
Le 07/10/2018 à 21:44, Peter Uhnak a écrit : > Hi, > > I know I can "Browse Dependencies" of a particular package, but this > only shows me the dependencies of the selected package X. > > What I am looking for is a list of packages that depend on X ... is that > possible? > Hi, I think this su

[Pharo-users] finding dependees of a package

2018-10-07 Thread Peter Uhnak
Hi, I know I can "Browse Dependencies" of a particular package, but this only shows me the dependencies of the selected package X. What I am looking for is a list of packages that depend on X ... is that possible? Thanks, Peter

Re: [Pharo-users] Tonel difficulty

2018-10-07 Thread Norbert Hartl
> Am 07.10.2018 um 15:47 schrieb Sven Van Caekenberghe : > > > >> On 7 Oct 2018, at 15:27, Norbert Hartl wrote: >> >> I test my repo with travis for pharo 6.1 and pharo 7. Using >> >> SmalltalkCISpec { >> #loading : [ >> SCIMetacelloLoadSpec { >> #baseline : 'ArangoDB', >>

Re: [Pharo-users] Text editor + morph

2018-10-07 Thread Hilaire
Hi Nicolai, Thanks for the tips! I tried it out with DrGeo and it gives interesting result (screenshot). Text can be edited and the DrGeo view is fully interactive. It is very close to what I am looking for. Hilaire PS: The used code was: |text block c ptA ptB ptC angle segA segB segC|     c

Re: [Pharo-users] Text editor + morph

2018-10-07 Thread Nicolai Hess
The "old" way, a Morph asText, still works. I don't know if this is still fully usable with normal text operations: |text block| block := [ Morph new asText, ' some text']. text:=(Smalltalk ui theme builder newTextEditorFor: block getText: #value setText: nil). text openInWindow. Am Mi., 3. Ok

Re: [Pharo-users] Tonel difficulty

2018-10-07 Thread Norbert Hartl
Ok, never mind. I just copied the travis files without noticing it was loading Pharo-6.0 Now it works > Am 07.10.2018 um 16:15 schrieb Norbert Hartl : > > > >> Am 07.10.2018 um 15:49 schrieb Cyril Ferlicot > >: >> >> >> >> On dim. 7 oct. 2018 at 15:28, Norb

Re: [Pharo-users] Tonel difficulty

2018-10-07 Thread Norbert Hartl
> Am 07.10.2018 um 15:49 schrieb Cyril Ferlicot : > > > > On dim. 7 oct. 2018 at 15:28, Norbert Hartl > wrote: > I’ve created a new repository and chose to use tonel for its file format. But > as in my previous attempts I cannot make it work. > > I test my repo wi

Re: [Pharo-users] Tonel difficulty

2018-10-07 Thread Norbert Hartl
> Am 07.10.2018 um 15:59 schrieb Esteban Lorenzano : > > Until yesterday, smalltalkCI was failing with Pharo 6.1 and Tonel because > Tonel version present on 6.1 was too old and not adapted to latest Metacello. > > I made a backport yesterday (to Tonel 1.0.9) so *now* it should work (always

Re: [Pharo-users] Tonel difficulty

2018-10-07 Thread Esteban Lorenzano
Until yesterday, smalltalkCI was failing with Pharo 6.1 and Tonel because Tonel version present on 6.1 was too old and not adapted to latest Metacello. I made a backport yesterday (to Tonel 1.0.9) so *now* it should work (always with latest metacello). Can you verify that? Cheers, Esteban >

Re: [Pharo-users] Tonel difficulty

2018-10-07 Thread Cyril Ferlicot
On dim. 7 oct. 2018 at 15:28, Norbert Hartl wrote: > I’ve created a new repository and chose to use tonel for its file format. > But as in my previous attempts I cannot make it work. > > I test my repo with travis for pharo 6.1 and pharo 7. Using > > SmalltalkCISpec { > #loading : [ > SCI

Re: [Pharo-users] Tonel difficulty

2018-10-07 Thread Sven Van Caekenberghe
> On 7 Oct 2018, at 15:27, Norbert Hartl wrote: > > I test my repo with travis for pharo 6.1 and pharo 7. Using > > SmalltalkCISpec { > #loading : [ > SCIMetacelloLoadSpec { > #baseline : 'ArangoDB', > #directory : 'source', > #load : [ 'Tests' ], >

[Pharo-users] Tonel difficulty

2018-10-07 Thread Norbert Hartl
I’ve created a new repository and chose to use tonel for its file format. But as in my previous attempts I cannot make it work. I test my repo with travis for pharo 6.1 and pharo 7. Using SmalltalkCISpec { #loading : [ SCIMetacelloLoadSpec { #baseline : 'ArangoDB', #d

Re: [Pharo-users] Text editor + morph

2018-10-07 Thread Hilaire
Hi Hannes, Thanks for the tips and the reference, which I did not know about until now. I will take a close look to it. Hilaire Le 07/10/2018 à 09:04, H. Hirzel a écrit : > I would put it differently: > > Use an object and embed Text editors and DrGeo canvas objects. > This idea is taken out o