Are modern django session cookies digitally signed in any way?

2013-02-20 Thread Toran Billups
I was talking about basic django session authentication with a co-worker recently and the idea of "cookie tampering" came up. I know rails will digitially sign the data in your cookie but I'm unsure of django 1.4+ http://alindeman.github.com/2013/02/18/decoding-rails-session-cookies.html Thank

Suggestion for using distinct on django 1.4+ in your unit tests?

2013-03-06 Thread Toran Billups
I recently upgraded to django 1.4 and found that my "distinct" queries don't work anymore in my test code because sqlite doesn't support it -how is everyone using this for integration testing? Thank you in advance -- You received this message because you are subscribed to the Google Groups "

Re: Django & Ember

2013-06-01 Thread Toran Billups
My small software company has a team of 4 python devs and we started using ember earlier this year (here are a few things we learned along the way) 1.) use a REST framework to transform your models into JSON over the wire ** We use the latest 2.x of django-rest-framework and it's been great ** I

Re: Django & Ember

2013-06-11 Thread Toran Billups
reated in an effective and high performance way because there would > be a lot of entries in the db. I have to work on a good way to select a > random number of entries from the database and I'm not sure if like not > refreshing the page and handling it with ajax of sorts is a

What is the preferred python-memcache library for django 1.6 apps deployed on python 3.3?

2014-01-09 Thread Toran Billups
I'm deploying my first python 3.3 app and noticed that a python-memcached isn't working and instead a python3-memcached https://pypi.python.org/pypi/python3-memcached If you are deploying a new django web app today what would you recommend? -- You received this message because you are subscrib

Re: deploy django and apache mod wsgi

2014-01-20 Thread Toran Billups
Also what does your httpd.conf file look like? Are you doing a deny from all anywhere? On Monday, January 20, 2014 3:36:04 AM UTC-6, George Alvarado wrote: > > I try deploy django and apache2 apache2 mod-wsgi. An app for tets and open > the bowser, navigate in the correct url it says "error 40

Re: Do you think Django's future is threatened by JS frameworks in both client & server?

2014-01-29 Thread Toran Billups
I just shipped my first commercial web application and found that writing the backend with django was still a big win because the platform is so stable and feature rich. Authentication out of the box REST api with django rest framework ORM / migrations / etc with core django and south mod WSGI +