<div dir="ltr"><div><br></div><div>Thanks for the help!  I ran:</div><div><br></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">Metacello new</span><br style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial"><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"> repository: 'github://SeasideSt/Seaside:ma</span><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">ster/repository';</span><br style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial"><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"> baseline:'Seaside3';</span><br style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial"><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"> load</span><br></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"><br></span></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">And then added a ZnZinkServiceAdapter, started it, and Seaside ran fine.  It would be good if the docs at <a href="http://www.seaside.st/download/pharo">http://www.seaside.st/download/pharo</a> were updated.  Also, that page says to open a <i>workspace</i>.  I was able to equate that with the <i>playground</i> but it would be good if the docs said that.</span></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"><br></span></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">I have a number of questions that I'll ask in a separate message.</span></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"><br></span></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">Thanks!</span></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"><br></span></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">Blake McBride</span></div><div><span></span><br></div><br><br><div class="gmail_quote"><div dir="ltr">On Thu, Jun 14, 2018 at 3:48 AM Cyril Ferlicot D. <<a href="mailto:cyril.ferlicot@gmail.com">cyril.ferlicot@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 14/06/2018 08:08, Blake McBride wrote:<br>
> Greetings,<br>
> <br>
> I tried downloading the latest Pharo and then manually loading Seaside<br>
> (on a 64 bit Linux box).  I don't know Pharo or Seaside but I think I<br>
> got an error. <br>
> <br>
> I ran:<br>
> <br>
> Gofer new<br>
>     url:'<a href="http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main" rel="noreferrer" target="_blank">http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main</a>';<br>
>     package: 'ConfigurationOfSeaside3';<br>
>     load.<br>
> <br>
> without error.  But when I run:<br>
> <br>
> ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load.<br>
> <br>
> I get what's shown on the attached screenshot.   Is this an error?  How<br>
> can I fix it?<br>
> <br>
<br>
Hi,<br>
<br>
In complement to Tim's answer.<br>
<br>
Yes the command worked and you just see the result of the script in the<br>
playground, but I would like to raise two warnings.<br>
<br>
First, Gofer is a deprecated way to load a project in recent Pharo. The<br>
correct way is to use Metacello.<br>
<br>
Metacello new<br>
        repository:<br>
'<a href="http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main" rel="noreferrer" target="_blank">http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main</a>';<br>
        configuration: 'Seaside3';<br>
        version: #stable;<br>
        load<br>
<br>
Most of the time the result will be the same but the difference is that<br>
Gofer has more bugs and sometimes the dependencies will not be resolved<br>
the right way.<br>
<br>
Second point is that in recent Pharo Seaside was migrated from Sthub to<br>
Github. <a href="https://github.com/SeasideSt/Seaside" rel="noreferrer" target="_blank">https://github.com/SeasideSt/Seaside</a><br>
<br>
Now the right way to load it is:<br>
<br>
Metacello new<br>
 repository: 'github://SeasideSt/Seaside:master/repository';<br>
 baseline:'Seaside3';<br>
 load<br>
<br>
The Sthub version is still functionnal but not maintained anymore.<br>
<br>
Have a nice day.<br>
<br>
> Thanks!<br>
> <br>
> Blake McBride<br>
> <br>
> <br>
> <br>
> _______________________________________________<br>
> seaside mailing list<br>
> <a href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a><br>
> <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" rel="noreferrer" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
> <br>
<br>
<br>
-- <br>
Cyril Ferlicot<br>
<a href="https://ferlicot.fr" rel="noreferrer" target="_blank">https://ferlicot.fr</a><br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" rel="noreferrer" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</blockquote></div></div>