[Pkg-mailman-hackers] Pkg-mailman commit - rev 545 - in trunk/debian: . patches
Thijs Kinkhorst
thijs at alioth.debian.org
Sat Jun 28 21:23:19 UTC 2008
Author: thijs
Date: 2008-06-28 21:23:19 +0000 (Sat, 28 Jun 2008)
New Revision: 545
Modified:
trunk/debian/changelog
trunk/debian/patches/64_correct_html_nesting.patch
trunk/debian/patches/99_js_templates.patch
Log:
fix a number of different buglets in the js_templates patch
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-06-24 20:34:20 UTC (rev 544)
+++ trunk/debian/changelog 2008-06-28 21:23:19 UTC (rev 545)
@@ -13,8 +13,9 @@
* Make quilt usage more dpkg source format 3.0 compatible
and refresh all patches (Closes: #485253).
* Checked for policy 3.8.0, no changes necessary.
+ * Fix a number of buglets in 99_js_templates.patch.
- -- Thijs Kinkhorst <thijs at debian.org> Tue, 24 Jun 2008 21:58:40 +0200
+ -- Thijs Kinkhorst <thijs at debian.org> Sat, 28 Jun 2008 23:21:55 +0200
mailman (1:2.1.10-2) unstable; urgency=low
Modified: trunk/debian/patches/64_correct_html_nesting.patch
===================================================================
--- trunk/debian/patches/64_correct_html_nesting.patch 2008-06-24 20:34:20 UTC (rev 544)
+++ trunk/debian/patches/64_correct_html_nesting.patch 2008-06-28 21:23:19 UTC (rev 545)
@@ -397,13 +397,6 @@
<TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
WIDTH="70%" HEIGHT= "112">
<TR>
-@@ -132,4 +132,4 @@
- </table>
- <MM-Mailman-Footer>
- </BODY>
--</HTML>
-\ No newline at end of file
-+</HTML>
Index: mailman-2.1.10/templates/sr/listinfo.html
===================================================================
--- mailman-2.1.10.orig/templates/sr/listinfo.html 2008-04-21 20:28:22.000000000 +0200
Modified: trunk/debian/patches/99_js_templates.patch
===================================================================
--- trunk/debian/patches/99_js_templates.patch 2008-06-24 20:34:20 UTC (rev 544)
+++ trunk/debian/patches/99_js_templates.patch 2008-06-28 21:23:19 UTC (rev 545)
@@ -1,14 +1,57 @@
-Patch: 99_js_templates.patch
-Author: Tollef Fog Heen <tfheen at debian.org>
-Do some javascript magic to automatically select the password
-field when appropriate.
-Index: mailman-2.1.10/templates/cs/admlogin.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/ar/private.html mailman-2.1.11rc2/templates/ar/private.html
+--- mailman-2.1.11rc2.orig/templates/ar/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ar/private.html 2008-06-28 23:16:54.000000000 +0200
+@@ -2,9 +2,10 @@
+ <head>
+ <title>اÙتØÙÙ Ù
٠اÙشخصÙØ© ÙÙأرشÙ٠اÙخاص باÙÙائÙ
Ø© %(realname)s</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s/">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s/" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ca/admlogin.html mailman-2.1.11rc2/templates/ca/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/ca/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ca/admlogin.html 2008-06-28 23:18:49.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
+ <title>Autenticació per a %(who)s a la llista %(listname)s</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ca/private.html mailman-2.1.11rc2/templates/ca/private.html
+--- mailman-2.1.11rc2.orig/templates/ca/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ca/private.html 2008-06-28 23:17:06.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>Autenticació per als arxius privats de %(realname)s</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/cs/admlogin.html mailman-2.1.11rc2/templates/cs/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/cs/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/cs/admlogin.html 2008-06-28 23:09:25.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
<title>%(listname)s %(who)s pøihlá¹ení</title>
+<script>function sf(){document.f.adminpw.focus();}</script>
</head>
@@ -19,25 +62,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/cs/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/cs/private.html mailman-2.1.11rc2/templates/cs/private.html
+--- mailman-2.1.11rc2.orig/templates/cs/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/cs/private.html 2008-06-28 23:17:13.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>Konference %(realname)s - pøihlá¹ení pro pøístup do privátního archivu </title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/da/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/da/admlogin.html mailman-2.1.11rc2/templates/da/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/da/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/da/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -51,25 +94,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/da/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/da/private.html mailman-2.1.11rc2/templates/da/private.html
+--- mailman-2.1.11rc2.orig/templates/da/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/da/private.html 2008-06-28 23:17:20.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s Login til Private Arkiver</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/de/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/de/admlogin.html mailman-2.1.11rc2/templates/de/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/de/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/de/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -83,25 +126,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/de/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/de/private.html mailman-2.1.11rc2/templates/de/private.html
+--- mailman-2.1.11rc2.orig/templates/de/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/de/private.html 2008-06-28 23:17:27.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
- <title>Authentifizierung für den Zugriff auf die Archive von %(realname)s</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
+ <title>Authentifizierung für den Zugriff auf die Archive von %(realname)s</title>
++ <script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/en/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/en/admlogin.html mailman-2.1.11rc2/templates/en/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/en/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/en/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -115,10 +158,9 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/en/listinfo.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/en/listinfo.html mailman-2.1.11rc2/templates/en/listinfo.html
+--- mailman-2.1.11rc2.orig/templates/en/listinfo.html 2008-06-28 23:09:42.000000000 +0200
++++ mailman-2.1.11rc2/templates/en/listinfo.html 2008-06-28 23:09:25.000000000 +0200
@@ -4,7 +4,7 @@
<TITLE><MM-List-Name> Info Page</TITLE>
@@ -128,25 +170,25 @@
<P>
<TABLE COLS="1" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/en/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/en/private.html mailman-2.1.11rc2/templates/en/private.html
+--- mailman-2.1.11rc2.orig/templates/en/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/en/private.html 2008-06-28 23:17:36.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s Private Archives Authentication</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/es/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/es/admlogin.html mailman-2.1.11rc2/templates/es/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/es/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/es/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -160,25 +202,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/es/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/es/private.html mailman-2.1.11rc2/templates/es/private.html
+--- mailman-2.1.11rc2.orig/templates/es/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/es/private.html 2008-06-28 23:17:43.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>Autentificación para los archivos privados de %(realname)s </title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/et/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/et/admlogin.html mailman-2.1.11rc2/templates/et/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/et/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/et/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -192,25 +234,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/et/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/et/private.html mailman-2.1.11rc2/templates/et/private.html
+--- mailman-2.1.11rc2.orig/templates/et/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/et/private.html 2008-06-28 23:11:24.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s privaatarhiiv</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/eu/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/eu/admlogin.html mailman-2.1.11rc2/templates/eu/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/eu/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/eu/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -224,10 +266,9 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/eu/private.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/eu/private.html mailman-2.1.11rc2/templates/eu/private.html
+--- mailman-2.1.11rc2.orig/templates/eu/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/eu/private.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -241,10 +282,9 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/fi/admlogin.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/fi/admlogin.html mailman-2.1.11rc2/templates/fi/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/fi/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/fi/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -2,9 +2,10 @@
<html>
<head>
@@ -258,25 +298,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/fi/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/fi/private.html mailman-2.1.11rc2/templates/fi/private.html
+--- mailman-2.1.11rc2.orig/templates/fi/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/fi/private.html 2008-06-28 23:11:41.000000000 +0200
+@@ -2,9 +2,10 @@
<html>
<head>
<title>%(realname)s Private Archives Authentication</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/fr/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/fr/admlogin.html mailman-2.1.11rc2/templates/fr/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/fr/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/fr/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -290,28 +330,124 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/fr/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/fr/private.html mailman-2.1.11rc2/templates/fr/private.html
+--- mailman-2.1.11rc2.orig/templates/fr/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/fr/private.html 2008-06-28 23:17:50.000000000 +0200
+@@ -2,9 +2,10 @@
<head>
<title>Authentification pour l'accès aux archives privées de
%(realname)s</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/hu/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/gl/admlogin.html mailman-2.1.11rc2/templates/gl/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/gl/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/gl/admlogin.html 2008-06-28 23:19:14.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
+ <title>Autenticación de %(who)s de %(listname)s </title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/gl/private.html mailman-2.1.11rc2/templates/gl/private.html
+--- mailman-2.1.11rc2.orig/templates/gl/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/gl/private.html 2008-06-28 23:12:13.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>Autenticación para os ficheiros privados de %(realname)s </title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s/">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s/" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/he/admlogin.html mailman-2.1.11rc2/templates/he/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/he/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/he/admlogin.html 2008-06-28 23:19:24.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>×××××ת ×©× %(listname)s %(who)s</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff" dir="rtl">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" dir="rtl" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/he/private.html mailman-2.1.11rc2/templates/he/private.html
+--- mailman-2.1.11rc2.orig/templates/he/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/he/private.html 2008-06-28 23:12:27.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>××××ת ×©× ××ר×××× ×פר×× ×©× %(realname)s</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff" dir="rtl">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" dir="rtl" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/hr/admlogin.html mailman-2.1.11rc2/templates/hr/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/hr/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/hr/admlogin.html 2008-06-28 23:19:34.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>%(listname)s %(who)s Autentikacija</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/hr/private.html mailman-2.1.11rc2/templates/hr/private.html
+--- mailman-2.1.11rc2.orig/templates/hr/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/hr/private.html 2008-06-28 23:12:41.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>%(realname)s Privatna Arhiva Autentikacija</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/hu/admlogin.html mailman-2.1.11rc2/templates/hu/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/hu/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/hu/admlogin.html 2008-06-28 23:09:25.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
<title>%(listname)s %(who)s Azonosítás</title>
+<script>function sf(){document.f.adminpw.focus();}</script>
</head>
@@ -322,28 +458,60 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/hu/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/hu/private.html mailman-2.1.11rc2/templates/hu/private.html
+--- mailman-2.1.11rc2.orig/templates/hu/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/hu/private.html 2008-06-28 23:12:53.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s Privát archívum azonosítás</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/it/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ia/admlogin.html mailman-2.1.11rc2/templates/ia/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/ia/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ia/admlogin.html 2008-06-28 23:19:54.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
+ <title>Authentication pro %(who)s a %(listname)s</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ia/private.html mailman-2.1.11rc2/templates/ia/private.html
+--- mailman-2.1.11rc2.orig/templates/ia/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ia/private.html 2008-06-28 23:13:06.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>Authentication pro le archivos private de %(realname)s</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/it/admlogin.html mailman-2.1.11rc2/templates/it/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/it/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/it/admlogin.html 2008-06-28 23:09:25.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
<title>Autenticazione per %(who)s di %(listname)s</title>
+<script>function sf(){document.f.adminpw.focus();}</script>
</head>
@@ -354,25 +522,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/it/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/it/private.html mailman-2.1.11rc2/templates/it/private.html
+--- mailman-2.1.11rc2.orig/templates/it/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/it/private.html 2008-06-28 23:13:16.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>Autenticazione per gli archivi privati di %(realname)s</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/ja/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ja/admlogin.html mailman-2.1.11rc2/templates/ja/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/ja/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ja/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -386,25 +554,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/ja/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/ja/private.html mailman-2.1.11rc2/templates/ja/private.html
+--- mailman-2.1.11rc2.orig/templates/ja/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ja/private.html 2008-06-28 23:13:29.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s ¸ÂÄê¸ø³«Êݸ½ñ¸Ë ǧ¾Ú</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/ko/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ko/admlogin.html mailman-2.1.11rc2/templates/ko/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/ko/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ko/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -418,25 +586,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/ko/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/ko/private.html mailman-2.1.11rc2/templates/ko/private.html
+--- mailman-2.1.11rc2.orig/templates/ko/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ko/private.html 2008-06-28 23:13:41.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s ºñ°ø°³ ÀúÀå¼Ò ÀÎÁõ</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/lt/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/lt/admlogin.html mailman-2.1.11rc2/templates/lt/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/lt/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/lt/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -450,25 +618,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/lt/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/lt/private.html mailman-2.1.11rc2/templates/lt/private.html
+--- mailman-2.1.11rc2.orig/templates/lt/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/lt/private.html 2008-06-28 23:13:52.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s privataus archyvo prisijungimas</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/nl/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/nl/admlogin.html mailman-2.1.11rc2/templates/nl/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/nl/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/nl/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -482,41 +650,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-@@ -32,4 +33,4 @@
- de <em>Uitloggen</em> link te klikken in de hierna volgende schermen.
- </FORM>
- </body>
--</html>
-\ No newline at end of file
-+</html>
-Index: mailman-2.1.10/templates/nl/private.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/nl/private.html mailman-2.1.11rc2/templates/nl/private.html
+--- mailman-2.1.11rc2.orig/templates/nl/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/nl/private.html 2008-06-28 23:14:02.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
- <title>%(realname)s Privé-archief Login</title>
-+ <script>function sf(){document.f.adminpw.focus();}</script>
+ <title>%(realname)s Privé-archief Login</title>
++ <script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
+<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
- <TABLE WIDTH="100%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-@@ -34,4 +35,4 @@
- als u de browser afsluit, of wanneer u zelf het cookie actief doet verlopen door de pagina 'lidmaatschapsinstellingen' te bezoeken en daar op de link <em>Uitloggen</em> te klikken.
- </FORM>
- </body>
--</html>
-\ No newline at end of file
-+</html>
-Index: mailman-2.1.10/templates/no/admlogin.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/no/admlogin.html mailman-2.1.11rc2/templates/no/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/no/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/no/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -530,25 +682,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/no/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/no/private.html mailman-2.1.11rc2/templates/no/private.html
+--- mailman-2.1.11rc2.orig/templates/no/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/no/private.html 2008-06-28 23:14:11.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s Innlogging til Private Arkiver</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/pl/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/pl/admlogin.html mailman-2.1.11rc2/templates/pl/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/pl/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/pl/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -2,9 +2,10 @@
<head>
<title>Uwierzytelnienie %(who)s %(listname)s</title>
@@ -562,25 +714,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/pl/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/pl/private.html mailman-2.1.11rc2/templates/pl/private.html
+--- mailman-2.1.11rc2.orig/templates/pl/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/pl/private.html 2008-06-28 23:14:20.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s Private Archives Authentication</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/pt/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/pt/admlogin.html mailman-2.1.11rc2/templates/pt/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/pt/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/pt/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -594,25 +746,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/pt/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/pt/private.html mailman-2.1.11rc2/templates/pt/private.html
+--- mailman-2.1.11rc2.orig/templates/pt/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/pt/private.html 2008-06-28 23:14:39.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s Autenticação de Arquivos Privados</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/pt_BR/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/pt_BR/admlogin.html mailman-2.1.11rc2/templates/pt_BR/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/pt_BR/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/pt_BR/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -626,25 +778,57 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/pt_BR/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/pt_BR/private.html mailman-2.1.11rc2/templates/pt_BR/private.html
+--- mailman-2.1.11rc2.orig/templates/pt_BR/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/pt_BR/private.html 2008-06-28 23:14:30.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>Autenticação para acesso aos arquivos privados da %(realname)s</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/ru/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ro/admlogin.html mailman-2.1.11rc2/templates/ro/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/ro/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ro/admlogin.html 2008-06-28 23:20:21.000000000 +0200
+@@ -2,9 +2,10 @@
+ <head>
+ <title>%(listname)s: Autentificare - %(who)s</title>
+ <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-2">
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ro/private.html mailman-2.1.11rc2/templates/ro/private.html
+--- mailman-2.1.11rc2.orig/templates/ro/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ro/private.html 2008-06-28 23:14:56.000000000 +0200
+@@ -2,9 +2,10 @@
+ <head>
+ <title>Autentificare la arhivele private %(realname)s</title>
+ <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-2">
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/ru/admlogin.html mailman-2.1.11rc2/templates/ru/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/ru/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ru/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -658,25 +842,89 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/ru/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/ru/private.html mailman-2.1.11rc2/templates/ru/private.html
+--- mailman-2.1.11rc2.orig/templates/ru/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/ru/private.html 2008-06-28 23:15:07.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>áÕÔÅÎÔÉÆÉËÁÃÉÑ ÄÌÑ ÄÏÓÔÕÐÁ Ë ÚÁËÒÙÔÏÍÕ ÁÒÈÉ×Õ ÓÐÉÓËÁ ÒÁÓÓÙÌËÉ %(realname)s</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/sr/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/sk/admlogin.html mailman-2.1.11rc2/templates/sk/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/sk/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sk/admlogin.html 2008-06-28 23:20:32.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>%(listname)s: prihlásenie ako %(who)s</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/sk/private.html mailman-2.1.11rc2/templates/sk/private.html
+--- mailman-2.1.11rc2.orig/templates/sk/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sk/private.html 2008-06-28 23:15:20.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>Konferencia %(realname)s - prÃstup do súkromného archÃvu</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/sl/admlogin.html mailman-2.1.11rc2/templates/sl/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/sl/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sl/admlogin.html 2008-06-28 23:20:42.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>Avtentikacija èlana %(who)s za seznam %(listname)s</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/sl/private.html mailman-2.1.11rc2/templates/sl/private.html
+--- mailman-2.1.11rc2.orig/templates/sl/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sl/private.html 2008-06-28 23:15:32.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>Avtentikacija za zasebne arhive èlana %(realname)s</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/sr/admlogin.html mailman-2.1.11rc2/templates/sr/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/sr/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sr/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,11 @@
<html>
<head>
@@ -692,10 +940,9 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/sr/private.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/sr/private.html mailman-2.1.11rc2/templates/sr/private.html
+--- mailman-2.1.11rc2.orig/templates/sr/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sr/private.html 2008-06-28 23:15:41.000000000 +0200
@@ -1,9 +1,11 @@
<html>
<head>
@@ -703,7 +950,7 @@
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>
-<body bgcolor="#ffffff">
-<FORM METHOD=POST ACTION="%(action)s">
-+ <script>function sf(){document.f.adminpw.focus();}</script>
++ <script>function sf(){document.f.username.focus();}</script>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+</head>
+<body bgcolor="#ffffff" onLoad="sf()">
@@ -711,10 +958,9 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/sv/admlogin.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/sv/admlogin.html mailman-2.1.11rc2/templates/sv/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/sv/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sv/admlogin.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -728,10 +974,9 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/sv/private.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/sv/private.html mailman-2.1.11rc2/templates/sv/private.html
+--- mailman-2.1.11rc2.orig/templates/sv/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/sv/private.html 2008-06-28 23:09:25.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
@@ -745,13 +990,44 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/uk/admlogin.html
-===================================================================
---- 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
+diff -Nur mailman-2.1.11rc2.orig/templates/tr/admlogin.html mailman-2.1.11rc2/templates/tr/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/tr/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/tr/admlogin.html 2008-06-28 23:20:59.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
+ <title>%(listname)s %(who)s Giriþi</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/tr/private.html mailman-2.1.11rc2/templates/tr/private.html
+--- mailman-2.1.11rc2.orig/templates/tr/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/tr/private.html 2008-06-28 23:15:55.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>%(realname)s Özel Arþivleri Giriþi</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/uk/admlogin.html mailman-2.1.11rc2/templates/uk/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/uk/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/uk/admlogin.html 2008-06-28 23:09:25.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
<title>ÐвÑенÑиÑÑкаÑÑÑ ÐºÐ¾ÑиÑÑÑваÑа %(who)s ÑпиÑÐºÑ Ð»Ð¸ÑÑÑÐ²Ð°Ð½Ð½Ñ %(listname)s</title>
+<script>function sf(){document.f.adminpw.focus();}</script>
</head>
@@ -762,28 +1038,60 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/uk/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/uk/private.html mailman-2.1.11rc2/templates/uk/private.html
+--- mailman-2.1.11rc2.orig/templates/uk/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/uk/private.html 2008-06-28 23:16:05.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>ÐвÑенÑиÑÑкаÑÑÑ Ð´Ð¾ÑÑÑÐ¿Ñ Ð´Ð¾ закÑиÑого ÑпиÑÐºÑ ÑозÑилки %(realname)s</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/zh_CN/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/vi/admlogin.html mailman-2.1.11rc2/templates/vi/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/vi/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/vi/admlogin.html 2008-06-28 23:21:13.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
+ <title>%(listname)s %(who)s Xác thực</title>
++ <script>function sf(){document.f.adminpw.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(path)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(path)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/vi/private.html mailman-2.1.11rc2/templates/vi/private.html
+--- mailman-2.1.11rc2.orig/templates/vi/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/vi/private.html 2008-06-28 23:16:21.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
+ <title>Xác thực kho riêng của %(realname)s</title>
++ <script>function sf(){document.f.username.focus();}</script>
+ </head>
+-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
++<body bgcolor="#ffffff" onLoad="sf()">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
+ %(message)s
+ <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/zh_CN/admlogin.html mailman-2.1.11rc2/templates/zh_CN/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/zh_CN/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/zh_CN/admlogin.html 2008-06-28 23:09:25.000000000 +0200
+@@ -1,9 +1,10 @@
+ <html>
+ <head>
<title>%(listname)s %(who)s Authentication</title>
+<script>function sf(){document.f.adminpw.focus();}</script>
</head>
@@ -794,25 +1102,25 @@
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
<TR>
-Index: mailman-2.1.10/templates/zh_CN/private.html
-===================================================================
---- 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 @@
+diff -Nur mailman-2.1.11rc2.orig/templates/zh_CN/private.html mailman-2.1.11rc2/templates/zh_CN/private.html
+--- mailman-2.1.11rc2.orig/templates/zh_CN/private.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/zh_CN/private.html 2008-06-28 23:16:34.000000000 +0200
+@@ -1,9 +1,10 @@
<html>
<head>
<title>%(realname)s ç§æå½æ¡£è®¤è¯</title>
-+<script>function sf(){document.f.adminpw.focus();}</script>
++<script>function sf(){document.f.username.focus();}</script>
</head>
-<body bgcolor="#ffffff">
+-<FORM METHOD=POST ACTION="%(action)s">
+<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
++<FORM METHOD=POST ACTION="%(action)s" name="f">
%(message)s
<TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-Index: mailman-2.1.10/templates/zh_TW/admlogin.html
-===================================================================
---- 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
+ <TR>
+diff -Nur mailman-2.1.11rc2.orig/templates/zh_TW/admlogin.html mailman-2.1.11rc2/templates/zh_TW/admlogin.html
+--- mailman-2.1.11rc2.orig/templates/zh_TW/admlogin.html 2008-06-23 20:08:20.000000000 +0200
++++ mailman-2.1.11rc2/templates/zh_TW/admlogin.html 2008-06-28 23:21:17.000000000 +0200
@@ -1,9 +1,10 @@
<html>
<head>
More information about the Pkg-mailman-hackers
mailing list