The Trunk: XML-Parser-bf.37.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: XML-Parser-bf.37.mcz

commits-2
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]!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: XML-Parser-bf.37.mcz

Chris Muller-3
Woo hooo!  THANK YOU Bert!  This totally the right thing to do.

On Sun, Dec 7, 2014 at 7:16 PM,  <[hidden email]> 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]!
>
>