[gatein-commits] gatein SVN: r3185 - in portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules: PortletDevelopment and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon May 24 08:07:19 EDT 2010


Author: smumford
Date: 2010-05-24 08:07:19 -0400 (Mon, 24 May 2010)
New Revision: 3185

Modified:
   portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/AuthenticationAndIdentity/BackendConfiguration.xml
   portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/PortletDevelopment/Standard.xml
Log:
JBEPP-276: Edits as per JIRA comment 24/May/10 05:09 AM

Modified: portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/AuthenticationAndIdentity/BackendConfiguration.xml
===================================================================
--- portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/AuthenticationAndIdentity/BackendConfiguration.xml	2010-05-24 08:41:30 UTC (rev 3184)
+++ portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/AuthenticationAndIdentity/BackendConfiguration.xml	2010-05-24 12:07:19 UTC (rev 3185)
@@ -288,9 +288,9 @@
 							<term>useJTA</term>
 							<listitem>
 								<para>
-									This options reference the JBoss Transactions configuration used for Picketlink.
+									This is a boolean option which determines whether JTA (Java Transaction API) will be used in Picketlink IDM. 
 								</para>
-<!-- DOC TODO: Unsure if this decription of the useJTA option is correct. Extrapolated from info provided for cacheconfig options in previous varlist -->
+
 							</listitem>
 						</varlistentry>
 					</variablelist>

Modified: portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/PortletDevelopment/Standard.xml
===================================================================
--- portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/PortletDevelopment/Standard.xml	2010-05-24 08:41:30 UTC (rev 3184)
+++ portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/PortletDevelopment/Standard.xml	2010-05-24 12:07:19 UTC (rev 3185)
@@ -127,7 +127,7 @@
 				This section describes how to deploy a portlet in &PRODUCT;.
 			</para>
 			<para>
-				An example portlet called <filename>SimplestHelloWorld</filename> is available in the <filename>/jboss-epp-5.0-src/portal/examples/portlets/</filename> directory of the &PRODUCT; sources package or the <filename>boss-epp-5.0-docs/epp-doc/examples/portlets</filename> directory of the documentation package..
+				An example portlet called <filename>SimplestHelloWorld</filename> is available in the <filename>/jboss-epp-5.0-src/portal/examples/portlets/</filename> directory of the &PRODUCT; sources package or the <filename>jboss-epp-5.0-docs/epp-doc/examples/portlets</filename> directory of the documentation package..
                         </para>
 			<section id="sect-Reference_Guide-Deploying_your_first_Portlet-Compiling">
 				<title>Compiling</title>
@@ -201,10 +201,10 @@
 |   `-- WEB-INF
 |       |-- classes
 |       |   `-- org
-|       |       `-- gatein
+|       |       `-- jboss
 |       |           `-- portal
-|       |               `-- examples
-|       |                   `-- portlets
+|       |               `-- portlet
+|       |                   `-- samples
 |       |                       `-- SimplestHelloWorldPortlet.class
 |       |-- portlet.xml
 |       `-- web.xml
@@ -410,7 +410,7 @@
 			<formalpara>
 			<title>Compiling the example</title>
 					<para>
-						The example used in this section is available in the <filename>/jboss-epp-5.0-src/portal/examples/portlets/</filename> directory of the &PRODUCT; sources package or the <filename>boss-epp-5.0-docs/epp-doc/examples/portlets</filename> directory of the documentation package.
+						The example used in this section is available in the <filename>/jboss-epp-5.0-src/portal/examples/portlets/</filename> directory of the &PRODUCT; sources package or the <filename>/jboss-epp-5.0-docs/epp-doc/examples/portlets</filename> directory of the documentation package.
 
 					</para>
 			</formalpara>
@@ -467,17 +467,17 @@
 				<para>
 					The <literal>JSPHelloUser</literal> portlet contains the mandatory portlet application descriptors. The following is an example of the directory structure of the <literal>JSPHelloUser</literal> portlet:
 				</para>
-				
+
 <programlisting>gatein-jsp-hellouser->1.0.0-GA-SNAPSHOT.war
     |-- META-INF
     |   |-- MANIFEST.MF
     |-- WEB-INF
     |   |-- classes
     |   |   `-- org
-    |   |       `-- gatein
+    |   |       `-- jboss
     |   |           `-- portal
-    |   |               `-- examples
-    |   |                   `-- portlets
+    |   |               `-- portlet
+    |   |                   `-- samples
     |   |                       `-- JSPHelloUserPortlet.class
     |   |-- portlet.xml
     |   `-- web.xml
@@ -492,7 +492,7 @@
 			<section id="sect-Reference_Guide-JavaServer_Pages_Portlet_Example-Portlet_Class">
 				<title>Portlet Class</title>
 				<para>
-					The code below is from the <filename> jsphellouser/src/main/java/org/gatein/portal/examples/portlets/JSPHelloUserPortlet.java </filename> Java source. It is split in different pieces.
+					The code below is from the <filename> jsphellouser/src/main/java/org/jboss/portal/portlet/samples/JSPHelloUserPortlet.java </filename> Java source. It is split in different pieces.
 				</para>
 				<programlistingco>
 					<areaspec>
@@ -502,7 +502,7 @@
 						<area coords="26" id="area-Reference_Guide-JavaServer_Pages_Portlet_Example-Portlet_Class.include" />
 					</areaspec>
 
-<programlisting language="Java" role="JAVA"><![CDATA[package org.gatein.portal.examples.portlets;
+<programlisting language="Java" role="JAVA"><![CDATA[package org.jboss.portal.portlet.portlets;
  
 import java.io.IOException;
  



More information about the gatein-commits mailing list