------------------------------------------------------------
revno: 1713
committer: Mark Sapiro <m...@msapiro.net>
branch nick: 2.1
timestamp: Mon 2017-06-05 22:47:05 -0700
message:
  Bumped Copyrights and fixed a bug in prior commit.
modified:
  Mailman/Cgi/admin.py
  Mailman/Cgi/admindb.py
  Mailman/Cgi/confirm.py
  Mailman/Cgi/create.py
  Mailman/Cgi/edithtml.py
  Mailman/Cgi/listinfo.py
  Mailman/Cgi/options.py
  Mailman/Cgi/private.py
  Mailman/Cgi/rmlist.py
  Mailman/Cgi/subscribe.py
  Mailman/Gui/Privacy.py
  Mailman/Gui/Topics.py


--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1

Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'Mailman/Cgi/admin.py'
--- Mailman/Cgi/admin.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/admin.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/admindb.py'
--- Mailman/Cgi/admindb.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/admindb.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/confirm.py'
--- Mailman/Cgi/confirm.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/confirm.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/create.py'
--- Mailman/Cgi/create.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/create.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -104,7 +104,7 @@
     password = cgidata.getfirst('password', '').strip()
     confirm  = cgidata.getfirst('confirm', '').strip()
     auth     = cgidata.getfirst('auth', '').strip()
-    langs    = cgidata.getfirst('langs', [mm_cfg.DEFAULT_SERVER_LANGUAGE])
+    langs    = cgidata.getvalue('langs', [mm_cfg.DEFAULT_SERVER_LANGUAGE])
 
     if not isinstance(langs, ListType):
         langs = [langs]
@@ -292,7 +292,7 @@
 
 # Because the cgi module blows
 class Dummy:
-    def getvalue(self, name, default):
+    def getfirst(self, name, default):
         return default
 dummy = Dummy()
 

=== modified file 'Mailman/Cgi/edithtml.py'
--- Mailman/Cgi/edithtml.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/edithtml.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/listinfo.py'
--- Mailman/Cgi/listinfo.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/listinfo.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/options.py'
--- Mailman/Cgi/options.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/options.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/private.py'
--- Mailman/Cgi/private.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/private.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/rmlist.py'
--- Mailman/Cgi/rmlist.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/rmlist.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Cgi/subscribe.py'
--- Mailman/Cgi/subscribe.py	2017-06-06 03:48:34 +0000
+++ Mailman/Cgi/subscribe.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Gui/Privacy.py'
--- Mailman/Gui/Privacy.py	2017-06-06 03:48:34 +0000
+++ Mailman/Gui/Privacy.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

=== modified file 'Mailman/Gui/Topics.py'
--- Mailman/Gui/Topics.py	2017-06-06 03:48:34 +0000
+++ Mailman/Gui/Topics.py	2017-06-06 05:47:05 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2015 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License

_______________________________________________
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to