Miroslav Shubernetskiy

Results 109 comments of Miroslav Shubernetskiy

Hi. Which version of Django are you using? Staring with Django 1.2.5 ([release notes](https://docs.djangoproject.com/en/1.2/releases/1.2.5/)), it was changed how Django validates CSRF. Here is an exerpt from the release notes: _Additionally,...

Very interesting. I am starting to think it's a bug in Django. Here is an exert from Django Docs ([here](https://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpRequest)): _HttpRequest.method A string representing the HTTP method used in the...

I asked on StackOverflow regarding `request.method is None`: http://stackoverflow.com/questions/7836834/how-can-request-method-none-in-django Judging from the response, it might have to do something with the client side. What is your system config? Maybe the...

Can you post the dump of the `request` for when you try to do file deletion and when you upload a file. Thanx.

I don't see any META values in the file upload dump [here](http://dpaste.com/641302/). Can you please add this line in your view: ``` py def Upload(request): print request # rest of...

That's the dump for delete. Can you post sump for upload. I wan to see the value of `CONTENT_TYPE` when you upload files because I still have no clue what...

I will look into it. In order to implement it properly (get JSON list of previously uploaded files), the files paths must be stored in a db. With the current...

Once I have a chance, I will fix this. Meanwhile, to set csrf token, you don't have to do anything. You can read more about that [here](https://docs.djangoproject.com/en/dev/ref/contrib/csrf/). Here are a...

sorry. initially created for a tool at work. tool no longer used... didnt had a chance to dedicate much time due to other load. plan to catch up with some...

apologies for delays everyone. doing house renovations.... so no time to look at any of my open-source stuff. I promise eventually I will actually take a look at the issues...