- Removed some preferences tables that were only there for testing
- Fixed handling of an exception on the preferences pages if the logged-in user is unknown to Mailman
- "More Info"-Links now with normal font-weight
- Removed some unneccessary whitespace from templates
- Fixed a typo in form description
1 parent 42690d6 commit e6f75b63a6c6b2b29a1bf9ce9ffc2e4a36e5f289
@Florian Fuchs Florian Fuchs authored on 22 Oct 2013
Showing 8 changed files
View
2
■■■
src/postorius/forms.py
advertised = forms.TypedChoiceField(
coerce=lambda x: x == 'True',
choices=((True, _('Yes')), (False, _('No'))),
widget=forms.RadioSelect,
label=_('Advertise the existance of this list?'),
label=_('Advertise the existence of this list?'),
help_text=(
'Choose whether to include this list on the list of all lists'))
filter_content = forms.TypedChoiceField(
coerce=lambda x: x == 'True',
View
2
■■■
src/postorius/models.py
except AttributeError, e:
raise MailmanApiError(e)
except HTTPError, e:
if e.code == 404:
raise Mailman404Error
raise Mailman404Error('Mailman resource could not be found.')
else:
raise
except MailmanConnectionError, e:
raise MailmanApiError(e)
View
src/postorius/static/postorius/css/style.css
View
src/postorius/templates/postorius/user_address_preferences.html
View
src/postorius/templates/postorius/user_mailmansettings.html
View
src/postorius/templates/postorius/user_subscription_preferences.html
View
src/postorius/views/generic.py
View
src/postorius/views/user.py