Re: [Pharo-users] XML support for pharo

2018-07-15 Thread oswall arguedas
-analyzer Peter On Thu, Jul 12, 2018 at 10:00 PM, oswall arguedas mailto:oswal...@hotmail.com>> wrote: Solved To access the values of the nodes is as follows: yearmem: = (tree xpath: '// year') first contentString asNumber. I also edit the other methods of the XMLNode class

Re: [Pharo-users] XML support for pharo

2018-07-12 Thread oswall arguedas
k at its ‘accessing’ protocol, you see the method XMLNode>>#contentString, which will give you, in your test case, ‘2014’ as a string. If you want to enter it in the database as a number, asNumber will do that’ HTH Peter Kenny From: Pharo-users On Behalf Of oswall arguedas Sent: 1

Re: [Pharo-users] XML support for pharo

2018-07-12 Thread oswall arguedas
archy; you can always skip levels provided the result specifies a unique route to the node you want. So in this case you can write: yearmem := (tree xpath: ‘//year’) first. Hope this helps Peter Kenny From: Pharo-users On Behalf Of oswall arguedas Sent: 12 July 2018 17:09 To: p

Re: [Pharo-users] XML support for pharo

2018-07-12 Thread oswall arguedas
it like this: yearmem: = tree xpath: '/ cardset / card / year'. But it fails. How do I get the 2014 value? Thank you Oswall De: Pharo-users en nombre de oswall arguedas Enviado: miércoles, 11 de julio de 2018 20:17:55 Para: pharo-users@lists.pharo.

Re: [Pharo-users] Email Google API for pharo

2018-07-11 Thread oswall arguedas
Thank you very much for your answers. I will work on it. I give them feedback. Thanks Oswall De: Pharo-users en nombre de Sean P. DeNigris Enviado: miércoles, 11 de julio de 2018 15:39:53 Para: pharo-users@lists.pharo.org Asunto: Re: [Pharo-users] Email Google

Re: [Pharo-users] XML support for pharo

2018-07-11 Thread oswall arguedas
Thanks Franz and Monty. I'm working on it, everything is going very well. The feedback when I master it. Oswall De: Pharo-users en nombre de monty Enviado: miércoles, 11 de julio de 2018 03:32 Para: pharo-users@lists.pharo.org Asunto: Re: [Pharo-users] XML su

Re: [Pharo-users] XML support for pharo

2018-07-11 Thread oswall arguedas
Thanks Franz and Monty. I'm working on it, everything is going very well. The feedback when I master it. Oswall De: Pharo-users en nombre de monty Enviado: miércoles, 11 de julio de 2018 03:32:35 Para: pharo-users@lists.pharo.org Asunto: Re: [Pharo-users] XML

[Pharo-users] Email Google API for pharo

2018-07-10 Thread oswall arguedas
Greetings community of pharo I am working with the google API to process gmail emails, read, modify, archive, send. Is there any way with pharo ?. Thank you very much in advance Oswall

[Pharo-users] XML support for pharo

2018-07-10 Thread oswall arguedas
Greetings community of pharo I have to process many XML files, to convert them to objects and incorporate them into a database and create an application in seaside. In pharo I have found XmlParser, however I have not found documentation to use it as best as possible. I do not know if there is a