Chameleon documentation

2013-02-08 Thread Malthe Borch
As per Chris Rossi's suggestion: https://chameleon.readthedocs.org/en/latest/ Thanks, \malthe -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Chameleon documentation

2013-02-08 Thread Chris Rossi
Yeah! Thank you! Chris On Fri, Feb 8, 2013 at 3:55 AM, Malthe Borch mbo...@gmail.com wrote: As per Chris Rossi's suggestion: https://chameleon.readthedocs.org/en/latest/ Thanks, \malthe -- You received this message because you are subscribed to the Google Groups pylons-discuss

Supervisord and Ascii encoding problem ?

2013-02-08 Thread Laurent DAVERIO
Hello list, I have a very vague question about Supervisord. Today, I managed to solve (or work around) an annoying Ascii encoding problem that kept coming up several times in a Pylons app of mine. The problem was occurring in a method trying to open files with special characters in their

Re: Supervisord and Ascii encoding problem ?

2013-02-08 Thread Jesaja Everling
Hi Laurent, I definitely remember having the same problem with Supervisor. I can't remember exactly what I changed at the moment, but It might have been this: [supervisord] environment=LC_ALL='en_US.UTF-8',LANG='en_US.UTF-8' This is in my /etc/supervisor/supervisord.conf. If this is in there by

Re: Supervisord and Ascii encoding problem ?

2013-02-08 Thread Laurent DAVERIO
Thank you very much Jesaja, I'll keep that in mind :-) Laurent. Le 08/02/13 17:15, Jesaja Everling a écrit : Hi Laurent, I definitely remember having the same problem with Supervisor. I can't remember exactly what I changed at the moment, but It might have been this: [supervisord]

Re: Moving from Beaker SessionMiddleware to pyramid_beaker

2013-02-08 Thread Jonathan Vanasco
I never did because the data disappears if you reboot the server and users get annoyed if their session gets dropped in the middle or they have to log in again FWIW - to get around that , I use an autologin routine... 1. I set an autologin cookie for anywhere from 1-30 days ( 1 if I

Re: Moving from Beaker SessionMiddleware to pyramid_beaker

2013-02-08 Thread Michael Merickel
Encryption is all well and good but I'm not sure I'll trust encryption in a library called insecure_but_secure_enough. :-P Signed cookies are trivial to create within pyramid using signed_serialize and signed_deserialize.

Re: Moving from Beaker SessionMiddleware to pyramid_beaker

2013-02-08 Thread Jonathan Vanasco
On Feb 8, 12:33 pm, Michael Merickel mmeri...@gmail.com wrote: Encryption is all well and good but I'm not sure I'll trust encryption in a library called insecure_but_secure_enough. :-P i think its best to be upfront with the shortcomings of technology in general! if you spin up a few AWS