[squeak-dev] The Inbox: Network-chc.120.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Nov 7 14:59:54 UTC 2011


A new version of Network was added to project The Inbox:
http://source.squeak.org/inbox/Network-chc.120.mcz

==================== Summary ====================

Name: Network-chc.120
Author: chc
Time: 7 November 2011, 9:59:44.904 am
UUID: c50a16b2-5a12-409d-a31e-2d46f4a55fc2
Ancestors: Network-tonyg.119

http://lists.squeakfoundation.org/pipermail/squeak-dev/2010-June/151440.html

FileList>>labelString was changed but perhaps it didn't change to accommodate ServerDirectory. As such the FTP folder in FileList has been broken. The process chokes in:

pathAndPattern
	^directory fullName, directory slash, pattern
	
because ServerDirectory has neither #fullName nor #slash. I've added them and now the FTP directory at the bottom of the file list in FileList works again.

=============== Diff against Network-tonyg.119 ===============

Item was added:
+ ----- Method: ServerDirectory>>fullName (in category 'accessing') -----
+ fullName
+ 	^server!

Item was added:
+ ----- Method: ServerDirectory>>slash (in category 'accessing') -----
+ slash
+ 	^'/'!




More information about the Squeak-dev mailing list