diff options
author | bwarsaw <> | 2003-12-01 01:36:53 +0000 |
---|---|---|
committer | bwarsaw <> | 2003-12-01 01:36:53 +0000 |
commit | c3949aec991e4497e4bbc748354593c3364b6f60 (patch) | |
tree | 60c0fb1acaa7d5a1e844785d624fbfbf0e9bb8b2 /Mailman/Gui | |
parent | 4d431ab8f7409ad66cbb41f3b6b480d04c6478f8 (diff) | |
download | mailman2-c3949aec991e4497e4bbc748354593c3364b6f60.tar.gz mailman2-c3949aec991e4497e4bbc748354593c3364b6f60.tar.xz mailman2-c3949aec991e4497e4bbc748354593c3364b6f60.zip |
True/False where appropriate.
handleForm(): Close a very minor, potential CSS hole.
Diffstat (limited to 'Mailman/Gui')
-rw-r--r-- | Mailman/Gui/Topics.py | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/Mailman/Gui/Topics.py b/Mailman/Gui/Topics.py index 310d876f..5f6de8d8 100644 --- a/Mailman/Gui/Topics.py +++ b/Mailman/Gui/Topics.py @@ -1,26 +1,33 @@ -# Copyright (C) 2001,2002 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2003 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 # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software +# along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. import re from Mailman import mm_cfg +from Mailman import Utils from Mailman.i18n import _ from Mailman.Logging.Syslog import syslog from Mailman.Gui.GUIBase import GUIBase +try: + True, False +except NameError: + True = 1 + False = 0 + class Topics(GUIBase): @@ -88,7 +95,7 @@ class Topics(GUIBase): # We start i at 1 and keep going until we no longer find items keyed # with the marked tags. i = 1 - while 1: + while True: deltag = 'topic_delete_%02d' % i boxtag = 'topic_box_%02d' % i reboxtag = 'topic_rebox_%02d' % i @@ -96,51 +103,45 @@ class Topics(GUIBase): wheretag = 'topic_where_%02d' % i addtag = 'topic_add_%02d' % i newtag = 'topic_new_%02d' % i - i += 1 # Was this a delete? If so, we can just ignore this entry if cgidata.has_key(deltag): continue - # Get the data for the current box name = cgidata.getvalue(boxtag) pattern = cgidata.getvalue(reboxtag) desc = cgidata.getvalue(desctag) - if name is None: # We came to the end of the boxes break - if cgidata.has_key(newtag) and (not name or not pattern): # This new entry is incomplete. doc.addError(_("""Topic specifications require both a name and a pattern. Incomplete topics will be ignored.""")) continue - # Make sure the pattern was a legal regular expression try: re.compile(pattern) except (re.error, TypeError): - doc.addError(_("""The topic pattern `%(pattern)s' is not a + safepattern = Utils.websafe(pattern) + doc.addError(_("""The topic pattern '%(safepattern)s' is not a legal regular expression. It will be discarded.""")) continue - # Was this an add item? if cgidata.has_key(addtag): # Where should the new one be added? where = cgidata.getvalue(wheretag) if where == 'before': # Add a new empty topics box before the current one - topics.append(('', '', '', 1)) - topics.append((name, pattern, desc, 0)) + topics.append(('', '', '', True)) + topics.append((name, pattern, desc, False)) # Default is to add it after... else: - topics.append((name, pattern, desc, 0)) - topics.append(('', '', '', 1)) + topics.append((name, pattern, desc, False)) + topics.append(('', '', '', True)) # Otherwise, just retain this one in the list else: - topics.append((name, pattern, desc, 0)) - + topics.append((name, pattern, desc, False)) # Add these topics to the mailing list object, and deal with other # options. mlist.topics = topics |