[gatein-commits] gatein SVN: r6927 - in epp/docs/branches/5.1/Installation_Guide: en-US and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Jul 26 00:08:28 EDT 2011


Author: smumford
Date: 2011-07-26 00:08:27 -0400 (Tue, 26 Jul 2011)
New Revision: 6927

Modified:
   epp/docs/branches/5.1/Installation_Guide/en-US/Book_Info.xml
   epp/docs/branches/5.1/Installation_Guide/en-US/Installation_Guide.ent
   epp/docs/branches/5.1/Installation_Guide/en-US/Post_Installation.xml
   epp/docs/branches/5.1/Installation_Guide/en-US/Revision_History.xml
   epp/docs/branches/5.1/Installation_Guide/publican.cfg
Log:
Updated for 5.1.1 Release.

Modified: epp/docs/branches/5.1/Installation_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.1/Installation_Guide/en-US/Book_Info.xml	2011-07-25 16:55:48 UTC (rev 6926)
+++ epp/docs/branches/5.1/Installation_Guide/en-US/Book_Info.xml	2011-07-26 04:08:27 UTC (rev 6927)
@@ -4,24 +4,24 @@
 %BOOK_ENTITIES;
 ]>
 <bookinfo id="book-Install_Guide-Install_Guide">
-	<title>Installation Guide</title>
+    <title>Installation Guide</title>
    <subtitle>An Installation Guide for JBoss Enterprise Portal Platform &VZ;</subtitle>
-	<productname>JBoss Enterprise Portal Platform</productname>
-	<productnumber>5.1</productnumber>
-	<edition>2</edition>
-	<pubsnumber>5.1.1</pubsnumber>
-	<abstract>
-		<para>
+    <productname>JBoss Enterprise Portal Platform</productname>
+    <productnumber>5.1</productnumber>
+    <edition>2</edition>
+    <pubsnumber>5.1.3</pubsnumber>
+    <abstract>
+        <para>
          This book provides information about obtaining, installing and running JBoss Enterprise Portal Platform. It forms part of the complete document suite along with the <emphasis role="bold">User Guide</emphasis> and <emphasis role="bold">Reference Guide</emphasis> available at <ulink type="http" url="http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/index.html" />.
 </para>
-	</abstract>
-	<corpauthor>
-		<inlinemediaobject>
-			<imageobject>
-				<imagedata fileref="Common_Content/images/title_logo.svg" format="SVG" />
-			</imageobject>
-		</inlinemediaobject>
-	</corpauthor>
+    </abstract>
+    <corpauthor>
+        <inlinemediaobject>
+            <imageobject>
+                <imagedata fileref="Common_Content/images/title_logo.svg" format="SVG" />
+            </imageobject>
+        </inlinemediaobject>
+    </corpauthor>
 
 <!--FOR PUBLICAN -->
 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Common_Content/Legal_Notice.xml">
@@ -31,6 +31,6 @@
          xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
     </xi:fallback>
 </xi:include>
-	<xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 </bookinfo>
 

Modified: epp/docs/branches/5.1/Installation_Guide/en-US/Installation_Guide.ent
===================================================================
--- epp/docs/branches/5.1/Installation_Guide/en-US/Installation_Guide.ent	2011-07-25 16:55:48 UTC (rev 6926)
+++ epp/docs/branches/5.1/Installation_Guide/en-US/Installation_Guide.ent	2011-07-26 04:08:27 UTC (rev 6927)
@@ -10,7 +10,7 @@
 <!ENTITY BZURL "<ulink url='https://bugzilla.redhat.com/enter_bug.cgi?product=JBoss&percnt;20Enterprise&percnt;20Portal&percnt;20Platform&percnt;205&amp;component=docs-Installation_Guide&amp;version=5.1'>http://bugzilla.redhat.com/</ulink>">
 
 <!-- Corporate Specifics: -->
-<!ENTITY YEAR "2010">
+<!ENTITY YEAR "2011">
 <!ENTITY HOLDER "Red Hat, Inc">
 
 <!-- Version Specifcs: -->

