Re: CTRL-BREAK still make sense on Windows for `runserver`?

2021-06-22 Thread William Vincent
Ok, thanks for the link Matthew. Just thought I'd bring it up in case things had changed. Seems status quo is fine for now but if Windows keyboards continue to remove the Pause/Break key might make sense to add `Control-C` as Adam notes or eventually switch over. On Tuesday, June 22, 2021 at 6:

Re: Getting Started.

2020-12-26 Thread Vincent TOSSOU
Hi, I'm Web Front developer! Le sam. 26 déc. 2020 à 18:53, vamshi krishna janumpally < vamshiguptha1...@gmail.com> a écrit : > Hey guys, getting started with open source contribution. I would like to > contribute to the Django community. Any help regarding getting started > would be greatly appr

Re: Google Patch Rewards program

2020-01-07 Thread William Vincent
This is great! To the extent we have this teed up internally, makes it much easier for DSF to go to Google and coordinate. And even if Google doesn't pan out, having structure makes it easier for us to, for example, find funding if some fundraising projects in the works pan out. On Tuesday, Dec

Re: Make Development More Accessible

2019-08-08 Thread William Vincent
I think the way Rails does it, aka with well-done newcomers guide (https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html) is worth looking at, as Carlton notes. A bit more streamlined than the current Django How To Contribute Guides. Incidentally, Carlton and I will be having a

Re: Feedback on Django Channels

2016-03-19 Thread Vincent
wrote: > > > > On Fri, Mar 18, 2016 at 4:40 PM, Vincent > > wrote: > >> Hey Andrew, >> >> Thanks for looking through all that, and for the reply. >> >> I like the simplicity of your updated examples. I started to make a >> counter-examp

Re: Feedback on Django Channels

2016-03-19 Thread Vincent
; one - which means the router always knows that every entry has exactly one > channel defined that can be matched against. > > Andrew > > On Fri, Mar 18, 2016 at 5:43 PM, Vincent > > wrote: > >> Andrew, >> >> Ah, excellent. I just took a short break (too ma

Re: Feedback on Django Channels

2016-03-19 Thread Vincent
Also note, I just copy-pasted the same SyntaxError (kwarg before arg). On Friday, March 18, 2016 at 3:40:22 PM UTC-4, Vincent wrote: > > Hey Andrew, > > Thanks for looking through all that, and for the reply. > > I like the simplicity of your updated examples. I started to

Re: Feedback on Django Channels

2016-03-19 Thread Vincent
Jacob, Florian, Andrew, I've spent the last 200 minutes thinking this through and writing, and here's what I've come up with: https://gist.github.com/orokusaki/c67d46965a4ebeb3035a Below are the full contents of that Gist (but I recommend the Gist for formatting). I also created https://githu

Re: Feedback on Django Channels

2016-03-18 Thread Vincent
erns`? Otherwise, we're allowing routing based on channel name or path again? Maybe I'm misunderstanding. On Friday, March 18, 2016 at 10:58:41 AM UTC-4, Andrew Godwin wrote: > > Hi Vincent, > > I think you make some good points - in particular, I think includes are > probabl

Re: Supported Python versions for Django 1.7

2013-06-28 Thread Vincent
I agree that there is likely to be little overlap between people using old systems and people using bleeding edge Django versions. Along the same lines, it's worth noting that these users will have a supported version if Django (1.6) for more than a year from today anyway. Python 2.6 reminds me

Re: Proposal: better support for generating rest apis in django core

2013-06-27 Thread Vincent
Huge +1 on everything Tom said, except the point about the docs: Calling out quality packages in some way from the docs > The nice thing about developer communities is that they're fairly emergent. Consensus is usually formed all the way from the very bottom, on up. This works well. Especially

Re: contributing to django as a part of master thersis

2011-02-09 Thread Vincent
+1 on the multi-writes, for what it's worth. For the type of work I do this would be a tremendous resource saver (highly transactional, write-heavy, etc). I've always wondered why Django didn't include this (I'd get off my *** and pitch in, if I were even half way OK at SQL), but I've also wondere

Re: Feature request - add raw_post to test client

2011-01-24 Thread Vincent
On second glance, ``Client.post`` does support raw posting ``data`` as a ``str``, as long as you pass your own ``content_type`` with it. It's not in the docs, or the method's docstring, but it's easy to do. On Jan 23, 4:46 am, Russell Keith-Magee wrote: > On Mon, Jan 17, 2011 a

Feature request - add raw_post to test client

2011-01-16 Thread Vincent
When looking through the test client I noticed that it requires a dictionary and always uses multipart/form-data posts. Sometimes it's helpful to use a raw post, instead. The flexibility allows you to just post a string, use key-value pair format, or anything you want, really. Using raw posts would

Getting Images to display in Development Environment

2007-11-18 Thread Vincent
I am new to Django and Python and trying to learn by going thru an open source application called Vection. I get everything up and running except for the static images. I followed the article at http://www.djangoproject.com/documentation/static_files/ put I still can't get the images to serve. Cou