You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/01/23 22:35:40 UTC

svn commit: r371678 - in /maven/maven-1/core/trunk/xdocs: about/ contributing/ developers/ development/ errors/ reference/ reference/ide/ start/ using/

Author: ltheussl
Date: Mon Jan 23 13:35:34 2006
New Revision: 371678

URL: http://svn.apache.org/viewcvs?rev=371678&view=rev
Log:
Make xdocs validate

Modified:
    maven/maven-1/core/trunk/xdocs/about/features.xml
    maven/maven-1/core/trunk/xdocs/about/whatismaven.xml
    maven/maven-1/core/trunk/xdocs/contributing/help.xml
    maven/maven-1/core/trunk/xdocs/contributing/patches.xml
    maven/maven-1/core/trunk/xdocs/developers/apache.xml
    maven/maven-1/core/trunk/xdocs/developers/building-from-source.xml
    maven/maven-1/core/trunk/xdocs/development/deprecation.xml
    maven/maven-1/core/trunk/xdocs/development/distributions.xml
    maven/maven-1/core/trunk/xdocs/development/release-process.xml
    maven/maven-1/core/trunk/xdocs/errors/404.xml
    maven/maven-1/core/trunk/xdocs/reference/articles.xml
    maven/maven-1/core/trunk/xdocs/reference/backwards-compatibility.xml
    maven/maven-1/core/trunk/xdocs/reference/conventions.xml
    maven/maven-1/core/trunk/xdocs/reference/glossary.xml
    maven/maven-1/core/trunk/xdocs/reference/ide/idea.xml
    maven/maven-1/core/trunk/xdocs/reference/ide/index.xml
    maven/maven-1/core/trunk/xdocs/reference/internal-repositories.xml
    maven/maven-1/core/trunk/xdocs/reference/properties.xml
    maven/maven-1/core/trunk/xdocs/reference/repository-upload.xml
    maven/maven-1/core/trunk/xdocs/reference/sharing-plugins.xml
    maven/maven-1/core/trunk/xdocs/start/download.xml
    maven/maven-1/core/trunk/xdocs/start/install.xml
    maven/maven-1/core/trunk/xdocs/start/maven-for-ant-users.xml
    maven/maven-1/core/trunk/xdocs/start/quick-start.xml
    maven/maven-1/core/trunk/xdocs/start/release-notes-1.1-beta-2.xml
    maven/maven-1/core/trunk/xdocs/start/release-notes-LATEST.xml
    maven/maven-1/core/trunk/xdocs/using/bestpractices.xml
    maven/maven-1/core/trunk/xdocs/using/developing-plugins.xml

Modified: maven/maven-1/core/trunk/xdocs/about/features.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/about/features.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/about/features.xml (original)
+++ maven/maven-1/core/trunk/xdocs/about/features.xml Mon Jan 23 13:35:34 2006
@@ -20,10 +20,10 @@
 <document>
 
   <properties>
+    <title>Feature Summary</title>
     <author email="pete-apache-dev@kazmier.com">Pete Kazmier</author>
     <author email="jason@zenplex.com">Jason van Zyl</author>
     <author email="brett@apache.org">Brett Porter</author>
-    <title>Feature Summary</title>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/about/whatismaven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/about/whatismaven.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/about/whatismaven.xml (original)
+++ maven/maven-1/core/trunk/xdocs/about/whatismaven.xml Mon Jan 23 13:35:34 2006
@@ -20,10 +20,10 @@
 <document>
 
   <properties>
+    <title>What is Maven?</title>
     <author email="pete-apache-dev@kazmier.com">Pete Kazmier</author>
     <author email="jason@zenplex.com">Jason van Zyl</author>
     <author email="brett@apache.org">Brett Porter</author>
-    <title>What is Maven?</title>
   </properties>
 
   <body>
@@ -52,6 +52,7 @@
         complete state of a development effort in the shortest period of
         time. In order to attain this goal there are several areas of concern
         that Maven attempts to deal with:
