File List, adding FTP site to

Ned Konz ned at bike-nomad.com
Wed Sep 24 05:39:35 UTC 2003


On Tuesday 23 September 2003 09:25 pm, Richard A. O'Keefe wrote:
> One of the cute things about Squeak is that when I do
> (world)|open|file list|
> the "root" directory shown in the top left panel includes a number
> of FTP sites, indicated by a leading up arrow.
>
> What's not at all obvious is how I can add FTP sites of my own
> choosing to this list.

We seem to have misplaced the server menu (I believe that a fix for 
that was posted in the last few months).

If you go:

	FileList open openAsMorph

then you'll see a context menu on the directory list, which if you 
choose "add server" gives you this DoIt:

"Please fill in the following info, then select all text and choose 
DoIt."

	| aa | 
	self flag: #ViolateNonReferenceToOtherClasses.
	aa _ ServerDirectory new.
	aa server: 'st.cs.uiuc.edu'.    "host"
	aa user: 'anonymous'.
	aa password: 'yourEmail at school.edu'.
	aa directory: '/Smalltalk/Squeak/Goodies'.
	aa url: ''.    "<- this is optional.  Only used when *writing* update 
files."
	ServerDirectory addServer: aa named: 'UIUCArchive'.  "<- known by 
this name in Squeak"

-- 
Ned Konz
http://bike-nomad.com
GPG key ID: BEEA7EFE



More information about the Squeak-dev mailing list