Modified: epp/docs/branches/5.1/Installation_Guide/en-US/Post_Installation.xml
===================================================================
--- epp/docs/branches/5.1/Installation_Guide/en-US/Post_Installation.xml	2011-07-25 16:55:48 UTC (rev 6926)
+++ epp/docs/branches/5.1/Installation_Guide/en-US/Post_Installation.xml	2011-07-26 04:08:27 UTC (rev 6927)
@@ -4,109 +4,109 @@
 %BOOK_ENTITIES;
 ]>
 <chapter id="Post_Installation_Configuration">
-	<title>Post Installation Configuration</title> 
-	<section id="Set_JBOSS_HOME">
-		<title>
-			Set JBOSS_HOME Environment Variable
-		</title>
-		<formalpara>
-			<title>
-				On a Linux Platform
-			</title>
-			<para>
+    <title>Post Installation Configuration</title> 
+    <section id="Set_JBOSS_HOME">
+        <title>
+            Set JBOSS_HOME Environment Variable
+        </title>
+        <formalpara>
+            <title>
+                On a Linux Platform
+            </title>
+            <para>
             Create an environment variable that points to the installation directory (<filename><replaceable>&lt;JBOSS_DIST&gt;</replaceable>/jboss-as</filename>) and call it <literal>JBOSS_HOME</literal>. Add <literal>$JBOSS_HOME/bin</literal> to the system path to be able to run the server from the command line. You can do this by adding the following lines to the <filename>.bashrc</filename> file in your home directory.
-			</para>
-		</formalpara>
+            </para>
+        </formalpara>
 <programlisting>
-#In this example /home/user/jboss-epp-5.0/jboss-as is the installation directory.
-  export JBOSS_HOME=/home/user/jboss-epp-5.0/jboss-as
+#In this example /home/user/jboss-epp-<replaceable>&lt;VERS&gt;</replaceable>/jboss-as is the installation directory.
+  export JBOSS_HOME=/home/user/jboss-epp-<replaceable>&lt;VERS&gt;</replaceable>/jboss-as
   export PATH=$PATH:$JBOSS_HOME/bin 
 </programlisting>
-			<para>
-				Set this variable for the user account(s) that will run the server. 
-			</para>
+            <para>
+                Set this variable for the user account(s) that will run the server. 
+            </para>
 
-		<formalpara>
-			<title>
-				On Microsoft Windows
-			</title>
-			<para>
-				Create an environment variable called <literal>JBOSS_HOME</literal> that points to the installation directory, for example: <filename>C:\jboss-epp-5.0\jboss-as\</filename>. 
-			</para>
-		</formalpara>
+        <formalpara>
+            <title>
+                On Microsoft Windows
+            </title>
+            <para>
+                Create an environment variable called <literal>JBOSS_HOME</literal> that points to the installation directory, for example: <filename>C:\jboss-epp-<replaceable>&lt;VERS&gt;</replaceable>\jboss-as\</filename>. 
+            </para>
+        </formalpara>
          <para>
-            In order to run the server from the command line add the <filename>bin</filename> directory to your path, for example: <filename>C:\jboss-epp-5.0\jboss-as\bin</filename>.
+            In order to run the server from the command line add the <filename>bin</filename> directory to your path, for example: <filename>C:\jboss-epp-<replaceable>&lt;VERS&gt;</replaceable>\jboss-as\bin</filename>.
          </para>
          <para>
             You may set these variables by going to the System Properties window then select the Advanced tab and finally click on the Environment Variables button.
          </para>
-	</section> 	
-	
-	<section id="Adjust_Memory_Settings">
-		<title>Adjust memory settings</title>
+    </section>  
+    
+    <section id="Adjust_Memory_Settings">
+        <title>Adjust memory settings</title>
 
-		<para>
+        <para>
          If the server is running out of memory, you may adjust the memory settings before deploying the applications. You can do this by updating <literal>JAVA_OPTS</literal> settings in the file <filename><replaceable>JBOSS_HOME</replaceable>/jboss-as/bin/run.conf</filename> on Linux or <filename><replaceable>JBOSS_HOME</replaceable>/jboss-as/bin/run.conf.bat</filename> on Windows. The default values don't take into account the memory requirements of your applications:
 <programlisting>
 -Xms1303m -Xmx1303m -XX:MaxPermSize=256m ....
 </programlisting>
