Andreas Raab uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-ar.84.mcz==================== Summary ====================
Name: Network-ar.84
Author: ar
Time: 1 September 2010, 11:22:10.22 pm
UUID: fb5ae3bf-66f0-c041-aab6-f1e007f8dc8e
Ancestors: Network-ar.83
Push asUrl into the Network package.
=============== Diff against Network-ar.83 ===============
Item was added:
+ ----- Method: FileStream>>asUrl (in category '*network-url') -----
+ asUrl
+ "Convert my path into a file:// type url - a FileUrl."
+
+ ^FileUrl pathParts: (self directory pathParts copyWith: self localName)!
Item was added:
+ ----- Method: FileDirectory>>asUrl (in category '*network-url') -----
+ asUrl
+ "Convert my path into a file:// type url - a FileUrl."
+
+ ^FileUrl pathParts: (self pathParts copyWith: '')!
Item was added:
+ ----- Method: Text>>asUrlRelativeTo: (in category '*network-url') -----
+ asUrlRelativeTo: aUrl
+ ^self asString asUrlRelativeTo: aUrl!
Item was added:
+ ----- Method: Text>>asUrl (in category '*network-url') -----
+ asUrl
+ ^self asString asUrl!