Re: [Pharo-users] ZnClient GET, but just the content of the tag?

2016-11-27 Thread jtuc...@objektfabrik.de
I wonder if it is a hard requirement to transport your info as part of the html page. A possible alternative might be to just use a HEAD request instead of GET and transport your info "on the bare HTTP layer"? Joachim Am 27.11.16 um 13:37 schrieb PBKResearch: Paul Not sure if this is helpfu

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread Ben Coman
On Sun, Nov 27, 2016 at 3:24 PM, Derry Bryson wrote: > Where can I find documentation of the base class libraries for Pharo > Smalltalk? Or is there some other way I should learn about the system? Within the Image, click on the button beneath the class list to view the class comments. Some ar

Re: [Pharo-users] [SmaCC] Partial Installation

2016-11-27 Thread Dimitris Chloupis
Thank Thierry you pointed me to the right direction and after that because I knew what the problem was I found the solution, it needs the addition of the require message to create a group that is then loaded . I have corrected the baseline https://github.com/kilon/Ephestos/blob/master/BaselineOfEp

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread stepharo
On Sun, 27 Nov 2016 18:45:07 +0100, Derry Bryson wrote: Thanks for the helpful replies. I am working through Pharo By Example, I was just hoping there was something like the Python documentation for Pharo. Can you explain what you mean exactly? Because in Pharo by Example core library a

Re: [Pharo-users] ZnClient GET, but just the content of the tag?

2016-11-27 Thread stepharo
nice :) On Sun, 27 Nov 2016 19:46:41 +0100, Jan Kurš wrote: Hi, PetitParser2 [1] supports parsing of streams. I have been experimenting with ZnClient and come up with the following solution: 1) Create a PP2 stream from ZnClient stream: byteStream := ZnClient new url: 'http://pharo.org';

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread p...@highoctane.be
First half of the Bluebook always good. http://sdmeta.gforge.inria.fr/FreeBooks/BlueBook/ Must read for any Smalltalker I'd say. Phil On Sun, Nov 27, 2016 at 9:38 AM, Hilaire wrote: > Hi Derry, > > Regarding the base class libraries, it is Smalltalk. I can suggest you > some books about Small

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread Dimitris Chloupis
yes we try to collect all the documentation under one github organisation which includes all the books , both published and unpublishes https://github.com/SquareBracketAssociates You will find there 90% of the entire Pharo documentation, including the books I mentioned. Unlike Python we dont hav

Re: [Pharo-users] ZnClient GET, but just the content of the tag?

2016-11-27 Thread Jan Kurš
Hi, PetitParser2 [1] supports parsing of streams. I have been experimenting with ZnClient and come up with the following solution: 1) Create a PP2 stream from ZnClient stream: byteStream := ZnClient new url: 'http://pharo.org'; streaming: true; get. stream := PP2CharacterStream on: byteStre

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread Derry Bryson
Thanks for the helpful replies. I am working through Pharo By Example, I was just hoping there was something like the Python documentation for Pharo. Derry On Sun, Nov 27, 2016 at 4:26 AM, Dimitris Chloupis wrote: > Through my personal experience I have found 3 ways of learning things > > 1) T

Re: [Pharo-users] ZnClient GET, but just the content of the tag?

2016-11-27 Thread PBKResearch
Paul Not sure if this is helpful - I have not tried it out, but it may give you a pointer. As Sven says, you need to parse a stream and be able to stop when you reach the desired point. If instead of Soup you use XMLHTMLParser, this has streaming siblings called SAXHTMLHandler and SAX2HTMLParser.

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread Dimitris Chloupis
Through my personal experience I have found 3 ways of learning things 1) Through Documentation and asking Questions, or been taught in a course/class, this one is the most popular because is the one requiring the least effort , but also the weakest form of learning because it offers a very limite

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread Hilaire
Hi Derry, Regarding the base class libraries, it is Smalltalk. I can suggest you some books about Smalltalk which was good resources when I learnt programming with Squeak, then Pharo: - Smalltalk By Example[1] - Smalltalk with style You can find free to print versions at http://stephane.ducasse.

Re: [Pharo-users] Where is the documentation of the base class libraries?

2016-11-27 Thread stepharo
Hello Derry In complement to what sven said you can also read the Pharo by Example books. http://books.pharo.org Stef On Sun, 27 Nov 2016 08:24:36 +0100, Derry Bryson wrote: Where can I find documentation of the base class libraries for Pharo Smalltalk? Or is there some other way I s