[Pkg-mailman-hackers] Pkg-mailman commit - rev 542 - trunk/debian/patches

Thijs Kinkhorst thijs at alioth.debian.org
Sun Jun 15 16:51:07 UTC 2008


Author: thijs
Date: 2008-06-15 16:51:07 +0000 (Sun, 15 Jun 2008)
New Revision: 542

Modified:
   trunk/debian/patches/00_stolen_from_HEAD.patch
   trunk/debian/patches/01_defaults.debian.patch
   trunk/debian/patches/02_HyperDatabase_mapkeys.patch
   trunk/debian/patches/07_snooze.patch
   trunk/debian/patches/10_wrapper_uid.patch
   trunk/debian/patches/11_handle_propfind.patch
   trunk/debian/patches/15_mailmanctl_daemonize.patch
   trunk/debian/patches/16_update_debian.patch
   trunk/debian/patches/20_qmail_to_mailman.debian.patch
   trunk/debian/patches/21_newlist_help.patch
   trunk/debian/patches/30_pipermail_threads.patch
   trunk/debian/patches/32_MIME_fixup.patch
   trunk/debian/patches/51_nocompile.pyc.patch
   trunk/debian/patches/52_check_perms_lstat.patch
   trunk/debian/patches/53_disable_addons.patch
   trunk/debian/patches/58_fix_es_translation.patch
   trunk/debian/patches/59_fix_missing_language_crash.patch
   trunk/debian/patches/61_fix_ru_siteowner.patch
   trunk/debian/patches/62_new_list_bad_pending_requests.patch
   trunk/debian/patches/63_update_default_server_language.patch
   trunk/debian/patches/64_correct_html_nesting.patch
   trunk/debian/patches/65_handle_templates_directories.patch
   trunk/debian/patches/66_donot_let_cache_html_pages.patch
   trunk/debian/patches/67_update_handle_old_versions.patch
   trunk/debian/patches/70_invalid_utf8_dos.patch
   trunk/debian/patches/71_date_overflows.patch
   trunk/debian/patches/72_fblast_add_shebang.patch
   trunk/debian/patches/74_admin_non-ascii_emails.patch
   trunk/debian/patches/77_header_folding_in_attachments.patch
   trunk/debian/patches/78_DeprecationWarning.patch
   trunk/debian/patches/79_archiver_slash.patch
   trunk/debian/patches/80_fix_string_search.patch
   trunk/debian/patches/81_fix_subscribe_2.1.10.patch
   trunk/debian/patches/99_js_templates.patch
Log:
refresh all patches


Modified: trunk/debian/patches/00_stolen_from_HEAD.patch
===================================================================
--- trunk/debian/patches/00_stolen_from_HEAD.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/00_stolen_from_HEAD.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,16 +1,16 @@
 Patch: 00_stolen_from_HEAD.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Handle empty queue files.
-Index: Mailman/Handlers/Scrubber.py
+Index: mailman-2.1.10/Mailman/Handlers/Scrubber.py
 ===================================================================
---- a/Mailman/Handlers/Scrubber.py.orig	2006-08-15 15:12:19.000000000 +0800
-+++ b/Mailman/Handlers/Scrubber.py	2006-08-15 15:14:15.000000000 +0800
-@@ -370,6 +370,8 @@
-                     t = u.encode('ascii', 'replace')
+--- mailman-2.1.10.orig/Mailman/Handlers/Scrubber.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Handlers/Scrubber.py	2008-06-15 18:49:38.000000000 +0200
+@@ -385,6 +385,8 @@
+                     t = unicode(t, 'ascii', 'replace')
                  try:
                      # Should use HTML-Escape, or try generalizing to UTF-8
 +                    if len(charset) == 0:
 +                        charset = 'us-ascii'
                      t = t.encode(charset, 'replace')
-                 except (UnicodeError, LookupError, ValueError):
-                     t = t.encode(lcset, 'replace')
+                 except (UnicodeError, LookupError, ValueError,
+                         AssertionError):

Modified: trunk/debian/patches/01_defaults.debian.patch
===================================================================
--- trunk/debian/patches/01_defaults.debian.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/01_defaults.debian.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 01_defaults.debian.dpatch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Set sane defaults in Defaults.py.in
-Index: Mailman/Defaults.py.in
+Index: mailman-2.1.10/Mailman/Defaults.py.in
 ===================================================================
---- a/Mailman/Defaults.py.in.orig	2006-08-15 15:12:19.000000000 +0800
-+++ b/Mailman/Defaults.py.in	2006-08-15 15:14:18.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Defaults.py.in	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Defaults.py.in	2008-06-15 18:49:39.000000000 +0200
 @@ -54,7 +54,7 @@
  # disable Mailman's logo footer altogther, hack
  # Mailman/htmlformat.py:MailmanLogo(), which also contains the hardcoded links
@@ -23,7 +23,7 @@
  
  # DEFAULT_HOST_NAME has been replaced with DEFAULT_EMAIL_HOST, however some
  # sites may have the former in their mm_cfg.py files.  If so, we'll believe
-@@ -1300,7 +1300,7 @@
+@@ -1323,7 +1323,7 @@
  MAILDIR_DIR     = os.path.join(QUEUE_DIR, 'maildir')
  
  # Other useful files

Modified: trunk/debian/patches/02_HyperDatabase_mapkeys.patch
===================================================================
--- trunk/debian/patches/02_HyperDatabase_mapkeys.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/02_HyperDatabase_mapkeys.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,7 +1,7 @@
-Index: Mailman/Archiver/HyperDatabase.py
+Index: mailman-2.1.10/Mailman/Archiver/HyperDatabase.py
 ===================================================================
