The Inbox: Network-fbs.90.mcz

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

The Inbox: Network-fbs.90.mcz

commits-2
A new version of Network was added to project The Inbox:
http://source.squeak.org/inbox/Network-fbs.90.mcz

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

Name: Network-fbs.90
Author: fbs
Time: 8 September 2010, 7:59:56.178 am
UUID: b2557abe-fe6a-c244-b520-48c4f3f51e16
Ancestors: Network-ar.89

When a URL has no scheme, and you wish to interpret it as an absolute URL, assume HttpUrl.

=============== Diff against Network-ar.89 ===============

Item was changed:
  ----- Method: Url class>>initialize (in category 'class initialization') -----
  initialize
  super initialize.
  SchemeRegistry := Dictionary new.
  SchemeRegistry
+ at: nil put: HttpUrl;
  at: 'browser' put: BrowserUrl;
  at: 'file' put: FileUrl;
  at: 'ftp' put: FtpUrl;
  at: 'http' put: HttpUrl;
  at: 'https' put: HttpUrl;
  at: 'mailto' put: MailtoUrl.!