Django security releases issued: 2.2.8 and 2.1.15.

2019-12-02 Thread Carlton Gibson
Today the Django team issued 2.2.8 and 2.1.15 as part of our security process. These releases address security issues, and we encourage all users to upgrade as soon as possible: https://www.djangoproject.com/weblog/2019/dec/02/security-releases/

Re: Django security releases issued: 2.2.8 and 2.1.15.

2019-12-02 Thread אורי
Bugfixes is empty on https://docs.djangoproject.com/en/2.2/releases/2.1.15/ אורי u...@speedy.net On Mon, Dec 2, 2019 at 11:12 AM Carlton Gibson wrote: > Today the Django team issued 2.2.8 and 2.1.15 as part of our security > process. These releases address security issues, and we encourage al

Django 3.0 Released.

2019-12-02 Thread Carlton Gibson
Django 3.0 is now available. https://www.djangoproject.com/weblog/2019/dec/02/django-3-released/ With the release of Django 3.0, Django 2.2 has reached the end of mainstream support. The final minor bug fix release (which is

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread Carlton Gibson
Hi Uri. Can you explain (I couldn't exactly follow from the ticket/commit/SO post) why Custom Format Files[0] are not the way to go for you here? [0] https://docs.djangoproject.com/en/2.2/topics/i18n/formatting/#creating-custom-format-files Thanks. Carlton On Monday, 2 December 2019 05:32

Re: Django security releases issued: 2.2.8 and 2.1.15.

2019-12-02 Thread Carlton Gibson
That was a caching issue. (The docs can take A Moment™ to build sometimes. :) On Monday, 2 December 2019 10:28:36 UTC+1, Uri wrote: > > Bugfixes is empty on > https://docs.djangoproject.com/en/2.2/releases/2.1.15/ > אורי > u...@speedy.net > > > On Mon, Dec 2, 2019 at 11:12 AM Carlton Gibson

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread אורי
Hi Carlton, I don't understand how this is related to Custom Format Files. I want to be able to define settings, such as YEAR_FORMAT which I defined in Speedy Net, where I would define a default value (such as 'Y') which can be overridden for some specific locales. If it's not overridden, the val

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread Carlton Gibson
Hi Uri. On Monday, 2 December 2019 16:19:11 UTC+1, Uri wrote: > > I don't understand how this is related to Custom Format Files. > Well in the SO post you linked you say this: > I want to override the default values of DATE_FORMAT and MONTH_DAY_FORMAT in English, but keep the default values (o

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread Carlton Gibson
Also, I'm guessing this has come up before, so it's likely others will be able to comment. -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it,

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread אורי
Hi Carlton, The list of formats on https://github.com/django/django/blob/master/django/utils/formats.py#L31-L46 is: FORMAT_SETTINGS = frozenset([ 'DECIMAL_SEPARATOR', 'THOUSAND_SEPARATOR', 'NUMBER_GROUPING', 'FIRST_DAY_OF_WEEK', 'MONTH_DAY_FORMAT', 'TIME_FORMAT', 'DATE

Re: Improving MSSQL and Azure SQL support on Django

2019-12-02 Thread Sean Martz
Hello, It seems like this issue has lost momentum. Is this still something that's on anyones radar? It looks like django-pyodbc-azure is not actively maintained anymore (it looks like Michaya has taken a hiatus from GitHub). It also looks like there's a small community potentially popping up th

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread Carlton Gibson
Well not currently no. 😀 What I’m trying to ask is why you want to do this? What does you code look like without it? Those formats are used by Django. Why would you want/need to put your own values in the same place? get_format() returns what you pass it if your format is not found, yes? So is a

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread Carlton Gibson
Hi Uri. > To customize FORMAT_SETTINGS I had to patch 14 files, because the tests failed and I had to patch the tests too. I managed to get a moment to look at your Speedy Net code. The 14 files here is because you have so many entry points (multiple manage.py and wsgi.py files) — most projec

Re: new to open source contribution

2019-12-02 Thread Carlos Leite (cadu)
Hi Satish, there is a list just for that : django-core-mentors...@googlegroups.com ask anything about start to contributing to django , people are there for it. You will be welcome Em sexta-feira, 29 de novembro de 2019 09:41:13 UTC-3, Shruti Satish escreveu: > > i am new to open source an

Re: Let Django users customize FORMAT_SETTINGS (a feature request)

2019-12-02 Thread אורי
Hi Carlton, I want to use YEAR_FORMAT in the template the same why I'm using DATE_FORMAT and MONTH_DAY_FORMAT: {% if can_view_profile and user.date_of_birth %} {% if can_view_dob_day_month or can_view_dob_year %} {% if can_view_dob_day_month %}{% trans 'Birth Date' %}{% e