Author: taylor
Date: Wed May 27 16:24:09 2009
New Revision: 779232

URL: http://svn.apache.org/viewvc?rev=779232&view=rev
Log:
Pluto documentation: additional broken link fixes, updates to new plugin 
versions, cleanup for 2.2.0 release

Modified:
    portals/site/pluto/src/site/xdoc/app-servers.xml
    portals/site/pluto/src/site/xdoc/index.xml
    portals/site/pluto/src/site/xdoc/v20/deploying.xml
    portals/site/pluto/src/site/xdoc/v20/getting-started.xml
    portals/site/pluto/src/site/xdoc/v20/release-notes.xml

Modified: portals/site/pluto/src/site/xdoc/app-servers.xml
URL: 
http://svn.apache.org/viewvc/portals/site/pluto/src/site/xdoc/app-servers.xml?rev=779232&r1=779231&r2=779232&view=diff
==============================================================================
--- portals/site/pluto/src/site/xdoc/app-servers.xml (original)
+++ portals/site/pluto/src/site/xdoc/app-servers.xml Wed May 27 16:24:09 2009
@@ -40,7 +40,7 @@
             <td>5.5.9</td>
             <td>WORKING</td>
             <td>
-              Use <code>mvn pluto:install -DinstallDir=/path/to/tomcat</code> 
+              Use <code>mvn pluto2:install -DinstallDir=/path/to/tomcat</code> 
               to install the container and portal into Tomcat.  Make sure
               the &lt;Connector&gt; element in Tomcat's conf/server.xml file
               has the attribute <code>emptySessionPath=true</code> set.

Modified: portals/site/pluto/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/portals/site/pluto/src/site/xdoc/index.xml?rev=779232&r1=779231&r2=779232&view=diff
==============================================================================
--- portals/site/pluto/src/site/xdoc/index.xml (original)
+++ portals/site/pluto/src/site/xdoc/index.xml Wed May 27 16:24:09 2009
@@ -76,7 +76,7 @@
         portal component is built only on the portlet container's and the JSR
         286's requirements. 
         </p>
-        <p>If you want to get started with rapid portlet development with 
Pluto, see the documentation on <a href='v20/developing.html'>Developing with 
Pluto</a>
+        <p>If you want to get started with rapid portlet development with 
Pluto, see the documentation on <a href='v20/getting-started.html'>Developing 
with Pluto</a>
         </p>
     </section>
        <section name='Differences from Servlets'>

Modified: portals/site/pluto/src/site/xdoc/v20/deploying.xml
URL: 
http://svn.apache.org/viewvc/portals/site/pluto/src/site/xdoc/v20/deploying.xml?rev=779232&r1=779231&r2=779232&view=diff
==============================================================================
--- portals/site/pluto/src/site/xdoc/v20/deploying.xml (original)
+++ portals/site/pluto/src/site/xdoc/v20/deploying.xml Wed May 27 16:24:09 2009
@@ -139,7 +139,7 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.apache.pluto</groupId>
+      <groupId>org.apache.portls.pluto</groupId>
       <artifactId>pluto-util</artifactId>
       <version>${pluto.version}</version>
       <scope>provided</scope>
@@ -165,9 +165,9 @@
           <webXml>${project.build.directory}/pluto-resources/web.xml</webXml>
         </configuration>
       </plugin>
-      <!-- bind 'pluto:assemble' goal to 'generate-resources' lifecycle -->
+      <!-- bind 'pluto2:assemble' goal to 'generate-resources' lifecycle -->
       <plugin>
-        <groupId>org.apache.pluto</groupId>
+        <groupId>org.apache.portals.pluto</groupId>
         <artifactId>maven-pluto-plugin</artifactId>
         <version>${pluto.version}</version>
         <executions>

Modified: portals/site/pluto/src/site/xdoc/v20/getting-started.xml
URL: 
http://svn.apache.org/viewvc/portals/site/pluto/src/site/xdoc/v20/getting-started.xml?rev=779232&r1=779231&r2=779232&view=diff
==============================================================================
--- portals/site/pluto/src/site/xdoc/v20/getting-started.xml (original)
+++ portals/site/pluto/src/site/xdoc/v20/getting-started.xml Wed May 27 
16:24:09 2009
@@ -124,14 +124,14 @@
 <settings>
   ...
   <pluginGroups>
