diff options
Diffstat (limited to 'hyperkitty/views')
-rw-r--r-- | hyperkitty/views/accounts.py | 2 | ||||
-rw-r--r-- | hyperkitty/views/api.py | 2 | ||||
-rw-r--r-- | hyperkitty/views/compat.py | 2 | ||||
-rw-r--r-- | hyperkitty/views/forms.py | 21 | ||||
-rw-r--r-- | hyperkitty/views/list.py | 3 | ||||
-rw-r--r-- | hyperkitty/views/message.py | 3 | ||||
-rw-r--r-- | hyperkitty/views/pages.py | 2 | ||||
-rw-r--r-- | hyperkitty/views/thread.py | 3 |
8 files changed, 37 insertions, 1 deletions
diff --git a/hyperkitty/views/accounts.py b/hyperkitty/views/accounts.py index 3dcfa2e..01edb63 100644 --- a/hyperkitty/views/accounts.py +++ b/hyperkitty/views/accounts.py @@ -17,7 +17,7 @@ # HyperKitty. If not, see <http://www.gnu.org/licenses/>. # # Author: Aamir Khan <syst3m.w0rm@gmail.com> -# +# import re import sys diff --git a/hyperkitty/views/api.py b/hyperkitty/views/api.py index c88923d..d7d18b6 100644 --- a/hyperkitty/views/api.py +++ b/hyperkitty/views/api.py @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License along with # HyperKitty. If not, see <http://www.gnu.org/licenses/>. # +# Author: Aamir Khan <syst3m.w0rm@gmail.com> +# import re import os diff --git a/hyperkitty/views/compat.py b/hyperkitty/views/compat.py index dea2174..bbfa367 100644 --- a/hyperkitty/views/compat.py +++ b/hyperkitty/views/compat.py @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License along with # HyperKitty. If not, see <http://www.gnu.org/licenses/>. # +# Author: Aurelien Bompard <abompard@fedoraproject.org> +# from __future__ import with_statement diff --git a/hyperkitty/views/forms.py b/hyperkitty/views/forms.py index 8e458d0..ab16215 100644 --- a/hyperkitty/views/forms.py +++ b/hyperkitty/views/forms.py @@ -1,3 +1,24 @@ +#-*- coding: utf-8 -*- +# Copyright (C) 1998-2012 by the Free Software Foundation, Inc. +# +# This file is part of HyperKitty. +# +# HyperKitty is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# HyperKitty is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# HyperKitty. If not, see <http://www.gnu.org/licenses/>. +# +# Author: Aamir Khan <syst3m.w0rm@gmail.com> +# + from django import forms from django.core import validators from django.contrib.auth.models import User diff --git a/hyperkitty/views/list.py b/hyperkitty/views/list.py index f44379a..97044ed 100644 --- a/hyperkitty/views/list.py +++ b/hyperkitty/views/list.py @@ -16,6 +16,9 @@ # You should have received a copy of the GNU General Public License along with # HyperKitty. If not, see <http://www.gnu.org/licenses/>. # +# Author: Aamir Khan <syst3m.w0rm@gmail.com> +# Author: Aurelien Bompard <abompard@fedoraproject.org> +# import re import os diff --git a/hyperkitty/views/message.py b/hyperkitty/views/message.py index 8f5679c..ab30447 100644 --- a/hyperkitty/views/message.py +++ b/hyperkitty/views/message.py @@ -16,6 +16,9 @@ # You should have received a copy of the GNU General Public License along with # HyperKitty. If not, see <http://www.gnu.org/licenses/>. # +# Author: Aamir Khan <syst3m.w0rm@gmail.com> +# Author: Aurelien Bompard <abompard@fedoraproject.org> +# import re import os diff --git a/hyperkitty/views/pages.py b/hyperkitty/views/pages.py index a61f17f..c444cfd 100644 --- a/hyperkitty/views/pages.py +++ b/hyperkitty/views/pages.py @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License along with # HyperKitty. If not, see <http://www.gnu.org/licenses/>. # +# Author: Aamir Khan <syst3m.w0rm@gmail.com> +# import re import os diff --git a/hyperkitty/views/thread.py b/hyperkitty/views/thread.py index 1375d9f..afe389b 100644 --- a/hyperkitty/views/thread.py +++ b/hyperkitty/views/thread.py @@ -16,6 +16,9 @@ # You should have received a copy of the GNU General Public License along with # HyperKitty. If not, see <http://www.gnu.org/licenses/>. # +# Author: Aamir Khan <syst3m.w0rm@gmail.com> +# Author: Aurelien Bompard <abompard@fedoraproject.org> +# import datetime |