Re: csrfmiddlewaretoken lower case

2014-02-20 Thread Vaal
There is speculation that this spam bots, but I'm not sure... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post

Re: csrfmiddlewaretoken lower case

2014-02-20 Thread Vaal
Maybe I jumped to conclusions. But the essence of the exact same, have csrfmiddlewaretoken and csrftoken (cookie) have different register. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

Re: csrfmiddlewaretoken lower case

2014-02-20 Thread Vaal
Perhaps this is due to a specific version of browser? last time it was User-Agent Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3 -- You received this message because you are subscribed to the Google Groups

csrfmiddlewaretoken lower case

2014-02-20 Thread Vaal
Someone faced with such a problem, that sometimes csrfmiddlewaretoken in form transform to lower-case and accordingly the user receives an error? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Django 1.6 transactions witn multiple databases

2013-11-08 Thread Vaal
Thx! How have I missed this ... пятница, 8 ноября 2013 г., 9:47:22 UTC+4 пользователь akaariai написал: > > On Thursday, November 7, 2013 3:36:17 PM UTC+2, Vaal wrote: >> >> Hi >> How to be in 1.6 with queries that involve multiple databases? >> Previousl

Re: Django 1.6 transactions witn multiple databases

2013-11-07 Thread Vaal
err queries = requests -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Django 1.6 transactions witn multiple databases

2013-11-07 Thread Vaal
Hi How to be in 1.6 with queries that involve multiple databases? Previously recommended to create custom TransactionMiddleware. It was convenient. Now TransactionMiddleware is deprecated. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: django 1.4 orm standalone - GenericForeignKey

2012-01-27 Thread Vaal
think I found a solution, but need to check[code]settings.configure(    DATABASES={        'default': {            'ENGINE': 'django.db.backends.sqlite3',            'NAME': 'db.sqlite',        }    },    INSTALLED_APPS=(    'django.contrib.contenttypes',))[/ code] -- You received this message

django 1.4 orm standalone - GenericForeignKey

2012-01-27 Thread Vaal
Hi! In version 1.3 I have no problem using GenericForeignKey in standalone scripts with Django ORm and GenericForeignKey. And in 1.4 there is a problem. http://dpaste.com/694017/ (virtualenv) C:\Users\user\Desktop\django-test>python django14.py Traceback (most recent call last): File