Author: niklas
Date: Thu Apr 26 05:22:06 2007
New Revision: 532724

URL: http://svn.apache.org/viewvc?view=rev&rev=532724
Log:
Removed all references to Sourceforge.
Added a note about mvn eclipse:eclipse not generating the .classpath properly 
for the javacc generated sources.

Modified:
    james/mime4j/trunk/src/site/xdoc/index.xml
    james/mime4j/trunk/src/site/xdoc/navigation.xml
    james/mime4j/trunk/src/site/xdoc/start/build.xml
    james/mime4j/trunk/src/site/xdoc/start/download.xml

Modified: james/mime4j/trunk/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/james/mime4j/trunk/src/site/xdoc/index.xml?view=diff&rev=532724&r1=532723&r2=532724
==============================================================================
--- james/mime4j/trunk/src/site/xdoc/index.xml (original)
+++ james/mime4j/trunk/src/site/xdoc/index.xml Thu Apr 26 05:22:06 2007
@@ -27,12 +27,10 @@
     <body>
         <section name="Mime4j">
             <p>
-                <strong>NOTE:</strong> mime4j is now a subproject of 
+                <strong>NOTE:</strong> mime4j is a subproject of 
                 <a href="http://james.apache.org/";>Apache James</a>. Please use
-                the James mailing list for mime4j related questions. We have 
not
-                yet made a release under The Apache Software Fondation 
umbrella.
-                In the mean time downloads of old releases will still be 
available
-                from the sourceforge project page.
+                the <a href="http://james.apache.org/mail.html";>James mailing 
list</a> 
+                for mime4j related questions.
             </p>
             <p> mime4j provides a parser, 
                 <a href="apidocs/org/mime4j/MimeStreamParser.html">

Modified: james/mime4j/trunk/src/site/xdoc/navigation.xml
URL: 
http://svn.apache.org/viewvc/james/mime4j/trunk/src/site/xdoc/navigation.xml?view=diff&rev=532724&r1=532723&r2=532724
==============================================================================
--- james/mime4j/trunk/src/site/xdoc/navigation.xml (original)
+++ james/mime4j/trunk/src/site/xdoc/navigation.xml Thu Apr 26 05:22:06 2007
@@ -25,14 +25,8 @@
     <body>
         <links>
             <item name="Home Page" href="http://www.mime4j.org/"/>
-            <item name="SourceForge Project Page" 
href="http://sourceforge.net/projects/mime4j/"/>
             <item name="Browse Source Code" 
href="http://svn.apache.org/viewcvs.cgi/james/mime4j/trunk/"/>
         </links>        
-        <menu name="Quick Links">
-            <item name="Download" 
href="http://sourceforge.net/project/showfiles.php?group_id=108895"/>
-            <!--<item name="Forums" 
href="http://sourceforge.net/forum/?group_id=108895"/>-->
-            <!--<item name="Mailing Lists" 
href="http://sourceforge.net/mail/?group_id=108895"/>-->
-        </menu>
         <menu name="Overview">
             <!--<item name="Features" href="/features.html"/>-->
             <item name="News and Status" href="/status.html"/>

Modified: james/mime4j/trunk/src/site/xdoc/start/build.xml
URL: 
http://svn.apache.org/viewvc/james/mime4j/trunk/src/site/xdoc/start/build.xml?view=diff&rev=532724&r1=532723&r2=532724
==============================================================================
--- james/mime4j/trunk/src/site/xdoc/start/build.xml (original)
+++ james/mime4j/trunk/src/site/xdoc/start/build.xml Thu Apr 26 05:22:06 2007
@@ -27,20 +27,18 @@
     <body>
         <section name="Building mime4j">
             <subsection name="Using a Stable Release">