+      </p>
         <ul>
           <li>Making the build process easy</li>
           <li>Providing a uniform build system</li>
@@ -59,7 +60,6 @@
           <li>Providing guidelines for best practices development</li>
           <li>Allowing transparent migration to new features</li>
         </ul>
-      </p>
 
       <subsection name="Making the build process easy">
         <p>
@@ -87,7 +87,6 @@
           sources. For example, Maven can provide:
         </p>
 
-        <p>
           <ul>
             <li>Change log document created directly from source control.</li>
             <li>Cross referenced sources</li>
@@ -95,7 +94,6 @@
             <li>Dependency list</li>
             <li>Unit test reports including coverage</li>
           </ul>
-        </p>
 
         <p>
           As Maven improves the information set provided will improve, all of
@@ -118,13 +116,13 @@
           For example, specification, execution, and reporting of unit tests are part of
           the normal build cycle using Maven.
           Current unit testing best practices were used as guidelines:
+        </p>
           <ul>
             <li>Keeping your test source code in a separate, but parallel source tree</li>
             <li>Using test case naming conventions to locate and execute tests</li>
             <li>Have test cases setup their environment and don't rely on customizing the build 
                 for test preparation.</li>
           </ul>
-        </p>
         <p>
           Maven also aims to assist in project workflow such as release management and
           issue tracking.
@@ -151,12 +149,12 @@
     <section name="What is Maven Not?">
       <p>
         You may have heard some of the following things about Maven:
+      </p>
         <ul>
           <li>Maven is a site and documentation tool</li>
           <li>Maven extends Ant to let you download dependencies</li>
           <li>Maven is a set of reusable Ant scriptlets</li>
         </ul>
-      </p>
       <p>
         While Maven does these things, as you can read above in the "What is Maven?" section,
         these are not the only features Maven has, and it's objectives are quite different.

Modified: maven/maven-1/core/trunk/xdocs/contributing/help.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/contributing/help.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/contributing/help.xml (original)
+++ maven/maven-1/core/trunk/xdocs/contributing/help.xml Mon Jan 23 13:35:34 2006
@@ -20,8 +20,8 @@
 <document>
 
   <properties>
-    <author email="brett@apache.org">Brett Porter</author>
     <title>How to Help</title>
+    <author email="brett@apache.org">Brett Porter</author>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/contributing/patches.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/contributing/patches.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/contributing/patches.xml (original)
+++ maven/maven-1/core/trunk/xdocs/contributing/patches.xml Mon Jan 23 13:35:34 2006
@@ -20,8 +20,8 @@
 <document>
 
   <properties>
-    <author email="brett@apache.org">Brett Porter</author>
     <title>Submitting Patches</title>
+    <author email="brett@apache.org">Brett Porter</author>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/developers/apache.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/developers/apache.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/developers/apache.xml (original)
+++ maven/maven-1/core/trunk/xdocs/developers/apache.xml Mon Jan 23 13:35:34 2006
@@ -20,8 +20,8 @@
 <document>
 
   <properties>
-    <author email="brett@apache.org">Brett Porter</author>
     <title>Apache Resources</title>
+    <author email="brett@apache.org">Brett Porter</author>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/developers/building-from-source.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/developers/building-from-source.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/developers/building-from-source.xml (original)
+++ maven/maven-1/core/trunk/xdocs/developers/building-from-source.xml Mon Jan 23 13:35:34 2006
@@ -20,9 +20,9 @@
 <document>
 
   <properties>
+    <title>Building Maven from Source</title>
     <author email="pete-apache-dev@kazmier.com">Pete Kazmier</author>
     <author email="brett@apache.org">Brett Porter</author>
-    <title>Building Maven from Source</title>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/development/deprecation.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/development/deprecation.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/development/deprecation.xml (original)
+++ maven/maven-1/core/trunk/xdocs/development/deprecation.xml Mon Jan 23 13:35:34 2006
@@ -36,7 +36,7 @@
  </section>
  
  <section name="The Rules">
