A new version of Network was added to project The Inbox:
http://source.squeak.org/inbox/Network-fbs.91.mcz==================== Summary ====================
Name: Network-fbs.91
Author: fbs
Time: 8 September 2010, 8:31:47.309 am
UUID: b17fd8a9-31ff-d941-ab70-1cf3eea60b18
Ancestors: Network-ar.89
When a URL has no scheme, and you wish to interpret it as an absolute URL, assume HttpUrl.
Don't pollute SchemeRegistry with an unnecessary "registration".
=============== Diff against Network-ar.89 ===============
Item was changed:
----- Method: Url class>>urlClassForScheme: (in category 'parsing') -----
urlClassForScheme: scheme
+ ^ SchemeRegistry at: (scheme ifNil: ['http']) ifAbsent: [GenericUrl].!
- ^ SchemeRegistry at: scheme ifAbsent: [GenericUrl].!