The Trunk: Tools-ul.280.mcz

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

The Trunk: Tools-ul.280.mcz

commits-2
Levente Uzonyi uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ul.280.mcz

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

Name: Tools-ul.280
Author: ul
Time: 23 November 2010, 11:12:15.617 am
UUID: e7340a84-6734-b44b-8a68-457846da8f87
Ancestors: Tools-ul.279

- fix: FileList2 open should work now
- fix: the service used for project loading from FileList is also used by the drop handler, this should be probably changed in the future.

=============== Diff against Tools-ul.279 ===============

Item was changed:
  ----- Method: FileList2>>initialize (in category 'initialize-release') -----
  initialize
 
+ super initialize.
  showDirsInFileList := false.
  fileSelectionBlock := [ :entry :myPattern |
  entry isDirectory ifTrue: [
  showDirsInFileList
  ] ifFalse: [
  myPattern = '*' or: [myPattern match: entry name]
  ]
  ].
  dirSelectionBlock := [ :dirName | true].!

Item was added:
+ ----- Method: StandardFileStream>>dirAndFileName (in category '*Tools-FileList') -----
+ dirAndFileName
+ "A temporary solution for supporting project loading via drag and drop."
+
+ ^{ self directory. self localName }!