-<p>
+
 <ol>
 <li>
 <strong>ALL</strong> existing class and method modification needs to go
@@ -101,7 +101,6 @@
 
 </ol>
 
-</p>
 
  </section>
  <section name="Developers: Suggestions for following The Rules">
@@ -115,7 +114,6 @@
  the following guidelines:
  </p>
  
- <p>
     <ul>
         <li>
         When modifying an existing public or protected method or class
@@ -143,7 +141,6 @@
         their existing databases easily.
         </li>
     </ul>
- </p>
  </section>
 
  </body>

Modified: maven/maven-1/core/trunk/xdocs/development/distributions.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/development/distributions.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/development/distributions.xml (original)
+++ maven/maven-1/core/trunk/xdocs/development/distributions.xml Mon Jan 23 13:35:34 2006
@@ -20,8 +20,8 @@
 <document>
 
   <properties>
-    <author email="jason@zenplex.com">Jason van Zyl</author>
     <title>Distributions</title>
+    <author email="jason@zenplex.com">Jason van Zyl</author>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/development/release-process.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/development/release-process.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/development/release-process.xml (original)
+++ maven/maven-1/core/trunk/xdocs/development/release-process.xml Mon Jan 23 13:35:34 2006
@@ -36,6 +36,7 @@
   control modules (Turbine and its dependencies).  For the 2.x
   development path, the module list to consider for tagging consists
   of the following:
+</p>
   <ul>
     <li>jakarta-turbine-2</li>
     <li>jakarta-turbine-fulcrum</li>
@@ -44,7 +45,7 @@
     <li>jakarta-turbine-maven</li>
   </ul>
   <!-- HELP: What about the TDK? -->
-
+<p>
   After tagging the release (or each module), take a few minimal steps
   to assure that the archives are in the expected place and valid.
 

Modified: maven/maven-1/core/trunk/xdocs/errors/404.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/errors/404.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/errors/404.xml (original)
+++ maven/maven-1/core/trunk/xdocs/errors/404.xml Mon Jan 23 13:35:34 2006
@@ -18,8 +18,8 @@
  -->
 <document>
   <properties>
-    <author email="brett@apache.org">Brett Porter</author>
     <title>Page Not Found</title>
+    <author email="brett@apache.org">Brett Porter</author>
   </properties>
 <body>
 <section name="Page Not Found">

Modified: maven/maven-1/core/trunk/xdocs/reference/articles.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/articles.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/articles.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/articles.xml Mon Jan 23 13:35:34 2006
@@ -19,9 +19,9 @@
 
 <document>
   <properties>
+    <title>Articles and Press</title>
     <author email="jason@zenplex.com">Jason van Zyl</author>
     <author email="brett@apache.org">Brett Porter</author>
-    <title>Articles and Press</title>
   </properties>
 
   <body>
@@ -36,7 +36,7 @@
         <tr>
           <td>
            <a href="http://www.oreilly.com/catalog/mavenadn/">Maven: A Developer's Notebook</a>
-           (<a href="http://www.oreilly.com/catalog/mavenadn/chapter/ch01.pdf">Sample Chapter <img src="../images/pdf.gif"/></a>)
+           (<a href="http://www.oreilly.com/catalog/mavenadn/chapter/ch01.pdf">Sample Chapter <img src="../images/pdf.gif" alt="pdf.gif"/></a>)
           </td>
           <td>O'Reilly</td>
           <td>Vincent Massol, Timothy M. O'Brien</td>
@@ -185,7 +185,7 @@
           <td>
             <a href="http://www.pivolis.com/pdf/J2EE_projects_Maven_V1.1.pdf">Building J2EE applications with Maven</a>
             (Slides from TheServerSide Symposium).
