Patches item #1578766, was opened at 2006-10-17 01:59
Message generated for change (Settings changed) made by msapiro
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1578766&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: internationalization
Group: Mailman 2.1
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Thijs Kinkhorst (kink)
Assigned to: Nobody/Anonymous (nobody)
Summary: Russian newlist template has wrong variable
Initial Comment:
Hi,
The Russian newlist template ends with
"mailman-owner@%(hostname)s", while in more recent
templates this is "%(siteowner)s". The attached patch
corrects that, you don't need to speak Russian to
understand it :)
Thijs
----------------------------------------------------------------------
>Comment By: Mark Sapiro (msapiro)
Date: 2008-06-07 09:22
Message:
Logged In: YES
user_id=1123998
Originator: NO
The fixes for both the ru/newlist.txt and ko/newlist.txt will be applied
to the 2.1 branch for the next 2.1.11 release after rc1.
----------------------------------------------------------------------
Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 05:21
Message:
Logged In: YES
user_id=11375
Originator: NO
Another template with this problem is templates/ko/newlist.txt.
I've applied this change in my small-fixes branch.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1578766&group_…
Patches item #916196, was opened at 2004-03-14 14:55
Message generated for change (Settings changed) made by msapiro
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=916196&group_i…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: internationalization
Group: Mailman 2.1
>Status: Closed
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: GCS (gcsideal)
Assigned to: Nobody/Anonymous (nobody)
Summary: broken link in german online messages
Initial Comment:
Submitted by Ralf Doeblitz <r.doeblitz(a)asco.de> for the
Debian package of MailMan.
----------------------------------------------------------------------
>Comment By: Mark Sapiro (msapiro)
Date: 2008-06-07 09:14
Message:
Logged In: YES
user_id=1123998
Originator: NO
Will be applied to the 2.1 branch for the next 2.1.11 release after rc1.
----------------------------------------------------------------------
Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 05:52
Message:
Logged In: YES
user_id=11375
Originator: NO
Applied to my small-fixes branch; thanks for your contribution!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=916196&group_i…
Patches item #1719017, was opened at 2007-05-14 18:15
Message generated for change (Comment added) made by msapiro
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1719017&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: internationalization
Group: Mailman 2.1
>Status: Closed
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: Robert S. (rj667)
Assigned to: Nobody/Anonymous (nobody)
Summary: % -> %% fix in templates/nl/private.html
Initial Comment:
The file templates/nl/private.html has WIDTH="100%" instead of WIDTH="100%%", resulting in an incorrect webpage after Mailman processed the template.
----------------------------------------------------------------------
>Comment By: Mark Sapiro (msapiro)
Date: 2008-06-07 08:51
Message:
Logged In: YES
user_id=1123998
Originator: NO
Actually, it is needed. Most of the lines with single % are in
listinfo.html, options.html and roster.html templates which are processed
by HtmlFormatter.ParseTags() which doesn't do % interpolation.
Of the rest, 4 are in hu/illik.html which is spurious, 4 are of the form
%25(...)s - which should probably be %(...)25s - in various zh_CN templates
and 2 are in nl/private.html.
Yesterday, I actually produced and uploaded, but didn't yet announce, a
2.1.11rc1 release. It doesn't have these fixes to nl/private.html, but they
will be in the next 2.1.11 release.
----------------------------------------------------------------------
Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 06:29
Message:
Logged In: YES
user_id=11375
Originator: NO
If this fix to escape % symbols is actually needed, we must have a lot of
broken templates. rgrep '[^%]%[^(%]' templates/ reports 1378 lines with
single '%' signs; surely they can't all be broken. Did we add some code
that fixes single % signs?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1719017&group_…
Patches item #1537408, was opened at 2006-08-09 10:17
Message generated for change (Settings changed) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1537408&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: Mailman 2.1
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Thijs Kinkhorst (kink)
Assigned to: Nobody/Anonymous (nobody)
>Summary: Log error on screwed-up template in archiver
Initial Comment:
Hello!
Bob Tanner supplied us with the following patch to add
logging to the code that handles really "screwed up
templates" so the admin can more easily see what has
gone wrong.
Please consider, thanks!
Thijs
--- HyperArch.py 2003-12-26 14:41:30.000000000 -0600
+++ HyperArch.py-bob 2005-11-23 03:19:13.000000000 -0600
@@ -217,8 +217,9 @@
Utils.GetCharSet(lang),
'replace')
text = sdict.interpolate(utemplate)
- except (TypeError, ValueError):
+ except (TypeError, ValueError), e:
# The template is really screwed up
+ syslog('error', 'The template is really
screwed up: %s\n',
e)
pass
# Make sure the text is in the given character
set, or html-ify any
# bogus
# characters.
----------------------------------------------------------------------
Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 09:36
Message:
Logged In: YES
user_id=11375
Originator: NO
I've attached a patch file including this change, but haven't actually
tested the code with the patch yet.
File Added: mailman-archiver-template.diff
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1537408&group_…
Patches item #1537408, was opened at 2006-08-09 10:17
Message generated for change (Comment added) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1537408&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: Mailman 2.1
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Thijs Kinkhorst (kink)
Assigned to: Nobody/Anonymous (nobody)
Summary: Log error on screwed-up template
Initial Comment:
Hello!
Bob Tanner supplied us with the following patch to add
logging to the code that handles really "screwed up
templates" so the admin can more easily see what has
gone wrong.
Please consider, thanks!
Thijs
--- HyperArch.py 2003-12-26 14:41:30.000000000 -0600
+++ HyperArch.py-bob 2005-11-23 03:19:13.000000000 -0600
@@ -217,8 +217,9 @@
Utils.GetCharSet(lang),
'replace')
text = sdict.interpolate(utemplate)
- except (TypeError, ValueError):
+ except (TypeError, ValueError), e:
# The template is really screwed up
+ syslog('error', 'The template is really
screwed up: %s\n',
e)
pass
# Make sure the text is in the given character
set, or html-ify any
# bogus
# characters.
----------------------------------------------------------------------
>Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 09:36
Message:
Logged In: YES
user_id=11375
Originator: NO
I've attached a patch file including this change, but haven't actually
tested the code with the patch yet.
File Added: mailman-archiver-template.diff
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1537408&group_…
Patches item #1719017, was opened at 2007-05-14 21:15
Message generated for change (Comment added) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1719017&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: internationalization
Group: Mailman 2.1
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Robert S. (rj667)
Assigned to: Nobody/Anonymous (nobody)
Summary: % -> %% fix in templates/nl/private.html
Initial Comment:
The file templates/nl/private.html has WIDTH="100%" instead of WIDTH="100%%", resulting in an incorrect webpage after Mailman processed the template.
----------------------------------------------------------------------
>Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 09:29
Message:
Logged In: YES
user_id=11375
Originator: NO
If this fix to escape % symbols is actually needed, we must have a lot of
broken templates. rgrep '[^%]%[^(%]' templates/ reports 1378 lines with
single '%' signs; surely they can't all be broken. Did we add some code
that fixes single % signs?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1719017&group_…
Patches item #1418016, was opened at 2006-01-29 11:04
Message generated for change (Comment added) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1418016&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: internationalization
Group: Mailman 2.1
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Schoinobates Volans (schoinobates)
Assigned to: Nobody/Anonymous (nobody)
Summary: Dutch translation update
Initial Comment:
A Debian user, Luc Stroobant, has contributed this
update to the Dutch translation.
----------------------------------------------------------------------
>Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 09:18
Message:
Logged In: YES
user_id=11375
Originator: NO
Is this patch still relevant? Rev. 942, dated 2006-09-07, is described as
"Committed updated Dutch translations of the messages." Can you please
check if the changes in this patch are still applicable to the current
version, 2.1.10? Thanks!
----------------------------------------------------------------------
Comment By: Schoinobates Volans (schoinobates)
Date: 2006-02-17 11:25
Message:
Logged In: YES
user_id=41822
Slightly updated version.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1418016&group_…
Patches item #1469076, was opened at 2006-04-12 03:54
Message generated for change (Comment added) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1469076&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: internationalization
Group: Mailman 2.1
>Status: Closed
Resolution: None
Priority: 5
Private: No
Submitted By: Clytie Siddall (clytie)
Assigned to: Nobody/Anonymous (nobody)
Summary: Updated Vietnamese translation 2.1.8rc1
Initial Comment:
Here's the updated translation. :)
----------------------------------------------------------------------
>Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 09:13
Message:
Logged In: YES
user_id=11375
Originator: NO
I can't tell if this patch is still relevant; the Vietnamese translation
was updated
in rev. 941 (2006-09-07) and rev. 1034 (2008-01-03), both after this patch
was submitted. Clytie, can you please say if this patch still matters, or
if it should just be closed? Thanks!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1469076&group_…
Patches item #834357, was opened at 2003-11-01 19:45
Message generated for change (Settings changed) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=834357&group_i…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Pipermail
Group: Mailman 2.1
>Status: Closed
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: Nick Barcet (nbarcet)
Assigned to: Nobody/Anonymous (nobody)
Summary: Allow list templates for archives
Initial Comment:
The template mechanism currently does not work in
HyperArchiver :
It is not possible to modify specifically the template
for a given site in the archive template (placing a
list specific template in
/var/lib/Mailman/lists/<listname>/<lang>/ because of a
small bug in Mailman.Archiver.HyperHarch.
To fix it modify
/usr/lib/mailman/Mailman/Archiver/HyperArch.py, in
function quick_maketext, change line 175:
template = Utils.maketext(templatefile,
lang=lang, raw=1)
into:
template = Utils.maketext(templatefile,
lang=lang, raw=1, mlist=mlist)
And it works...
Nick
----------------------------------------------------------------------
>Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 09:07
Message:
Logged In: YES
user_id=11375
Originator: NO
The change seems to have been applied to Mailman at some point. Thanks
for your contribution!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=834357&group_i…
Patches item #916196, was opened at 2004-03-14 17:55
Message generated for change (Settings changed) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=916196&group_i…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: internationalization
>Group: Mailman 2.1
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: GCS (gcsideal)
Assigned to: Nobody/Anonymous (nobody)
Summary: broken link in german online messages
Initial Comment:
Submitted by Ralf Doeblitz <r.doeblitz(a)asco.de> for the
Debian package of MailMan.
----------------------------------------------------------------------
Comment By: A.M. Kuchling (akuchling)
Date: 2008-06-07 08:52
Message:
Logged In: YES
user_id=11375
Originator: NO
Applied to my small-fixes branch; thanks for your contribution!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=916196&group_i…