---- a/Mailman/Archiver/HyperDatabase.py.orig	2005-08-27 03:40:17.000000000 +0200
-+++ b/Mailman/Archiver/HyperDatabase.py	2007-05-31 16:52:04.873846892 +0200
+--- mailman-2.1.10.orig/Mailman/Archiver/HyperDatabase.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Archiver/HyperDatabase.py	2008-06-15 18:49:40.000000000 +0200
 @@ -54,7 +54,7 @@
      SortedDictionary.
      """

Modified: trunk/debian/patches/07_snooze.patch
===================================================================
--- trunk/debian/patches/07_snooze.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/07_snooze.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,11 +1,11 @@
 Patch: 07_snooze.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Snooze a bit to avoid eating too much CPU if you get an SMTP error.
-Index: Mailman/Queue/OutgoingRunner.py
+Index: mailman-2.1.10/Mailman/Queue/OutgoingRunner.py
 ===================================================================
---- a/Mailman/Queue/OutgoingRunner.py.orig	2006-08-15 15:12:19.000000000 +0800
-+++ b/Mailman/Queue/OutgoingRunner.py	2006-08-15 15:14:24.000000000 +0800
-@@ -88,6 +88,7 @@
+--- mailman-2.1.10.orig/Mailman/Queue/OutgoingRunner.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Queue/OutgoingRunner.py	2008-06-15 18:49:40.000000000 +0200
+@@ -89,6 +89,7 @@
                  syslog('error', 'Cannot connect to SMTP server %s on port %s',
                         mm_cfg.SMTPHOST, port)
                  self.__logged = True

Modified: trunk/debian/patches/10_wrapper_uid.patch
===================================================================
--- trunk/debian/patches/10_wrapper_uid.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/10_wrapper_uid.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 10_wrapper_uid.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Makes sure we're called with the right UID and GID
-Index: src/cgi-wrapper.c
+Index: mailman-2.1.10/src/cgi-wrapper.c
 ===================================================================
---- a/src/cgi-wrapper.c.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/src/cgi-wrapper.c	2006-08-15 15:14:25.000000000 +0800
+--- mailman-2.1.10.orig/src/cgi-wrapper.c	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/src/cgi-wrapper.c	2008-06-15 18:49:41.000000000 +0200
 @@ -42,7 +42,7 @@
          char* fake_argv[3];
  
@@ -14,10 +14,10 @@
  
          /* For these CGI programs, we can ignore argc and argv since they
           * don't contain anything useful.  `script' will always be the driver
-Index: src/mail-wrapper.c
+Index: mailman-2.1.10/src/mail-wrapper.c
 ===================================================================
---- a/src/mail-wrapper.c.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/src/mail-wrapper.c	2006-08-15 15:14:25.000000000 +0800
+--- mailman-2.1.10.orig/src/mail-wrapper.c	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/src/mail-wrapper.c	2008-06-15 18:49:41.000000000 +0200
 @@ -74,7 +74,7 @@
                  fatal(logident, MAIL_ILLEGAL_COMMAND,
                        "Illegal command: %s", argv[1]);

Modified: trunk/debian/patches/11_handle_propfind.patch
===================================================================
--- trunk/debian/patches/11_handle_propfind.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/11_handle_propfind.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -3,10 +3,10 @@
 Submitted upstream: http://sourceforge.net/tracker/index.php?func=detail&aid=1578756&group_id=103&atid=300103
 Don't fall flat on our face if we get a request type which we
 don't understand.
-Index: scripts/driver
+Index: mailman-2.1.10/scripts/driver
 ===================================================================
---- a/scripts/driver.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/scripts/driver	2006-08-15 15:14:26.000000000 +0800
+--- mailman-2.1.10.orig/scripts/driver	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/scripts/driver	2008-06-15 18:49:41.000000000 +0200
 @@ -95,6 +95,15 @@
          module = getattr(pkg, scriptname)
          main = getattr(module, 'main')

Modified: trunk/debian/patches/15_mailmanctl_daemonize.patch
===================================================================
--- trunk/debian/patches/15_mailmanctl_daemonize.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/15_mailmanctl_daemonize.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 15_mailmanctl_daemonize.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Daemonize mailmanctl properly
-Index: bin/mailmanctl
+Index: mailman-2.1.10/bin/mailmanctl
 ===================================================================
---- a/bin/mailmanctl.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/bin/mailmanctl	2006-08-15 15:14:29.000000000 +0800
+--- mailman-2.1.10.orig/bin/mailmanctl	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/bin/mailmanctl	2008-06-15 18:49:42.000000000 +0200
 @@ -417,6 +417,13 @@
          # won't be opening any terminal devices, don't do the ultra-paranoid
          # suggestion of doing a second fork after the setsid() call.

Modified: trunk/debian/patches/16_update_debian.patch
===================================================================
--- trunk/debian/patches/16_update_debian.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/16_update_debian.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: Tollef Fog Heen <tfheen at debian.org>
 update is called from the Debian maintainer scripts and
 prints non-appropriate output.  Change that.
-Index: bin/update
+Index: mailman-2.1.10/bin/update
 ===================================================================
---- a/bin/update.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/bin/update	2006-08-15 15:14:30.000000000 +0800
+--- mailman-2.1.10.orig/bin/update	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/bin/update	2008-06-15 18:49:43.000000000 +0200
 @@ -300,8 +300,7 @@
          else:
              # directory

Modified: trunk/debian/patches/20_qmail_to_mailman.debian.patch
===================================================================
--- trunk/debian/patches/20_qmail_to_mailman.debian.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/20_qmail_to_mailman.debian.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 20_qmail_to_mailman.debian.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Fix some paths in the qmail_to_mailman wrapper
-Index: contrib/qmail-to-mailman.py
+Index: mailman-2.1.10/contrib/qmail-to-mailman.py
 ===================================================================
---- a/contrib/qmail-to-mailman.py.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/contrib/qmail-to-mailman.py	2006-08-15 15:14:31.000000000 +0800
+--- mailman-2.1.10.orig/contrib/qmail-to-mailman.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/contrib/qmail-to-mailman.py	2008-06-15 18:49:43.000000000 +0200
 @@ -28,12 +28,12 @@
  #
  # INSTALLATION:

Modified: trunk/debian/patches/21_newlist_help.patch
===================================================================
--- trunk/debian/patches/21_newlist_help.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/21_newlist_help.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -3,9 +3,10 @@
 ## Author: Tollef Fog Heen <tfheen at debian.org>
 ## DP: make newlist be a bit friendlier.
 @DPATCH@
-diff -urNad mailman-2.1.9~/bin/newlist mailman-2.1.9/bin/newlist
---- mailman-2.1.9~/bin/newlist	2007-01-20 03:44:12.000000000 +0100
-+++ mailman-2.1.9/bin/newlist	2007-01-26 11:53:19.853900943 +0100
+Index: mailman-2.1.10/bin/newlist
+===================================================================
+--- mailman-2.1.10.orig/bin/newlist	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/bin/newlist	2008-06-15 18:49:44.000000000 +0200
 @@ -87,6 +87,9 @@
  defined in your Defaults.py file or overridden by settings in mm_cfg.py).
  
@@ -34,7 +35,7 @@
      try:
          opts, args = getopt.getopt(sys.argv[1:], 'hql:u:e:',
                                     ['help', 'quiet', 'language=',
-@@ -199,7 +206,7 @@
+@@ -203,7 +210,7 @@
          except Errors.BadListNameError, s:
              usage(1, _('Illegal list name: %(s)s'))
          except Errors.EmailAddressError, s:

Modified: trunk/debian/patches/30_pipermail_threads.patch
===================================================================
--- trunk/debian/patches/30_pipermail_threads.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/30_pipermail_threads.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 30_pipermail_threads.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Pipermail non-appropriate output.  Change that.
-Index: Mailman/Archiver/pipermail.py
+Index: mailman-2.1.10/Mailman/Archiver/pipermail.py
 ===================================================================
---- a/Mailman/Archiver/pipermail.py.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/Mailman/Archiver/pipermail.py	2006-08-15 15:14:34.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Archiver/pipermail.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Archiver/pipermail.py	2008-06-15 18:49:44.000000000 +0200
 @@ -122,9 +122,9 @@
          parentID = article.parentID
          if parentID is not None and self.articleIndex.has_key(parentID):

Modified: trunk/debian/patches/32_MIME_fixup.patch
===================================================================
--- trunk/debian/patches/32_MIME_fixup.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/32_MIME_fixup.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,11 +1,11 @@
 Patch: 32_MIME_fixup.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Handle empty queue files.
-Index: Mailman/Handlers/Decorate.py
+Index: mailman-2.1.10/Mailman/Handlers/Decorate.py
 ===================================================================
---- a/Mailman/Handlers/Decorate.py.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/Mailman/Handlers/Decorate.py	2006-08-15 15:14:35.000000000 +0800
-@@ -182,6 +182,7 @@
+--- mailman-2.1.10.orig/Mailman/Handlers/Decorate.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Handlers/Decorate.py	2008-06-15 18:49:45.000000000 +0200
+@@ -191,6 +191,7 @@
      del msg['content-transfer-encoding']
      del msg['content-disposition']
      msg['Content-Type'] = 'multipart/mixed'

Modified: trunk/debian/patches/51_nocompile.pyc.patch
===================================================================
--- trunk/debian/patches/51_nocompile.pyc.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/51_nocompile.pyc.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 51_nocompile.pyc.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Don't do the compileall dance.  It'll just waste CPU cycles.
-Index: Makefile.in
+Index: mailman-2.1.10/Makefile.in
 ===================================================================
---- a/Makefile.in.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/Makefile.in	2006-08-15 15:14:36.000000000 +0800
+--- mailman-2.1.10.orig/Makefile.in	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Makefile.in	2008-06-15 18:49:46.000000000 +0200
 @@ -124,7 +124,7 @@
  	do \
  	    (cd $$d; $(MAKE) DESTDIR=$(DESTDIR) install); \

Modified: trunk/debian/patches/52_check_perms_lstat.patch
===================================================================
--- trunk/debian/patches/52_check_perms_lstat.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/52_check_perms_lstat.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,11 +1,11 @@
 Patch: 52_check_perms_lstat.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Use lstat instead of stat in check_perms
-Index: bin/check_perms
+Index: mailman-2.1.10/bin/check_perms
 ===================================================================
---- a/bin/check_perms.orig	2006-08-15 15:12:18.000000000 +0800
-+++ b/bin/check_perms	2006-08-15 15:14:38.000000000 +0800
-@@ -80,7 +80,7 @@
+--- mailman-2.1.10.orig/bin/check_perms	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/bin/check_perms	2008-06-15 18:49:46.000000000 +0200
+@@ -82,7 +82,7 @@
      return os.stat(path)[ST_MODE]
  
  def statgidmode(path):

Modified: trunk/debian/patches/53_disable_addons.patch
===================================================================
--- trunk/debian/patches/53_disable_addons.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/53_disable_addons.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,9 +1,10 @@
 Patch: 53_disable_addons.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Disable some modules which are pulled in from other Debian packages.
-diff -Nur misc/Makefile.in mailman-2.1.10b3/misc/Makefile.in
---- a/misc/Makefile.in	2008-02-02 23:29:26.000000000 +0100
-+++ b/misc/Makefile.in	2008-02-08 23:19:31.000000000 +0100
+Index: mailman-2.1.10/misc/Makefile.in
+===================================================================
+--- mailman-2.1.10.orig/misc/Makefile.in	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/misc/Makefile.in	2008-06-15 18:49:47.000000000 +0200
 @@ -57,7 +57,10 @@
  JACODECSPKG=	JapaneseCodecs-1.4.11
  KOCODECSPKG=	KoreanCodecs-2.0.5
@@ -16,9 +17,10 @@
  
  # Modes for directories and executables created by the install
  # process.  Default to group-writable directories but
-diff -Nur misc/paths.py.in mailman-2.1.10b3/misc/paths.py.in
---- a/misc/paths.py.in	2008-02-02 23:29:26.000000000 +0100
-+++ b/misc/paths.py.in	2008-02-08 23:21:01.000000000 +0100
+Index: mailman-2.1.10/misc/paths.py.in
+===================================================================
+--- mailman-2.1.10.orig/misc/paths.py.in	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/misc/paths.py.in	2008-06-15 18:49:47.000000000 +0200
 @@ -71,13 +71,19 @@
  # files would be imported automatically.  But because we inhibit the importing
  # of the site module, we need to be explicit about importing these codecs.

Modified: trunk/debian/patches/58_fix_es_translation.patch
===================================================================
--- trunk/debian/patches/58_fix_es_translation.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/58_fix_es_translation.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,16 +1,16 @@
 Patch: 58_fix_translations.patch
 Author: Siggy Brentrup <bsb at debian.org>
 Fix translation errors
-Index: messages/es/LC_MESSAGES/mailman.po
+Index: mailman-2.1.10/messages/es/LC_MESSAGES/mailman.po
 ===================================================================
---- a/messages/es/LC_MESSAGES/mailman.po.orig	2006-09-19 16:12:12.000000000 +0200
-+++ b/messages/es/LC_MESSAGES/mailman.po	2006-09-19 16:13:34.000000000 +0200
-@@ -1989,7 +1989,7 @@
- #: Mailman/Cgi/create.py:214 bin/.svn/text-base/newlist.svn-base:200
- #: bin/newlist:200
+--- mailman-2.1.10.orig/messages/es/LC_MESSAGES/mailman.po	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/messages/es/LC_MESSAGES/mailman.po	2008-06-15 18:49:47.000000000 +0200
+@@ -2002,7 +2002,7 @@
+ 
+ #: Mailman/Cgi/create.py:212 bin/newlist:204
  msgid "Illegal list name: %(s)s"
 -msgstr "Nombre de lista ilegal: %(opt)s"
 +msgstr "Nombre de lista ilegal: %(s)s"
  
- #: Mailman/Cgi/create.py:219
+ #: Mailman/Cgi/create.py:217
  msgid ""

Modified: trunk/debian/patches/59_fix_missing_language_crash.patch
===================================================================
--- trunk/debian/patches/59_fix_missing_language_crash.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/59_fix_missing_language_crash.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: fix_missing_language_crash.patch
 Author: Paul Wise <pabs3 at bonedaddy.net>
 Fix crash when a language is missing
-Index: Mailman/htmlformat.py
+Index: mailman-2.1.10/Mailman/htmlformat.py
 ===================================================================
---- a/Mailman/htmlformat.py.orig	2006-09-19 16:12:12.000000000 +0200
-+++ b/Mailman/htmlformat.py	2006-09-19 16:13:47.000000000 +0200
+--- mailman-2.1.10.orig/Mailman/htmlformat.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/htmlformat.py	2008-06-15 18:49:48.000000000 +0200
 @@ -298,7 +298,7 @@
  
      def Format(self, indent=0, **kws):

Modified: trunk/debian/patches/61_fix_ru_siteowner.patch
===================================================================
--- trunk/debian/patches/61_fix_ru_siteowner.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/61_fix_ru_siteowner.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: László 'GCS' Böszörményi <gcs at lsc.hu>
 Submitted upstream: http://sourceforge.net/tracker/index.php?func=detail&aid=1578766&group_id=103&atid=300103
 Correct siteowner variable in ru template for newer Mailman versions.
-Index: templates/ru/newlist.txt
+Index: mailman-2.1.10/templates/ru/newlist.txt
 ===================================================================
---- a/templates/ru/newlist.txt.orig	2006-08-15 15:12:17.000000000 +0800
-+++ b/templates/ru/newlist.txt	2006-08-15 15:14:44.000000000 +0800
+--- mailman-2.1.10.orig/templates/ru/newlist.txt	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ru/newlist.txt	2008-06-15 18:49:48.000000000 +0200
 @@ -37,4 +37,4 @@
  ÐÏÌØÚÏ×ÁÔÅÌÑ.
  

Modified: trunk/debian/patches/62_new_list_bad_pending_requests.patch
===================================================================
--- trunk/debian/patches/62_new_list_bad_pending_requests.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/62_new_list_bad_pending_requests.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: Richard Mortimer <richm at oldelvet.org.uk>
 Only mail 'pending admin requests' if the database for the
 particular list exists, so we do not send out '-1' requests.
-Index: Mailman/ListAdmin.py
+Index: mailman-2.1.10/Mailman/ListAdmin.py
 ===================================================================
---- a/Mailman/ListAdmin.py.orig	2006-08-15 15:12:17.000000000 +0800
-+++ b/Mailman/ListAdmin.py	2006-08-15 15:14:45.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/ListAdmin.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/ListAdmin.py	2008-06-15 18:49:49.000000000 +0200
 @@ -130,8 +130,11 @@
  
      def NumRequestsPending(self):

Modified: trunk/debian/patches/63_update_default_server_language.patch
===================================================================
--- trunk/debian/patches/63_update_default_server_language.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/63_update_default_server_language.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: László 'GCS' Böszörményi <gcs at lsc.hu>
 Get the default language from the config file, and do not use the
 hardcoded English.
-Index: bin/update
+Index: mailman-2.1.10/bin/update
 ===================================================================
---- a/bin/update.orig	2006-08-15 15:14:30.000000000 +0800
-+++ b/bin/update	2006-08-15 15:14:46.000000000 +0800
+--- mailman-2.1.10.orig/bin/update	2008-06-15 18:49:43.000000000 +0200
++++ mailman-2.1.10/bin/update	2008-06-15 18:49:50.000000000 +0200
 @@ -121,7 +121,7 @@
      #
      # First, get rid of any lists/<list> template or lists/<list>/en template

Modified: trunk/debian/patches/64_correct_html_nesting.patch
===================================================================
--- trunk/debian/patches/64_correct_html_nesting.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/64_correct_html_nesting.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: Laszlo 'GCS' Boszormenyi <gcs at lsc.hu>
 listinfo.html does not use proper HTML tag nesting, and thus
 sensible browsers like iCal may choke on that -> fix that.
-Index: templates/ca/listinfo.html
+Index: mailman-2.1.10/templates/ca/listinfo.html
 ===================================================================
---- a/templates/ca/listinfo.html.orig	2003-11-01 16:51:48.000000000 +0100
-+++ b/templates/ca/listinfo.html	2006-09-19 15:44:40.000000000 +0200
+--- mailman-2.1.10.orig/templates/ca/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ca/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -53,8 +53,9 @@
        </TR>
        
@@ -18,10 +18,10 @@
          <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
            <TR> 
-Index: templates/cs/listinfo.html
+Index: mailman-2.1.10/templates/cs/listinfo.html
 ===================================================================
---- a/templates/cs/listinfo.html.orig	2002-12-13 19:13:46.000000000 +0100
-+++ b/templates/cs/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/cs/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/cs/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -32,10 +32,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/da/listinfo.html
+Index: mailman-2.1.10/templates/da/listinfo.html
 ===================================================================
---- a/templates/da/listinfo.html.orig	2004-11-12 01:09:48.000000000 +0100
-+++ b/templates/da/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/da/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/da/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -46,10 +46,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/de/listinfo.html
+Index: mailman-2.1.10/templates/de/listinfo.html
 ===================================================================
---- a/templates/de/listinfo.html.orig	2004-01-06 10:58:28.000000000 +0100
-+++ b/templates/de/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/de/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/de/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Abonnieren Sie <MM-List-Name>, indem Sie das folgende Formular
@@ -60,10 +60,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/en/listinfo.html
+Index: mailman-2.1.10/templates/en/listinfo.html
 ===================================================================
---- a/templates/en/listinfo.html.orig	2002-11-16 07:10:36.000000000 +0100
-+++ b/templates/en/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/en/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/en/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Subscribe to <MM-List-Name> by filling out the following
@@ -74,10 +74,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/es/listinfo.html
+Index: mailman-2.1.10/templates/es/listinfo.html
 ===================================================================
---- a/templates/es/listinfo.html.orig	2005-06-08 23:33:19.000000000 +0200
-+++ b/templates/es/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/es/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/es/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -64,8 +64,8 @@
  	  <P>
  	    Suscr&iacute;base a <MM-List-Name> rellenando los datos del
@@ -88,10 +88,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/et/listinfo.html
+Index: mailman-2.1.10/templates/et/listinfo.html
 ===================================================================
---- a/templates/et/listinfo.html.orig	2004-11-03 22:46:58.000000000 +0100
-+++ b/templates/et/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/et/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/et/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -58,8 +58,8 @@
  	<td colspan="2">
  	  <P>
@@ -102,10 +102,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/fi/listinfo.html
+Index: mailman-2.1.10/templates/fi/listinfo.html
 ===================================================================
---- a/templates/fi/listinfo.html.orig	2002-04-02 07:43:47.000000000 +0200
-+++ b/templates/fi/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/fi/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/fi/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -116,10 +116,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/fr/listinfo.html
+Index: mailman-2.1.10/templates/fr/listinfo.html
 ===================================================================
---- a/templates/fr/listinfo.html.orig	2003-09-26 05:36:56.000000000 +0200
-+++ b/templates/fr/listinfo.html	2006-09-19 15:44:05.000000000 +0200
+--- mailman-2.1.10.orig/templates/fr/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/fr/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -61,8 +61,8 @@
        <p> 	    
  	Abonnez-vous &agrave; <MM-List-Name> en remplissant le formulaire 
@@ -130,10 +130,10 @@
          <table border="0" cellspacing="2" cellpadding="2" width="70%"
   height="112">
              <tr>
-Index: templates/hu/listinfo.html
+Index: mailman-2.1.10/templates/hu/listinfo.html
 ===================================================================
---- a/templates/hu/listinfo.html.orig	2002-12-20 05:28:00.000000000 +0100
-+++ b/templates/hu/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/hu/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/hu/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -59,11 +59,10 @@
  	<td colspan="2">
  	  <P>
@@ -147,10 +147,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/it/listinfo.html
+Index: mailman-2.1.10/templates/it/listinfo.html
 ===================================================================
---- a/templates/it/listinfo.html.orig	2002-11-25 21:29:47.000000000 +0100
-+++ b/templates/it/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/it/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/it/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -161,10 +161,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/ja/listinfo.html
+Index: mailman-2.1.10/templates/ja/listinfo.html
 ===================================================================
---- a/templates/ja/listinfo.html.orig	2004-01-23 01:58:03.000000000 +0100
-+++ b/templates/ja/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/ja/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ja/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -65,8 +65,8 @@
  	  <P>
  	    <MM-List-Name> ¤Ø¤ÎÆþ²ñ¤Ï, 
@@ -175,10 +175,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/ko/listinfo.html
+Index: mailman-2.1.10/templates/ko/listinfo.html
 ===================================================================
---- a/templates/ko/listinfo.html.orig	2002-03-28 19:32:11.000000000 +0100
-+++ b/templates/ko/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/ko/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ko/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -189,10 +189,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/lt/listinfo.html
+Index: mailman-2.1.10/templates/lt/listinfo.html
 ===================================================================
---- a/templates/lt/listinfo.html.orig	2002-12-26 20:48:42.000000000 +0100
-+++ b/templates/lt/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/lt/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/lt/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -61,8 +61,8 @@
  	<td colspan="2">
  	  <P>
@@ -203,10 +203,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/no/listinfo.html
+Index: mailman-2.1.10/templates/no/listinfo.html
 ===================================================================
---- a/templates/no/listinfo.html.orig	2002-11-19 10:20:43.000000000 +0100
-+++ b/templates/no/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/no/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/no/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -217,10 +217,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/pl/listinfo.html
+Index: mailman-2.1.10/templates/pl/listinfo.html
 ===================================================================
---- a/templates/pl/listinfo.html.orig	2003-12-30 19:10:06.000000000 +0100
-+++ b/templates/pl/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/pl/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pl/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -65,8 +65,8 @@
            W celu zapisania siê na listê <MM-List-Name> nale¿y wype³niæ 
            poni¿szy formularz.
@@ -231,10 +231,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/pt/listinfo.html
+Index: mailman-2.1.10/templates/pt/listinfo.html
 ===================================================================
---- a/templates/pt/listinfo.html.orig	2003-04-09 07:09:57.000000000 +0200
-+++ b/templates/pt/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/pt/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pt/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -245,10 +245,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/pt_BR/listinfo.html
+Index: mailman-2.1.10/templates/pt_BR/listinfo.html
 ===================================================================
---- a/templates/pt_BR/listinfo.html.orig	2004-11-03 21:33:27.000000000 +0100
-+++ b/templates/pt_BR/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/pt_BR/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pt_BR/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -64,8 +64,8 @@
  	  <P>
  	    Para se inscrever na lista <MM-List-Name>, preencha o seguinte
@@ -259,10 +259,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/ro/listinfo.html
+Index: mailman-2.1.10/templates/ro/listinfo.html
 ===================================================================
---- a/templates/ro/listinfo.html.orig	2003-12-13 17:35:54.000000000 +0100
-+++ b/templates/ro/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/ro/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ro/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -60,8 +60,8 @@
  	  <P>
  	    Vã puteþi abona la lista de discuþii <MM-List-Name> completând formularul
@@ -273,10 +273,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/ru/listinfo.html
+Index: mailman-2.1.10/templates/ru/listinfo.html
 ===================================================================
---- a/templates/ru/listinfo.html.orig	2003-09-22 05:59:48.000000000 +0200
-+++ b/templates/ru/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/ru/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ru/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -51,8 +51,8 @@
          <td colspan="2">
            <P>
@@ -287,10 +287,10 @@
                <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
                  WIDTH="70%" HEIGHT= "112">
                  <TR>
-Index: templates/sl/listinfo.html
+Index: mailman-2.1.10/templates/sl/listinfo.html
 ===================================================================
---- a/templates/sl/listinfo.html.orig	2003-10-04 04:57:36.000000000 +0200
-+++ b/templates/sl/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/sl/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/sl/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Na seznam <MM-List-Name> se prijavite tako, da izpolnite
@@ -301,10 +301,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/tr/listinfo.html
+Index: mailman-2.1.10/templates/tr/listinfo.html
 ===================================================================
---- a/templates/tr/listinfo.html.orig	2004-04-26 18:50:11.000000000 +0200
-+++ b/templates/tr/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/tr/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/tr/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    <MM-List-Name> listesine aþaðýdaki formu doldurarak üye
@@ -315,10 +315,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/uk/listinfo.html
+Index: mailman-2.1.10/templates/uk/listinfo.html
 ===================================================================
---- a/templates/uk/listinfo.html.orig	2005-03-02 01:27:09.000000000 +0100
-+++ b/templates/uk/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/uk/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/uk/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -329,10 +329,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/zh_CN/listinfo.html
+Index: mailman-2.1.10/templates/zh_CN/listinfo.html
 ===================================================================
---- a/templates/zh_CN/listinfo.html.orig	2005-05-14 06:13:41.000000000 +0200
-+++ b/templates/zh_CN/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/zh_CN/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/zh_CN/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -60,8 +60,8 @@
  	<td colspan="2">
  	  <P>
@@ -343,10 +343,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/zh_TW/listinfo.html
+Index: mailman-2.1.10/templates/zh_TW/listinfo.html
 ===================================================================
---- a/templates/zh_TW/listinfo.html.orig	2005-03-23 03:04:15.000000000 +0100
-+++ b/templates/zh_TW/listinfo.html	2006-09-19 14:04:57.000000000 +0200
+--- mailman-2.1.10.orig/templates/zh_TW/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/zh_TW/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -60,8 +60,8 @@
  	<td colspan="2">
  	  <P>
@@ -357,10 +357,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/eu/listinfo.html
+Index: mailman-2.1.10/templates/eu/listinfo.html
 ===================================================================
---- a/templates/eu/listinfo.html.orig	2003-12-01 17:07:41.000000000 +0100
-+++ b/templates/eu/listinfo.html	2006-09-19 15:27:32.000000000 +0200
+--- mailman-2.1.10.orig/templates/eu/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/eu/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -371,10 +371,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/hr/listinfo.html
+Index: mailman-2.1.10/templates/hr/listinfo.html
 ===================================================================
---- a/templates/hr/listinfo.html.orig	2004-02-17 23:27:49.000000000 +0100
-+++ b/templates/hr/listinfo.html	2006-09-19 15:28:12.000000000 +0200
+--- mailman-2.1.10.orig/templates/hr/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/hr/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Pretplatite se na <MM-List-Name> ispunjavanjem sljedeæe 
@@ -385,10 +385,10 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-Index: templates/nl/listinfo.html
+Index: mailman-2.1.10/templates/nl/listinfo.html
 ===================================================================
---- a/templates/nl/listinfo.html.orig	2006-07-21 07:46:44.000000000 +0200
-+++ b/templates/nl/listinfo.html	2006-09-19 15:40:55.000000000 +0200
+--- mailman-2.1.10.orig/templates/nl/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/nl/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -59,8 +59,8 @@
  	<td colspan="2">
  	  <P>
@@ -406,10 +406,10 @@
 -</HTML>
 \ No newline at end of file
 +</HTML>
-Index: templates/sr/listinfo.html
+Index: mailman-2.1.10/templates/sr/listinfo.html
 ===================================================================
---- a/templates/sr/listinfo.html.orig	2003-09-22 05:52:35.000000000 +0200
-+++ b/templates/sr/listinfo.html	2006-09-19 15:45:03.000000000 +0200
+--- mailman-2.1.10.orig/templates/sr/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/sr/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -52,8 +52,9 @@
        </TR>
        <tr>
@@ -421,10 +421,10 @@
          <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
            <TR> 
-Index: templates/sv/listinfo.html
+Index: mailman-2.1.10/templates/sv/listinfo.html
 ===================================================================
---- a/templates/sv/listinfo.html.orig	2002-12-24 15:07:17.000000000 +0100
-+++ b/templates/sv/listinfo.html	2006-09-19 15:43:00.000000000 +0200
+--- mailman-2.1.10.orig/templates/sv/listinfo.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/sv/listinfo.html	2008-06-15 18:49:50.000000000 +0200
 @@ -56,8 +56,9 @@
        </TR>
        <tr>

Modified: trunk/debian/patches/65_handle_templates_directories.patch
===================================================================
--- trunk/debian/patches/65_handle_templates_directories.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/65_handle_templates_directories.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 65_handle_templates_directories.patch
 Author: Tollef Fog Heen <tfheen at debian.org>
 Skip directories when updating
-Index: bin/update
+Index: mailman-2.1.10/bin/update
 ===================================================================
---- a/bin/update.orig	2006-08-15 15:14:46.000000000 +0800
-+++ b/bin/update	2006-08-15 15:14:50.000000000 +0800
+--- mailman-2.1.10.orig/bin/update	2008-06-15 18:49:50.000000000 +0200
++++ mailman-2.1.10/bin/update	2008-06-15 18:49:52.000000000 +0200
 @@ -127,7 +127,7 @@
          try:
              fp = open(os.path.join(mm_cfg.TEMPLATE_DIR, gtemplate))

Modified: trunk/debian/patches/66_donot_let_cache_html_pages.patch
===================================================================
--- trunk/debian/patches/66_donot_let_cache_html_pages.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/66_donot_let_cache_html_pages.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,8 +1,8 @@
 Patch to prevent browser from caching pages.
-Index: Mailman/htmlformat.py
+Index: mailman-2.1.10/Mailman/htmlformat.py
 ===================================================================
---- a/Mailman/htmlformat.py.orig	2006-09-19 13:43:51.000000000 +0200
-+++ b/Mailman/htmlformat.py	2006-09-19 15:47:16.000000000 +0200
+--- mailman-2.1.10.orig/Mailman/htmlformat.py	2008-06-15 18:49:48.000000000 +0200
++++ mailman-2.1.10/Mailman/htmlformat.py	2008-06-15 18:49:52.000000000 +0200
 @@ -300,7 +300,8 @@
          charset = 'us-ascii'
          if self.language and Utils.IsLanguage(self.language):

Modified: trunk/debian/patches/67_update_handle_old_versions.patch
===================================================================
--- trunk/debian/patches/67_update_handle_old_versions.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/67_update_handle_old_versions.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: Bastian Kleineidam <calvin at debian.org>
 Handle the case of upgrading from Mailman 2.0 where we have
 pending subscriptions.
-Index: bin/update
+Index: mailman-2.1.10/bin/update
 ===================================================================
---- a/bin/update.orig	2006-08-15 15:14:50.000000000 +0800
-+++ b/bin/update	2006-08-15 15:14:52.000000000 +0800
+--- mailman-2.1.10.orig/bin/update	2008-06-15 18:49:52.000000000 +0200
++++ mailman-2.1.10/bin/update	2008-06-15 18:49:53.000000000 +0200
 @@ -514,9 +514,11 @@
      file20 = os.path.join(mm_cfg.DATA_DIR, 'pending_subscriptions.db')
      file214 = os.path.join(mm_cfg.DATA_DIR, 'pending.pck')

Modified: trunk/debian/patches/70_invalid_utf8_dos.patch
===================================================================
--- trunk/debian/patches/70_invalid_utf8_dos.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/70_invalid_utf8_dos.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,9 +1,10 @@
 Patch: 70_invalid_utf8_dos.patch
 Author: Lionel Elie Mamane <lionel at mamane.lu>
 Avoid DOS if attachement filename is invalid Unicode string
-diff -Nur Mailman/Handlers/Scrubber.py mailman-2.1.10b3/Mailman/Handlers/Scrubber.py
---- a/Mailman/Handlers/Scrubber.py	2008-02-02 23:29:26.000000000 +0100
-+++ b/Mailman/Handlers/Scrubber.py	2008-02-08 23:33:16.000000000 +0100
+Index: mailman-2.1.10/Mailman/Handlers/Scrubber.py
+===================================================================
+--- mailman-2.1.10.orig/Mailman/Handlers/Scrubber.py	2008-06-15 18:49:38.000000000 +0200
++++ mailman-2.1.10/Mailman/Handlers/Scrubber.py	2008-06-15 18:49:54.000000000 +0200
 @@ -317,7 +317,10 @@
                  os.umask(omask)
              desc = part.get('content-description', _('not available'))
@@ -16,7 +17,7 @@
              filename = Utils.oneline(filename, lcset)
              replace_payload_by_text(part, _("""\
  A non-text attachment was scrubbed...
