[web2py] Re: XML pickle/unpickle

2015-09-17 Thread Massimo Di Pierro
Weird. Can you open a ticket and I will test it asap? On Wednesday, 16 September 2015 13:31:40 UTC-5, Maxim wrote: > > > Why do you want comment it out anyway? >> > > This: > >> The reason is that is allows storing variables that contain XML('.') >> in sessions. That is useful to deal with

[web2py] Re: XML pickle/unpickle

2015-09-17 Thread Maxim
I did yesterday, issue #1067. I think the solution may be to replace: 671 return marshal.loads(data) with 671 return XML(marshal.loads(data)) On Thursday, September 17, 2015 at 9:11:58 PM UTC+3, Massimo Di Pierro wrote: > > Weird. Can you open a ticket and I will test it asap? > >

[web2py] Re: XML pickle/unpickle

2015-09-16 Thread Massimo Di Pierro
The reason is that is allows storing variables that contain XML('.') in sessions. That is useful to deal with flash messages that contain more than just text. On Wednesday, 16 September 2015 08:42:55 UTC-5, Maxim Hrustalev wrote: > > Does anyone with deep knowledge of web2py know why this

[web2py] Re: XML pickle/unpickle

2015-09-16 Thread Leonel Câmara
Why do you want comment it out anyway? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google

[web2py] Re: XML pickle/unpickle

2015-09-16 Thread Maxim Hrustalev
> Why do you want comment it out anyway? > This: > The reason is that is allows storing variables that contain XML('.') > in sessions. That is useful to deal with flash messages that contain more > than just text. I want to store XML in session flash message, like Massimo stated, but