You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mime4j-dev@james.apache.org by ol...@apache.org on 2009/02/07 19:24:25 UTC

svn commit: r741927 - in /james/mime4j/trunk: RELEASE_NOTES.txt src/site/xdoc/samples.xml

Author: olegk
Date: Sat Feb  7 18:24:24 2009
New Revision: 741927

URL: http://svn.apache.org/viewvc?rev=741927&view=rev
Log:
Updated 0.6 release notes and added more samples

Modified:
    james/mime4j/trunk/RELEASE_NOTES.txt
    james/mime4j/trunk/src/site/xdoc/samples.xml

Modified: james/mime4j/trunk/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/james/mime4j/trunk/RELEASE_NOTES.txt?rev=741927&r1=741926&r2=741927&view=diff
==============================================================================
--- james/mime4j/trunk/RELEASE_NOTES.txt (original)
+++ james/mime4j/trunk/RELEASE_NOTES.txt Sat Feb  7 18:24:24 2009
@@ -1,9 +1,13 @@
 Release 0.6
 -------------------
 
-Detailed change log can be found here:
+Mime4J is a flexible MIME parsing library written in Java. SAX, DOM and pull parsing styles are 
+supported.
 
-http://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310521&styleName=Html&version=12313434
+The 0.6 release brings another round of API enhancements and performace optimizations. There has 
+been a number of notable improvements in the DOM support. MIME stream parser is expected to be
+50% faster when line counting is disabled. Please also note that as of this release requires 
+Java 1.5 compatible runtime.
 
 Notes
 -----
@@ -31,6 +35,11 @@
    [https://issues.apache.org/jira/browse/MIME4J-83]
  * Temporary text body storage for Message parts now defaults to US-ASCII (was ISO-8859-1)
 
+Detailed change log can be found here:
+
+http://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310521&styleName=Html&version=12313434
+
+
 Release 0.5
 -------------------
 

Modified: james/mime4j/trunk/src/site/xdoc/samples.xml
URL: http://svn.apache.org/viewvc/james/mime4j/trunk/src/site/xdoc/samples.xml?rev=741927&r1=741926&r2=741927&view=diff
==============================================================================
--- james/mime4j/trunk/src/site/xdoc/samples.xml (original)
+++ james/mime4j/trunk/src/site/xdoc/samples.xml Sat Feb  7 18:24:24 2009
@@ -52,6 +52,24 @@
                             you want the study the structure of MIME messages.
                             </td>
                     </tr>
+                    <tr>
+                        <td>
+                            <code>org.apache.james.mime4j.samples.transform.TransformMessage</code>
+                        </td>
+                        <td>Illustrate how to transform a message into another message without 
+                            modifying the original.
+                        </td>
+                    </tr>
+                    <tr>
+                        <td>
+                            <code>org.apache.james.mime4j.samples.dom.TextPlainMessage</code>
+                        </td>
+                        <td>Illustrate the use of mime4j DOM API. This example generates a message 
+                        very similar to the one from 
+                        <a href="http://www.rfc-editor.org/rfc/rfc5322.txt">RFC 5322</a>
+                        Appendix A.1.1.
+                        </td>
+                    </tr>
                <!--      <tr>
                         <td>
                             <code>org.apache.james.mime4j.samples.sax.Mime2Sax</code>