The Trunk: Network-nice.91.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-nice.91.mcz

commits-2
Nicolas Cellier uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-nice.91.mcz

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

Name: Network-nice.91
Author: nice
Time: 2 October 2010, 12:54:25.719 am
UUID: afb350ca-8812-461d-8c12-4177b30a2c5d
Ancestors: Network-nice.90

Use #postCopy (bis)

=============== Diff against Network-nice.90 ===============

Item was removed:
- ----- Method: FileUrl>>copy (in category 'copying') -----
- copy
- "Be sure not to share the path with the copy."
-
- ^self clone path: path copy!

Item was added:
+ ----- Method: FileUrl>>postCopy (in category 'copying') -----
+ postCopy
+ "Be sure not to share the path with the copy."
+
+ super postCopy.
+ path := path copy!

Item was removed:
- ----- Method: HierarchicalUrl>>copy (in category 'copying') -----
- copy
- "Be sure not to share the path with the copy"
-
- ^self clone path: path copy!

Item was added:
+ ----- Method: HierarchicalUrl>>postCopy (in category 'copying') -----
+ postCopy
+ "Be sure not to share the path with the original"
+
+ super postCopy.
+ path := path copy!

Item was changed:
+ ----- Method: MIMEDocument>>isMultipartAlternative (in category 'testing') -----
- ----- Method: MIMEDocument>>isMultipartAlternative (in category 'as yet unclassified') -----
  isMultipartAlternative
  "whether the document is in a multipart format where the parts are alternates"
  ^ self contentType = 'multipart/alternative'
  !