Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seandenigris/pharo-web-browser


https://github.com/seandenigris/pharo-web-browser

pharo smalltalk web-browsing

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Pharo-Web-Browser

A port of the ["External Web Browser" project from SqueakSource](http://www.squeaksource.com/ExternalWebBrowser.html) to Pharo 5+. Previous attempts [forked due to lack of write-access](http://www.smalltalkhub.com/#!/~SeanDeNigris/ExternalWebBrowser/) and then [ported for NativeBoost](http://www.smalltalkhub.com/#!/~SeanDeNigris/ExternalWebBrowser2).

# Installation

```smalltalk
Metacello new
baseline: 'ExternalWebBrowser';
repository: 'github://seandenigris/Pharo-Web-Browser:master/repository';
onConflict: [ :ex | ex allow ];
load.
```

# Usage

## Via Pharo Tools
```smalltalk
Smalltalk tools webBrowser open: 'http://google.com'
```

## Directly
```smalltalk
ExternalWebBrowser new open: 'http://google.com'
```