-@@ -439,7 +442,10 @@
+@@ -441,7 +444,10 @@
      ctype = msg.get_content_type()
      # i18n file name is encoded
      lcset = Utils.GetCharSet(mlist.preferred_language)

Modified: trunk/debian/patches/71_date_overflows.patch
===================================================================
--- trunk/debian/patches/71_date_overflows.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/71_date_overflows.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 71_date_overflows.patch
 Author: Lionel Elie Mamane <lionel at mamane.lu>
 React sensibly on integer overflow in date handling
-Index: Mailman/Handlers/Scrubber.py
+Index: mailman-2.1.10/Mailman/Handlers/Scrubber.py
 ===================================================================
---- a/Mailman/Handlers/Scrubber.py.orig	2006-08-15 15:14:54.000000000 +0800
-+++ b/Mailman/Handlers/Scrubber.py	2006-08-15 15:14:55.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Handlers/Scrubber.py	2008-06-15 18:49:54.000000000 +0200
++++ mailman-2.1.10/Mailman/Handlers/Scrubber.py	2008-06-15 18:49:54.000000000 +0200
 @@ -143,7 +143,7 @@
                       }.get(parts[3], 0)
              day = int(parts[4])

Modified: trunk/debian/patches/72_fblast_add_shebang.patch
===================================================================
--- trunk/debian/patches/72_fblast_add_shebang.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/72_fblast_add_shebang.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -3,10 +3,10 @@
 Submitted upstream: http://sourceforge.net/tracker/index.php?func=detail&aid=1578740&group_id=103&atid=300103
 This script may be called directly from the command line, is set as executable,
 thus needs a shebang line.
