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

Chris Muller asqueaker at gmail.com
Mon Dec 8 01:23:17 UTC 2014


Woo hooo!  THANK YOU Bert!  This totally the right thing to do.

On Sun, Dec 7, 2014 at 7:16 PM,  <commits at source.squeak.org> wrote:
> 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