From b132a73f15e432eaf43310fce9196ca0c0651465 Mon Sep 17 00:00:00 2001 From: <> Date: Thu, 2 Jan 2003 05:25:50 +0000 Subject: This commit was manufactured by cvs2svn to create branch 'Release_2_1-maint'. --- bin/convert.py | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 bin/convert.py (limited to 'bin/convert.py') diff --git a/bin/convert.py b/bin/convert.py new file mode 100644 index 00000000..24951b5e --- /dev/null +++ b/bin/convert.py @@ -0,0 +1,44 @@ +#! @PYTHON@ +# +# Copyright (C) 2002 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 +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +"""Convert a list's interpolation strings from %-strings to $-strings. + +This script is intended to be run as a bin/withlist script, i.e. + +% bin/withlist -l -r convert +""" + +import paths +from Mailman import Utils +from Mailman.i18n import _ + +def convert(mlist): + for attr in ('msg_header', 'msg_footer', 'digest_header', 'digest_footer', + 'autoresponse_postings_text', 'autoresponse_admin_text', + 'autoresponse_request_text'): + s = getattr(mlist, attr) + t = Utils.to_dollar(s) + setattr(mlist, attr, t) + mlist.use_dollar_strings = 1 + print _('Saving list') + mlist.Save() + + + +if __name__ == '__main__': + print _(__doc__.replace('%', '%%')) -- cgit v1.2.3