-Index: tests/fblast.py
+Index: mailman-2.1.10/tests/fblast.py
 ===================================================================
---- a/tests/fblast.py.orig	2006-10-17 10:08:34.000000000 +0200
-+++ b/tests/fblast.py	2006-10-17 10:09:07.000000000 +0200
+--- mailman-2.1.10.orig/tests/fblast.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/tests/fblast.py	2008-06-15 18:49:55.000000000 +0200
 @@ -1,3 +1,4 @@
 +#! /usr/bin/env python
  """Throw email at Mailman as fast as you can.

Modified: trunk/debian/patches/74_admin_non-ascii_emails.patch
===================================================================
--- trunk/debian/patches/74_admin_non-ascii_emails.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/74_admin_non-ascii_emails.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,11 +1,11 @@
 Patch: 74_admin_non-ascii_emails.patch
 Author: Lionel Elie Mamane <lionel at mamane.lu>
 Don't assume emails are ASCII
-Index: Mailman/Cgi/admin.py
+Index: mailman-2.1.10/Mailman/Cgi/admin.py
 ===================================================================
---- a/Mailman/Cgi/admin.py.orig	2006-08-15 15:12:11.000000000 +0800
-+++ b/Mailman/Cgi/admin.py	2006-08-15 15:14:56.000000000 +0800
-@@ -866,7 +866,12 @@
+--- mailman-2.1.10.orig/Mailman/Cgi/admin.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Cgi/admin.py	2008-06-15 18:49:55.000000000 +0200
+@@ -867,7 +867,12 @@
      chunksz = mlist.admin_member_chunksize
      # The email addresses had /better/ be ASCII, but might be encoded in the
      # database as Unicodes.

Modified: trunk/debian/patches/77_header_folding_in_attachments.patch
===================================================================
--- trunk/debian/patches/77_header_folding_in_attachments.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/77_header_folding_in_attachments.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: Lionel Elie Mamane <lionel at mamane.lu>
 Don't fold headers into message/rfc822 attachments.
 This avoids breaking signatures.
-Index: Mailman/Generator.py
+Index: mailman-2.1.10/Mailman/Generator.py
 ===================================================================
---- a//dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ b/Mailman/Generator.py	2006-08-15 15:14:57.000000000 +0800
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ mailman-2.1.10/Mailman/Generator.py	2008-06-15 18:49:56.000000000 +0200
 @@ -0,0 +1,55 @@
 +# Copyright (C) 1998-2003 by the Free Software Foundation, Inc.
 +#                    2005 Lionel Elie Mamane <lionel at mamane.lu>
@@ -62,10 +62,10 @@
 +        """Clone this generator with maxheaderlen set for children"""
 +        return self.__class__(fp, self._mangle_from_, self.__children_maxheaderlen, self.__children_maxheaderlen)
 +
-Index: Mailman/Mailbox.py
+Index: mailman-2.1.10/Mailman/Mailbox.py
 ===================================================================
---- a/Mailman/Mailbox.py.orig	2006-08-15 15:12:10.000000000 +0800
-+++ b/Mailman/Mailbox.py	2006-08-15 15:14:57.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Mailbox.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Mailbox.py	2008-06-15 18:49:56.000000000 +0200
 @@ -22,10 +22,10 @@
  
  import email
@@ -87,10 +87,10 @@
          g.flatten(msg, unixfrom=True)
          # Add one more trailing newline for separation with the next message
          # to be appended to the mbox.
-Index: Mailman/Message.py
+Index: mailman-2.1.10/Mailman/Message.py
 ===================================================================
---- a/Mailman/Message.py.orig	2006-08-15 15:12:10.000000000 +0800
-+++ b/Mailman/Message.py	2006-08-15 15:14:57.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Message.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Message.py	2008-06-15 18:49:56.000000000 +0200
 @@ -22,6 +22,8 @@
  """
  
