------------------------------------------------------------
revno: 6651
committer: Barry Warsaw <[email protected]>
branch nick: 3.0
timestamp: Thu 2009-01-01 18:36:33 -0500
message:
  * Update NEWS.txt and ALPHA.txt
  * Change setup.py to use gettext's msgfmt command
  * Fix typo
modified:
  docs/ALPHA.txt
  docs/NEWS.txt
  mailman/pipeline/docs/digests.txt
  setup.py

=== modified file 'docs/ALPHA.txt'
--- a/docs/ALPHA.txt    2009-01-01 22:40:46 +0000
+++ b/docs/ALPHA.txt    2009-01-01 23:36:33 +0000
@@ -5,9 +5,10 @@
 ALPHA RELEASE
 
     The Mailman 3 alpha releases are being provided to give developers and
-    other interested people early looks at the next major version.  As such,
-    many things may not work yet.  Your feedback and contributions are
-    welcome.  Bug reports are welcome on the Mailman bug tracker at
+    other interested people an early look at the next major version.  As such,
+    many things may not work yet.  Your participation is encouraged.  Your
+    feedback and contributions are welcome.  Please submit bug reports on the
+    Mailman bug tracker at
 
     https://bugs.launchpad.net/mailman
 
@@ -35,6 +36,10 @@
     line under the [buildout] section.  Change the path to the megamerge
     package to point to the location of your checked out branch above.
 
+    You will need the gettext package (specifically, the msgfmt(1) command) in
+    order to build the I18N message catalogs.  If you're missing this command,
+    it is known that the digests.txt test will fail.
+
     You do not need anything other than Python 2.6 and an internet connection
     to get all the other Mailman 3 dependencies.  Here are the commands to
     build everything:

=== modified file 'docs/NEWS.txt'
--- a/docs/NEWS.txt     2009-01-01 22:40:46 +0000
+++ b/docs/NEWS.txt     2009-01-01 23:36:33 +0000
@@ -7,6 +7,49 @@
 3.0 alpha 2 -- "Grand Designs"
 (XX-XXX-200X)
 
+  Licensing
+
+    - Mailman 3 is now licensed under the GPLv3.
+
+  Bug fixes
+
+    - Changed bin/arch to attempt to open the mbox before wiping the old
+      archive. Launchpad bug #280418.
+
+    - Added digest.mbox and pending.pck to the 'list' files checked by
+      check_perms. Launchpad bug #284802.
+
+  Architecture
+
+    - Converted to using zope.testing as the test infrastructure.  Use bin/test
+      now to run the full test suite.
+      <http://pypi.python.org/pypi/zope.testing/3.7.1>
+
+    - Partially converted to using lazr.config as the new configuration
+      regime.  Not everything has been converted yet, so some manual editing
+      of mailman/Defaults.py is required.  This will be rectified in future
+      versions.  <http://launchpad.net/lazr.config>
+
+    - All web-related stuff is moved to its own directory, effectively moving
+      it out of the way for now.
+
+    - The email command infrastructure has been reworked to play more nicely
+      with the plug-in architecture.  Not all commands have yet been
+      converted.
+
+    - Support added for a local MHonArc archiver, as well as archiving
+      automatically in the remote Mail-Archive.com service.
+
+    - The permalink proposal for supporting RFC 5064 has been adopted.
+
+  Installation
+
+    - Python 2.6 is the minimal requirement.
+
+    - Converted to using zc.buildout as the build infrastructure.  See
+      docs/ALPHA.txt for details.
+      <http://pypi.python.org/pypi/zc.buildout/1.1.1>
+
 
 3.0 alpha 1 -- "Leave That Thing Alone"
 (08-Apr-2008)

=== modified file 'mailman/pipeline/docs/digests.txt'
--- a/mailman/pipeline/docs/digests.txt 2008-12-26 04:57:07 +0000
+++ b/mailman/pipeline/docs/digests.txt 2009-01-01 23:36:33 +0000
@@ -402,7 +402,7 @@
 -------------------------
 
 When messages come in with a content-type character set different than that of
-the list's preferred language, recipients wil get an internationalized
+the list's preferred language, recipients will get an internationalized
 digest.  French is not enabled by default site-wide, so enable that now.
 
     >>> config.languages.enable_language('fr')

=== modified file 'setup.py'
--- a/setup.py  2008-12-26 04:57:07 +0000
+++ b/setup.py  2009-01-01 23:36:33 +0000
@@ -52,7 +52,7 @@
         if (not os.path.exists(mo_file) or
             os.path.getmtime(po_file) > os.path.getmtime(mo_file)):
             # The mo file doesn't exist or is older than the po file.
-            os.system('bin/msgfmt.py -o %s %s' % (mo_file, po_file))
+            os.system('msgfmt -o %s %s' % (mo_file, po_file))
 
 
 



--
Primary development focus
https://code.launchpad.net/~mailman-coders/mailman/3.0

You are receiving this branch notification because you are subscribed to it.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to