HTTPS on development enviroment

2021-12-31 Thread Shabani Nassibu
I have started using Django and I wanted to integrate social authentication with Google so i had to create self certificates using django_extensions so i test the the authentication with https but when i open localhost it keeps loading without showing the results -- You received this message

Re: Not sure if I am doing django-paypal correctly

2021-12-31 Thread lone...@gmail.com
I found a better article at: Better Django-paypal article . For the most part, it does a really thorough explanation of what needs to be done. There were some things that I had to adjust myself, but that was easy enough. My

Re: Eliminating inter-request race conditions

2021-12-31 Thread Carsten Fuchs
Hello, Am 31.12.21 um 11:31 schrieb Nick Farrell: > Correct. To be clear, I am not advocating this behaviour by default, but > making it as seamless as possible to enable when required, rather than > needing to attempt to hand-roll safe locking semantics each time it's needed. Thanks for the

Re: Eliminating inter-request race conditions

2021-12-31 Thread Nick Farrell
Good to hear from you Carsten. Thanks in advance for your comments. I'll see what I can address now: > > > *2)* Not being able to safely lock a model/queryset beyond the lifetime > of the request. > I don't quite understand this. It sounds like pessimistic locking? Correct. To be clear, I am

Re: Eliminating inter-request race conditions

2021-12-31 Thread Carsten Fuchs
Hi Nick, I've thought a bit more about this, but it seems that my requirements are different from yours: E.g. I don't need the client-side validation and especially don't want the complexity that goes with it; on the other hand, I need something that also works with formsets, not only with