@@ -108,7 +108,7 @@
  
  COMMASPACE = ', '
  
-@@ -199,6 +202,16 @@
+@@ -207,6 +210,16 @@
          except (UnicodeError, LookupError, ValueError):
              return failobj
  

Modified: trunk/debian/patches/78_DeprecationWarning.patch
===================================================================
--- trunk/debian/patches/78_DeprecationWarning.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/78_DeprecationWarning.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -1,10 +1,10 @@
 Patch: 78_DeprecationWarning.patch
 Author: Lionel Elie Mamane <lionel at mamane.lu>
 Shut up DeprecationWarning in Python 2.4
-Index: Mailman/Handlers/Scrubber.py
+Index: mailman-2.1.10/Mailman/Handlers/Scrubber.py
 ===================================================================
---- a/Mailman/Handlers/Scrubber.py.orig	2006-08-15 15:14:55.000000000 +0800
-+++ b/Mailman/Handlers/Scrubber.py	2006-08-15 15:14:58.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Handlers/Scrubber.py	2008-06-15 18:49:54.000000000 +0200
++++ mailman-2.1.10/Mailman/Handlers/Scrubber.py	2008-06-15 18:49:57.000000000 +0200
 @@ -26,6 +26,7 @@
  import errno
  import binascii

Modified: trunk/debian/patches/79_archiver_slash.patch
===================================================================
--- trunk/debian/patches/79_archiver_slash.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/79_archiver_slash.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: Lionel Elie Mamane <lionel at mamane.lu>
 Fixes: #350388
 Some non-pipermail archivers require _no_ final slash.