-		</para>
-	</section>
-	
-	
-	
-	<section id="Post-Installation">
-		<title>
-			Post Installation Security Configuration
-		</title>
-		<para>
-			When installed from the zip archive, authentication is required to access the majority of JBoss services, including administrative services. User accounts have not been set up to eliminate the possibility of default username/password based attacks. 
-		</para>
+        </para>
+    </section>
+    
+    
+    
+    <section id="Post-Installation">
+        <title>
+            Post Installation Security Configuration
+        </title>
+        <para>
+            When installed from the zip archive, authentication is required to access the majority of JBoss services, including administrative services. User accounts have not been set up to eliminate the possibility of default username/password based attacks. 
+        </para>
 
-		<important><title>Default Admin User Configuration</title>
-		<para>
-		  It is recommended that the admin=admin username and password configuration, which is commented out by default, not be used for a production server. The admin user is included as an example of the username/password definition format only.   
-		</para>
-		</important>
-		<note>
+        <important><title>Default Admin User Configuration</title>
+        <para>
+          It is recommended that the admin=admin username and password configuration, which is commented out by default, not be used for a production server. The admin user is included as an example of the username/password definition format only.   
+        </para>
+        </important>
+        <note>
       <title><replaceable>JBOSS_HOME</replaceable> and <replaceable>&lt;PROFILE&gt;</replaceable></title>
-		<para>
-		  <replaceable>JBOSS_HOME</replaceable> is the <filename>jboss-as</filename> directory, a level above the bin directory. <replaceable>&lt;PROFILE&gt;</replaceable> is the chosen server profile: all, default, minimal production, standard or web.
-		</para>
-		</note>
-		<formalpara><title>Set up the <literal>jmx-console</literal> users and roles</title>
-		  <para>
+        <para>
+          <replaceable>JBOSS_HOME</replaceable> is the <filename>jboss-as</filename> directory, a level above the bin directory. <replaceable>&lt;PROFILE&gt;</replaceable> is the chosen server profile: all, default, minimal production, standard or web.
+        </para>
+        </note>
+        <formalpara><title>Set up the <literal>jmx-console</literal> users and roles</title>
+          <para>
           Edit the <filename>jmx-console-users.properties</filename> file located in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/conf/props/</filename> directory defining the username and password:
-		  </para>
-		</formalpara>
-		<programlisting>user=password</programlisting>
-		<para>
-		  Edit the <filename>jmx-console-roles.properties</filename> file located in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/conf/props/</filename> directory to define the user's roles:
-		</para>
-		<programlisting>user=JBossAdmin,HttpInvoker</programlisting>
-		
-		<formalpara><title>Set up the <literal>admin-console</literal> users and roles</title>
-		<para>
-		    Edit the <filename>web-console-users.properties</filename> file located in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/classes/</filename> directory:
-		  </para>
-		</formalpara>
-		<programlisting>user=password</programlisting>
-		<para>
-		  Edit the <filename>web-console-roles.properties</filename> file located in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/classes/</filename> directory:
-		</para>
-		<programlisting>user=JBossAdmin,HttpInvoker</programlisting>
-		
-		<important>
-			<para>
-				Login credentials for the <literal>admin-console</literal> are the same as those used for the JMX console.
-			</para>
-		</important>
-		<formalpara>
-			<title>SuckerPassword for JBoss Messaging:</title>
-			<para>
-				JBoss Messaging makes internal connections between nodes in order to redistribute messages between clustered destinations. These connections are made with the user name of a special reserved user whose password is specified by the <literal>suckerPassword</literal> attribute in the Server Peer configuration file: <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/messaging/messaging-jboss-beans.xml</filename>.
+          </para>
+        </formalpara>
+        <programlisting>user=password</programlisting>
+        <para>
+          Edit the <filename>jmx-console-roles.properties</filename> file located in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/conf/props/</filename> directory to define the user's roles:
+        </para>
+        <programlisting>user=JBossAdmin,HttpInvoker</programlisting>
+        
+        <formalpara><title>Set up the <literal>admin-console</literal> users and roles</title>
+        <para>
+            Edit the <filename>web-console-users.properties</filename> file located in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/classes/</filename> directory:
+          </para>
+        </formalpara>
+        <programlisting>user=password</programlisting>
+        <para>
+          Edit the <filename>web-console-roles.properties</filename> file located in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/classes/</filename> directory:
+        </para>
+        <programlisting>user=JBossAdmin,HttpInvoker</programlisting>
+        
+        <important>
+            <para>
+                Login credentials for the <literal>admin-console</literal> are the same as those used for the JMX console.
+            </para>
+        </important>
+        <formalpara>
+            <title>SuckerPassword for JBoss Messaging:</title>
+            <para>
+                JBoss Messaging makes internal connections between nodes in order to redistribute messages between clustered destinations. These connections are made with the user name of a special reserved user whose password is specified by the <literal>suckerPassword</literal> attribute in the Server Peer configuration file: <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/messaging/messaging-jboss-beans.xml</filename>.
          </para>
