https://github.com/pharo-project/pharo/pull/2057 https://pharo.fogbugz.com/f/cases/22750/Add-GTPlayground-class-openUrl Note that this is actually more universal than the specific website/webservice we are currently using. It works for any web resource that is returning text/plain documents. For example, try GTPlayground openUrl: 'http://zn.stfx.eu/zn/numbers.txt'. (Apart from the fact that that server is currently down ;-)
On 9 Dec 2018, at 13:13, Ben Coman <btc@openinworld.com> wrote:
On Sun, 9 Dec 2018 at 18:31, Sven Van Caekenberghe <sven@stfx.eu> wrote:
On 8 Dec 2018, at 17:55, Sven Van Caekenberghe <sven@stfx.eu> wrote:
Maybe an additional menu item somewhere ?
Or a little bit more API.
Right now with the standard GT infrastructure in Pharo 7 (and Pharo 6.1 also I guess), you can do
GTPlayground openOn: (GTPlayPage loadFromPublishUrl: 'http://ws.stfx.eu/1WS4U').
We could add one of the following
GTPlayground loadFromPublishUrl: 'http://ws.stfx.eu/1WS4U'. "keeps the same selector" GTPlayground openPublishUrl: 'http://ws.stfx.eu/1WS4U'. "shorter, more in line with the opening action" GTPlayground openUrl: 'http://ws.stfx.eu/1WS4U'. "the original on ZnWorkspace, shortest"
The last is easiest to remember - composed of just two words rather than three or four..
If we agree, I can change the default instructions on the web page as seen in a browser.
There is little point in wanting to keep the ZnWorkspace code, as it is no longer needed.
okay.
cheers -ben