The Trunk: Network-bp.178.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-bp.178.mcz

commits-2
Bernhard Pieber uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-bp.178.mcz

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

Name: Network-bp.178
Author: bp
Time: 3 July 2016, 11:48:20.491006 am
UUID: d0d328ad-a743-44cc-a912-853edf7bcf02
Ancestors: Network-ul.177

fix endless recursion on parsing e-mail addresses including an ampersand

=============== Diff against Network-ul.177 ===============

Item was changed:
  ----- Method: MailAddressTokenizer class>>nonAtomSet (in category 'class initialization') -----
  nonAtomSet
  "(from RFC 2822)"
 
  ^CSNonAtom ifNil: [
  CSNonAtom := CharacterSet new
  addAll: ($A to: $Z);
  addAll: ($a to: $z);
  addAll: ($0 to: $9);
+ addAll: '!!#$%&''*+-/=?^_`{|}~';
- addAll: '!!#$%^''*+-/=?^_`{|}~';
  complement ]!

Item was added:
+ (PackageInfo named: 'Network') postscript: '"below, add code to be run after the loading of this package"
+ MailAddressTokenizer cleanUp: false'!