-		</formalpara>
+        </formalpara>
       <procedure>
          <title>Set suckerPassword for JBoss Messaging</title>
             <step>
@@ -149,21 +149,21 @@
 &lt;/bean&gt;
 </programlisting>-->
 
-	</section>
-	
-	<section id="Disabling_Authentication">
-		<title>Disabling Authentication</title>	
-		
-		<para>
-			It is possible to disable authentication for specific services by following the instructions in this section.
-		</para>
+    </section>
+    
+    <section id="Disabling_Authentication">
+        <title>Disabling Authentication</title> 
+        
+        <para>
+            It is possible to disable authentication for specific services by following the instructions in this section.
+        </para>
 
-		<formalpara>
-			<title>Disabling Authentication for JXM Console:</title>
-			<para>
+        <formalpara>
+            <title>Disabling Authentication for JXM Console:</title>
+            <para>
             To disable authentication for the JMX console, edit the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/jmx-console.war/WEB-INF/web.xml</filename> file and comment out the security-constraint section:
-			</para>
-		</formalpara>
+            </para>
+        </formalpara>
 <programlisting language="XML" role="XML">
 &lt;security-constraint&gt;
     &lt;web-resource-collection&gt;
@@ -179,9 +179,9 @@
     &lt;/auth-constraint&gt;
 &lt;/security-constraint&gt;
 </programlisting>
-		<formalpara>
-			<title>Disabling Authentication for Web Console:</title>
-			<para>
+        <formalpara>
+            <title>Disabling Authentication for Web Console:</title>
+            <para>
             To disable authentication for the Web console, edit the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/web.xml</filename> file to comment out the security-constraint section:
 <programlisting language="XML" role="XML">
 &lt;security-constraint&gt;
@@ -198,12 +198,12 @@
         &lt;role-name&gt;JBossAdmin&lt;/role-name&gt;
     &lt;/auth-constraint&gt;
 &lt;/security-constraint&gt;
-				</programlisting>
-			</para>
-		</formalpara>
-		<formalpara>
-			<title>Disabling Authentication for HTTP Invoker:</title>
-			<para>
+                </programlisting>
+            </para>
+        </formalpara>
+        <formalpara>
+            <title>Disabling Authentication for HTTP Invoker:</title>
+            <para>
             To disable authentication for the http invoker, <literal>JNDIFactory</literal>, <literal>EJBInvokerServlet</literal>, and <literal>JMXInvokerServlet</literal> need to be removed from the security realm in the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/web.xml/deploy/httpha-invoker.sar/invoker.war/WEB-INF/web.xml</filename> file:
 <programlisting language="XML" role="XML">
 &lt;security-constraint&gt;
@@ -220,15 +220,15 @@
         &lt;role-name&gt;HttpInvoker&lt;/role-name&gt;
     &lt;/auth-constraint&gt;
     &lt;/security-constraint&gt;
