[squeak-dev] The Inbox: Network-fbs.91.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Sep 8 06:32:12 UTC 2010


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].!




More information about the Squeak-dev mailing list