##// END OF EJS Templates
Don't run time conversion if Intl not available in browser. Also convert...
Don't run time conversion if Intl not available in browser. Also convert thread death time in archived threads

File last commit:

r1008:bbb4d5fd default
r1023:0040ea34 default
Show More
settings.py
59 lines | 1.8 KiB | text/x-python | PythonLexer
neko259
Made settings view class-based
r547 from django.db import transaction
from django.shortcuts import render, redirect
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
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,
FORM_USERNAME: settings_manager.get_setting(SETTING_USERNAME)},
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
User notifications (BB-59)
r990 settings_manager.set_setting(SETTING_USERNAME, username)
settings_manager.set_setting(SETTING_LAST_NOTIFICATION_ID, None)
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)