Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-14 Thread Vitor Medina Cruz
Oh yes, I thought they were woking on the change of seaside, but it is done: https://github.com/SeasideSt/Seaside/releases/tag/v3.2.5 I put version 3.2.5 of seaside on my baseline and now it works!!! Thanks! On Fri, Dec 14, 2018 at 3:00 PM Cyril Ferlicot wrote: > On Fri, Dec 14, 2018 at 5:55 P

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-14 Thread Cyril Ferlicot
On Fri, Dec 14, 2018 at 5:55 PM Vitor Medina Cruz wrote: > > Did that: > > Metacello new repository: 'github://svenvc/zinc:v3.0.1/repository'; > baseline: 'ZincHTTPComponents'; > ignoreImage; > onConflict: [ :ex | ex useIncoming ]; > onWarnin

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-14 Thread Vitor Medina Cruz
Did that: Metacello new repository: 'github://svenvc/zinc:v3.0.1/repository'; baseline: 'ZincHTTPComponents'; ignoreImage; onConflict: [ :ex | ex useIncoming ]; onWarning: [ :ex | Transcript crShow: ex ]; silently;

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-14 Thread Vitor Medina Cruz
> > You can use the lock API in Metacello to use the dependency you want, > ignoring the ones defined in the baselines. > You mean loading Zinc with lock before I load my project? On Wed, Dec 12, 2018 at 5:21 PM Gabriel Cotelli wrote: > You can use the lock API in Metacello to use the dependenc

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Paul DeBruicker
can also do the code rewriting described here as a stopgap measure: http://forum.world.st/stfx-eu-down-tp5090610p5090624.html Vitor Medina Cruz wrote > Hello, > > Here is my baseline > > BaselineOfEmployees >> baseline: spec [ > > > > spec for: #'common' do: [ >

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Johan Brichau
Busy changing this in the BaselineOfSeaside3 as we speakā€¦ Johan > On 12 Dec 2018, at 20:20, Gabriel Cotelli wrote: > > You can use the lock API in Metacello to use the dependency you want, > ignoring the ones defined in the baselines. > > On Wed, Dec 12, 2018 at 4:16 PM Vitor Medina Cruz

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Gabriel Cotelli
You can use the lock API in Metacello to use the dependency you want, ignoring the ones defined in the baselines. On Wed, Dec 12, 2018 at 4:16 PM Vitor Medina Cruz wrote: > I can't depend on https://github.com/svenvc/zinc because this is a > transitive dependency, my baseline depends of seaside

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Vitor Medina Cruz
I can't depend on https://github.com/svenvc/zinc because this is a transitive dependency, my baseline depends of seaside that depends of Zinc. Is there a way to exclude Zinc dependency from Seaside so that I can force a Zinc dependency definition of my baseline? On Wed, Dec 12, 2018 at 5:08 PM Sve

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Sven Van Caekenberghe
> On 12 Dec 2018, at 18:56, Vitor Medina Cruz wrote: > > Note it is trying to reach http://mc.stfx.eu/ZincHTTPComponents, which don't > seems to be hosting Zinc anymore. Since these are transitive dependencies, I > tried to define Zinc in the root of my baseline, as I did with seaside > (ma

[Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Vitor Medina Cruz
Hello, Here is my baseline BaselineOfEmployees >> baseline: spec [ spec for: #'common' do: [ spec blessing: #'baseline'; baseline: 'Seaside3' with: [ spec repository: 'github://SeasideSt/Seaside:v3.2.2/repository' ]; baseline: 'Magritte' with