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
1=== modified file 'README.rst'
2--- README.rst 2014-03-15 21:36:39 +0000
3+++ README.rst 2015-01-23 03:46:51 +0000
4@@ -2,7 +2,7 @@
5 Postorius - web ui for GNU Mailman
6 ===================================
7
8-Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
9+Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
10
11 The Postorius Django app provides a web user interface to
12 access GNU Mailman.
13
14=== modified file 'setup.py'
15--- setup.py 2015-01-19 15:03:09 +0000
16+++ setup.py 2015-01-23 03:46:51 +0000
17@@ -1,4 +1,4 @@
18-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
19+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
20 #
21 # This file is part of Postorius.
22 #
23
24=== modified file 'src/postorius/__init__.py'
25--- src/postorius/__init__.py 2014-04-22 14:34:21 +0000
26+++ src/postorius/__init__.py 2015-01-23 03:46:51 +0000
27@@ -1,5 +1,5 @@
28 # -*- coding: utf-8 -*-
29-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
30+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
31 #
32 # This file is part of Postorius.
33 #
34
35=== modified file 'src/postorius/auth/decorators.py'
36--- src/postorius/auth/decorators.py 2015-01-18 19:21:23 +0000
37+++ src/postorius/auth/decorators.py 2015-01-23 03:46:51 +0000
38@@ -1,5 +1,5 @@
39 # -*- coding: utf-8 -*-
40-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
41+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
42 #
43 # This file is part of Postorius.
44 #
45
46=== modified file 'src/postorius/context_processors.py'
47--- src/postorius/context_processors.py 2014-03-15 21:36:39 +0000
48+++ src/postorius/context_processors.py 2015-01-23 03:46:51 +0000
49@@ -1,5 +1,5 @@
50 # -*- coding: utf-8 -*-
51-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
52+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
53 #
54 # This file is part of Postorius.
55 #
56
57=== modified file 'src/postorius/doc/conf.py'
58--- src/postorius/doc/conf.py 2013-10-05 21:48:59 +0000
59+++ src/postorius/doc/conf.py 2015-01-23 03:46:51 +0000
60@@ -50,7 +50,7 @@
61
62 # General information about the project.
63 project = u'Postorius'
64-copyright = u'2012, The Free Software Foundation'
65+copyright = u'2015, The Free Software Foundation'
66
67 # The version info for the project you're documenting, acts as replacement for
68 # |version| and |release|, also used in various other places throughout the
69@@ -232,7 +232,7 @@
70 epub_title = u'postorius'
71 epub_author = u'Mailman Coders'
72 epub_publisher = u'Mailman Coders'
73-epub_copyright = u'2012, The Free Software Foundation'
74+epub_copyright = u'2015, The Free Software Foundation'
75
76 # The language of the text. It defaults to the language option
77 # or en if the language is not set.
78
79=== modified file 'src/postorius/doc/news.rst'
80--- src/postorius/doc/news.rst 2015-01-19 15:05:47 +0000
81+++ src/postorius/doc/news.rst 2015-01-23 03:46:51 +0000
82@@ -2,7 +2,7 @@
83 News / Changelog
84 ================
85
86-Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
87+Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
88
89 The Postorius Django app provides a web user interface to
90 access GNU Mailman.
91
92=== modified file 'src/postorius/doc/settings.py'
93--- src/postorius/doc/settings.py 2013-10-05 21:48:59 +0000
94+++ src/postorius/doc/settings.py 2015-01-23 03:46:51 +0000
95@@ -1,5 +1,5 @@
96 #-*- coding: utf-8 -*-
97-# Copyright (C) 1998-2012 by the Free Software Foundation, Inc.
98+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
99 #
100 # This file is part of Postorius.
101 #
102
103=== modified file 'src/postorius/fieldset_forms.py'
104--- src/postorius/fieldset_forms.py 2014-04-16 21:32:31 +0000
105+++ src/postorius/fieldset_forms.py 2015-01-23 03:46:51 +0000
106@@ -1,5 +1,5 @@
107 # -*- coding: utf-8 -*-
108-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
109+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
110 #
111 # This file is part of Postorius.
112 #
113
114=== modified file 'src/postorius/forms.py'
115--- src/postorius/forms.py 2014-10-29 22:39:35 +0000
116+++ src/postorius/forms.py 2015-01-23 03:46:51 +0000
117@@ -1,5 +1,5 @@
118 # -*- coding: utf-8 -*-
119-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
120+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
121 #
122 # This file is part of Postorius.
123 #
124
125=== modified file 'src/postorius/management/commands/mmclient.py'
126--- src/postorius/management/commands/mmclient.py 2014-11-19 11:01:19 +0000
127+++ src/postorius/management/commands/mmclient.py 2015-01-23 03:46:51 +0000
128@@ -1,5 +1,5 @@
129 # -*- coding: utf-8 -*-
130-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
131+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
132 #
133 # This file is part of Postorius.
134 #
135
136=== modified file 'src/postorius/models.py'
137--- src/postorius/models.py 2014-04-19 16:59:56 +0000
138+++ src/postorius/models.py 2015-01-23 03:46:51 +0000
139@@ -1,5 +1,5 @@
140 # -*- coding: utf-8 -*-
141-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
142+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
143 #
144 # This file is part of Postorius.
145 #
146
147=== modified file 'src/postorius/templatetags/nav_helpers.py'
148--- src/postorius/templatetags/nav_helpers.py 2014-03-15 21:36:39 +0000
149+++ src/postorius/templatetags/nav_helpers.py 2015-01-23 03:46:51 +0000
150@@ -1,5 +1,5 @@
151 # -*- coding: utf-8 -*-
152-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
153+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
154 #
155 # This file is part of Postorius.
156 #
157
158=== modified file 'src/postorius/tests/__init__.py'
159--- src/postorius/tests/__init__.py 2014-04-16 22:24:13 +0000
160+++ src/postorius/tests/__init__.py 2015-01-23 03:46:51 +0000
161@@ -1,5 +1,5 @@
162 # -*- coding: utf-8 -*-
163-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
164+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
165 #
166 # This file is part of Postorius.
167 #
168
169=== modified file 'src/postorius/tests/mailman_api_tests/__init__.py'
170--- src/postorius/tests/mailman_api_tests/__init__.py 2014-11-19 11:01:19 +0000
171+++ src/postorius/tests/mailman_api_tests/__init__.py 2015-01-23 03:46:51 +0000
172@@ -1,5 +1,5 @@
173 # -*- coding: utf-8 -*-
174-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
175+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
176 #
177 # This file is part of Postorius.
178 #
179
180=== modified file 'src/postorius/tests/mailman_api_tests/test_list_index.py'
181--- src/postorius/tests/mailman_api_tests/test_list_index.py 2014-11-19 11:01:19 +0000
182+++ src/postorius/tests/mailman_api_tests/test_list_index.py 2015-01-23 03:46:51 +0000
183@@ -1,5 +1,5 @@
184 # -*- coding: utf-8 -*-
185-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
186+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
187 #
188 # This file is part of Postorius.
189 #
190
191=== modified file 'src/postorius/tests/mailman_api_tests/test_list_members.py'
192--- src/postorius/tests/mailman_api_tests/test_list_members.py 2014-11-19 11:01:19 +0000
193+++ src/postorius/tests/mailman_api_tests/test_list_members.py 2015-01-23 03:46:51 +0000
194@@ -1,5 +1,5 @@
195 # -*- coding: utf-8 -*-
196-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
197+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
198 #
199 # This file is part of Postorius.
200 #
201
202=== modified file 'src/postorius/tests/mailman_api_tests/test_list_new.py'
203--- src/postorius/tests/mailman_api_tests/test_list_new.py 2014-11-24 20:46:28 +0000
204+++ src/postorius/tests/mailman_api_tests/test_list_new.py 2015-01-23 03:46:51 +0000
205@@ -1,5 +1,5 @@
206 # -*- coding: utf-8 -*-
207-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
208+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
209 #
210 # This file is part of Postorius.
211 #
212
213=== modified file 'src/postorius/tests/mailman_api_tests/test_list_summary.py'
214--- src/postorius/tests/mailman_api_tests/test_list_summary.py 2014-11-19 11:01:19 +0000
215+++ src/postorius/tests/mailman_api_tests/test_list_summary.py 2015-01-23 03:46:51 +0000
216@@ -1,5 +1,5 @@
217 # -*- coding: utf-8 -*-
218-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
219+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
220 #
221 # This file is part of Postorius.
222 #
223
224=== modified file 'src/postorius/tests/test_auth_decorators.py'
225--- src/postorius/tests/test_auth_decorators.py 2015-01-18 19:21:23 +0000
226+++ src/postorius/tests/test_auth_decorators.py 2015-01-23 03:46:51 +0000
227@@ -1,5 +1,5 @@
228 # -*- coding: utf-8 -*-
229-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
230+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
231 #
232 # This file is part of Postorius.
233 #
234
235=== modified file 'src/postorius/tests/test_forms.py'
236--- src/postorius/tests/test_forms.py 2014-04-17 20:05:41 +0000
237+++ src/postorius/tests/test_forms.py 2015-01-23 03:46:51 +0000
238@@ -1,5 +1,5 @@
239 # -*- coding: utf-8 -*-
240-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
241+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
242 #
243 # This file is part of Postorius.
244 #
245
246=== modified file 'src/postorius/tests/test_utils.py'
247--- src/postorius/tests/test_utils.py 2014-03-15 21:36:39 +0000
248+++ src/postorius/tests/test_utils.py 2015-01-23 03:46:51 +0000
249@@ -1,5 +1,5 @@
250 # -*- coding: utf-8 -*-
251-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
252+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
253 #
254 # This file is part of Postorius.
255 #
256
257=== modified file 'src/postorius/tests/tests.py'
258--- src/postorius/tests/tests.py 2014-04-16 22:24:13 +0000
259+++ src/postorius/tests/tests.py 2015-01-23 03:46:51 +0000
260@@ -1,5 +1,5 @@
261 # -*- coding: utf-8 -*-
262-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
263+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
264 #
265 # This file is part of Postorius.
266 #
267
268=== modified file 'src/postorius/tests/utils.py'
269--- src/postorius/tests/utils.py 2014-03-15 21:36:39 +0000
270+++ src/postorius/tests/utils.py 2015-01-23 03:46:51 +0000
271@@ -1,5 +1,5 @@
272 # -*- coding: utf-8 -*-
273-# Copyright (C) 2012-2014 by the Free Software Foundation, Inc.
274+# Copyright (C) 2012-2015 by the Free Software Foundation, Inc.
275 #
276 # This file is part of Postorius.
277 #
278
279=== modified file 'src/postorius/urls.py'
280--- src/postorius/urls.py 2015-01-19 15:03:09 +0000
281+++ src/postorius/urls.py 2015-01-23 03:46:51 +0000
282@@ -1,5 +1,5 @@
283 # -*- coding: utf-8 -*-
284-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
285+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
286 #
287 # This file is part of Postorius.
288 #
289
290=== modified file 'src/postorius/utils.py'
291--- src/postorius/utils.py 2014-03-15 21:36:39 +0000
292+++ src/postorius/utils.py 2015-01-23 03:46:51 +0000
293@@ -1,5 +1,5 @@
294 # -*- coding: utf-8 -*-
295-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
296+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
297 #
298 # This file is part of Postorius.
299 #
300
301=== modified file 'src/postorius/views/__init__.py'
302--- src/postorius/views/__init__.py 2014-03-15 21:36:39 +0000
303+++ src/postorius/views/__init__.py 2015-01-23 03:46:51 +0000
304@@ -1,5 +1,5 @@
305 # -*- coding: utf-8 -*-
306-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
307+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
308 #
309 # This file is part of Postorius.
310 #
311
312=== modified file 'src/postorius/views/api.py'
313--- src/postorius/views/api.py 2014-11-19 11:01:19 +0000
314+++ src/postorius/views/api.py 2015-01-23 03:46:51 +0000
315@@ -1,5 +1,5 @@
316 # -*- coding: utf-8 -*-
317-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
318+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
319 #
320 # This file is part of Postorius.
321 #
322
323=== modified file 'src/postorius/views/generic.py'
324--- src/postorius/views/generic.py 2015-01-18 19:21:23 +0000
325+++ src/postorius/views/generic.py 2015-01-23 03:46:51 +0000
326@@ -1,5 +1,5 @@
327 # -*- coding: utf-8 -*-
328-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
329+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
330 #
331 # This file is part of Postorius.
332 #
333
334=== modified file 'src/postorius/views/list.py'
335--- src/postorius/views/list.py 2015-01-19 15:03:09 +0000
336+++ src/postorius/views/list.py 2015-01-23 03:46:51 +0000
337@@ -1,5 +1,5 @@
338 # -*- coding: utf-8 -*-
339-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
340+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
341 #
342 # This file is part of Postorius.
343 #
344
345=== modified file 'src/postorius/views/settings.py'
346--- src/postorius/views/settings.py 2015-01-18 19:21:23 +0000
347+++ src/postorius/views/settings.py 2015-01-23 03:46:51 +0000
348@@ -1,5 +1,5 @@
349 # -*- coding: utf-8 -*-
350-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
351+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
352 #
353 # This file is part of Postorius.
354 #
355
356=== modified file 'src/postorius/views/user.py'
357--- src/postorius/views/user.py 2014-11-24 19:49:11 +0000
358+++ src/postorius/views/user.py 2015-01-23 03:46:51 +0000
359@@ -1,5 +1,5 @@
360-# -*- coding: utf-8 -*-
361-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
362+# -*- coding: utf-8 -*-
363+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
364 #
365 # This file is part of Postorius.
366 #
367
368=== modified file 'src/postorius/views/views.py'
369--- src/postorius/views/views.py 2014-11-19 11:01:19 +0000
370+++ src/postorius/views/views.py 2015-01-23 03:46:51 +0000
371@@ -1,5 +1,5 @@
372 # -*- coding: utf-8 -*-
373-# Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
374+# Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
375 #
376 # This file is part of Postorius.
377 #

Subscribers

People subscribed via source and target branches