-Index: Mailman/Archiver/Archiver.py
+Index: mailman-2.1.10/Mailman/Archiver/Archiver.py
 ===================================================================
---- a/Mailman/Archiver/Archiver.py.orig	2006-08-15 15:12:10.000000000 +0800
-+++ b/Mailman/Archiver/Archiver.py	2006-08-15 15:14:59.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Archiver/Archiver.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Archiver/Archiver.py	2008-06-15 18:49:57.000000000 +0200
 @@ -146,8 +146,6 @@
                  'listname': self.internal_name(),
                  'hostname': hostname
@@ -15,10 +15,10 @@
              return url
  
      def __archive_file(self, afn):
-Index: Mailman/Defaults.py.in
+Index: mailman-2.1.10/Mailman/Defaults.py.in
 ===================================================================
---- a/Mailman/Defaults.py.in.orig	2006-08-15 15:14:18.000000000 +0800
-+++ b/Mailman/Defaults.py.in	2006-08-15 15:14:59.000000000 +0800
+--- mailman-2.1.10.orig/Mailman/Defaults.py.in	2008-06-15 18:49:39.000000000 +0200
++++ mailman-2.1.10/Mailman/Defaults.py.in	2008-06-15 18:49:57.000000000 +0200
 @@ -205,7 +205,7 @@
  # interpolate the name of the list into this.  You can also include a
  # "%(hostname)s" in the string, into which Mailman will interpolate

