The Trunk: Files-tpr.174.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Files-tpr.174.mcz

commits-2
tim Rowledge uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-tpr.174.mcz

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

Name: Files-tpr.174
Author: tpr
Time: 27 November 2017, 4:17:37.367161 pm
UUID: 66bc2358-5091-4a6e-8ca9-d3cc71fac05e
Ancestors: Files-tpr.173

Minor changes to use vmPathToSqueakPath

=============== Diff against Files-tpr.173 ===============

Item was changed:
  ----- Method: DirectoryEntry>>convertFromSystemName (in category 'multilingual system') -----
  convertFromSystemName
 
+ name := name vmPathToSqueakPath!
- name := (FilePath pathName: name isEncoded: true) asSqueakPathName!

Item was changed:
  ----- Method: StandardFileStream>>requestDropStream: (in category 'dnd requests') -----
  requestDropStream: dropIndex
  "Return a read-only stream for some file the user has just dropped onto Squeak."
  | rawName |
  rawName := self class primDropRequestFileName: dropIndex.
+ name := rawName vmPathToSqueakPath.
- name :=  (FilePath pathName: rawName isEncoded: true) asSqueakPathName.
  fileID := self primDropRequestFileHandle: dropIndex.
  fileID == nil ifTrue:[^nil].
  self register.
  rwmode := false.
  buffer1 := String new: 1.
  self enableReadBuffering
  !