-            <img src="../images/pdf.gif"/>
+            <img src="../images/pdf.gif" alt="pdf.gif"/>
           </td>
           <td>TheServerSide</td>
           <td>Vincent Massol</td>
@@ -202,7 +202,7 @@
         <tr>
           <td>
             <a href="http://www.javausergroup.at/events/maven.pdf">The Stairway to Maven</a>
-            <img src="../images/pdf.gif"/>
+            <img src="../images/pdf.gif" alt="pdf.gif"/>
           </td>
           <td></td>
           <td>Siegfried GÖSCHL</td>

Modified: maven/maven-1/core/trunk/xdocs/reference/backwards-compatibility.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/backwards-compatibility.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/backwards-compatibility.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/backwards-compatibility.xml Mon Jan 23 13:35:34 2006
@@ -20,8 +20,8 @@
 <document>
 
   <properties>
-    <author email="brett@apache.org">Brett Porter</author>
     <title>Compatibility Issues</title>
+    <author email="brett@apache.org">Brett Porter</author>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/reference/conventions.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/conventions.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/conventions.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/conventions.xml Mon Jan 23 13:35:34 2006
@@ -20,12 +20,12 @@
 <document>
 
   <properties>
+    <title>Maven Conventions</title>
     <author email="pete-apache-dev@kazmier.com">Pete Kazmier</author>
     <author email="ceki@apache.org">Ceki G&#252;lc&#252;</author>
     <author email="jon@latchkey.com">Jon S. Stevens</author>
     <author email="donaldp@apache.org">Peter Donald</author>
     <author email="brett@apache.org">Brett Porter</author>
-    <title>Maven Conventions</title>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/reference/glossary.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/glossary.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/glossary.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/glossary.xml Mon Jan 23 13:35:34 2006
@@ -20,10 +20,10 @@
 <document>
 
   <properties>
+    <title>Glossary</title>
     <author email="jason@zenplex.com">Jason van Zyl</author>
-    <author>Stéphane Mor</author>
+    <author email="stephanemor@yahoo.fr">Stéphane Mor</author>
     <author email="brett@apache.org">Brett Porter</author>
-    <title>Glossary</title>
   </properties>
 
   <body>

Modified: maven/maven-1/core/trunk/xdocs/reference/ide/idea.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/ide/idea.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/ide/idea.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/ide/idea.xml Mon Jan 23 13:35:34 2006
@@ -73,6 +73,7 @@
       <p>
         There are other tools you might like to set up in a similar fashion. You can quickly do this by pressing the
         "Copy..." button and renaming the new tool. Here are some examples:
+      </p>
         <ul>
           <li>
             As above, but use <code>console</code> as the parameters instead of <code>$Prompt$</code>.
@@ -89,7 +90,6 @@
             select the "context menu" option instead of the "tools menu" option so that you can right-click on
             a file in the navigation pane.</li>
         </ul>
-      </p>
       <p>
         Finally, you might like to set up an output filter. In the external tools dialog, press the
         "Output Filters..." button, and use the following settings:

Modified: maven/maven-1/core/trunk/xdocs/reference/ide/index.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/ide/index.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/ide/index.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/ide/index.xml Mon Jan 23 13:35:34 2006
@@ -28,12 +28,12 @@
     <section name="Using Maven in your IDE">
       <p>
         There are three ways to use Maven with your IDE:
+      </p>
         <ul>
           <li>Integrated into the project support</li>
           <li>As an external tool</li>
           <li>Using Maven to generate your IDE project settings</li>
         </ul>
-      </p>
       <p>
         Support for IDE integration is provided by the <a href="http://mevenide.codehaus.org/">MevenIDE</a>
         project. Currently, they support project editing in NetBeans 4.0+ and Eclipse.
@@ -41,18 +41,18 @@
       <p>
         Using Maven as an external tool is usually quite simple, and allows you to run Maven goals from
         within your IDE. Specific instructions for setting up your IDE are listed here:
