Re: Fellow Reports -- October 2019

2019-10-29 Thread Carlton Gibson
Hi all. Calendar Week 42 -- ending 20 October. Triaged: https://code.djangoproject.com/ticket/30536 -- Allow running custom logic in django.setup(). (wontfix) https://code.djangoproject.com/ticket/28752 -- Prevent django.setup() from running multiple times (wontfix) https://code.djangoproj

Re: Removing old branches from the Django Git repository.

2019-10-29 Thread Carlton Gibson
OK, just to double-confirm. We will move the `soc` and `attic` branches to tags[*] with the next releases (Nov 4th that will be). [*] Loosely: A branch is just tag that updates right? You can check them out, or create new branches from them just as easily. And these are "branches" that never w

Re: Adding Occitan language code 'oc' in LANG_INFO

2019-10-29 Thread Adam Johnson
That looks good to me. To avoid mutating Django's default setting (though it's unlikely to do any harm), I'd do: from django.conf import global_settings LANGUAGES = global_settings.LANGUAGES + [('oc', gettext_lazy('Occitan'))] Would you like to make a documentation PR to reword it to not just tal

Allowing numbers in the top level domain

2019-10-29 Thread s b f
https://code.djangoproject.com/ticket/30924#ticket The current regex in ​URLValidator does not allow numbers in the top-level domain e.g. www.example.org33 raises a ValidationError Rarely, if ever, do public top-level domains contain a number, however internal, private networks can certainly b

Allowing numbers in top level domain

2019-10-29 Thread s b f
https://code.djangoproject.com/ticket/30924#ticket The current regex in ​URLValidator does not allow numbers in the top-level domain e.g. www.example.org33 raises a ValidationError Rarely, if ever, do public top-level domains contain a number, however internal, private networks can certainly b