[Pkg] Rio: File-Kernel-kph.6.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Wed Nov 26 03:41:56 UTC 2008


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

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

Name: File-Kernel-kph.6
Author: kph
Time: 26 November 2008, 3:41:54 am
UUID: 6231716d-7258-477d-b0a2-599e7d887cef
Ancestors: File-Kernel-kph.5

tidy

=============== Diff against File-Kernel-kph.5 ===============

Item was changed:
  ----- Method: FileStat>>isValid (in category 'as yet unclassified') -----
  isValid
  
+ 	^ array notNil!
- 	^ dir notNil!

Item was changed:
  ----- Method: FileStat>>isInvalid (in category 'as yet unclassified') -----
  isInvalid
  
+ 	^ array isNil!
- 	^ dir isNil!

Item was changed:
  ----- Method: FileStat>>creationTime (in category 'as yet unclassified') -----
  creationTime
  
+ 	^ TimeStamp fromSeconds: (array at: 2)!
- ^ self cTime!

Item was changed:
  ----- Method: FileStat>>isDirectory (in category 'as yet unclassified') -----
  isDirectory
  
+ 	^ array at: 4!
- ^(array at: 4)!

Item was changed:
  ----- Method: FileStat>>fileName (in category 'as yet unclassified') -----
  fileName
  
+  ^ array at: 1!
- ^array at: 1!

Item was changed:
  ----- Method: FileStat>>modificationTime (in category 'as yet unclassified') -----
  modificationTime
  
+ 	^ TimeStamp fromSeconds: (array at: 3)
+ 
+ !
- ^ self mTime!

Item was changed:
  ----- Method: FileStat>>isFile (in category 'as yet unclassified') -----
  isFile
  
+ 	^ self isDirectory not!
- ^self isDirectory not!

Item was changed:
  ----- Method: FileStat>>fileSize (in category 'as yet unclassified') -----
  fileSize
  
+ 	^ array at: 5!
- ^ array at: 5!

Item was removed:
- ----- Method: FileStat>>rio (in category 'as yet unclassified') -----
- rio
- 
- 	^ dir / self fileName!

Item was removed:
- ----- Method: FileStat>>mTime (in category 'as yet unclassified') -----
- mTime
- 
- ^ TimeStamp fromSeconds: self mTimeInSeconds
- 
- !

Item was removed:
- ----- Method: FileStat>>cTime (in category 'as yet unclassified') -----
- cTime
- 
- ^ TimeStamp fromSeconds: self cTimeInSeconds!

Item was removed:
- ----- Method: FileStat>>cTimeInSeconds (in category 'as yet unclassified') -----
- cTimeInSeconds
- 
- ^ array at: 2!

Item was removed:
- ----- Method: FileStat>>mTimeInSeconds (in category 'as yet unclassified') -----
- mTimeInSeconds
- 
- ^ array at: 3!



More information about the Packages mailing list