-                <p> Go to the <a
-                        
href="http://sourceforge.net/project/showfiles.php?group_id=108895";>
-                        Sourceforge download pages</a> and download the most
-                    recent release in your preferred format, either
-                    <code>mime4j-x.y-src.tar.gz</code> or
-                    <code>mime4j-x.y-src.zip</code>. Extracting the archived
-                    sources will create the directory <code>mime4j-x.y/</code>
-                </p>
+            <p> Go to the <a 
href="http://james.apache.org/download.cgi";>download 
+              pages</a> and download the most recent
+                release in your preferred format, either
+                <code>james-mime4j-x.y-src.tar.gz</code> or 
<code>james-mime4j-x.y-src.zip</code>.
+                Extracting the archived sources will create the directory
+                <code>james-mime4j-x.y/</code>.</p>
             </subsection>
             <subsection name="Checking Out From Subversion">
                 <p>
                     Issue the following commands in a shell:
                     <blockquote>
-                        <code>svn checkout 
http://svn.apache.org/repos/asf/james/mime4k/trunk james-mime4j</code><br/>
+                        <code>svn checkout 
http://svn.apache.org/repos/asf/james/mime4j/trunk james-mime4j</code><br/>
                     </blockquote>
                 </p>
             </subsection>
@@ -63,7 +61,7 @@
             <subsection name="Building the mime4j Jar">
                 <p> Once Maven has been installed, building the project should
                     be as simple as typing <blockquote>
-                        <code>cd mime4j-x.y/ (cd james-mime4j/ if sources come 
from
+                        <code>cd james-mime4j-x.y/ (cd james-mime4j/ if 
sources come from
                             Subversion)<br/>mvn package</code>
                     </blockquote> from the command line. Maven will
                     automatically run all test cases for you and create the
@@ -76,6 +74,14 @@
                 <p>
                     To generate an Eclipse project from the sources run 
<blockquote>
                         <code>mvn eclipse:eclipse</code></blockquote>
+                <p>
+                  <strong>NOTE!</strong> Mime4j uses <a 
href="https://javacc.dev.java.net/";>JavaCC</a> to generate parsers for
+                  header fields. <code>mvn eclipse:eclipse</code> currently 
has problems with 
+                  generating proper source folders for the JavaCC generated 
code.
+                  After running <code>mvn eclipse:eclipse</code> you must 
manually
+                  add <code>target/generated-sources/javacc</code> and 
+                  <code>target/generated-sources/jjtree</code> as source 
folders
+                  under <em>Project -&gt; Properties</em> in Eclipse.
                 </p>
                 <p>
                     For more information on using

Modified: james/mime4j/trunk/src/site/xdoc/start/download.xml
URL: 
http://svn.apache.org/viewvc/james/mime4j/trunk/src/site/xdoc/start/download.xml?view=diff&rev=532724&r1=532723&r2=532724
==============================================================================
--- james/mime4j/trunk/src/site/xdoc/start/download.xml (original)
+++ james/mime4j/trunk/src/site/xdoc/start/download.xml Thu Apr 26 05:22:06 2007
@@ -26,13 +26,12 @@
     </properties>
     <body>
         <section name="Downloading mime4j">
-            <p> Go to the <a
-                    
href="http://sourceforge.net/project/showfiles.php?group_id=108895";>
-                    Sourceforge download pages</a> and download the most recent
+            <p> Go to the <a 
href="http://james.apache.org/download.cgi";>download 
+              pages</a> and download the most recent
                 release in your preferred format, either
-                <code>mime4j-x.y.tar.gz</code> or <code>mime4j-x.y.zip</code>.
-                Extracting the archived sources will create the directory
-                <code>mime4j-x.y/</code> which contains the mime4j jar file and
+                <code>james-mime4j-x.y.tar.gz</code> or 
<code>james-mime4j-x.y.zip</code>.
+                Extracting the archive will create the directory
+                <code>james-mime4j-x.y/</code> which contains the mime4j jar 
file and
                 the API docs.</p>
         </section>
     </body>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to