+      </p>
         <ul>
           <li><a href="idea.html">IntelliJ IDEA</a></li>
         </ul>
-      </p>
       <p>
         Maven also provides plugins for several IDEs that will generate project files from your Maven
         project descriptor. Please refer to the plugin documentation for your IDE:
+      </p>
         <ul>
           <li><a href="../plugins/idea/">IntelliJ IDEA</a></li>
           <li><a href="../plugins/eclipse/">Eclipse</a></li>
         </ul>
-      </p>
     </section>
   </body>
 </document>

Modified: maven/maven-1/core/trunk/xdocs/reference/internal-repositories.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/internal-repositories.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/internal-repositories.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/internal-repositories.xml Mon Jan 23 13:35:34 2006
@@ -74,8 +74,8 @@
           your project's properties:
         </p>
         <source>maven.repo.remote=http://repository.company.com/
-<i>or</i>
-maven.repo.remote=file:///shared/repository</source>
+        <em>or</em>
+        maven.repo.remote=file:///shared/repository</source>
       </subsection>
       <subsection name="Deploying to the Internal Repository">
         <p>

Modified: maven/maven-1/core/trunk/xdocs/reference/properties.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/properties.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/properties.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/properties.xml Mon Jan 23 13:35:34 2006
@@ -37,6 +37,7 @@
         </p>
         <p>
           The properties files in Maven are processed in the following order:
+        </p>
           <ol>
             <li>Built-in properties are processed</li>
             <li><code>${basedir}/project.properties</code> (<code>basedir</code> is replaced by the directory where the <code>project.xml</code> file in use resides)</li>
@@ -44,7 +45,6 @@
             <li><code>${user.home}/build.properties</code></li>
             <li>System properties</li>
           </ol>
-        </p>
         <p>
           The built-in properties are specified in the <code>plugin.properties</code> file of a plugin, or in
           <code>defaults.properties</code> within Maven itself.

Modified: maven/maven-1/core/trunk/xdocs/reference/repository-upload.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/repository-upload.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/repository-upload.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/repository-upload.xml Mon Jan 23 13:35:34 2006
@@ -20,10 +20,10 @@
 <document>
 
   <properties>
+    <title>Uploading to ibiblio</title>
     <author email="bwalding@apache.org">Ben Walding</author>
     <author email="jason@maven.org">Jason van Zyl</author>    
     <author email="brett@apache.org">Brett Porter</author>    
-    <title>Uploading to ibiblio</title>
   </properties>
 
   <body>
@@ -82,11 +82,11 @@
         </p>
         <p>
           Examples:
+        </p>
           <ul>
             <li>www.springframework.org -> org.springframework</li>
             <li>oness.sf.net -> net.sf.oness</li>
           </ul>
-        </p>
 
         <h4>Maven 2 projects</h4>
         <p>