Modified: trunk/debian/patches/80_fix_string_search.patch
===================================================================
--- trunk/debian/patches/80_fix_string_search.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/80_fix_string_search.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,11 +2,11 @@
 Author: Riccardo Setti <giskard at debian.org>
 Submitted upstream: http://sourceforge.net/tracker/index.php?func=detail&aid=1532081&group_id=103&atid=300103
 Improve the search method in the admin page wich list members (Closes: #359721)
-Index: Mailman/Cgi/admin.py
+Index: mailman-2.1.10/Mailman/Cgi/admin.py
 ===================================================================
---- a/Mailman/Cgi/admin.py.orig	2006-08-15 15:14:56.000000000 +0800
-+++ b/Mailman/Cgi/admin.py	2006-08-15 15:14:59.000000000 +0800
-@@ -949,7 +949,7 @@
+--- mailman-2.1.10.orig/Mailman/Cgi/admin.py	2008-06-15 18:49:55.000000000 +0200
++++ mailman-2.1.10/Mailman/Cgi/admin.py	2008-06-15 18:49:58.000000000 +0200
+@@ -950,7 +950,7 @@
          for letter in digits + lowercase:
              if not buckets.get(letter):
                  continue

Modified: trunk/debian/patches/81_fix_subscribe_2.1.10.patch
===================================================================
--- trunk/debian/patches/81_fix_subscribe_2.1.10.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/81_fix_subscribe_2.1.10.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -5,8 +5,10 @@
 command results in the message being shunted. Will be fixed in the next
 upstream release.
 
---- a/Mailman/Commands/cmd_subscribe.py	2008-03-20 03:07:51 +0000
-+++ b/Mailman/Commands/cmd_subscribe.py	2008-04-23 14:32:48 +0000
+Index: mailman-2.1.10/Mailman/Commands/cmd_subscribe.py
+===================================================================
+--- mailman-2.1.10.orig/Mailman/Commands/cmd_subscribe.py	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/Mailman/Commands/cmd_subscribe.py	2008-06-15 18:49:58.000000000 +0200
 @@ -71,7 +71,8 @@
              return STOP
          argnum += 1
@@ -17,4 +19,3 @@
          if password.lower() == 'digest':
              digest = 1
          else:
-

Modified: trunk/debian/patches/99_js_templates.patch
===================================================================
--- trunk/debian/patches/99_js_templates.patch	2008-06-14 16:36:28 UTC (rev 541)
+++ trunk/debian/patches/99_js_templates.patch	2008-06-15 16:51:07 UTC (rev 542)
@@ -2,10 +2,10 @@
 Author: Tollef Fog Heen <tfheen at debian.org>
 Do some javascript magic to automatically select the password
 field when appropriate.
-Index: templates/cs/admlogin.html
+Index: mailman-2.1.10/templates/cs/admlogin.html
 ===================================================================
---- a/templates/cs/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/cs/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/cs/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/cs/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -19,10 +19,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/cs/private.html
+Index: mailman-2.1.10/templates/cs/private.html
 ===================================================================
---- a/templates/cs/private.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/cs/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/cs/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/cs/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -34,10 +34,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/da/admlogin.html
+Index: mailman-2.1.10/templates/da/admlogin.html
 ===================================================================
---- a/templates/da/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/da/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/da/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/da/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -51,10 +51,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/da/private.html
+Index: mailman-2.1.10/templates/da/private.html
 ===================================================================
---- a/templates/da/private.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/da/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/da/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/da/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -66,10 +66,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/de/admlogin.html
+Index: mailman-2.1.10/templates/de/admlogin.html
 ===================================================================
---- a/templates/de/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/de/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/de/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/de/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -83,10 +83,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/de/private.html
+Index: mailman-2.1.10/templates/de/private.html
 ===================================================================
---- a/templates/de/private.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/de/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/de/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/de/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -98,10 +98,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/en/admlogin.html
+Index: mailman-2.1.10/templates/en/admlogin.html
 ===================================================================
---- a/templates/en/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/en/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/en/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/en/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -115,10 +115,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/en/listinfo.html
+Index: mailman-2.1.10/templates/en/listinfo.html
 ===================================================================
---- a/templates/en/listinfo.html.orig	2006-09-19 16:14:06.000000000 +0200
-+++ b/templates/en/listinfo.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/en/listinfo.html	2008-06-15 18:49:50.000000000 +0200
++++ mailman-2.1.10/templates/en/listinfo.html	2008-06-15 18:49:59.000000000 +0200
 @@ -4,7 +4,7 @@
      <TITLE><MM-List-Name> Info Page</TITLE>
    
@@ -128,10 +128,10 @@
  
      <P>
        <TABLE COLS="1" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/en/private.html
+Index: mailman-2.1.10/templates/en/private.html
 ===================================================================
---- a/templates/en/private.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/en/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/en/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/en/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -143,10 +143,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/es/admlogin.html
+Index: mailman-2.1.10/templates/es/admlogin.html
 ===================================================================
---- a/templates/es/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/es/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/es/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/es/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -160,10 +160,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/es/private.html
+Index: mailman-2.1.10/templates/es/private.html
 ===================================================================
---- a/templates/es/private.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/es/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/es/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/es/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -175,10 +175,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/et/admlogin.html
+Index: mailman-2.1.10/templates/et/admlogin.html
 ===================================================================
---- a/templates/et/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/et/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/et/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/et/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -192,10 +192,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/et/private.html
+Index: mailman-2.1.10/templates/et/private.html
 ===================================================================
---- a/templates/et/private.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/et/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/et/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/et/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -207,10 +207,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/eu/admlogin.html
+Index: mailman-2.1.10/templates/eu/admlogin.html
 ===================================================================
---- a/templates/eu/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/eu/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/eu/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/eu/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -224,10 +224,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/eu/private.html
+Index: mailman-2.1.10/templates/eu/private.html
 ===================================================================
---- a/templates/eu/private.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/eu/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/eu/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/eu/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -241,10 +241,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/fi/admlogin.html
+Index: mailman-2.1.10/templates/fi/admlogin.html
 ===================================================================
---- a/templates/fi/admlogin.html.orig	2006-09-19 16:12:10.000000000 +0200
-+++ b/templates/fi/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/fi/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/fi/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -2,9 +2,10 @@
  <html>
  <head>
@@ -258,10 +258,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/fi/private.html
+Index: mailman-2.1.10/templates/fi/private.html
 ===================================================================
---- a/templates/fi/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/fi/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/fi/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/fi/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -2,8 +2,9 @@
  <html>
  <head>
@@ -273,10 +273,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/fr/admlogin.html
+Index: mailman-2.1.10/templates/fr/admlogin.html
 ===================================================================
---- a/templates/fr/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/fr/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/fr/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/fr/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -290,10 +290,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/fr/private.html
+Index: mailman-2.1.10/templates/fr/private.html
 ===================================================================
---- a/templates/fr/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/fr/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/fr/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/fr/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -2,8 +2,9 @@
  <head>
      <title>Authentification pour l'acc&egrave;s aux archives priv&eacute;es de
@@ -305,10 +305,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/hu/admlogin.html
+Index: mailman-2.1.10/templates/hu/admlogin.html
 ===================================================================
---- a/templates/hu/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/hu/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/hu/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/hu/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -322,10 +322,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/hu/private.html
+Index: mailman-2.1.10/templates/hu/private.html
 ===================================================================
---- a/templates/hu/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/hu/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/hu/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/hu/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -337,10 +337,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/it/admlogin.html
+Index: mailman-2.1.10/templates/it/admlogin.html
 ===================================================================
---- a/templates/it/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/it/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/it/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/it/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -354,10 +354,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/it/private.html
+Index: mailman-2.1.10/templates/it/private.html
 ===================================================================
---- a/templates/it/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/it/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/it/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/it/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -369,10 +369,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/ja/admlogin.html
+Index: mailman-2.1.10/templates/ja/admlogin.html
 ===================================================================
---- a/templates/ja/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/ja/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/ja/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ja/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -386,10 +386,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/ja/private.html
+Index: mailman-2.1.10/templates/ja/private.html
 ===================================================================
---- a/templates/ja/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/ja/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/ja/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ja/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -401,10 +401,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/ko/admlogin.html
+Index: mailman-2.1.10/templates/ko/admlogin.html
 ===================================================================
---- a/templates/ko/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/ko/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/ko/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ko/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -418,10 +418,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/ko/private.html
+Index: mailman-2.1.10/templates/ko/private.html
 ===================================================================
---- a/templates/ko/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/ko/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/ko/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ko/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -433,10 +433,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/lt/admlogin.html
+Index: mailman-2.1.10/templates/lt/admlogin.html
 ===================================================================
---- a/templates/lt/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/lt/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/lt/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/lt/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -450,10 +450,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/lt/private.html
+Index: mailman-2.1.10/templates/lt/private.html
 ===================================================================
---- a/templates/lt/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/lt/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/lt/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/lt/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -465,10 +465,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/nl/admlogin.html
+Index: mailman-2.1.10/templates/nl/admlogin.html
 ===================================================================
---- a/templates/nl/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/nl/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/nl/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/nl/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -489,10 +489,10 @@
 -</html>
 \ No newline at end of file
 +</html>
-Index: templates/nl/private.html
+Index: mailman-2.1.10/templates/nl/private.html
 ===================================================================
---- a/templates/nl/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/nl/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/nl/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/nl/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -513,10 +513,10 @@
 -</html>
 \ No newline at end of file
 +</html>
-Index: templates/no/admlogin.html
+Index: mailman-2.1.10/templates/no/admlogin.html
 ===================================================================
---- a/templates/no/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/no/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/no/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/no/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -530,10 +530,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/no/private.html
+Index: mailman-2.1.10/templates/no/private.html
 ===================================================================
---- a/templates/no/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/no/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/no/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/no/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -545,10 +545,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/pl/admlogin.html
+Index: mailman-2.1.10/templates/pl/admlogin.html
 ===================================================================
---- a/templates/pl/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/pl/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/pl/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pl/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -2,9 +2,10 @@
  <head>
    <title>Uwierzytelnienie %(who)s %(listname)s</title>
@@ -562,10 +562,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/pl/private.html
+Index: mailman-2.1.10/templates/pl/private.html
 ===================================================================
---- a/templates/pl/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/pl/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/pl/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pl/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -577,10 +577,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/pt/admlogin.html
+Index: mailman-2.1.10/templates/pt/admlogin.html
 ===================================================================
---- a/templates/pt/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/pt/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/pt/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pt/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -594,10 +594,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/pt/private.html
+Index: mailman-2.1.10/templates/pt/private.html
 ===================================================================
---- a/templates/pt/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/pt/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/pt/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pt/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -609,10 +609,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/pt_BR/admlogin.html
+Index: mailman-2.1.10/templates/pt_BR/admlogin.html
 ===================================================================
---- a/templates/pt_BR/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/pt_BR/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/pt_BR/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pt_BR/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -626,10 +626,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/pt_BR/private.html
+Index: mailman-2.1.10/templates/pt_BR/private.html
 ===================================================================
---- a/templates/pt_BR/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/pt_BR/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/pt_BR/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/pt_BR/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -641,10 +641,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/ru/admlogin.html
+Index: mailman-2.1.10/templates/ru/admlogin.html
 ===================================================================
---- a/templates/ru/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/ru/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/ru/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ru/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -658,10 +658,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/ru/private.html
+Index: mailman-2.1.10/templates/ru/private.html
 ===================================================================
---- a/templates/ru/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/ru/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/ru/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/ru/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -673,10 +673,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/sr/admlogin.html
+Index: mailman-2.1.10/templates/sr/admlogin.html
 ===================================================================
---- a/templates/sr/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/sr/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/sr/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/sr/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,11 @@
  <html>
  <head>
@@ -692,10 +692,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/sr/private.html
+Index: mailman-2.1.10/templates/sr/private.html
 ===================================================================
---- a/templates/sr/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/sr/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/sr/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/sr/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,11 @@
  <html>
  <head>
@@ -711,10 +711,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/sv/admlogin.html
+Index: mailman-2.1.10/templates/sv/admlogin.html
 ===================================================================
---- a/templates/sv/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/sv/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/sv/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/sv/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -728,10 +728,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/sv/private.html
+Index: mailman-2.1.10/templates/sv/private.html
 ===================================================================
---- a/templates/sv/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/sv/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/sv/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/sv/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -745,10 +745,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/uk/admlogin.html
+Index: mailman-2.1.10/templates/uk/admlogin.html
 ===================================================================
---- a/templates/uk/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/uk/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/uk/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/uk/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -762,10 +762,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/uk/private.html
+Index: mailman-2.1.10/templates/uk/private.html
 ===================================================================
---- a/templates/uk/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/uk/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/uk/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/uk/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -777,10 +777,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/zh_CN/admlogin.html
+Index: mailman-2.1.10/templates/zh_CN/admlogin.html
 ===================================================================
---- a/templates/zh_CN/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/zh_CN/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/zh_CN/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/zh_CN/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -794,10 +794,10 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-Index: templates/zh_CN/private.html
+Index: mailman-2.1.10/templates/zh_CN/private.html
 ===================================================================
---- a/templates/zh_CN/private.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/zh_CN/private.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/zh_CN/private.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/zh_CN/private.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -809,10 +809,10 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: templates/zh_TW/admlogin.html
+Index: mailman-2.1.10/templates/zh_TW/admlogin.html
 ===================================================================
---- a/templates/zh_TW/admlogin.html.orig	2006-09-19 16:12:11.000000000 +0200
-+++ b/templates/zh_TW/admlogin.html	2006-09-19 16:15:38.000000000 +0200
+--- mailman-2.1.10.orig/templates/zh_TW/admlogin.html	2008-04-21 20:28:22.000000000 +0200
++++ mailman-2.1.10/templates/zh_TW/admlogin.html	2008-06-15 18:49:59.000000000 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>




More information about the Pkg-mailman-hackers mailing list