Chris Shucksmith

Results 82 comments of Chris Shucksmith

As a workaround you can `$ pip install django-utils-six` then use `$ python setup.py test` as usual.

Link to Google's documentation https://developers.google.com/recaptcha/docs/faq#can-i-use-recaptcha-globally > Can I use reCAPTCHA globally? > Yes, please use "www.recaptcha.net" in your code in circumstances when "www.google.com" is not accessible. > > First, replace...

Subscribed - I am interested in using serial streams within trio, at least on Linux

Hi embeddedt - did you get any further with this? I would be happy to add a default True value if you can confirm it helps.

I've rebased and verified tests. I agree using `select_for_update` to take row-level locks over the currently selected `order_with_respect_to` partition looks like a plausible way to go to avoid race conditions...

If we refactor the lock-taking to a sub or wrapper and use it across `save`, `delete`, `swap`, `to`, `above` and `below` methods I think I'd be happy merging it.

My take on this is that we need to fix `.save()` when changing fields contained in `order_with_respect_to` to maintain the predicate that the items are in order within the old...

Confirmed this is a bug I have encountered. It might be possible to set resulting `order` to the minimum of the `to()` argument and the maximum existing value using an...

Might be possible to make the up/down links all *submit* the main form (rather than a nested form, or random get request) with different actions for each button. Would allow...

I've been looking at what `django-mptt` does (they have a drag-drop re-ordering form widget) and it is quite similar to what I suggested. They use the admin jQuery integration to...