@@ -104,10 +104,12 @@
           In the description you should write the URL of the upload bundle
           (if you're uploading more than one bundle please add all the urls under the same issue),
           then leave a blank line and provide the following:
+        </p>
           <ul>
             <li>a url where the project can be found.</li>
             <li>if you are one of its developers, a url where your name or email can be found inside the project site.</li>
           </ul>
+        <p>
           This will speed up the uploading process.<br/>
           You can place any additional comments you wish in the following paragraph. So the
           description field might look like:
@@ -154,6 +156,7 @@
         The following sites sync automatically their project repository with the central one.
         If you want a project from any of this sites to be uploaded to ibiblio you'll have to
         contact the project maintainers.
+      </p>
         <ul>
           <li><a href="http://www.apache.org">The Apache Software Foundation</a></li>
           <li><a href="http://www.codehaus.org">Codehaus</a></li>
@@ -161,7 +164,6 @@
           <li><a href="http://www.opensymphony.com/">OpenSymphony</a></li>
           <li><a href="http://www.osjava.org">OS Java</a></li>
         </ul>
-      </p>
     </section>
   </body>
 </document>

Modified: maven/maven-1/core/trunk/xdocs/reference/sharing-plugins.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/sharing-plugins.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/sharing-plugins.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/sharing-plugins.xml Mon Jan 23 13:35:34 2006
@@ -68,6 +68,7 @@
       <subsection name="Step 1. How do I host my Maven plugin?">
         <p>
           To "host" a Maven plugin, you require only two things:
+        </p>
           <ul>
             <li>A place to keep your source code</li>
             <li>A website to deploy the following
@@ -77,7 +78,6 @@
               </ul>
             </li>
           </ul>
-        </p>
         <p>
           There are a variety of options available for each need.  Your source code may simply be kept on your hard
           drive, using a local installation of a version control tool like <a href="http://ximbiot.com/cvs/cvshome/">CVS</a> or
@@ -117,6 +117,7 @@
         <p>
           There are two ways to let your potential users know about your plugin.  The first is through sending an
           announcement to the <code>maven-user</code> mailing list.  Here's a few pointers on how to go about it:
+        </p>
           <ul>
             <li>
               Review an <a href="http://www.mail-archive.com/users@maven.apache.org/msg09117.html">excellent
@@ -130,7 +131,6 @@
             <li>Make sure you've subscribed to the <code>maven-user</code> mailing list.</li>
             <li>Send your annoucement to the <code>maven-user</code> mailing list.</li>
           </ul>
-        </p>
         <p>
           The second way to publicize your plugin is on the Maven site itself.  The Maven project currently maintains a
           list of other sites that host plugins. Simply raise a request in JIRA to have a link added. Be sure to include

Modified: maven/maven-1/core/trunk/xdocs/start/download.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/start/download.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/start/download.xml (original)
+++ maven/maven-1/core/trunk/xdocs/start/download.xml Mon Jan 23 13:35:34 2006
@@ -26,7 +26,7 @@
   </properties>
 
   <head>
-    <style><![CDATA[
+    <style type="text/css"><![CDATA[
       #bodyColumn a.externalLink { background : none; padding-right: 0px }
     ]]></style>
   </head>

Modified: maven/maven-1/core/trunk/xdocs/start/install.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/start/install.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/start/install.xml (original)
+++ maven/maven-1/core/trunk/xdocs/start/install.xml Mon Jan 23 13:35:34 2006
@@ -35,11 +35,11 @@
 
       <p>
         Please refer to the appropriate section for the download you have obtained:
+      </p>
         <ul>
           <li><a href="#Windows_Installer">Windows Installer</a></li>
           <li><a href="#Other_Archives">Other Archives</a></li>
         </ul>
-      </p>
 
       <p>
         The final optional step is to set up a <code>${user.home}/build.properties</code> file
@@ -74,9 +74,10 @@
         </p>
         <p>
           Next, you should create your local repository by running the following command:
+        </p>
           <source><![CDATA[For Windows:
   %MAVEN_HOME%\bin\install_repo.bat %HOMEDRIVE%%HOMEPATH%\.maven\repository]]></source>
-
+        <p>
           <b>Note:</b> This step is optional, but will save downloading several JARs
           a second time.
         </p>
@@ -118,9 +119,10 @@
 
         <p>
           Next, you should create your local repository by running the following command:
+        </p>
           <source><![CDATA[For Unix:
   $MAVEN_HOME/bin/install_repo.sh $HOME/.maven/repository]]></source>
-
+        <p>
           <b>Note:</b> This step is optional, but will save downloading several JARs
           a second time.
         </p>

Modified: maven/maven-1/core/trunk/xdocs/start/maven-for-ant-users.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/start/maven-for-ant-users.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/start/maven-for-ant-users.xml (original)
+++ maven/maven-1/core/trunk/xdocs/start/maven-for-ant-users.xml Mon Jan 23 13:35:34 2006
@@ -136,13 +136,13 @@
         </p>
         <p>
           Some examples of what Maven does in this regard are:
+        </p>
           <ul>
             <li>Standard locations for source files, documentation, and output</li>
             <li>A common layout for project documentation to make finding information easier</li>
             <li>Retrieves project dependencies from a shared storage area, instead of keeping multiple copies of a JAR in CVS</li>
             <li>Encourages the use of a single source directory, but a separate unit test source directory</li>
           </ul>
-        </p>
       </subsection>
       <subsection name="More than the Build - Project Knowledge">
         <p>

Modified: maven/maven-1/core/trunk/xdocs/start/quick-start.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/start/quick-start.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/start/quick-start.xml (original)
+++ maven/maven-1/core/trunk/xdocs/start/quick-start.xml Mon Jan 23 13:35:34 2006
@@ -43,11 +43,11 @@
           Maven will run with sensible defaults, so you can get right into it. However, if you are
           operating under a particularly restrictive environment you might need to prepare to run
           Maven. When Maven first runs it will:
+        </p>
           <ol>
             <li>Expand plugins into a cache directory</li>
             <li>Download additional dependencies for the plugins and project being built</li>
           </ol>
-        </p>
         <p>
           The <a href="../reference/properties.html">Properties Reference</a> explains how to configure Maven to use
           different locations for the cache and download repository. By default, these reside under
@@ -61,6 +61,7 @@
         </p>
         <p>
           This might seem onerous, but remember the following advantages:
+        </p>
           <ul>
             <li>
               All Maven projects (including Maven and its plugins) share the repository, so each dependency is
@@ -77,7 +78,6 @@
               Maven automatically and uniformly handles proxy servers, multiple remote sources and mirrors.
             </li>
           </ul>
-        </p>
         <p>
           Occasionally, some dependencies will not be downloadable because of the distribution license they
           have. These must be downloaded manually and placed into the local repository. This is explained for
@@ -101,6 +101,7 @@
         </p>
         <p>
           The output of this task is in the <code>target</code> directory, as with all Maven output. For example:
+        </p>
           <ul>
             <li><code>target/classes</code> - compiled source classes and resources</li>
             <li><code>target/test-classes</code> - compiled test classes and resources</li>
@@ -108,7 +109,6 @@
             <li><code>target/project-X.Y.Z.jar</code> - the output JAR, built from the <code>target/classes</code>
             directory.</li>
           </ul>
-        </p>
         <p>
           For more information on the JAR plugin, including references for goals and properties,
           see the <a href="../reference/plugins/jar/">jar plugin documentation</a>.

Modified: maven/maven-1/core/trunk/xdocs/start/release-notes-1.1-beta-2.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/start/release-notes-1.1-beta-2.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/start/release-notes-1.1-beta-2.xml (original)
+++ maven/maven-1/core/trunk/xdocs/start/release-notes-1.1-beta-2.xml Mon Jan 23 13:35:34 2006
@@ -61,16 +61,18 @@
 </p>
 <p>
 We hope you enjoy using Maven! If you have any questions, please consult:
+</p>
 <ul>
 <li>the FAQ: <a href="../faq.html">http://maven.apache.org/faq.html</a></li>
 <li> the maven-user mailing list: <a href="../mail-lists.html">http://maven.apache.org/mail-lists.html</a></li>
 </ul>
-</p><p>
+<p>
 For news and information, see:
+</p>
 <ul>
 <li>Maven Blogs: <a href="http://www.mavenblogs.com/">http://www.mavenblogs.com/</a></li>
 </ul>
-</p><p>
+<p>
 <i>- The Apache Maven Team</i>
 </p>
 </section>

Modified: maven/maven-1/core/trunk/xdocs/start/release-notes-LATEST.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/start/release-notes-LATEST.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/start/release-notes-LATEST.xml (original)
+++ maven/maven-1/core/trunk/xdocs/start/release-notes-LATEST.xml Mon Jan 23 13:35:34 2006
@@ -57,16 +57,18 @@
 </p>
 <p>
 We hope you enjoy using Maven! If you have any questions, please consult:
+</p>
 <ul>
 <li>the FAQ: <a href="../faq.html">http://maven.apache.org/faq.html</a></li>
 <li> the maven-user mailing list: <a href="../mail-lists.html">http://maven.apache.org/mail-lists.html</a></li>
 </ul>
-</p><p>
+<p>
 For news and information, see:
+</p>
 <ul>
 <li>Maven Blogs: <a href="http://www.mavenblogs.com/">http://www.mavenblogs.com/</a></li>
 </ul>
-</p><p>
+<p>
 <i>- The Apache Maven Team</i>
 </p>
 </section>

Modified: maven/maven-1/core/trunk/xdocs/using/bestpractices.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/using/bestpractices.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/using/bestpractices.xml (original)
+++ maven/maven-1/core/trunk/xdocs/using/bestpractices.xml Mon Jan 23 13:35:34 2006
@@ -228,7 +228,7 @@
       <subsection name="Getting ready for Maven 2">
         <p>
           <b>Dependency Scopes:</b> Maven 2 has a concept of 
-          <it><a href="http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html">scopes</a></it>
+          <em><a href="http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html">scopes</a></em>
           which are used to control
           when and where the dependencies are used in terms of e.g. the compile, test and runtime class paths. Maven
           1 doesn't have this concept but it's still useful to include this information when adding dependencies to
@@ -236,7 +236,8 @@
           is ever converted to a Maven 2 repository the Maven 2 POMs will include dependencies with the correct scope.
         </p>
         <p>
-          To set the scope on your dependency use the <it>scope</it> tag like this:
+          To set the scope on your dependency use the <em>scope</em> tag like this:
+        </p>
       <source><![CDATA[<dependency>
   <groupId>foo</groupId>
   <artifactId>bar</artifactId>
@@ -245,7 +246,6 @@
     <scope>test</scope>
   </properties>
 </dependency>]]></source>
-        </p>
       </subsection>
     </section>
   </body>

Modified: maven/maven-1/core/trunk/xdocs/using/developing-plugins.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/using/developing-plugins.xml?rev=371678&r1=371677&r2=371678&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/using/developing-plugins.xml (original)
+++ maven/maven-1/core/trunk/xdocs/using/developing-plugins.xml Mon Jan 23 13:35:34 2006
@@ -40,6 +40,7 @@
       
       <p>
         A plugin can contain the following: 
+      </p>
         <ul>
           <li>A <code>project.xml</code> file to describe the plugin project (required);</li>
           <li>A <code>plugin.jelly</code> file containing Jelly script for the plugin (required);</li>
@@ -47,7 +48,6 @@
           <li>Plugin resources for adding to the classpath when the plugin is run (optional);</li>
           <li>Java sources, which are accessed from the Jelly script (optional).</li>
         </ul>
-      </p>
 
       <subsection name="How to create your first plugin">
         <p>
@@ -256,6 +256,7 @@
         </p>
         <p>
           To register a report withing your project, you should define three goals (using hello as the example):
+        </p>
           <ul>
             <li><code>hello:report</code> - generates the report content. This was the goal we created in the
             previous section.</li>
@@ -263,7 +264,6 @@
             <li><code>hello:deregister</code> - disables the report so that a project can override a previous
             enabling command</li>
           </ul>
-        </p>
         <p>
           Registering a report is done as follows:
         </p>
@@ -281,6 +281,7 @@
         <source><![CDATA[<project xmlns:ant="jelly:ant" xmlns:doc="doc">]]></source>
         <p>
           The parameters to the <code>registerReport</code> tag are:
+        </p>
           <table>
             <tr>
               <td>pluginName</td>
@@ -323,7 +324,6 @@
               </td>
             </tr>
           </table>
-        </p>
         <p>
           A plugin may specify more than one report.  It is entirely
           possible to register additional reports as shown below (taken