From do-not-reply at jboss.org Mon May 24 08:07:19 2010 Content-Type: multipart/mixed; boundary="===============7636818523471112846==" MIME-Version: 1.0 From: do-not-reply at jboss.org To: gatein-commits at lists.jboss.org Subject: [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. Date: Mon, 24 May 2010 08:07:19 -0400 Message-ID: <201005241207.o4OC7JYo019694@svn01.web.mwc.hst.phx2.redhat.com> --===============7636818523471112846== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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_Referen= ce_Guide/en-US/modules/AuthenticationAndIdentity/BackendConfiguration.xml portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Referen= ce_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/BackendConfiguratio= n.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Refere= nce_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_Refere= nce_Guide/en-US/modules/AuthenticationAndIdentity/BackendConfiguration.xml = 2010-05-24 12:07:19 UTC (rev 3185) @@ -288,9 +288,9 @@ useJTA - This options reference the JBoss Transactions configuration used = for Picketlink. + This is a boolean option which determines whether JTA (Java Trans= action API) will be used in Picketlink IDM. = - + Modified: portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_= Reference_Guide/en-US/modules/PortletDevelopment/Standard.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Refere= nce_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_Refere= nce_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;. - An example portlet called SimplestHelloWorld is a= vailable in the /jboss-epp-5.0-src/portal/examples/portlets/ directory of the &PRODUCT; sources package or the boss-epp= -5.0-docs/epp-doc/examples/portlets directory of the documentati= on package.. + An example portlet called SimplestHelloWorld is a= vailable in the /jboss-epp-5.0-src/portal/examples/portlets/ directory of the &PRODUCT; sources package or the jboss-ep= p-5.0-docs/epp-doc/examples/portlets directory of the documentat= ion package..
Compiling @@ -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 @@ Compiling the example - The example used in this section is available in the /jbos= s-epp-5.0-src/portal/examples/portlets/ directory of the &PRODUC= T; sources package or the boss-epp-5.0-docs/epp-doc/examples/port= lets directory of the documentation package. + The example used in this section is available in the /jbos= s-epp-5.0-src/portal/examples/portlets/ directory of the &PRODUC= T; sources package or the /jboss-epp-5.0-docs/epp-doc/examples/po= rtlets directory of the documentation package. = @@ -467,17 +467,17 @@ The JSPHelloUser portlet contains the mandatory po= rtlet application descriptors. The following is an example of the directory= structure of the JSPHelloUser portlet: - = + 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 @@
Portlet Class - The code below is from the jsphellouser/src/main/java/org/= gatein/portal/examples/portlets/JSPHelloUserPortlet.java Java s= ource. It is split in different pieces. + The code below is from the jsphellouser/src/main/java/org/= jboss/portal/portlet/samples/JSPHelloUserPortlet.java Java sour= ce. It is split in different pieces. @@ -502,7 +502,7 @@ = -