[Pkg] Rio: File-Base-kph.22.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Sat Mar 7 19:08:06 UTC 2009


A new version of File-Base was added to project Rio:
http://www.squeaksource.com/Rio/File-Base-kph.22.mcz

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

Name: File-Base-kph.22
Author: kph
Time: 7 March 2009, 7:07:57 pm
UUID: 463c64ee-0b4b-11de-8dc9-000a95edb42a
Ancestors: File-Base-kph.21

+ symbolicLink to (supports unix only at this time)

=============== Diff against File-Base-kph.21 ===============

Item was added:
+ ----- Method: File>>symbolicLinkTo: (in category 'public modes') -----
+ symbolicLinkTo: dest
+ 
+  	^ executive from: self symbolicLinkTo: dest !

Item was changed:
  ----- Method: File>>contents (in category 'public file') -----
  contents 
   
+ 	"the error handler is to provide consistent experience between local files and remote if the file is not found"
+ 	
+   [ self reader: [ :str | ^ str upToEnd ] ] on: TelnetProtocolError do: [ :ex | ^ nil ].
-   self reader: [ :str | ^ str upToEnd ].
  
  	^ nil!



More information about the Packages mailing list