RE: [Newbies] Re: FileDirectory

2016-05-31 Thread Ron Teitelbaum
Hi Joe, There are a number of different types of resource names. One of them is a URI the other is URL (I=Indenter L=Locator). They are ways for locating and identifying resources so that computers can find and work with them. I would recommend googling a bit about URI and URL to understand

Re: [Newbies] Re: FileDirectory

2016-05-26 Thread Ben Coman
On Fri, May 27, 2016 at 3:02 AM, Joseph Alotta wrote: > >> On May 26, 2016, at 8:29 AM, Ron Teitelbaum [via Smalltalk] <[hidden >> email]> wrote: >> >> One more question for you. I mentioned returning a newly created instance >> or a specific class from a class side method. Can you name another

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
Have a look at the Hierarchy for the class Url Notice the class method: #urlClassForScheme: That should give you a better understanding of why url methods are in FileDirectory. For browser like methods see HTTPClient. All the best, Ron Teitelbaum From: beginners-boun...@lis

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
From: Joseph Alotta Sent: Thursday, May 26, 2016 4:32 PM > Extra credit: Why would you use a class variable? We know that an instance variable is used to store data within the context of an instance. Why would you want to store data in the context of a class? Window closeAllWindows

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
From: Joseph Alotta Sent: Thursday, May 26, 2016 3:02 PM > On May 26, 2016, at 8:29 AM, Ron Teitelbaum [via Smalltalk] <[hidden email]> > wrote: > > One more question for you. I mentioned returning a newly created instance or > a specific class from a class side method. Can you n

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf Of Joseph Alotta Sent: Wednesday, May 25, 2016 7:47 PM To: beginners@lists.squeakfoundation.org Subject: [Newbies] Re: FileDirectory Hi Ron, > Excellent. Remember that yo

RE: [Newbies] Re: FileDirectory

2016-05-25 Thread Ron Teitelbaum
Hi Joe, Excellent. Remember that you should also look at the super classes for methods. UnixFileDirectory is the instance of "FileDirectory default" but it's also a subclass of FileDirectory so the methods you can call include UnixFileDirectory and all the methods on the class hierarchy inclu

Re: [Newbies] Re: FileDirectory

2016-05-25 Thread H. Hirzel
Have a look as well at http://wiki.squeak.org/squeak/2184 What exactly do you want to do? --Hannes On 5/25/16, Joseph Alotta wrote: > Hi Ron, > > I get an instance of UnixFileDirectory. And there are only 6 methods for > UnixFileDirectory, none of them doing what I want. > > Sincerely, > > Joe