Loading Bootstrap in Pharo 8

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Loading Bootstrap in Pharo 8

syzygy
I am testing the new image of Pharo 8 (Pharo Contribution Jenkins) with
pre-installed seaside. When trying to load the Torsten Bootstrap:

Gofer new
     url: 'http://smalltalkhub.com/mc/TorstenBergmann/Bootstrap/main';
     package: 'ConfigurationOfBootstrap';
     load

(Smalltalk at: #ConfigurationOfBootstrap) project stableVersion load

I get the following error: Name not found: Seaside-Pharo-Development

My question is: is this supposed to work on Pharo 8?

Thank you,
Martin.




--
Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Reply | Threaded
Open this post in threaded view
|

Re: Loading Bootstrap in Pharo 8

Torsten Bergmann
Hi Martin,

SmalltalkHub is a thing of the past - we mainly moved to git and GitHub now.

As the docu on my page says:  http://www.smalltalkhub.com/#!/~TorstenBergmann/Bootstrap  say
the project has moved to https://github.com/astares/Seaside-Bootstrap

If you follow the docu and load instructions on:

   https://github.com/astares/Seaside-Bootstrap

it should be usable in Pharo 8 too.


Side note:
==========
Note that there is also a Bootstrap4 in the pipe:

  https://github.com/astares/Seaside-Bootstrap4

yet unfinished - but already usable since most components are wrapped.

Thanks
Torsten


> Gesendet: Dienstag, 25. Februar 2020 um 00:07 Uhr
> Von: "syzygy" <[hidden email]>
> An: [hidden email]
> Betreff: [Pharo-users] Loading Bootstrap in Pharo 8
>
> I am testing the new image of Pharo 8 (Pharo Contribution Jenkins) with
> pre-installed seaside. When trying to load the Torsten Bootstrap:
>
> Gofer new
>      url: 'http://smalltalkhub.com/mc/TorstenBergmann/Bootstrap/main';
>      package: 'ConfigurationOfBootstrap';
>      load
>
> (Smalltalk at: #ConfigurationOfBootstrap) project stableVersion load
>
> I get the following error: Name not found: Seaside-Pharo-Development
>
> My question is: is this supposed to work on Pharo 8?
>
> Thank you,
> Martin.
>
>
>
>
> --
> Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
>
>

Reply | Threaded
Open this post in threaded view
|

Re: Loading Bootstrap in Pharo 8

DavidBajger
In reply to this post by syzygy
Hi!
Just evaluate following statement in fresh P8 image. It will load Seaside
latest version together with Torsten's Bootstrap4 library.

  Metacello new
      baseline:'Bootstrap4';
      repository: 'github://astares/Seaside-Bootstrap4:master/src';
      load

Cheers!
David



-----
David Bajger
--
Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

David Bajger