-    <pluginGroup>org.apache.pluto</pluginGroup>
+    <pluginGroup>org.apache.portals.pluto</pluginGroup>
   </pluginGroups>
   ...
 </settings>]]>
             </source>
          </p>
-          If you don't have <code>org.apache.pluto</code> specified as a 
<code>&lt;pluginGroup&gt;</code>,
-         then the <code>pluto:install</code> will fail.
+          If you don't have <code>org.apache.portals.pluto</code> specified as 
a <code>&lt;pluginGroup&gt;</code>,
+         then the <code>pluto2:install</code> will fail.
        </p>
         <p>
           <code>&lt;PLUTO_SRCHOME&gt;</code> is the local directory where the
@@ -141,7 +141,7 @@
           <source><![CDATA[
 $> cd <PLUTO_SRCHOME>
 $> mvn install
-$> mvn pluto:install -DinstallDir=path/to/appserver
+$> mvn pluto2:install -DinstallDir=path/to/appserver
           ]]></source>
         </p>
         <p>
@@ -150,7 +150,7 @@
           repository.
         </p>
         <p>
-          The <code>pluto:install</code> goal will take the resulting artifacts
+          The <code>pluto2:install</code> goal will take the resulting 
artifacts
           and properly deploy them within the configured Tomcat installation.
           Currently, the Pluto install has been tested on Tomcat 5.5.9, 5.5.17 
and 5.5.20, 5.5.23, 6.0.13 and 6.0.18.
           The Tomcat 5 archive can be found <a 
href="http://archive.apache.org/dist/tomcat/tomcat-5/archive";>here</a>.
@@ -161,7 +161,7 @@
         </p>
         <p>
           <source><![CDATA[
-C:\pluto> mvn pluto:install -DinstallDir="C:\Program Files\Apache Software 
Foundation\Tomcat 5.5"
+C:\pluto> mvn pluto2:install -DinstallDir="C:\Program Files\Apache Software 
Foundation\Tomcat 5.5"
           ]]></source>
         </p>
         
@@ -170,7 +170,7 @@
       <subsection name="Installing Pluto Manually">
         <p>
         This section documents the manual installation of Pluto 2.0 into 
Tomcat. It replaces 
-        the pluto:install goal, but requires that the built-in Maven 2 install 
goal 
+        the pluto2:install goal, but requires that the built-in Maven 2 
install goal 
         (<code>mvn install</code>) be run from 
<code>&lt;PLUTO_SRCHOME&gt;</code>.
         </p>
         <p>

Modified: portals/site/pluto/src/site/xdoc/v20/release-notes.xml
URL: 
http://svn.apache.org/viewvc/portals/site/pluto/src/site/xdoc/v20/release-notes.xml?rev=779232&r1=779231&r2=779232&view=diff
==============================================================================
--- portals/site/pluto/src/site/xdoc/v20/release-notes.xml (original)
+++ portals/site/pluto/src/site/xdoc/v20/release-notes.xml Wed May 27 16:24:09 
2009
@@ -26,11 +26,10 @@
     <body>
         <section name="Release Notes - Pluto 2.0.0">  
             <p>
-                The list below outlines the issues that are addressed with 
release 2.0.0  For a full list of features, see the
-                <a href="features.html">features list</a>.
+                The list below outlines the issues that are addressed with 
release 2.0.0 .
             </p>
             <p>
-                And the release notes of the previous release 2.1.2 are 
available here: <a href="../v11/release-notes.html">release notes 1.1</a>.
+                The release notes of the previous release 1.1.7 are available 
here: <a href="../v11/release-notes.html">release notes 1.1.7</a>.
             </p>
 
         <subsection name="Bug">
@@ -97,7 +96,7 @@
 </li>
 <li>[<a href='https://issues.apache.org/jira/browse/PLUTO-507'>PLUTO-507</a>] 
- PortalDriverFilter doesn't handle action requests properly, throws 
IllegalStateException
 </li>
-<li>[<a href='https://issues.apache.org/jira/browse/PLUTO-508'>PLUTO-508</a>] 
- pluto:install / pluto missing commons logging
+<li>[<a href='https://issues.apache.org/jira/browse/PLUTO-508'>PLUTO-508</a>] 
- pluto2:install / pluto missing commons logging
 </li>
 <li>[<a href='https://issues.apache.org/jira/browse/PLUTO-509'>PLUTO-509</a>] 
- JAXB portlet descriptor model handling broken with respect to the different 
namespace handling for portlet API 1.0 and 2.0
 </li>


Reply via email to