The Trunk: Network-ul.93.mcz

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

The Trunk: Network-ul.93.mcz

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

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

Name: Network-ul.93
Author: ul
Time: 28 October 2010, 4:31:53.804 am
UUID: 7662977c-f3dc-964d-8f84-9425129a32bf
Ancestors: Network-eem.92

- restore the original behavior, that url strings without a scheme are handled as HttpUrl

=============== Diff against Network-eem.92 ===============

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