Author: eric
Date: Sat Nov  6 14:44:05 2010
New Revision: 1032080

URL: http://svn.apache.org/viewvc?rev=1032080&view=rev
Log:
Miscellaneous format and naming typos/enhancements.

Added:
    james/imap/trunk/src/site/xdoc/source-code.xml
      - copied, changed from r1031602, 
james/imap/trunk/src/site/xdoc/source_code.xml
Removed:
    james/imap/trunk/src/site/xdoc/source_code.xml
Modified:
    james/imap/trunk/src/site/xdoc/index.xml

Modified: james/imap/trunk/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/james/imap/trunk/src/site/xdoc/index.xml?rev=1032080&r1=1032079&r2=1032080&view=diff
==============================================================================
--- james/imap/trunk/src/site/xdoc/index.xml (original)
+++ james/imap/trunk/src/site/xdoc/index.xml Sat Nov  6 14:44:05 2010
@@ -30,23 +30,26 @@
   <section name="What Is James IMAP?">
    
     <p>A library providing a flexible codec for IMAP, command processors 
-       and a sample data access layer. In combination with a socket layer,
-       and a mailbox persistence, this library can be used to create an IMAP 
server.</p>
+       and a sample data access layer.</p>
+       
+     <p>In combination with a socket layer, and a mailbox persistence, 
+         this library can be used to create an IMAP server.</p>
 
   </section>
 
   <section name='Status'>
 
-    <p><a 
href='http://james.apache.org/server/rfclist/imap4/rfc2060.txt'>RFC2060</a> is 
functionally complete, tested 
-       and usable. The data access layer is still under optimization on 
performance perspectives. 
-       Database schema and API changes are susceptible to change.</p>
+    <p><a 
href='http://james.apache.org/server/rfclist/imap4/rfc2060.txt'>RFC2060</a> 
+       is functionally complete, tested and usable. The data access layer is 
still 
+       under optimization on performance perspectives. Database schema and API 
changes 
+       are susceptible to change.</p>
 
   </section>
 
   <section name='IMAP in James Server'>
   
     <p><a href='http://james.apache.org/server/3'>JAMES Server 3</a> supports 
IMAP 
-       (using this library). A backport to <a 
href='http://james.apache.org/server/2.3.2'>JAMES 
+       (using this library). A backport to <a 
href='http://james.apache.org/server/2/'>James 
        Server 2.3.2</a> would require a volunteer.</p>
     
   </section>

Copied: james/imap/trunk/src/site/xdoc/source-code.xml (from r1031602, 
james/imap/trunk/src/site/xdoc/source_code.xml)
URL: 
http://svn.apache.org/viewvc/james/imap/trunk/src/site/xdoc/source-code.xml?p2=james/imap/trunk/src/site/xdoc/source-code.xml&p1=james/imap/trunk/src/site/xdoc/source_code.xml&r1=1031602&r2=1032080&rev=1032080&view=diff
==============================================================================
--- james/imap/trunk/src/site/xdoc/source_code.xml (original)
+++ james/imap/trunk/src/site/xdoc/source-code.xml Sat Nov  6 14:44:05 2010
@@ -33,7 +33,7 @@
 
       <p>The source can be checked out anonymously from SVN with the following 
command.</p>
 
-      <code>$ svn checkout http://svn.apache.org/repos/asf/james/imap/trunk 
james-imap</code>
+      <p><code>$ svn checkout http://svn.apache.org/repos/asf/james/imap/trunk 
james-imap</code></p>
     
     </subsection>
 
@@ -41,7 +41,7 @@
 
       <p>Everyone can access the Subversion repository via HTTP, but 
Committers must checkout the Subversion repository via HTTPS.</p>
 
-      <code>$ svn checkout https://svn.apache.org/repos/asf/james/imap/trunk 
james-imap</code>
+      <p><code>$ svn checkout 
https://svn.apache.org/repos/asf/james/imap/trunk james-imap</code></p>
       
     </subsection>
 
@@ -55,25 +55,14 @@
         <img src="images/uml/org.apache.james.imap-withtest-package.png"/>
       </div>
     
-      <p><code>apache-james-imap-api</code> contains the interfaces, 
exceptions and Constants needed by the other projects.</p>
-     
-      <p><code>apache-james-imap-message</code> allows to encode, decode and 
structure the IMAP requests and responses. 
-         It will provide among other the ImapRequestMessage and 
ImapResponseMessage implementation to be processed
-         by the apache-james-imap-processor project.</p>
-    
-      <p><code>apache-james-imap-processor</code> implements the Chain Of 
Responsibility design pattern.
-         ImapRequestMessage and ImapResponder will be passed to the list of 
Processors that 
-         will execute doProcess if applicable.</p>
-         
-      <p><code>apache-james-imap-protocol-tester</code> can be used by other 
projects to test the IMAP 
-         protocol in conjunction with a <a 
href="http://james.apache.org/mailbox";>James mailbox</a>.</p>
-         
     </subsection>
        
     <div style="clear:both; float:none;"/>
     
     <subsection name="James IMAP API - apache-james-imap-api">
     
+      <p><code>apache-james-imap-api</code> contains the interfaces, 
exceptions and Constants needed by the other projects.</p>
+     
       <p>The following diagram represents some key (not all) interfaces of the 
IMAP API project.</p>
     
       <img src="images/uml/org.apache.james.imap.api.png"/>
@@ -82,10 +71,27 @@
     
     <subsection name="James IMAP Message - apache-james-imap-message">
     
+      <p><code>apache-james-imap-message</code> allows to encode, decode and 
structure the IMAP requests and responses.</p>
+      
+      <p>It will provide among other the ImapRequestMessage and 
ImapResponseMessage implementation to be processed
+         by the apache-james-imap-processor project.</p>
+    
     </subsection>
     
     <subsection name="James IMAP Processor - apache-james-imap-processor">
     
+      <p><code>apache-james-imap-processor</code> implements the Chain Of 
Responsibility design pattern.</p>
+      
+      <p>ImapRequestMessage and ImapResponder will be passed to the list of 
Processors that 
+         will execute doProcess if applicable.</p>
+         
+    </subsection>
+    
+    <subsection name="James IMAP Protocol Tester - 
apache-james-imap-protocol-tester">
+    
+      <p><code>apache-james-imap-protocol-tester</code> can be used by other 
projects to test the IMAP 
+         protocol in conjunction with a <a 
href="http://james.apache.org/mailbox";>James mailbox</a>.</p>
+         
     </subsection>
     
   </section>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to