Re: #16779 - a tutorial for first time Django contributors
Thanks to those who have weighed in on this thus far. I've rewritten part of the tutorial to use a more recent ticket from the "git era" to hopefully make things less confusing. I think the part that has the most potential to confuse new contributors is the introduction of PYTHONPATH. Claude suggested we could simply instruct users to run the tests like so: PYTHONPATH=/path/to/django ./run_tests.py --settings=test_sqlite I'm not particularly in love with that, but it would eliminate the need to try to explain things and perhaps we could link out to an external resource that explains PYTHONPATH well, although I haven't found anything after a quick search. Any specific feedback on this paragraph, or the tutorial as whole, would be appreciated: http://techytim.com/django/16779/intro/contributing.html#setting-django-up-to-run-the-test-suite On Friday, November 2, 2012 8:03:34 PM UTC-4, Tim Graham wrote: > > Taavi Taijala has written a tutorial for new contributors that I've given > an initial review. I'm hoping we can get a few more sets of eyes on it. > Might be useful to pass it on to any newbies you know and have them try it > out as well. Thanks! > > https://code.djangoproject.com/ticket/16779 > -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/pKclp60HFCYJ. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
proposal: post-collectstatic signal
Currently, our only built-in management signal is post-syncdb. I propose (and, notwithstanding objection, will build) post-collectstatic. Is this reasonable? Is there another, less invasive way to hook logic into collectstatic? -- Justin Holmes Chief Chocobo Breeder, slashRoot slashRoot: Coffee House and Tech Dojo New Paltz, NY 12561 845.633.8330 -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
Re: proposal: post-collectstatic signal
What's the use case? Alex On Sat, Nov 10, 2012 at 8:48 PM, Justin Holmes wrote: > Currently, our only built-in management signal is post-syncdb. > > I propose (and, notwithstanding objection, will build) > post-collectstatic. > > Is this reasonable? Is there another, less invasive way to hook logic > into collectstatic? > > -- > Justin Holmes > Chief Chocobo Breeder, slashRoot > > slashRoot: Coffee House and Tech Dojo > New Paltz, NY 12561 > 845.633.8330 > > -- > You received this message because you are subscribed to the Google Groups > "Django developers" group. > To post to this group, send email to django-developers@googlegroups.com. > To unsubscribe from this group, send email to > django-developers+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-developers?hl=en. > -- "I disapprove of what you say, but I will defend to the death your right to say it." -- Evelyn Beatrice Hall (summarizing Voltaire) "The people's good is the highest law." -- Cicero -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
Re: #16779 - a tutorial for first time Django contributors
On Sunday 11 November 2012, Tim Graham wrote: > > I think the part that has the most potential to confuse new contributors is > the introduction of PYTHONPATH. Claude suggested we could simply instruct > users to run the tests like so: > > PYTHONPATH=/path/to/django ./run_tests.py --settings=test_sqlite > > I'm not particularly in love with that, but it would eliminate the need to > try to explain things It would leave a lot to explain to Windows users (which I note you are still trying to cater for). Shai. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.