[Pkg] The Trunk: Network-bp.178.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Jul 3 09:52:46 UTC 2016


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'!



More information about the Packages mailing list