[squeak-dev] The Trunk: Multilingual-nice.124.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jul 14 11:24:58 UTC 2010


Nicolas Cellier uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-nice.124.mcz

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

Name: Multilingual-nice.124
Author: nice
Time: 14 July 2010, 1:24:21.777 pm
UUID: 0b6808c5-6c0b-4766-aae9-f5ccf18a15f9
Ancestors: Multilingual-nice.123

Oups... use latest public Unicode version rather than a specific one.

=============== Diff against Multilingual-nice.123 ===============

Item was changed:
  ----- Method: Unicode class>>initializeCaseMappings (in category 'casing') -----
  initializeCaseMappings
  	"Unicode initializeCaseMappings"
  	ToUpper := IdentityDictionary new.
  	ToLower := IdentityDictionary new.
  	UIManager default informUserDuring: [:bar|
  		| stream |
  		bar value: 'Downloading Unicode data'.
+ 		stream := HTTPClient httpGet: 'http://www.unicode.org/Public/UNIDATA/CaseFolding.txt'.
- 		stream := HTTPClient httpGet: 'http://www.unicode.org/Public/3.2-Update/CaseFolding-3.2.0.txt'.
  		(stream isKindOf: RWBinaryOrTextStream) ifFalse:[^self error: 'Download failed'].
  		stream reset.
  		bar value: 'Updating Case Mappings'.
  		self parseCaseMappingFrom: stream.
  	].!




More information about the Squeak-dev mailing list