[Pharo-users] Can I code a web browser in a Pharo GUI window (Morphic or other)?

2019-06-14 Thread Arie van Wingerden
Hi, for a project I need this kind of program: 1. client side only 2. must be able to programmatically show a web browser in a window (Morphic??); only local content will be shown 3. must also be able to show other windows, containing simple games Now, I guess that 1 and 3 are possib

Re: [Pharo-users] TestCases and forked processes in TestResource don't play well

2019-06-14 Thread Denis Kudriashov
Hi Eric чт, 13 июн. 2019 г., 20:31 Erik Stel : > Hi Denis, > > Thanks for the fast response. > > When you say proper fix, do you mean a general fix for all TestResources or > do you mean the fix for my situation? > I mean a general fix for test resources. > I can't oversee (yet) what the effec

Re: [Pharo-users] Can I code a web browser in a Pharo GUI window (Morphic or other)?

2019-06-14 Thread Richard O'Keefe
There was a thread about this two years ago. http://forum.world.st/Smalltalk-Internet-Browser-td4944879.html There is Scamper for Squeak, https://github.com/HPI-SWA-Teaching/Scamper It used to come standard in Squeak. When I knew it, it couldn't quite handle HTML 3.2. I imagine it was removed f

Re: [Pharo-users] Can I code a web browser in a Pharo GUI window (Morphic or other)?

2019-06-14 Thread Arie van Wingerden
Hi Richard, Op vr 14 jun. 2019 om 12:58 schreef Richard O'Keefe : > There was a thread about this two years ago. > http://forum.world.st/Smalltalk-Internet-Browser-td4944879.html > Mmmm. Sounds not like a ready to use solution at all. Given the fact that I am a Pharo n00b it wouldn't be an easy

Re: [Pharo-users] Can I code a web browser in a Pharo GUI window (Morphic or other)?

2019-06-14 Thread Ben Coman
On Fri, 14 Jun 2019 at 15:46, Arie van Wingerden wrote: > Hi, > > for a project I need this kind of program: > >1. client side only >2. must be able to programmatically show a web browser in a window >(Morphic??); only local content will be shown >3. must also be able to show othe

Re: [Pharo-users] Can I code a web browser in a Pharo GUI window (Morphic or other)?

2019-06-14 Thread Noury Bouraqadi
Hi Arie, Do you really need to code web browser, or is it acceptable to control a web browser from Pharo. This is what we do in PharoJS (http://pharojs.org ), for running tests. We also have a custom playground, so evaluate pharo expressions that are translated to javascrip

[Pharo-users] Loading Gettext on already installed Seaside

2019-06-14 Thread BrunoBB
Hi, I have a Pharo 7.0 image with Seaside installed on it. Now i want to add Gettext but i'm not able to do it yet. Metacello new baseline:'Seaside3'; repository: 'github://SeasideSt/Seaside:master/repository'; load: #('Seaside-Gettext-Core' 'Seaside-Gettext-Examples') Fail because 'Seaside-

[Pharo-users] Autocompletion

2019-06-14 Thread Tomaž Turk
I managed to find some time to progress with my Smalltalk / Pharo learning and am going through the Spec booklet. I noticed that autocompletion most of the times works excellent, sometimes it struggles. For instance, if you prepare CustomerSatisfaction >> initializeWidgets buttonBad := se

Re: [Pharo-users] Loading Gettext on already installed Seaside

2019-06-14 Thread Paul DeBruicker
Hi Add onConflict: [ :ex | ex allow ]; To your Metacello load instructions BrunoBB wrote > Hi, > > I have a Pharo 7.0 image with Seaside installed on it. > > Now i want to add Gettext but i'm not able to do it yet. > > Metacello new > baseline:'Seaside3'; > repository: 'github://Seas

Re: [Pharo-users] Loading Gettext on already installed Seaside

2019-06-14 Thread BrunoBB
Paul, Thanks for the pointer now i have passed the conflict. But i got a DNU: NaturalLanguageTranslator>>domainRegistered: This method does not exist. It seems that the following entry hsa the fix: http://forum.world.st/Error-loading-Seaside-Gettext-support-td4980855.html Close the walkback and

Re: [Pharo-users] Loading Gettext on already installed Seaside

2019-06-14 Thread BrunoBB
Well, This method exist on GetText GemStone version. So i'm not quite sure what is going on. Maybe GS and Pharo version are not synchronized. regards, bruno -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html