[Mailman-Developers] (no subject)
Hello! I have a big problem with my video card. It is Nvidia ge Force 2 MX and I can't run Linux with it! What should I do? Is there any way ? - Free mail from www.dir.bg! ___ Mailman-Developers mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-developers
[Mailman-Developers] More moderation?
One of the settings that allows moderators to conditionally insert themselves is the max size (default to 40K, I believe). How difficult would it be to include another that holds for moderation any message that includes more excerpted material (lines beginning with >) than a certain percentage of the message? How difficult would it be to also allow the process of moderation to actually modify the message (for example, including a [foo bar baz -Moderator] comment block, or trimming excess cruft that really has nothing to do with the message's content)? I might be willing to do this coding if others agreed these are desirable features... Ooh--since I'm suggesting features I'd like, how 'bout the ability to (on a list-by-list basis) flip a switch that would trim out all HTML code from messages sent to the list? -Dale Newfield ___ Mailman-Developers mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-developers
[Mailman-Developers] (no subject)
Hello! I have a big problem with my video card. It is Nvidia ge Force 2 MX and I can't run Linux with it! What should I do? Is there any way ? Please write me to [EMAIL PROTECTED] I will be very pleased if you answer me! - Free mail from www.dir.bg! ___ Mailman-Developers mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-developers
[Mailman-Developers] ANNOUNCE Mailman 2.0.4
Folks, I've just released Mailman 2.0.4 which is simply a patch release so that Mailman works better with Python 2.1. Mailman 2.0.3 had a few constructs which caused warnings when run with Python 2.1. The unfortunate part is that those warnings could occur in the qrunner process which tended to cause cron to bombard the system administrators with email. If you upgrade your Python to 2.1, you should definitely upgrade to Mailman 2.0.4, otherwise consider it optional. As usual, I'm releasing this as both a complete tarball and as a patch against Mailman 2.0.3. You /must/ update your source to 2.0.3 before applying the 2.0.4 patch. Since the patch is small, I'm including it in this message. To apply, cd into your 2.0.4 source tree and apply it like so: % patch -p0 < mailman-2.0.3-2.0.4.txt Currently both http://mailman.sourceforge.net and http://www.list.org are updated, and I expect the gnu.org site to be updated soon as well. The release information on SF is at http://sourceforge.net/project/shownotes.php?release_id=31693 See also http://www.gnu.org/software/mailman http://www.list.org http://mailman.sourceforge.net Enjoy, -Barry [From the NEWS file] 2.0.4 (18-Apr-2001) Python 2.1 compatibility release. There were a few questionable constructs and uses of deprecated modules that caused annoying warnings when used with Python 2.1. This release quiets those warnings. Index: NEWS === RCS file: /cvsroot/mailman/mailman/NEWS,v retrieving revision 1.25.2.4 retrieving revision 1.25.2.5 diff -u -r1.25.2.4 -r1.25.2.5 --- NEWS2001/03/12 19:32:10 1.25.2.4 +++ NEWS2001/04/18 10:45:54 1.25.2.5 @@ -4,6 +4,13 @@ Here is a history of user visible changes to Mailman. +2.0.4 (18-Apr-2001) + +Python 2.1 compatibility release. There were a few questionable +constructs and uses of deprecated modules that caused annoying +warnings when used with Python 2.1. This release quiets those +warnings. + 2.0.3 (12-Mar-2001) Bug fix release. There was a small typo in 2.0.2 in ListAdmin.py Index: Mailman/HTMLFormatter.py === RCS file: /cvsroot/mailman/mailman/Mailman/HTMLFormatter.py,v retrieving revision 1.50 retrieving revision 1.50.2.1 diff -u -r1.50 -r1.50.2.1 --- Mailman/HTMLFormatter.py2000/09/09 19:13:58 1.50 +++ Mailman/HTMLFormatter.py2001/04/18 04:33:48 1.50.2.1 @@ -1,4 +1,4 @@ -# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc. +# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -19,14 +19,14 @@ import os -# XXX: should be converted to use re module -import regsub import string -import mm_cfg -import Utils -from htmlformat import * +import re +from Mailman import mm_cfg +from Mailman import Utils +from Mailman.htmlformat import * + class HTMLFormatter: def InitVars(self): @@ -330,7 +330,7 @@ def ParseTags(self, template, replacements): text = self.SnarfHTMLTemplate(template) - parts = regsub.splitx(text, ']*>') + parts = re.split('(]*>)', text) i = 1 while i < len(parts): tag = string.lower(parts[i]) Index: Mailman/Utils.py === RCS file: /cvsroot/mailman/mailman/Mailman/Utils.py,v retrieving revision 1.104 retrieving revision 1.104.2.2 diff -u -r1.104 -r1.104.2.2 --- Mailman/Utils.py2000/11/16 21:43:11 1.104 +++ Mailman/Utils.py2001/04/18 04:23:07 1.104.2.2 @@ -1,4 +1,4 @@ -# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc. +# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -29,8 +29,6 @@ import re from UserDict import UserDict from types import StringType -# XXX: obsolete, should use re module -import regsub import random import urlparse @@ -415,19 +413,8 @@ def QuoteHyperChars(str): -arr = regsub.splitx(str, '[<>"&]') -i = 1 -while i < len(arr): - if arr[i] == '<': - arr[i] = '<' - elif arr[i] == '>': - arr[i] = '>' - elif arr[i] == '"': - arr[i] = '"' - else: #if arr[i] == '&': - arr[i] = '&' - i = i + 2 -return string.join(arr, '') +from cgi import escape +return escape(str, quote=1) Index: Mailman/Version.py === RCS file: /cvsroot/mailman/mailman/Mailman/Version.py,v retrieving revision 1.20.2.3 retrieving revision 1.20.2.4 diff -u -r1.20.2.3 -r1.20.2.4 --- Mailman/Version.py 2001/03/07 2
[Mailman-Developers] remove
- Original Message - From: Barry A. Warsaw <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, April 18, 2001 2:12 PM Subject: [Mailman-Announce] ANNOUNCE Mailman 2.0.4 > > Folks, > > I've just released Mailman 2.0.4 which is simply a patch release so > that Mailman works better with Python 2.1. Mailman 2.0.3 had a few > constructs which caused warnings when run with Python 2.1. The > unfortunate part is that those warnings could occur in the qrunner > process which tended to cause cron to bombard the system > administrators with email. If you upgrade your Python to 2.1, you > should definitely upgrade to Mailman 2.0.4, otherwise consider it > optional. > > As usual, I'm releasing this as both a complete tarball and as a patch > against Mailman 2.0.3. You /must/ update your source to 2.0.3 before > applying the 2.0.4 patch. Since the patch is small, I'm including it > in this message. To apply, cd into your 2.0.4 source tree and apply > it like so: > > % patch -p0 < mailman-2.0.3-2.0.4.txt > > Currently both http://mailman.sourceforge.net and http://www.list.org > are updated, and I expect the gnu.org site to be updated soon as > well. The release information on SF is at > > http://sourceforge.net/project/shownotes.php?release_id=31693 > > See also > > http://www.gnu.org/software/mailman > http://www.list.org > http://mailman.sourceforge.net > > Enjoy, > -Barry > > [From the NEWS file] > > 2.0.4 (18-Apr-2001) > > Python 2.1 compatibility release. There were a few questionable > constructs and uses of deprecated modules that caused annoying > warnings when used with Python 2.1. This release quiets those > warnings. > > > Index: NEWS > === > RCS file: /cvsroot/mailman/mailman/NEWS,v > retrieving revision 1.25.2.4 > retrieving revision 1.25.2.5 > diff -u -r1.25.2.4 -r1.25.2.5 > --- NEWS 2001/03/12 19:32:10 1.25.2.4 > +++ NEWS 2001/04/18 10:45:54 1.25.2.5 > @@ -4,6 +4,13 @@ > > Here is a history of user visible changes to Mailman. > > +2.0.4 (18-Apr-2001) > + > +Python 2.1 compatibility release. There were a few questionable > +constructs and uses of deprecated modules that caused annoying > +warnings when used with Python 2.1. This release quiets those > +warnings. > + > 2.0.3 (12-Mar-2001) > > Bug fix release. There was a small typo in 2.0.2 in ListAdmin.py > Index: Mailman/HTMLFormatter.py > === > RCS file: /cvsroot/mailman/mailman/Mailman/HTMLFormatter.py,v > retrieving revision 1.50 > retrieving revision 1.50.2.1 > diff -u -r1.50 -r1.50.2.1 > --- Mailman/HTMLFormatter.py 2000/09/09 19:13:58 1.50 > +++ Mailman/HTMLFormatter.py 2001/04/18 04:33:48 1.50.2.1 > @@ -1,4 +1,4 @@ > -# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc. > +# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc. > # > # This program is free software; you can redistribute it and/or > # modify it under the terms of the GNU General Public License > @@ -19,14 +19,14 @@ > > > import os > -# XXX: should be converted to use re module > -import regsub > import string > -import mm_cfg > -import Utils > -from htmlformat import * > +import re > > +from Mailman import mm_cfg > +from Mailman import Utils > +from Mailman.htmlformat import * > > + > > class HTMLFormatter: > def InitVars(self): > @@ -330,7 +330,7 @@ > > def ParseTags(self, template, replacements): > text = self.SnarfHTMLTemplate(template) > - parts = regsub.splitx(text, ']*>') > + parts = re.split('(]*>)', text) > i = 1 > while i < len(parts): > tag = string.lower(parts[i]) > Index: Mailman/Utils.py > === > RCS file: /cvsroot/mailman/mailman/Mailman/Utils.py,v > retrieving revision 1.104 > retrieving revision 1.104.2.2 > diff -u -r1.104 -r1.104.2.2 > --- Mailman/Utils.py 2000/11/16 21:43:11 1.104 > +++ Mailman/Utils.py 2001/04/18 04:23:07 1.104.2.2 > @@ -1,4 +1,4 @@ > -# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc. > +# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc. > # > # This program is free software; you can redistribute it and/or > # modify it under the terms of the GNU General Public License > @@ -29,8 +29,6 @@ > import re > from UserDict import UserDict > from types import StringType > -# XXX: obsolete, should use re module > -import regsub > import random > import urlparse > > @@ -415,19 +413,8 @@ > > > def QuoteHyperChars(str): > -arr = regsub.splitx(str, '[<>"&]') > -i = 1 > -while i < len(arr): > - if arr[i] == '<': > - arr[i] = '<' > - elif arr[i] == '>': > - arr[i] = '>' > - elif arr[i] == '"': > - arr[i] = '"' > - else:
Re: [Mailman-Developers] (no subject)
I keep on getting duplicates of messages sent to this list. I'm replying to one of them now. I don't get duplicates of all messages just certain ones. Is anyone else getting duplicates of messages? I can put together a list of all of the duplicates I've gotten recently if anyone is interested. -Ben --- Original Copy --- >Subject: [Mailman-Developers] (no subject) >Date: 04/18/2001 4:30 PM >From: "Vassil " <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Hello! I have a big problem with my video card. It is Nvidia ge Force 2 >MX and I can't run Linux with it! What should I do? Is there any way ? >- >Free mail from www.dir.bg! > >___ >Mailman-Developers mailing list >[EMAIL PROTECTED] >http://mail.python.org/mailman/listinfo/mailman-developers > ___ Mailman-Developers mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-developers
Re: [Mailman-Developers] (no subject)
> "BB" == Ben Burnett <[EMAIL PROTECTED]> writes: BB> I can put together a list of all of the duplicates I've gotten BB> recently if anyone is interested. That would be great, but please include all the headers! -Barry ___ Mailman-Developers mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-developers