Merge lp:~sumanah/postorius/copyright-year into lp:postorius

Proposed by Sumana Harihareswara
Status: Merged
Merge reported by: Florian Fuchs
Merged at revision: not available
Proposed branch: lp:~sumanah/postorius/copyright-year
Merge into: lp:postorius
Diff against target: 377 lines (+35/-35)
33 files modified
README.rst (+1/-1)
setup.py (+1/-1)
src/postorius/__init__.py (+1/-1)
src/postorius/auth/decorators.py (+1/-1)
src/postorius/context_processors.py (+1/-1)
src/postorius/doc/conf.py (+2/-2)
src/postorius/doc/news.rst (+1/-1)
src/postorius/doc/settings.py (+1/-1)
src/postorius/fieldset_forms.py (+1/-1)
src/postorius/forms.py (+1/-1)
src/postorius/management/commands/mmclient.py (+1/-1)
src/postorius/models.py (+1/-1)
src/postorius/templatetags/nav_helpers.py (+1/-1)
src/postorius/tests/__init__.py (+1/-1)
src/postorius/tests/mailman_api_tests/__init__.py (+1/-1)
src/postorius/tests/mailman_api_tests/test_list_index.py (+1/-1)
src/postorius/tests/mailman_api_tests/test_list_members.py (+1/-1)
src/postorius/tests/mailman_api_tests/test_list_new.py (+1/-1)
src/postorius/tests/mailman_api_tests/test_list_summary.py (+1/-1)
src/postorius/tests/test_auth_decorators.py (+1/-1)
src/postorius/tests/test_forms.py (+1/-1)
src/postorius/tests/test_utils.py (+1/-1)
src/postorius/tests/tests.py (+1/-1)
src/postorius/tests/utils.py (+1/-1)
src/postorius/urls.py (+1/-1)
src/postorius/utils.py (+1/-1)
src/postorius/views/__init__.py (+1/-1)
src/postorius/views/api.py (+1/-1)
src/postorius/views/generic.py (+1/-1)
src/postorius/views/list.py (+1/-1)
src/postorius/views/settings.py (+1/-1)
src/postorius/views/user.py (+2/-2)
src/postorius/views/views.py (+1/-1)
To merge this branch: bzr merge lp:~sumanah/postorius/copyright-year
Reviewer Review Type Date Requested Status
Florian Fuchs Pending
Review via email: mp+247377@code.launchpad.net

Description of the change

