Re: View permissions to admin

2016-01-27 Thread Markus Holtermann
Hi Petr, all, I managed to find some time to look into your PR (updated link: https://github.com/django/django/pull/5297) and the related issue: https://code.djangoproject.com/ticket/8936 . Also, related discussion: https://groups.google.com/d/topic/django-developers/rZ5Pt9R94d4/discussion an

Provide a way for model formsets to disallow new object creation

2016-01-27 Thread Mathias Rav
In #26142, we want model formsets to be able to disallow new object creation. Users try to do this by supplying extra=0, but this does not prevent the web client from adding more forms to the POST data. https://code.djangoproject.com/ticket/26142 For non-model formsets, this can be achieved by le

uri to iri encoding

2016-01-27 Thread varun naganathan
Hi,I had a doubt.RFC 3987 stated that the percent encoding corresponding to % , i.e '%25' must not be converted to its octet while converting the uri to its iri.So then the output of uri_to_iri("%2525") should be what , "%2525" itself?Currently it gives %25 as the output. -- You received this

Re: Improving MSSQL and Azure SQL support on Django

2016-01-27 Thread Michael Manfre
There has not been much direct progress with regards to an SQL Server database backend. My personal life keeps getting in the way and the test suite takes a disturbingly long time on my computer against MSSQL. Despite me being busy, others have helped move things forward. Some have contributed code

Re: deadlock risk from using cache a load time

2016-01-27 Thread Aymeric Augustin
> Le 27 janv. 2016 à 00:59, Tim Graham a écrit : > > Regarding the original issue -- in Claude's use case, he says that calling > django.setup() before unpickling is not doable, as an external tool is doing > the unpickling of model data. Should we say that unpickling model data from > non-Dja