Re: confusion about contributions (login using github account)

2016-03-02 Thread gilberto dos santos alves
2016-03-02 23:19 GMT-03:00 Russell Keith-Magee : > Hi Becka, > > On Thu, Mar 3, 2016 at 8:55 AM, Becka wrote: > >> Hi, >> >> I've been spending some time looking over the docs, and I'm really >> interested in making them more approachable to relative n00bs like myself, >> particularly when it com

Re: confusion about contributions

2016-03-02 Thread Russell Keith-Magee
Hi Becka, On Thu, Mar 3, 2016 at 8:55 AM, Becka wrote: > Hi, > > I've been spending some time looking over the docs, and I'm really > interested in making them more approachable to relative n00bs like myself, > particularly when it comes to contributing to Django and the docs. > Fantastic! This

confusion about contributions

2016-03-02 Thread Becka
Hi, I've been spending some time looking over the docs, and I'm really interested in making them more approachable to relative n00bs like myself, particularly when it comes to contributing to Django and the docs. It seems like there's some conflicting information around where to look for issues.

Re: GSoC 2016

2016-03-02 Thread Tim Graham
The best thing you can do to improve your chances to be accepted as a Django GSoC student is to start contributing now. Read up on ​Django’s contribution documentation and make yourself known to the core team by your contributions

GSoC 2016

2016-03-02 Thread Matheus Fernandes
Hello! I'm brazilian software engineering student and am interested in contribute to django in GSoC. I would to contribute with https://code.djangoproject.com/wiki/SummerOfCode2016#Improvingthelesspopulardatabasebackends How can I get started to contribute? -- You received this message because

Re: Index expressions

2016-03-02 Thread Asif Saifuddin
Hi Josh, I'm willing to work on django orm improvment for gsoc and considering custom index as a project idea. I have gone through the available resources like dep, POC on class based index, unification of transform API etc. What others stuff do you suggest me to look into to have some concrete

Re: Asking for some beginner friendly tasks

2016-03-02 Thread Tim Graham
Hi, have you read https://docs.djangoproject.com/en/dev/internals/contributing/new-contributors/ and taken a look at the "Easy" tickets linked from there? On Wednesday, March 2, 2016 at 9:18:08 AM UTC-5, anshul singhal wrote: > > Hi everyone, > > I am Anshul Singhal second year undergraduate stu

Asking for some beginner friendly tasks

2016-03-02 Thread anshul singhal
Hi everyone, I am Anshul Singhal second year undergraduate student at IIIT Hyderabad, India. I have been using Django web Framework since long time. I have very good experience with using django. Now, I want to contribute to django. So, I would like to know some beginner friendly tasks to start

Annotate date intervals or ranges

2016-03-02 Thread Sam Peka
It would be great if there was a way within the standard Queryset api to annotate ranges of dates. The use case is that it would remove the need to resort to RawSQL when grouping things by date ranges, such as the day of the month. I know the postgres extras package has a DateRangeField, but it

Re: Copy-from-base inheritance

2016-03-02 Thread Aymeric Augustin
Now I understand — you want to inherit from a concrete model but to use a separate table. I’m not sure how widely applicable this would be. I find it counter-intuitive that Parent.objects.all() isn’t a superset of Child.objects.all() anymore. This is a surprising way to implement inheritance.

Re: Copy-from-base inheritance

2016-03-02 Thread Joakim Saario
Yes it is true the p*atch* do include some code for overriding *parent fields, but that is not the main feature.In any way this thread is a double post (I thought the first one go*t lost). Look at: https://groups.google.com/forum/?hl=sv#!topic/django-developers/koRZDDCQREc instead. Den onsdag

Re: Copy-from-base inheritance

2016-03-02 Thread Aymeric Augustin
In that case, I believe this is the ticket you’re looking for: https://code.djangoproject.com/ticket/24305 There seems to be some activity on the related PR: https://github.com/django/django/pull/5122 You may want to review these discussions and see how you can help. Thanks! -- Aymeric. > On

Re: Django admin and messages

2016-03-02 Thread Claude Paroz
Le mercredi 2 mars 2016 02:42:05 UTC+1, Cristiano Coelho a écrit : > > Another approach for gender languages like spanish would be to use "el > objeto %(obj)" rather than "el/la %(obj)". > That's exactly what we are doing for French. Claude -- You received this message because you are subscri

Re: Copy-from-base inheritance

2016-03-02 Thread Joakim Saario
I'm sorry, this is a typo, local fields overrides parent fields of course. Look at the patch. Den onsdag 2 mars 2016 kl. 08:19:23 UTC+1 skrev Aymeric Augustin: > > Hello, > > The “locally declared field gets overriden by parent definition” behavior > shown in your example looks counter-intuitive