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

2019-12-20 Thread Adam Johnson
This guide may also be useful: https://docs.djangoproject.com/en/3.0/intro/contributing/ On Fri, 20 Dec 2019 at 14:11, Abhijeet Viswa wrote: > Hey, > > You can find the tutorial for Writing documentation here: > >

Re: what is the efficient way for Testing and making changes to the code

2019-12-20 Thread Adam Johnson
If you're looking to develop *Django itself* I think you're looking for this guide: https://docs.djangoproject.com/en/3.0/intro/contributing/ Otherwise - I've pasted my common "wrong mailing list" post below. Thanks for your understanding, Adam Hi! I think you've found the wrong mailing list

Re: what is the efficient way for Testing and making changes to the code

2019-12-20 Thread Pratik kumar
I am just trying to figure how how the different things works in Djnago source, so that i can get on with contributing to the code On Friday, December 20, 2019 at 10:27:38 PM UTC+5:30, Dipankar wrote: > > Is it related to Django development? > > On Fri, Dec 20, 2019, 9:25 PM Pratik kumar >

Re: what is the efficient way for Testing and making changes to the code

2019-12-20 Thread Dipankar
Is it related to Django development? On Fri, Dec 20, 2019, 9:25 PM Pratik kumar wrote: > I used my local copy to create a new project and added some models to it > after now i have made some changes to the local copy, Now how do i test > those changes , do i need to create a new project each

what is the efficient way for Testing and making changes to the code

2019-12-20 Thread Pratik kumar
I used my local copy to create a new project and added some models to it after now i have made some changes to the local copy, Now how do i test those changes , do i need to create a new project each time from the local copy or is there a way around? -- You received this message because you

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

Re: Allow overriding smtplib local_hostname

2019-12-20 Thread Tim Graham
Hi, there's already a ticket: https://code.djangoproject.com/ticket/6989 On Friday, December 20, 2019 at 7:33:35 AM UTC-5, David Nolan wrote: > > Hey all. > > In cloud environments, when using > django.core.mail.backends.smtp.EmailBackend, socket.getfqdn() is called > to resolve the 'reported

Allow overriding smtplib local_hostname

2019-12-20 Thread David Nolan
Hey all. In cloud environments, when using django.core.mail.backends.smtp.EmailBackend, socket.getfqdn() is called to resolve the 'reported hostname' for smtplib. This often resolves to an internal DNS name, not the intended name. It would be convenient to provide a kwarg to allow overriding

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

2019-12-20 Thread Gabriel Augendre
Hello there ! I'm not a beginner in software development but I'm a new contributor to Django and I took this ticket from Trac : https://code.djangoproject.com/ticket/30780 I made some progress creating a floating button to link to the FAQ but I'm having trouble finding where to edit the