Re: [Pharo-users] Sending emails

2018-09-20 Thread Jeff Gray
After trawling through some of the older posts it sounds like an external mail handling service may be the way to go, or I just stick with Gmail. There are some quite generous email services that give in the region of 10,000 mails a month for no charge. -- Sent from: http://forum.world.st/Pharo-

Re: [Pharo-users] TextEditor

2018-09-20 Thread Hernán Morales Durand
StandardWindow new addMorph: ( RubScrolledTextMorph new withLineNumbers; appendText: '/path/to/file' asFileReference contents) fullFrame: (0@0 corner: 1@1) asLayoutFrame; openInWorld. Cheers, Hernán 2018-09-20 15:06 GMT-03:00 Hilaire : > Hello, > > How can I get a text editor window?

[Pharo-users] Sending email

2018-09-20 Thread Jeff Gray
Hi all, I can use the ZdcSecureSMTPClient to send emails from a Gmail account but I have tried to do the same from a Microsoft live account without success. It times out on the connection. Do I just need to work out what's wrong or is there an easier, better way to send mails from a pharo applicat

[Pharo-users] Sending emails

2018-09-20 Thread Jeff Gray
Hi all, I can use the ZdcSecureSMTPClient to send emails from a Gmail account but I have tried to do the same from a Microsoft live account without success. It times out on the connection. Do I just need to work out what's wrong or is there an easier, better way to send mails from a pharo applicat

Re: [Pharo-users] Pharo 6 snap package

2018-09-20 Thread Offray Vladimir Luna Cárdenas
Hi, Another project that have save us from installation pains on several heterogeneous environments while giving workshops (including machines with several Linux flavors and Mac OS X, but not Windows) is Nix[1]. There is even a package for Pharo[2]. [1] https://nixos.org/nix/ [2] https://nixos.or

Re: [Pharo-users] Query on Pharo syntax

2018-09-20 Thread Offray Vladimir Luna Cárdenas
I learned something for sure from this exchange. Thanks Peter and Ben for this public conversation. Cheers, Offray On 9/10/18 7:56 PM, Ben Coman wrote: > Its a very interesting and elegant aspect of Pharo  > and I'm sure there are others at different parts of their journey > learning Pharo > who

[Pharo-users] TextEditor

2018-09-20 Thread Hilaire
Hello, How can I get a text editor window? I can't make sense of the TextEditor class, and its comment is not helpful. What is the logic behind? Thanks Hilaire -- Dr. Geo http://drgeo.eu

[Pharo-users] A mentoring course ComplexCondition implementation

2018-09-20 Thread Vitor Medina Cruz
Hello, In A Mentoring Course in Smalltalk, Andr es Valloud explains a really good implementation of and API to deal with complex conditions, is there any implementation of this (or similar) on Pharo? Regards, Vitor

Re: [Pharo-users] Distinguishing between dynamic vs. static HTTP requests

2018-09-20 Thread Sven Van Caekenberghe
Hmm, not really, in Seaside it is typically /files and /static is something that I have used as well, but really it should be flexible as there are too many different scenarios, including all kinds of prefixes. > On 20 Sep 2018, at 09:49, James Foster wrote: > > When serving web pages from a w

[Pharo-users] Distinguishing between dynamic vs. static HTTP requests

2018-09-20 Thread James Foster
When serving web pages from a web server in front of Smalltalk (e.g., Apache, Nginx, etc.), is there a convention for designating which pages are to be sent on to Smalltalk and which are to be served directly (or sent somewhere else)? Is there a prefix or suffix for one or the other? That is, do