Release preparation:

* updated some version information
This commit is contained in:
lars 2008-09-22 21:30:22 +00:00
parent e2e370747f
commit cd30c44a7f
8 changed files with 22 additions and 13 deletions

4
README
View file

@ -1,5 +1,5 @@
================= =================
| ezmlm-web-3.2 | | ezmlm-web-3.3 |
================= =================
$Id$ $Id$
@ -195,7 +195,7 @@ VI. Acknowledgements
Slovenian Slovenian
* Carlinhos Cecconi - added the translation for Portugues do Brasil * Carlinhos Cecconi - added the translation for Portugues do Brasil
* Hans F. Nordhaug - fixed MANIFEST file and reported typos * Hans F. Nordhaug - fixed MANIFEST file and reported typos
* Jose Luis Martinez - added the Spanish translation * Jose Luis Martinez - various code improvements; added the Spanish translation
* Anton Ponkratov - added the Russian translation * Anton Ponkratov - added the Russian translation

View file

@ -10,9 +10,9 @@ UPGRADING ezmlm-web 3.2 to ezmlm-web 3.3
The admin has to add ALLOW_CREATE or user-specific permissions to the The admin has to add ALLOW_CREATE or user-specific permissions to the
webusers file, to allow changes to mailing lists otherwise no changes are webusers file, to allow changes to mailing lists otherwise no changes are
allowed. If you have ezmlm-web running already, a webusers file has already allowed. If you have ezmlm-web running already, a webusers file has already
been created for you. This change should just affect setups that let a list been created for you (this was actually a bug - see issue #51 in the bug
be created in a directory where there are no explicit permissions (more than database).
one domain or multiple user directories) This change should not have any negative impact on working installations.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------

View file

@ -1,3 +1,12 @@
Version 3.3 - 09/30/02007
* added Spanish translation contributed by CAPSiDE
* improve parsing of subscription log (Closes: #43)
* add posting model for moderated subscriber-only lists (Closes: #49)
* fix a bug in the authorization code regarding lower/uppercase
* add configuration of blacklisted interface options
* add gnupg keyring management
* add Ezmlm-gpg support (beta!)
Version 3.2 - 08/15/02007 Version 3.2 - 08/15/02007
* support for multi-domain setups (multiple list directories) * support for multi-domain setups (multiple list directories)
* detect preferred interface language * detect preferred interface language
@ -56,7 +65,7 @@ Version 3.0.1 - 01/06/02006
Version 3.0 - 12/25/02005 Version 3.0 - 12/25/02005
* complete interface rewritten for enhanced usability * complete interface rewritten for enhanced usability
* suppurt for msgsize, mimereject, trailer * support for msgsize, mimereject, trailer
* fixed insecure writing of webusers data * fixed insecure writing of webusers data
* define a default MAIL_DOMAIN * define a default MAIL_DOMAIN
* changed directory for safely removed mailinglists * changed directory for safely removed mailinglists

View file

@ -1,4 +1,4 @@
# Configuration file for ezmlm-web 3.2 # Configuration file for ezmlm-web 3.3
# =========================================================================== # ===========================================================================
# This file is not just an ordinary configuration file - it contains valid # This file is not just an ordinary configuration file - it contains valid

View file

@ -1,4 +1,4 @@
# Minimal configuration file for ezmlm-web 3.2 # Minimal configuration file for ezmlm-web 3.3
# =========================================================================== # ===========================================================================
# This file is not just an ordinary configuration file - it contains valid # This file is not just an ordinary configuration file - it contains valid

View file

@ -1,6 +1,6 @@
#!/usr/bin/perl #!/usr/bin/perl
#=========================================================================== #===========================================================================
# ezmlm-web.cgi - version 3.2 # ezmlm-web.cgi - version 3.3
# $Id$ # $Id$
# #
# This file is part of ezmlm-web. # This file is part of ezmlm-web.
@ -8,7 +8,7 @@
# All user configuration happens in the config file ``ezmlmwebrc'' # All user configuration happens in the config file ``ezmlmwebrc''
# POD documentation is at the end of this file # POD documentation is at the end of this file
# #
# Copyright (C) 2005-2007, Lars Kruse, All Rights Reserved. # Copyright (C) 2005-2008, Lars Kruse, All Rights Reserved.
# #
# ezmlm-web is distributed under a BSD-style license. Please refer to # ezmlm-web is distributed under a BSD-style license. Please refer to
# the copyright file included with the release for details. # the copyright file included with the release for details.
@ -69,7 +69,7 @@ $UID = $EUID;
$GID = $EGID; $GID = $EGID;
my $VERSION; my $VERSION;
$VERSION = '3.2'; $VERSION = '3.3';
my $q = new CGI; my $q = new CGI;
$q->import_names('Q'); $q->import_names('Q');

View file

@ -1,6 +1,6 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ezmlm-web 3.2\n" "Project-Id-Version: ezmlm-web 3.3\n"
"Report-Msgid-Bugs-To: devel@sumpfralle.de\n" "Report-Msgid-Bugs-To: devel@sumpfralle.de\n"
"POT-Creation-Date: 2008-08-25 03:13+0200\n" "POT-Creation-Date: 2008-08-25 03:13+0200\n"
"PO-Revision-Date: 2008-07-09 17:30+0200\n" "PO-Revision-Date: 2008-07-09 17:30+0200\n"

View file

@ -144,7 +144,7 @@ def generate_po_files(hdf_file, po_dir, textDomain):
sys.stdout.write("Creating: %s\n" % pot_file) sys.stdout.write("Creating: %s\n" % pot_file)
pot = translate.storage.po.pofile(encoding="utf-8") pot = translate.storage.po.pofile(encoding="utf-8")
pot.makeheader(pot_creation_date=True) pot.makeheader(pot_creation_date=True)
pot.updateheader(add=True, Project_Id_Version='ezmlm-web 3.2', pot_creation_date=True, language_team='Lars Kruse <%s>' % MAIL_ADDRESS, Report_Msgid_Bugs_To=MAIL_ADDRESS, encoding='utf-8', Plural_Forms=['nplurals=2','plural=(n != 1)']) pot.updateheader(add=True, Project_Id_Version='ezmlm-web 3.3', pot_creation_date=True, language_team='Lars Kruse <%s>' % MAIL_ADDRESS, Report_Msgid_Bugs_To=MAIL_ADDRESS, encoding='utf-8', Plural_Forms=['nplurals=2','plural=(n != 1)'])
#TODO: somehow we need 'updateheaderplural' #TODO: somehow we need 'updateheaderplural'
else: else:
sys.stdout.write("Loading: %s\n" % pot_file) sys.stdout.write("Loading: %s\n" % pot_file)