[squeak-dev] The Trunk: XML-Parser-bf.37.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 8 01:17:08 UTC 2014


Bert Freudenberg uploaded a new version of XML-Parser to project The Trunk:
http://source.squeak.org/trunk/XML-Parser-bf.37.mcz

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

Name: XML-Parser-bf.37
Author: bf
Time: 8 December 2014, 2:16:57.135 am
UUID: 47f3a2f8-de17-43b8-96f8-beef7a7c8200
Ancestors: XML-Parser-fbs.36

Restore timestamps lost in assignment conversion.

=============== Diff against XML-Parser-fbs.36 ===============

Item was changed:
  ----- Method: XMLDOMParser>>documentAttributes: (in category 'content') -----
  documentAttributes: attributeList
  	self document version: (attributeList at: 'version' ifAbsent: [nil]).
  	self document encoding: (attributeList at: 'encoding' ifAbsent: [nil]).
  	self document requiredMarkup: (attributeList at: 'requiredMarkup' ifAbsent: [nil]).
  !

Item was changed:
  ----- Method: XMLWriter>>xmlDeclaration:encoding: (in category 'writing xml') -----
  xmlDeclaration: versionString encoding: encodingString
  	self canonical
  		ifFalse: [
  			self
  				startPI: 'xml';
  				attribute: 'version' value: versionString;
  				attribute: 'encoding' value: encodingString;
  				endPI.
  			self stream flush]!



More information about the Squeak-dev mailing list