Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astares/seaside-bootstrap4
Bootstrap 4 wrapper for Seaside for Pharo
https://github.com/astares/seaside-bootstrap4
pharo seaside
Last synced: about 2 months ago
JSON representation
Bootstrap 4 wrapper for Seaside for Pharo
- Host: GitHub
- URL: https://github.com/astares/seaside-bootstrap4
- Owner: astares
- License: mit
- Created: 2018-07-26T12:46:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-24T11:47:13.000Z (about 2 years ago)
- Last Synced: 2024-10-09T13:25:18.104Z (2 months ago)
- Topics: pharo, seaside
- Language: Smalltalk
- Homepage:
- Size: 2.51 MB
- Stars: 5
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Seaside-Bootstrap4
[![Build Status](https://travis-ci.org/astares/Seaside-Bootstrap4.svg?branch=master)](https://travis-ci.org/astares/Seaside-Bootstrap4) [![Coverage Status](https://coveralls.io/repos/github/astares/Seaside-Bootstrap4/badge.svg?branch=master)](https://coveralls.io/github/astares/Seaside-Bootstrap4?branch=master)
Bootstrap 4 wrapper for Seaside for Pharo 8
based on 4.0 from [http://bootstrap.rtlcss.com/](http://bootstrap.rtlcss.com/)**IMPORTANT**: Note that there already is a newer repo: [https://github.com/astares/Seaside-Bootstrap5](https://github.com/astares/Seaside-Bootstrap5)
## Installation
First install [Pharo](http://www.pharo.org) on your machine. Pharo 8 onwards is recommended. Either using [PharoLauncher](https://github.com/pharo-project/pharo-launcher) or [Pharo ZeroConf](http://get.pharo.org/):## Load Pharo using ZeroConf
```
wget -O- get.pharo.org/64/80+vm | bash
./pharo-ui Pharo.image
```## Load all in one
```Smalltalk
Metacello new
baseline:'Bootstrap4';
repository: 'github://astares/Seaside-Bootstrap4:master/src';
load
```## Load Seaside and then manually
```Smalltalk
Metacello new
baseline:'Seaside3';
repository: 'github://SeasideSt/Seaside:develop/repository';
load.
```and then load the packages you need using Iceberg
## Run
Start the web server for [Seaside](http://www.seaside.st) - for instance with Zinc evaluate
```Smalltalk
ZnZincServerAdaptor startOn: 8080.
WebBrowser openOn: 'http://localhost:8080/bootstrap4/'
```## Learn
- see [https://www.w3schools.com/bootstrap4/](https://www.w3schools.com/bootstrap4/)
- see [https://www.scaler.com/topics/css/bootstrap/](https://www.scaler.com/topics/css/bootstrap/)## Migration from Bootstrap 3 to 4
- the prefix is gone, so use container instead of tbsContainer, etc.
- use formButton or outlineButton instead of tbsButton
- buttons do not have beExtraSmall and beExtraSmallIf: styles anymore
- breadcrumb section is now called breadcrumb item