##// END OF EJS Templates
Removed much of the word "search" all over the search page
Removed much of the word "search" all over the search page

File last commit:

r1065:eb6bb3e8 default
r1072:8518d258 default
Show More
settings.py
69 lines | 2.2 KiB | text/x-python | PythonLexer
neko259
Added timezone support (time zone is selected in settings)
r1065 import pytz
neko259
Made settings view class-based
r547 from django.db import transaction
from django.shortcuts import render, redirect
neko259
Added timezone support (time zone is selected in settings)
r1065 from django.utils import timezone
neko259
Made settings view class-based
r547
neko259
User notifications (BB-59)
r990 from boards.abstracts.settingsmanager import get_settings_manager, \
SETTING_USERNAME, SETTING_LAST_NOTIFICATION_ID
neko259
Code cleanup part 2
r722 from boards.views.base import BaseBoardView, CONTEXT_FORM
neko259
Added login and logout for moderators
r729 from boards.forms import SettingsForm, PlainErrorList
neko259
Made settings view class-based
r547
neko259
Views refactoring
r900 FORM_THEME = 'theme'
neko259
User notifications (BB-59)
r990 FORM_USERNAME = 'username'
neko259
Added timezone support (time zone is selected in settings)
r1065 FORM_TIMEZONE = 'timezone'
neko259
Views refactoring
r900
neko259
Fixed hidden tags list in the settings
r733 CONTEXT_HIDDEN_TAGS = 'hidden_tags'
neko259
Don't allow characters in username that we cannot use as a URL
r995 TEMPLATE = 'boards/settings.html'
neko259
Minor style fixes to view classes. Fixed ban view
r561
neko259
Made settings view class-based
r547 class SettingsView(BaseBoardView):
def get(self, request):
neko259
Don't allow characters in username that we cannot use as a URL
r995 params = dict()
neko259
Divided settings manager into base settings manager class and session-based settings manager. This allowes to add other backends to the settings manager
r730 settings_manager = get_settings_manager(request)
neko259
Made settings view class-based
r547
neko259
Removed user and settings mode. Added settings manager to manage settings and keep them in the session (or any other backend like cookie in the future
r728 selected_theme = settings_manager.get_theme()
neko259
Made settings view class-based
r547
neko259
User notifications (BB-59)
r990 form = SettingsForm(
initial={
FORM_THEME: selected_theme,
neko259
Added timezone support (time zone is selected in settings)
r1065 FORM_USERNAME: settings_manager.get_setting(SETTING_USERNAME),
FORM_TIMEZONE: request.session.get('django_timezone', timezone.get_current_timezone()),
},
neko259
User notifications (BB-59)
r990 error_class=PlainErrorList)
neko259
Made settings view class-based
r547
neko259
Fixed tag threads view
r919 params[CONTEXT_FORM] = form
params[CONTEXT_HIDDEN_TAGS] = settings_manager.get_hidden_tags()
neko259
Made settings view class-based
r547
neko259
Don't allow characters in username that we cannot use as a URL
r995 return render(request, TEMPLATE, params)
neko259
Made settings view class-based
r547
def post(self, request):
neko259
Divided settings manager into base settings manager class and session-based settings manager. This allowes to add other backends to the settings manager
r730 settings_manager = get_settings_manager(request)
neko259
Made settings view class-based
r547
with transaction.atomic():
neko259
Added login and logout for moderators
r729 form = SettingsForm(request.POST, error_class=PlainErrorList)
neko259
Made settings view class-based
r547
if form.is_valid():
neko259
Views refactoring
r900 selected_theme = form.cleaned_data[FORM_THEME]
neko259
Use only lowercase name in notifications. Refactored post manager and refmap...
r1008 username = form.cleaned_data[FORM_USERNAME].lower()
neko259
Made settings view class-based
r547
neko259
Removed user and settings mode. Added settings manager to manage settings and keep them in the session (or any other backend like cookie in the future
r728 settings_manager.set_theme(selected_theme)
neko259
Made settings view class-based
r547
neko259
If the username was not changed during settings form saving, don't reset...
r1051 old_username = settings_manager.get_setting(SETTING_USERNAME)
if username != old_username:
settings_manager.set_setting(SETTING_USERNAME, username)
settings_manager.set_setting(SETTING_LAST_NOTIFICATION_ID, None)
neko259
Added timezone support (time zone is selected in settings)
r1065 request.session['django_timezone'] = form.cleaned_data[FORM_TIMEZONE]
neko259
Don't allow characters in username that we cannot use as a URL
r995 return redirect('settings')
else:
params = dict()
neko259
User notifications (BB-59)
r990
neko259
Don't allow characters in username that we cannot use as a URL
r995 params[CONTEXT_FORM] = form
params[CONTEXT_HIDDEN_TAGS] = settings_manager.get_hidden_tags()
return render(request, TEMPLATE, params)