Re: GSoC 2020

2020-05-04 Thread Abhijeet Viswa
Hi guys, I'd like to say the same. It was a wonderful opportunity. Thanks everyone. Regards. On Mon, 4 May 2020 at 23:41, Sanskar Jaiswal wrote: > Hey everyone, > > I didn’t get selected for GSoC, but I would like to sincerely thank this > community for guiding me and helping me get involved i

Re: Django for beginners

2020-04-25 Thread Abhijeet Viswa
Hi! I think you've found the wrong mailing list for this post. This mailing list is for discussing the development of Django itself, not for support using Django. This means the discussions of bugs and features in Django itself, rather than in your code using it. People on this list are unlikely t

Re: Uwsgi not sending parallel all(except one) tasks to celery

2020-04-22 Thread Abhijeet Viswa
Hi! I think you've found the wrong mailing list for this post. This mailing list is for discussing the development of Django itself, not for support using Django. This means the discussions of bugs and features in Django itself, rather than in your code using it. People on this list are unlikely t

Re: Generate JWTs with Django

2020-04-15 Thread Abhijeet Viswa
Hi, You might want check out django-restframework-simplejwt. It requires the Django Rest Framework. But, then again, if you are making an API, you'd already be using it. Regards, Abhijeet On Thu, 16 Apr, 2020, 00:39 Claude Paroz, wrote: > Hi all, > > With the recent addition of the algorithm p

Re: Error while creating an API

2020-04-09 Thread Abhijeet Viswa
Hey, This mailing list is meant the development of Django itself and not for problems faced by users when developing a Django app. dja...@googlegroups.com is in fact related to that latter. Also checkout the "Getting Help" page: https://docs.djangoproject.com/en/3.0/faq/help/

Re: GSoC Proposal to extend the parallel test runner to Windows and macOS and to support Oracle parallel test running

2020-03-30 Thread Abhijeet Viswa
Hi, I'd like to point out that the MySQL backend uses the mysqld utility to create a database dump which is then imported. So, as far as implementation complexity goes, I believe migration once again during setup of the child process might complicate it further. It might just be easier to use on-d

[GSOC 2020] Proposal for supporting the parallel test runner on Windows, and Oracle

2020-03-26 Thread Abhijeet Viswa
Hey folks, I'd highly appreciate it if you guys could go through my GSoC prposal for adding supporting the parallel test runner on Windows, and Oracle. Django Forum Post: https://forum.djangoproject.com/t/gsoc-2020-my-proposal-for-a-parallel-test-runner/1518/3 GitHub Gist: https://gist.github.

Re: GSoC Proposal to extend the parallel test runner to Windows and macOS and to support Oracle parallel test running

2020-03-26 Thread Abhijeet Viswa
Hey, Since Python 3.8, the default method for the multiprocessing module is spawn for Mac OS. On Thu, 26 Mar 2020 at 17:05, Tom Forbes wrote: > > incompatible in macOS due to a recent update > > Can you elaborate on this a bit? How has a recent update made forking > incompatible on MacOS? > > T

Re: [Feature Request] Having an middleware to be able to force authentication on views by default

2020-03-13 Thread Abhijeet Viswa
Hello, If I'm not mistaken, middlewares are not aware of decorators, mixins applied on the request handlers. Therefore, if the middleware is turned on, there wouldn't be a way to selectively not enforce it. At least not with decorators/mixins. The rest framework uses a global setting that applies

Re: IRC Chat

2020-03-10 Thread Abhijeet Viswa
Hello, The IRC channel is still there. You can try using Riot.im with Matrix to bridge free node. On Tue, 10 Mar, 2020, 20:18 José Manuel Valdivia Romero, < josevaldiviarom...@gmail.com> wrote: > Hi Guys, > > I'm completely new trying to contribute to the Django project (But was > working on app

Re: Model inheritance in different modules

2020-01-30 Thread Abhijeet Viswa
0 janvier 2020 17:37:22 UTC+1, Abhijeet Viswa a écrit : >> >> I think this would needlessly complicate the entire migration process. >> Two different app migrations (and possibly even more) would have be >> considered and executed in sequence to prevent anything breaking on

Re: Model inheritance in different modules

2020-01-30 Thread Abhijeet Viswa
it isn't saved in database. It is saved but in the table > of the employee since hrfleetemployee inherits from employee. It simply > adds this field to the table of Employee > > Le jeu. 30 janv. 2020 à 5:24 PM, Abhijeet Viswa > a écrit : > >> How would the fields in HRFleetE

Re: Model inheritance in different modules

2020-01-30 Thread Abhijeet Viswa
How would the fields in HRFleetEmployee be persistent and linked to a particular Employee or Vehicle without being saved in the database? Or did I understand your code and request wrong? -- You received this message because you are subscribed to the Google Groups "Django developers (Contributio

Re: Sphinx AutoSectionLabel Extension Setting

2019-12-26 Thread Abhijeet Viswa
Here is my patch with the aforementioned setting set to true: https://github.com/django/django/pull/12251 On Thu, 26 Dec 2019 at 15:36, Abhijeet Viswa wrote: > Hey, > > <https://code.djangoproject.com/ticket/28290> > Ticket #28290 <https://code.djangoproject.com/ticket/28

Sphinx AutoSectionLabel Extension Setting

2019-12-26 Thread Abhijeet Viswa
Hey, Ticket #28290 has been lying in the easy pickings for too long now. I don't believe a patch has been submitted. It was suggested in n the issue raise

Re: GSoC 2020

2019-12-23 Thread Abhijeet Viswa
Hey, Checkout Django's contribution guidelines here: https://docs.djangoproject.com/en/dev/internals/contributing/ It details everything you need to know, from triaging of tickets to unit testing. On Mon, 23 Dec 2019 at 20:28, Nishchal Gupta wrote: > > Hello everyone, > > This is Nishchal Gupta

Re: [new contributor] Where to find resources to make changes to djangoproject.com ?

2019-12-20 Thread Abhijeet Viswa
Hey, You can find the tutorial for Writing documentation here: https://docs.djangoproject.com/en/dev/internals/contributing/writing-documentation/ The raw document files are basically text files written using reStructuredText syntax. You can find the inside the docs folder. Just edit the text fil

Re: new to open source contribution

2019-11-29 Thread Abhijeet Viswa
Hey, Checkout Django's "Contributing to Django" documentation here: https://docs.djangoproject.com/en/2.2/internals/contributing/ You can find a list of reported bugs and request feature updates on Django Trac here: https://code.djangoproject.com/ Django uses Git as a VCS. If you haven't used Dja