[pylons-discuss] pyramid webdav example?

2015-05-18 Thread kris
Anybody have a quick webdav server written with pyramid? -- 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 pylons-discuss+unsubscr...@googlegroups.com. To post

Re: [pylons-discuss] Re: Connection issue with redis_session

2015-05-18 Thread Jonathan Vanasco
Cookies (in general) have a few flags: * httponly - tells the browser to only send to severs; not allow JS access * secure - tells the browser to only send to secure servers (https, i think there are other secure methods too) Pyramid (and many other python packages) usually abstract them into b

Re: [pylons-discuss] Re: Connection issue with redis_session

2015-05-18 Thread Brian Looker
Thank you for the insight. Looking over the SignedCookieSessionFactory , I have two questions. How do I ensure that HTTPS is used? What is the "secure flag" of the session cookie?