mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- ugettext functions will be removed in Django 4.0. Each use emits a warning when running with Django 3.2. Since we have warnings enabled in developer mode, we see quite a few messages because of this. - ugettext is already a simple alias of gettext. So, no regressions are expected. Tests: - Accessing an affected app in UI with Django 3.2 and Django 2.2 works fine. - Using Django 3.2 there are no warnings related to removal of ugettext functions. - Ran regular unit tests. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
49 lines
1.7 KiB
Python
49 lines
1.7 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Forms for configuring date and time
|
|
"""
|
|
|
|
import logging
|
|
import subprocess
|
|
|
|
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class DateTimeForm(forms.Form):
|
|
"""Date/time configuration form."""
|
|
time_zone = forms.ChoiceField(
|
|
label=_('Time Zone'),
|
|
help_text=_('Set your time zone to get accurate timestamps. '
|
|
'This will set the system-wide time zone.'))
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
"""Initialize the date/time form."""
|
|
forms.Form.__init__(self, *args, **kwargs)
|
|
|
|
time_zone_options = [(zone, zone) for zone in self.get_time_zones()]
|
|
# Show not-set option only when time zone is not set
|
|
current_time_zone = self.initial.get('time_zone')
|
|
if current_time_zone == 'none':
|
|
time_zone_options.insert(0, ('none', _('-- no time zone set --')))
|
|
elif (current_time_zone, current_time_zone) not in time_zone_options:
|
|
time_zone_options.insert(0, (current_time_zone, current_time_zone))
|
|
|
|
self.fields['time_zone'].choices = time_zone_options
|
|
|
|
@staticmethod
|
|
def get_time_zones():
|
|
"""Return the list time zones."""
|
|
command = ['timedatectl', 'list-timezones']
|
|
try:
|
|
process = subprocess.run(command, stdout=subprocess.PIPE,
|
|
check=True)
|
|
except subprocess.CalledProcessError as exception:
|
|
logger.exception('Error getting time zones: %s', exception)
|
|
return []
|
|
|
|
output = process.stdout.decode()
|
|
return output.splitlines()
|