[Pkg] Rio: Rio-Grande-kph.41.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Fri Nov 7 03:04:19 UTC 2008


A new version of Rio-Grande was added to project Rio:
http://www.squeaksource.com/Rio/Rio-Grande-kph.41.mcz

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

Name: Rio-Grande-kph.41
Author: kph
Time: 7 November 2008, 3:03:58 am
UUID: ec003b99-9787-434a-9997-2906888b3a6a
Ancestors: Rio-Grande-kph.40

removed some debugging code

=============== Diff against Rio-Grande-kph.40 ===============

Item was changed:
  ----- Method: RioFtpFileSystem>>ftpGetDirectory: (in category 'as yet unclassified') -----
  ftpGetDirectory: dirString
  	"Return a stream with a listing of the current server directory.  (Later -- Use a proxy server if one has been registered.)"
  
  	| listing str ftpEntries |
- 
- 	Transcript show: thisContext sender sender sender sender printString.
  
  	self ftpDo: [ :client |
  		client changeDirectoryTo: dirString.
  		listing := client getDirectory ].	 
  		
  	str := ReadStream on: listing.
  	
  	(str respondsTo: #contentsOfEntireFile) ifFalse: [^ #()].
  	
+ 	ftpEntries := str contentsOfEntireFile findTokens: String crlf.
+ 		
- 	ftpEntries := str contentsOfEntireFile.
- 	
- 	Transcript cr; show: ftpEntries; cr.
- 	
- 	ftpEntries := ftpEntries findTokens: String crlf.
- 	
- 	
  	^ ftpEntries 
  		collect:[:ftpEntry | self ftpParseEntry: ftpEntry ]
  		thenSelect: [:entry | entry notNil]!



More information about the Packages mailing list