diff options
| author | bwarsaw | 2002-02-23 06:35:58 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-02-23 06:35:58 +0000 |
| commit | 4551a4d0628b640ef720623418b214a8550c2f71 (patch) | |
| tree | 525d64b7d8cc8a286b7e74eef61760c3f0b252fb /bin/convert.py | |
| parent | 9b86a81fa3a38565322e3215935fba2b7240b8d6 (diff) | |
| download | mailman-4551a4d0628b640ef720623418b214a8550c2f71.tar.gz mailman-4551a4d0628b640ef720623418b214a8550c2f71.tar.zst mailman-4551a4d0628b640ef720623418b214a8550c2f71.zip | |
Diffstat (limited to 'bin/convert.py')
| -rw-r--r-- | bin/convert.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/bin/convert.py b/bin/convert.py new file mode 100644 index 000000000..cb3cb46c2 --- /dev/null +++ b/bin/convert.py @@ -0,0 +1,36 @@ +# 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 <mylist> +""" + +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() |