Update copyright year on source code files to 2015.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'README.rst'
--- README.rst 2014-03-15 21:36:39 +0000
+++ README.rst 2015-01-23 03:46:51 +0000
@@ -2,7 +2,7 @@
2Postorius - web ui for GNU Mailman2Postorius - web ui for GNU Mailman
3===================================3===================================
44
5Copyright (C) 1998-2014 by the Free Software Foundation, Inc.5Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
66
7The Postorius Django app provides a web user interface to7The Postorius Django app provides a web user interface to
8access GNU Mailman. 8access GNU Mailman.
99
=== modified file 'setup.py'
--- setup.py 2015-01-19 15:03:09 +0000
+++ setup.py 2015-01-23 03:46:51 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.1# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
2#2#
3# This file is part of Postorius.3# This file is part of Postorius.
4#4#
55
=== modified file 'src/postorius/__init__.py'
--- src/postorius/__init__.py 2014-04-22 14:34:21 +0000
+++ src/postorius/__init__.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/auth/decorators.py'
--- src/postorius/auth/decorators.py 2015-01-18 19:21:23 +0000
+++ src/postorius/auth/decorators.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/context_processors.py'
--- src/postorius/context_processors.py 2014-03-15 21:36:39 +0000
+++ src/postorius/context_processors.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/doc/conf.py'
--- src/postorius/doc/conf.py 2013-10-05 21:48:59 +0000
+++ src/postorius/doc/conf.py 2015-01-23 03:46:51 +0000
@@ -50,7 +50,7 @@
5050
51# General information about the project.51# General information about the project.
52project = u'Postorius'52project = u'Postorius'
53copyright = u'2012, The Free Software Foundation'53copyright = u'2015, The Free Software Foundation'
5454
55# The version info for the project you're documenting, acts as replacement for55# The version info for the project you're documenting, acts as replacement for
56# |version| and |release|, also used in various other places throughout the56# |version| and |release|, also used in various other places throughout the
@@ -232,7 +232,7 @@
232epub_title = u'postorius'232epub_title = u'postorius'
233epub_author = u'Mailman Coders'233epub_author = u'Mailman Coders'
234epub_publisher = u'Mailman Coders'234epub_publisher = u'Mailman Coders'
235epub_copyright = u'2012, The Free Software Foundation'235epub_copyright = u'2015, The Free Software Foundation'
236236
237# The language of the text. It defaults to the language option237# The language of the text. It defaults to the language option
238# or en if the language is not set.238# or en if the language is not set.
239239
=== modified file 'src/postorius/doc/news.rst'
--- src/postorius/doc/news.rst 2015-01-19 15:05:47 +0000
+++ src/postorius/doc/news.rst 2015-01-23 03:46:51 +0000
@@ -2,7 +2,7 @@
2News / Changelog2News / Changelog
3================3================
44
5Copyright (C) 2012-2014 by the Free Software Foundation, Inc.5Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
66
7The Postorius Django app provides a web user interface to7The Postorius Django app provides a web user interface to
8access GNU Mailman.8access GNU Mailman.
99
=== modified file 'src/postorius/doc/settings.py'
--- src/postorius/doc/settings.py 2013-10-05 21:48:59 +0000
+++ src/postorius/doc/settings.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1#-*- coding: utf-8 -*-1#-*- coding: utf-8 -*-
2# Copyright (C) 1998-2012 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/fieldset_forms.py'
--- src/postorius/fieldset_forms.py 2014-04-16 21:32:31 +0000
+++ src/postorius/fieldset_forms.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/forms.py'
--- src/postorius/forms.py 2014-10-29 22:39:35 +0000
+++ src/postorius/forms.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/management/commands/mmclient.py'
--- src/postorius/management/commands/mmclient.py 2014-11-19 11:01:19 +0000
+++ src/postorius/management/commands/mmclient.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/models.py'
--- src/postorius/models.py 2014-04-19 16:59:56 +0000
+++ src/postorius/models.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/templatetags/nav_helpers.py'
--- src/postorius/templatetags/nav_helpers.py 2014-03-15 21:36:39 +0000
+++ src/postorius/templatetags/nav_helpers.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/__init__.py'
--- src/postorius/tests/__init__.py 2014-04-16 22:24:13 +0000
+++ src/postorius/tests/__init__.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/mailman_api_tests/__init__.py'
--- src/postorius/tests/mailman_api_tests/__init__.py 2014-11-19 11:01:19 +0000
+++ src/postorius/tests/mailman_api_tests/__init__.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/mailman_api_tests/test_list_index.py'
--- src/postorius/tests/mailman_api_tests/test_list_index.py 2014-11-19 11:01:19 +0000
+++ src/postorius/tests/mailman_api_tests/test_list_index.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/mailman_api_tests/test_list_members.py'
--- src/postorius/tests/mailman_api_tests/test_list_members.py 2014-11-19 11:01:19 +0000
+++ src/postorius/tests/mailman_api_tests/test_list_members.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/mailman_api_tests/test_list_new.py'
--- src/postorius/tests/mailman_api_tests/test_list_new.py 2014-11-24 20:46:28 +0000
+++ src/postorius/tests/mailman_api_tests/test_list_new.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/mailman_api_tests/test_list_summary.py'
--- src/postorius/tests/mailman_api_tests/test_list_summary.py 2014-11-19 11:01:19 +0000
+++ src/postorius/tests/mailman_api_tests/test_list_summary.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/test_auth_decorators.py'
--- src/postorius/tests/test_auth_decorators.py 2015-01-18 19:21:23 +0000
+++ src/postorius/tests/test_auth_decorators.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/test_forms.py'
--- src/postorius/tests/test_forms.py 2014-04-17 20:05:41 +0000
+++ src/postorius/tests/test_forms.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/test_utils.py'
--- src/postorius/tests/test_utils.py 2014-03-15 21:36:39 +0000
+++ src/postorius/tests/test_utils.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/tests.py'
--- src/postorius/tests/tests.py 2014-04-16 22:24:13 +0000
+++ src/postorius/tests/tests.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/tests/utils.py'
--- src/postorius/tests/utils.py 2014-03-15 21:36:39 +0000
+++ src/postorius/tests/utils.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.2# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/urls.py'
--- src/postorius/urls.py 2015-01-19 15:03:09 +0000
+++ src/postorius/urls.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/utils.py'
--- src/postorius/utils.py 2014-03-15 21:36:39 +0000
+++ src/postorius/utils.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/views/__init__.py'
--- src/postorius/views/__init__.py 2014-03-15 21:36:39 +0000
+++ src/postorius/views/__init__.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/views/api.py'
--- src/postorius/views/api.py 2014-11-19 11:01:19 +0000
+++ src/postorius/views/api.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/views/generic.py'
--- src/postorius/views/generic.py 2015-01-18 19:21:23 +0000
+++ src/postorius/views/generic.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/views/list.py'
--- src/postorius/views/list.py 2015-01-19 15:03:09 +0000
+++ src/postorius/views/list.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/views/settings.py'
--- src/postorius/views/settings.py 2015-01-18 19:21:23 +0000
+++ src/postorius/views/settings.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/views/user.py'
--- src/postorius/views/user.py 2014-11-24 19:49:11 +0000
+++ src/postorius/views/user.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#
66
=== modified file 'src/postorius/views/views.py'
--- src/postorius/views/views.py 2014-11-19 11:01:19 +0000
+++ src/postorius/views/views.py 2015-01-23 03:46:51 +0000
@@ -1,5 +1,5 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.2# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
3#3#
4# This file is part of Postorius.4# This file is part of Postorius.
5#5#

Subscribers

People subscribed via source and target branches