-				</programlisting>
-			</para>
-		</formalpara>
-		<formalpara>
-			<title>Disabling Authentication for JMX Invoker:</title>
-			<para>
+                </programlisting>
+            </para>
+        </formalpara>
+        <formalpara>
+            <title>Disabling Authentication for JMX Invoker:</title>
+            <para>
             To disable authentication for the JMX invoker, edit the <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/web.xml/deploy/httpha-invoker.sar/invoker.war/WEB-INF/web.xml/deploy/jmx-invoker-service.xml</filename> file to comment out the security interceptor passthrough:
-			</para>
-		</formalpara>
+            </para>
+        </formalpara>
          <para>
             Locate the mbean section with the class <literal>org.jboss.jmx.connector.invoker.InvokerAdaptorService</literal>. In that section comment out the line that relates to authenticated users:
          </para>
@@ -245,18 +245,18 @@
 &lt;/descriptors&gt;
 </programlisting>
 
-	<formalpara>
-		<title>Disabling Pre-configured Accounts</title>
-				<para>
-				JBoss Enterprise Portal Platform includes four pre-configured user accounts for testing and evaluation purposes. These accounts can be used for direct access to the portal. 
-			</para>
-	</formalpara>
-			<para>
-				For security reasons, before going in production, you should restrict the access to the login servlet to POST.
-			</para>
-			<para>
-				To do so, edit the file <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/gatein.ear/02portal.war/WEB-INF/web.xml</filename> and add: 
-			</para>
+    <formalpara>
+        <title>Disabling Pre-configured Accounts</title>
+                <para>
+                JBoss Enterprise Portal Platform includes four pre-configured user accounts for testing and evaluation purposes. These accounts can be used for direct access to the portal. 
+            </para>
+    </formalpara>
+            <para>
+                For security reasons, before going in production, you should restrict the access to the login servlet to POST.
+            </para>
+            <para>
+                To do so, edit the file <filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable>&lt;PROFILE&gt;</replaceable>/gatein.ear/02portal.war/WEB-INF/web.xml</filename> and add: 
+            </para>
 <programlisting language="XML" role="XML"><![CDATA[
 <security-constraint>
   <web-resource-collection>
@@ -271,11 +271,11 @@
   </web-resource-collection>
  <auth-constraint/>
 </security-constraint> ]]></programlisting>
-		<para>
-			Doing this will render the login links provided on the front page inactive. 
-		</para>
-			
+        <para>
+            Doing this will render the login links provided on the front page inactive. 
+        </para>
+            
 
 
-	</section>
+    </section>
 </chapter>

Modified: epp/docs/branches/5.1/Installation_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.1/Installation_Guide/en-US/Revision_History.xml	2011-07-25 16:55:48 UTC (rev 6926)
+++ epp/docs/branches/5.1/Installation_Guide/en-US/Revision_History.xml	2011-07-26 04:08:27 UTC (rev 6927)
@@ -5,39 +5,53 @@
 
 ]>
 <appendix id="appe-Install_Guide-Revision_History">
-	<title>Revision History</title>
-	<simpara>
-	<revhistory>
-		<revision>
-			<revnumber>2-5.1.1</revnumber>
-			<date>Monday June 27 2011</date>
-				<author>
-					<firstname>Scott</firstname>
-					<surname>Mumford</surname>
-					<email>smumford at redhat.com</email>
-				</author>
-					<revdescription>
-						<simplelist>
-							<member>Updated for 5.1.1 Release.</member>
-						</simplelist>
-					</revdescription>
-		</revision>
-		<revision>
-			<revnumber>1-5.2</revnumber>
-			<date>Wed June 22 2011</date>
-				<author>
-					<firstname>Scott</firstname>
-					<surname>Mumford</surname>
-					<email>smumford at redhat.com</email>
-				</author>
-					<revdescription>
-						<simplelist>
-							<member>Incorporated new Bugzilla feedback link.</member>
-							<member>Corrected minor typographical errors.</member>
-						</simplelist>
-					</revdescription>
-		</revision>
-		<!--<revision>
+    <title>Revision History</title>
+    <simpara>
+    <revhistory>
+        <revision>
+            <revnumber>2-5.1.3</revnumber>
+            <date>Fri Jul 15 2011</date>
+            <author>
+                <firstname>Scott</firstname>
+                <surname>Mumford</surname>
+                <email></email>
+            </author>
+            <revdescription>
+                <simplelist>
+                    <member>Updated for 5.1.1 Release.</member>
+                </simplelist>
+            </revdescription>
+        </revision>
+        <!--<revision>
+            <revnumber>2-5.1.1</revnumber>
+            <date>Monday June 27 2011</date>
+                <author>
+                    <firstname>Scott</firstname>
+                    <surname>Mumford</surname>
+                    <email>smumford at redhat.com</email>
+                </author>
+                    <revdescription>
+                        <simplelist>
+                            <member>Updated for 5.1.1 Release.</member>
+                        </simplelist>
+                    </revdescription>
+        </revision>-->
+        <revision>
+            <revnumber>1-5.2</revnumber>
+            <date>Wed June 22 2011</date>
+                <author>
+                    <firstname>Scott</firstname>
+                    <surname>Mumford</surname>
+                    <email>smumford at redhat.com</email>
+                </author>
+                    <revdescription>
+                        <simplelist>
+                            <member>Incorporated new Bugzilla feedback link.</member>
+                            <member>Corrected minor typographical errors.</member>
+                        </simplelist>
+                    </revdescription>
+        </revision>
+        <!--<revision>
             <revnumber>1-5.1</revnumber>
             <date>Tue Dec 21 2010</date>
                <author>
