click is not triggered after edit form is submitted

2018-08-27 Thread 于鹏
when I work in edit mode on some page, after I click "save" button on component form overlay box to submit some of my changes to the component, and then I found previously bound click handlers for the component can't be triggered correctly until we publish the page. I wonder if it is a feature

Re: GDPR and parent domain cookies

2018-08-27 Thread Carlton Gibson
Hi Vasili and Micheal. I misread `SafeExceptionReporterFilter` as implementing the key `ExceptionReporter` method. I totally agree with the assessment. Have reopened and Accepted on that basis. Good work! Thank you! Carlton -- You received this message because you are subscribed to the

Django Channels doesn’t conform to Django middleware specifications

2018-08-27 Thread carl-philip . majgaard
After some digging, I was able to find the reason for why adding the Whitenoise middleware to my Channels-enabled project was causing a massive performance drop. It appears that for every inbound HTTP request, Channels initializes a new AsgiHandler. In turn, this means that the entire

Re: Django 2.1 released

2018-08-27 Thread Adam Johnson
Please see the contribution guide for information on requesting a feature: https://docs.djangoproject.com/en/2.1/internals/contributing/ On Mon, 27 Aug 2018 at 11:23, wrote: > Cool! Can I custom django.contrib.auth.models.Group like > django.contrib.auth.models.AbstractUser in the further

Re: GDPR and parent domain cookies

2018-08-27 Thread Michael Manfre
It's possible to entirely control the emails that are sent out by defining your own AdminEmailHandler and overriding the LOGGING configuration to use it. I described how on the ticket. The process is a bit cumbersome if all you want to do is replace the usage of ExceptionReporter and I think we

Re: Django : Change Backend as mysql and create sample example using django ORM

2018-08-27 Thread Tim Graham
This list is dedicated to the discussion of developing Django itself, not answering usage questions. You might try the django-users group ( https://groups.google.com/forum/#!forum/django-users), or StackOverflow. On Monday, August 27, 2018 at 9:41:30 AM UTC-4, Raghavendrachari k wrote: > > if

Re: Django : Change Backend as mysql and create sample example using django ORM

2018-08-27 Thread Raghavendrachari k
if you explain briefly what is the issue you are facing , then we can can answer you ! Thanks Raghav On Mon, Aug 27, 2018 at 4:54 PM Sonali Vighne wrote: > Hi, > I have tried a lot to change Django back-end as MySQL but not able to > achieve this. > please help for the same. > > thanks in

GDPR and parent domain cookies

2018-08-27 Thread vakorol2000
Email error reports sent from Django (when DEBUG=False) include information about parent domain cookies, which may contain personal data. This may create issues related to the GDPR (the European General Data Protection Regulation), as one can't control the cookies from services hosted on

Re: hello

2018-08-27 Thread snhellogg
where are the question? 在 2018年2月9日星期五 UTC+8下午8:52:45,bugsi...@gmail.com写道: > > hello > -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it,

Django : Change Backend as mysql and create sample example using django ORM

2018-08-27 Thread Sonali Vighne
Hi, I have tried a lot to change Django back-end as MySQL but not able to achieve this. please help for the same. thanks in advance. :) -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe

Re: Django 2.1 released

2018-08-27 Thread snhellogg
Cool! Can I custom django.contrib.auth.models.Group like django.contrib.auth.models.AbstractUser in the further release? the Group model have only a field `name`. It's not enough as company team information. -- You received this message because you are subscribed to the Google Groups

Re: Feedback wanted for API to support for multi file upload

2018-08-27 Thread Johannes Hoppe
Hi Brice, Interesting thought. I never looked at it from this perspective. I did some research. There is no way to reflect a file limit a HTML form (without Javascript). Furthermore there is no way to prevent people to send a request with more files, you could only limit the request body size

Re: Feedback wanted for API to support for multi file upload

2018-08-27 Thread Brice Parent
Hi Joe, Just an idea: Why not just use another keyword argument, like "files_number", "count", "max_files" (along maybe with a "min_files"), or something like, with a default of 1 (to match current behaviour with a single file), and an allowed value of 0 for infinite? If you allow multiple

Re: Feedback wanted for API to support for multi file upload

2018-08-27 Thread Johannes Hoppe
Hi Adam! On Sunday, August 26, 2018 at 4:33:31 PM UTC+2, Adam Johnson wrote: > > My suggestion would be to add the new keyword argument which enable the >> new behavior and keep the attr-thing as is. >> I could add a warning if someone uses the "old" style. It is a bit >> suggestive though. > >