Re: [Pharo-users] NeoJSON mapping of nil properties

2014-06-02 Thread stepharo
and now available as pdf and html in the pfte project :) https://github.com/SquareBracketAssociates/PharoForTheEnterprise-english and https://ci.inria.fr/pharo-contribution/job/PharoForTheEnterprise/lastSuccessfulBuild/artifact/NeoJSON/NeoJSON.pier.html Stef

Re: [Pharo-users] NeoJSON mapping of nil properties

2014-06-02 Thread stepharo
found it and converting it to pillar https://github.com/svenvc/docs/blob/master/neo/neo-json-paper.md Stef On 2/6/14 22:19, stepharo wrote: Sven I added a section to new empty chapter on NeoJSON :) Do you have a doc about NeoJSON that I can use to fill up the chapter :) On 29/5/14 14:39,

Re: [Pharo-users] NeoJSON mapping of nil properties

2014-06-02 Thread stepharo
Sven I added a section to new empty chapter on NeoJSON :) Do you have a doc about NeoJSON that I can use to fill up the chapter :) On 29/5/14 14:39, Esteban A. Maringolo wrote: 2014-05-28 16:03 GMT-03:00 Sven Van Caekenberghe : Hi Esteban, Your wish is my command ;-) In #bleedingEdge you can

Re: [Pharo-users] NeoJSON mapping of nil properties

2014-05-29 Thread Esteban A. Maringolo
2014-05-28 16:03 GMT-03:00 Sven Van Caekenberghe : > > Hi Esteban, > > Your wish is my command ;-) > > In #bleedingEdge you can now do: > > String streamContents: [ :stream | > (NeoJSONWriter on: stream) > writeNil: true; > mapAllInstVarsFor: Point; > nextPut: Point new. > >

Re: [Pharo-users] NeoJSON mapping of nil properties

2014-05-28 Thread Sven Van Caekenberghe
Hi Esteban, Your wish is my command ;-) In #bleedingEdge you can now do: String streamContents: [ :stream | (NeoJSONWriter on: stream) writeNil: true; mapAllInstVarsFor: Point; nextPut: Point new. which will give you: {"x":null,"y":null} instead of: {} which rem