@@ -107,7 +121,7 @@
                </simplelist>
             </revdescription>
    </revision>
-	<revision>
+    <revision>
          <revnumber>1-2.1</revnumber>
          <date>Mon Nov 22 2010</date>
             <author>
@@ -120,8 +134,8 @@
                      <member>Added Installing Add-ons chapter. Updated .ent file</member>
                   </simplelist>
                </revdescription>
-      </revision>		
-	<revision>
+      </revision>       
+    <revision>
          <revnumber>1-2.0</revnumber>
          <date>Wed Nov 17 2010</date>
             <author>
@@ -150,92 +164,92 @@
                </revdescription>
       </revision>
          <revision>
-        		    <revnumber>1-1.8</revnumber>
-       			     <date>Tue Oct 26 2010</date>
-        		       <author>
-        		          <firstname>Scott</firstname>
-        		          <surname>Mumford</surname>
-        		          <email>smumford at redhat.com</email>
-				</author>
-				<revdescription>
-			             <simplelist>
-			                <member>Added Recommended Practices section.</member>
-			             </simplelist>
-				</revdescription>
-        		 </revision>
+                    <revnumber>1-1.8</revnumber>
+                     <date>Tue Oct 26 2010</date>
+                       <author>
+                          <firstname>Scott</firstname>
+                          <surname>Mumford</surname>
+                          <email>smumford at redhat.com</email>
+                </author>
+                <revdescription>
+                         <simplelist>
+                            <member>Added Recommended Practices section.</member>
+                         </simplelist>
+                </revdescription>
+                 </revision>
          <!--<revision>
-				<revnumber>1-1.7</revnumber>
-				<date>Tue Oct 26 2010</date>
-				<author>
-					<firstname>Scott</firstname>
-					<surname>Mumford</surname>
-					<email>smumford at redhat.com</email>
-				</author>
-				<revdescription>
-					<simplelist>
-						<member>Rebuilt for new Publican version features.</member>
-					</simplelist>
-				</revdescription>
-			</revision>
-			<revision>
-				<revnumber>1-1.6</revnumber>
-				<date>Thu Sep 30 2010</date>
-				<author>
-					<firstname>Scott</firstname>
-					<surname>Mumford</surname>
-					<email>smumford at redhat.com</email>
-				</author>
-				<revdescription>
-					<simplelist>
-						<member>Edit Product version number for publishing restructure.</member>
-					</simplelist>
-				</revdescription>
-			</revision>-->
-			<revision>
-				<revnumber>1-1.3</revnumber>
-				<date>Tue Apr 28 2010</date>
-				<author>
-					<firstname>Luc</firstname>
-					<surname>Texier</surname>
-					<email>ltexier at redhat.com</email>
-				</author>
-				<revdescription>
-					<simplelist>
-						<member>https://jira.jboss.org/jira/browse/JBEPP-274.</member>
-					</simplelist>
-				</revdescription>
-			</revision>
-			<revision>
-				<revnumber>1-1.2</revnumber>
-				<date>Tue Apr 13 2010</date>
-				<author>
-					<firstname>Ben</firstname>
-					<surname>Clare</surname>
-					<email>bclare at redhat.com</email>
-				</author>
-				<revdescription>
-					<simplelist>
-						<member>Updates as described in JBEPP-288 for the version 5.0 release.</member>
-					</simplelist>
-				</revdescription>
-			</revision>
+                <revnumber>1-1.7</revnumber>
+                <date>Tue Oct 26 2010</date>
+                <author>
+                    <firstname>Scott</firstname>
+                    <surname>Mumford</surname>
+                    <email>smumford at redhat.com</email>
+                </author>
+                <revdescription>
+                    <simplelist>
+                        <member>Rebuilt for new Publican version features.</member>
+                    </simplelist>
+                </revdescription>
+            </revision>
+            <revision>
+                <revnumber>1-1.6</revnumber>
+                <date>Thu Sep 30 2010</date>
+                <author>
+                    <firstname>Scott</firstname>
+                    <surname>Mumford</surname>
+                    <email>smumford at redhat.com</email>
+                </author>
+                <revdescription>
+                    <simplelist>
+                        <member>Edit Product version number for publishing restructure.</member>
+                    </simplelist>
+                </revdescription>
+            </revision>-->
+            <revision>
+                <revnumber>1-1.3</revnumber>
+                <date>Tue Apr 28 2010</date>
+                <author>
+                    <firstname>Luc</firstname>
+                    <surname>Texier</surname>
+                    <email>ltexier at redhat.com</email>
+                </author>
+                <revdescription>
+                    <simplelist>
+                        <member>https://jira.jboss.org/jira/browse/JBEPP-274.</member>
+                    </simplelist>
+                </revdescription>
+            </revision>
+            <revision>
+                <revnumber>1-1.2</revnumber>
+                <date>Tue Apr 13 2010</date>
+                <author>
+                    <firstname>Ben</firstname>
+                    <surname>Clare</surname>
+                    <email>bclare at redhat.com</email>
+                </author>
+                <revdescription>
+                    <simplelist>
+                        <member>Updates as described in JBEPP-288 for the version 5.0 release.</member>
+                    </simplelist>
+                </revdescription>
+            </revision>
 
-			<revision>
-				<revnumber>1-1.1</revnumber>
-				<date>Tue Nov 24 2009</date>
-				<author>
-					<firstname>Scott</firstname>
-					<surname>Mumford</surname>
-					<email>smumford at redhat.com</email>
-				</author>
-				<revdescription>
-					<simplelist>
-						<member>Initial creation of book in Publican</member>
-					</simplelist>
-				</revdescription>
-			</revision>
+            <revision>
+                <revnumber>1-1.1</revnumber>
+                <date>Tue Nov 24 2009</date>
+                <author>
+                    <firstname>Scott</firstname>
+                    <surname>Mumford</surname>
+                    <email>smumford at redhat.com</email>
+                </author>
+                <revdescription>
+                    <simplelist>
+                        <member>Initial creation of book in Publican</member>
+                    </simplelist>
+                </revdescription>
+            </revision>
 
-		</revhistory>
-	</simpara>
+        </revhistory>
+    </simpara>
 </appendix>
 

Modified: epp/docs/branches/5.1/Installation_Guide/publican.cfg
===================================================================
--- epp/docs/branches/5.1/Installation_Guide/publican.cfg	2011-07-25 16:55:48 UTC (rev 6926)
+++ epp/docs/branches/5.1/Installation_Guide/publican.cfg	2011-07-26 04:08:27 UTC (rev 6927)
@@ -7,6 +7,7 @@
 brand: JBoss
 debug:1
 show_remarks:1
+
 cvs_branch: DOCS-RHEL-6
 cvs_root: :ext:cvs.devel.redhat.com:/cvs/dist
 cvs_pkg: JBoss_Enterprise_Portal_Platform-Installation_Guide-5.1-web-__LANG__
\ No newline at end of file



More information about the gatein-commits mailing list