gatein SVN: r1783 - portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-02-19 09:47:04 -0500 (Fri, 19 Feb 2010)
New Revision: 1783
Modified:
portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
Log:
GTNPORTAL-698: Remove the NavigationalState from the form part of an invocation. This will prevent a situation where the navigational property of the url will contain a copy of itself with each invocation.
Modified: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
===================================================================
--- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java 2010-02-19 12:35:46 UTC (rev 1782)
+++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java 2010-02-19 14:47:04 UTC (rev 1783)
@@ -646,7 +646,7 @@
HashMap<String, String[]> allParams = new HashMap<String, String[]>();
allParams.putAll(servletRequest.getParameterMap());
allParams.putAll(this.getPublicParameters());
- //allParams.remove(ExoPortletInvocationContext.NAVIGATIONAL_STATE_PARAM_NAME);
+ allParams.remove(ExoPortletInvocationContext.NAVIGATIONAL_STATE_PARAM_NAME);
if (type.equals(ActionInvocation.class))
{
ActionInvocation actionInvocation = new ActionInvocation(pic);
14 years, 10 months
gatein SVN: r1782 - in components/sso/trunk: agent and 11 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-02-19 07:35:46 -0500 (Fri, 19 Feb 2010)
New Revision: 1782
Modified:
components/sso/trunk/agent/pom.xml
components/sso/trunk/auth-callback/pom.xml
components/sso/trunk/cas/gatein-cas-plugin/pom.xml
components/sso/trunk/cas/gatein-cas-portal/pom.xml
components/sso/trunk/cas/pom.xml
components/sso/trunk/josso/gatein-josso-plugin/pom.xml
components/sso/trunk/josso/gatein-josso-portal/pom.xml
components/sso/trunk/josso/pom.xml
components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml
components/sso/trunk/opensso/gatein-opensso-portal/pom.xml
components/sso/trunk/opensso/pom.xml
components/sso/trunk/packaging/pom.xml
components/sso/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: components/sso/trunk/agent/pom.xml
===================================================================
--- components/sso/trunk/agent/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/agent/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/auth-callback/pom.xml
===================================================================
--- components/sso/trunk/auth-callback/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/auth-callback/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/cas/gatein-cas-plugin/pom.xml
===================================================================
--- components/sso/trunk/cas/gatein-cas-plugin/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/cas/gatein-cas-plugin/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/cas/gatein-cas-portal/pom.xml
===================================================================
--- components/sso/trunk/cas/gatein-cas-portal/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/cas/gatein-cas-portal/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -14,7 +14,7 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-plugin</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
@@ -23,12 +23,12 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-agent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-auth-callback</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jasig.cas</groupId>
Modified: components/sso/trunk/cas/pom.xml
===================================================================
--- components/sso/trunk/cas/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/cas/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<name>GateIn SSO - CAS</name>
Modified: components/sso/trunk/josso/gatein-josso-plugin/pom.xml
===================================================================
--- components/sso/trunk/josso/gatein-josso-plugin/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/josso/gatein-josso-plugin/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/josso/gatein-josso-portal/pom.xml
===================================================================
--- components/sso/trunk/josso/gatein-josso-portal/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/josso/gatein-josso-portal/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -54,12 +54,12 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-agent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-auth-callback</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
@@ -74,7 +74,7 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-plugin</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>apache-log4j</groupId>
Modified: components/sso/trunk/josso/pom.xml
===================================================================
--- components/sso/trunk/josso/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/josso/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
Modified: components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml
===================================================================
--- components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/opensso/gatein-opensso-portal/pom.xml
===================================================================
--- components/sso/trunk/opensso/gatein-opensso-portal/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/opensso/gatein-opensso-portal/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -14,7 +14,7 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-plugin</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
@@ -28,12 +28,12 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-agent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-auth-callback</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: components/sso/trunk/opensso/pom.xml
===================================================================
--- components/sso/trunk/opensso/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/opensso/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
Modified: components/sso/trunk/packaging/pom.xml
===================================================================
--- components/sso/trunk/packaging/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/packaging/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/pom.xml
===================================================================
--- components/sso/trunk/pom.xml 2010-02-19 12:35:20 UTC (rev 1781)
+++ components/sso/trunk/pom.xml 2010-02-19 12:35:46 UTC (rev 1782)
@@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02</version>
+ <version>1.0.0-Beta03-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
@@ -25,9 +25,9 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/sso/tags/1.0.0-B...</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/components/sso/tags/1.0.0-Beta02</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/sso/tags/1.0.0-Beta02</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/sso/trunk</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/components/sso/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/sso/trunk</url>
</scm>
14 years, 10 months
gatein SVN: r1781 - components/sso/tags.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-02-19 07:35:20 -0500 (Fri, 19 Feb 2010)
New Revision: 1781
Added:
components/sso/tags/1.0.0-Beta02/
Log:
[maven-scm] copy for tag 1.0.0-Beta02
Copied: components/sso/tags/1.0.0-Beta02 (from rev 1780, components/sso/trunk)
14 years, 10 months
gatein SVN: r1780 - in components/sso/trunk: agent and 11 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-02-19 07:35:04 -0500 (Fri, 19 Feb 2010)
New Revision: 1780
Modified:
components/sso/trunk/agent/pom.xml
components/sso/trunk/auth-callback/pom.xml
components/sso/trunk/cas/gatein-cas-plugin/pom.xml
components/sso/trunk/cas/gatein-cas-portal/pom.xml
components/sso/trunk/cas/pom.xml
components/sso/trunk/josso/gatein-josso-plugin/pom.xml
components/sso/trunk/josso/gatein-josso-portal/pom.xml
components/sso/trunk/josso/pom.xml
components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml
components/sso/trunk/opensso/gatein-opensso-portal/pom.xml
components/sso/trunk/opensso/pom.xml
components/sso/trunk/packaging/pom.xml
components/sso/trunk/pom.xml
Log:
[maven-release-plugin] prepare release 1.0.0-Beta02
Modified: components/sso/trunk/agent/pom.xml
===================================================================
--- components/sso/trunk/agent/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/agent/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/auth-callback/pom.xml
===================================================================
--- components/sso/trunk/auth-callback/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/auth-callback/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/cas/gatein-cas-plugin/pom.xml
===================================================================
--- components/sso/trunk/cas/gatein-cas-plugin/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/cas/gatein-cas-plugin/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/cas/gatein-cas-portal/pom.xml
===================================================================
--- components/sso/trunk/cas/gatein-cas-portal/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/cas/gatein-cas-portal/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -14,7 +14,7 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-plugin</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
@@ -23,12 +23,12 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-agent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-auth-callback</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
<groupId>org.jasig.cas</groupId>
Modified: components/sso/trunk/cas/pom.xml
===================================================================
--- components/sso/trunk/cas/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/cas/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-cas-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
<packaging>pom</packaging>
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<name>GateIn SSO - CAS</name>
Modified: components/sso/trunk/josso/gatein-josso-plugin/pom.xml
===================================================================
--- components/sso/trunk/josso/gatein-josso-plugin/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/josso/gatein-josso-plugin/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -65,9 +65,7 @@
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId> <executions>
<execution> <id>plugin-tomcat-package</id> <phase>package</phase>
- <configuration> <tasks> <echo message="Preparing the JOSSO Plugin for Tomcat 6.0.2......" /> <delete dir="${basedir}/target/plugin" /> <mkdir dir="${basedir}/target/plugin" /> <copy todir="${basedir}/target/plugin/lib"> <fileset dir="${basedir}/src/main/config"> <include name="josso-gateway-*.xml" /> </fileset> </copy> <copy todir="${basedir}/target/plugin/webapps/josso/WEB-INF"> <fileset dir="${basedir}/src/main/config/WEB-INF" /> </copy> <copy tofile="${basedir}/target/plugin/webapps/josso/WEB-INF/lib/gatein-josso-plugin.jar" file="${basedir}/target/gatein-josso-plugin-${project.version}.jar"
- overwrite="true" /> <copy tofile="${basedir}/target/plugin/webapps/josso/WEB-INF/lib/log4j.jar" file="${settings.localRepository}/apache-log4j/log4j/${version.log4j}/log4j-${version.log4j}.jar"
- overwrite="true" /> </tasks> </configuration> <goals> <goal>run</goal>
+ <configuration> <tasks> <echo message="Preparing the JOSSO Plugin for Tomcat 6.0.2......" /> <delete dir="${basedir}/target/plugin" /> <mkdir dir="${basedir}/target/plugin" /> <copy todir="${basedir}/target/plugin/lib"> <fileset dir="${basedir}/src/main/config"> <include name="josso-gateway-*.xml" /> </fileset> </copy> <copy todir="${basedir}/target/plugin/webapps/josso/WEB-INF"> <fileset dir="${basedir}/src/main/config/WEB-INF" /> </copy> <copy tofile="${basedir}/target/plugin/webapps/josso/WEB-INF/lib/gatein-josso-plugin.jar" file="${basedir}/target/gatein-josso-plugin-${project.version}.jar" overwrite="true" /> <copy tofile="${basedir}/target/plugin/webapps/josso/WEB-INF/lib/log4j.jar" file="${settings.localRepository}/apache-log4j/log4j/${version.log4j}/log4j-${version.log4j}.jar" overwrite="true" /> </tasks> </configuration> <goals> <goal>run</goal>
</goals> </execution> <execution> <id>plugin-tomcat-install</id>
<phase>install</phase> <configuration> <tasks> <echo message="Starting JOSSO Plugin Deployment into Tomcat 6.0.2......" /> <jar destfile="${basedir}/target/plugin.jar" basedir="${basedir}/target/plugin" /> <unjar src="${basedir}/target/plugin.jar" dest="${tomcat60.josso.location}" overwrite="true" /> <delete dir="${tomcat60.josso.location}/META-INF" />
</tasks> </configuration> <goals> <goal>run</goal> </goals>
Modified: components/sso/trunk/josso/gatein-josso-portal/pom.xml
===================================================================
--- components/sso/trunk/josso/gatein-josso-portal/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/josso/gatein-josso-portal/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -54,12 +54,12 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-agent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-auth-callback</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
@@ -74,7 +74,7 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-plugin</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
<groupId>apache-log4j</groupId>
Modified: components/sso/trunk/josso/pom.xml
===================================================================
--- components/sso/trunk/josso/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/josso/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-josso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
<packaging>pom</packaging>
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
Modified: components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml
===================================================================
--- components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/opensso/gatein-opensso-plugin/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -3,7 +3,7 @@
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-parent</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/opensso/gatein-opensso-portal/pom.xml
===================================================================
--- components/sso/trunk/opensso/gatein-opensso-portal/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/opensso/gatein-opensso-portal/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -14,7 +14,7 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-plugin</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
@@ -28,12 +28,12 @@
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-agent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
<dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-auth-callback</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</dependency>
</dependencies>
Modified: components/sso/trunk/opensso/pom.xml
===================================================================
--- components/sso/trunk/opensso/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/opensso/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-opensso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
<packaging>pom</packaging>
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
Modified: components/sso/trunk/packaging/pom.xml
===================================================================
--- components/sso/trunk/packaging/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/packaging/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/sso/trunk/pom.xml
===================================================================
--- components/sso/trunk/pom.xml 2010-02-19 12:32:05 UTC (rev 1779)
+++ components/sso/trunk/pom.xml 2010-02-19 12:35:04 UTC (rev 1780)
@@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-parent</artifactId>
- <version>1.0.0-Beta02-SNAPSHOT</version>
+ <version>1.0.0-Beta02</version>
<packaging>pom</packaging>
<parent>
@@ -25,9 +25,9 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/sso/trunk</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/components/sso/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/sso/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/sso/tags/1.0.0-B...</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/components/sso/tags/1.0.0-Beta02</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/sso/tags/1.0.0-Beta02</url>
</scm>
14 years, 10 months
gatein SVN: r1779 - components/sso/trunk/packaging/src/main/assembly.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-02-19 07:32:05 -0500 (Fri, 19 Feb 2010)
New Revision: 1779
Modified:
components/sso/trunk/packaging/src/main/assembly/src.xml
Log:
Wrong version
Modified: components/sso/trunk/packaging/src/main/assembly/src.xml
===================================================================
--- components/sso/trunk/packaging/src/main/assembly/src.xml 2010-02-19 04:48:48 UTC (rev 1778)
+++ components/sso/trunk/packaging/src/main/assembly/src.xml 2010-02-19 12:32:05 UTC (rev 1779)
@@ -8,15 +8,15 @@
<fileSets>
<fileSet>
- <directory>../cas/gatein-cas-portal/target/sso-cas-pkg-trunk-SNAPSHOT/</directory>
+ <directory>../cas/gatein-cas-portal/target/sso-cas-pkg-${version}/</directory>
<outputDirectory>gatein-sso-${version}/cas</outputDirectory>
</fileSet>
<fileSet>
- <directory>../josso/gatein-josso-portal/target/sso-josso-pkg-trunk-SNAPSHOT/</directory>
+ <directory>../josso/gatein-josso-portal/target/sso-josso-pkg-${version}/</directory>
<outputDirectory>gatein-sso-${version}/josso</outputDirectory>
</fileSet>
<fileSet>
- <directory>../opensso/gatein-opensso-portal/target/sso-opensso-pkg-trunk-SNAPSHOT/</directory>
+ <directory>../opensso/gatein-opensso-portal/target/sso-opensso-pkg-${version}/</directory>
<outputDirectory>gatein-sso-${version}/opensso</outputDirectory>
</fileSet>
<fileSet>
@@ -36,4 +36,4 @@
</dependencySets>
-->
-</assembly>
\ No newline at end of file
+</assembly>
14 years, 10 months
gatein SVN: r1778 - portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_User_Guide/en-US.
by do-not-reply@jboss.org
Author: smumford
Date: 2010-02-18 23:48:48 -0500 (Thu, 18 Feb 2010)
New Revision: 1778
Modified:
portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_User_Guide/en-US/Author_Group.xml
Log:
minor edits
Modified: portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_User_Guide/en-US/Author_Group.xml
===================================================================
--- portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_User_Guide/en-US/Author_Group.xml 2010-02-19 04:48:31 UTC (rev 1777)
+++ portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_User_Guide/en-US/Author_Group.xml 2010-02-19 04:48:48 UTC (rev 1778)
@@ -4,14 +4,32 @@
%BOOK_ENTITIES;
]>
<authorgroup>
- <author>
+ <editor>
<firstname>Scott</firstname>
<surname>Mumford</surname>
<affiliation>
<orgname>Red Hat</orgname>
<orgdiv>Engineering Content Services</orgdiv>
</affiliation>
+ <contrib>Document editing</contrib>
<email>smumford(a)redhat.com</email>
- </author>
+ </editor>
+ <editor>
+ <firstname>Thomas</firstname>
+ <surname>Heute</surname>
+ <affiliation>
+ <orgname>Red Hat</orgname>
+ <orgdiv>JBoss Services R&D</orgdiv>
+ </affiliation>
+ <contrib>Document review and editing</contrib>
+ <email>theute(a)redhat.com</email>
+ </editor>
+ <othercredit>
+ <affiliation>
+ <orgname><ulink type="http" url="http://www.jboss.org/gatein/">GateIn</ulink> and <ulink type="http" url="http://www.exoplatform.com/portal/public/website/">Exo Platform</ulink></orgname>
+ <orgdiv>Documentation Teams</orgdiv>
+ </affiliation>
+ <contrib>Original product documentation by:</contrib>
+ </othercredit>
</authorgroup>
14 years, 10 months
gatein SVN: r1777 - portal/trunk/docs/reference-guide/en/modules.
by do-not-reply@jboss.org
Author: smumford
Date: 2010-02-18 23:48:31 -0500 (Thu, 18 Feb 2010)
New Revision: 1777
Modified:
portal/trunk/docs/reference-guide/en/modules/SSO.xml
Log:
minor edits
Modified: portal/trunk/docs/reference-guide/en/modules/SSO.xml
===================================================================
--- portal/trunk/docs/reference-guide/en/modules/SSO.xml 2010-02-19 04:48:19 UTC (rev 1776)
+++ portal/trunk/docs/reference-guide/en/modules/SSO.xml 2010-02-19 04:48:31 UTC (rev 1777)
@@ -251,7 +251,7 @@
To utilize the Central Authentication Service, &PRODUCT; needs to redirect all user authentication to the CAS server.
</para>
<para>
- Information about where the CAS is hosted must be properly configured within the &PRODUCT; instance. The required configuration is done in three files:
+ Information about where the CAS is hosted must be properly configured within the &PRODUCT; instance. The required configuration is done by modifying three files:
<itemizedlist>
<listitem>
<para>
@@ -417,7 +417,7 @@
In Tomcat, edit <filename>GATEIN_HOME/conf/jaas.conf</filename> and uncomment this section:
</para>
<programlisting>org.gatein.sso.agent.login.SSOLoginModule required
-org.exoplatform.services.security.j2ee.JbossLoginModule required
+org.exoplatform.services.security.j2ee.JbossLoginModule requiredtm
portalContainerName=portal
realmName=gatein-domain
</programlisting>
@@ -447,28 +447,26 @@
<section id="sect-Reference_Guide-JOSSO-Setup_the_portal_to_redirect_to_JOSSO">
<title>Setup the portal to redirect to JOSSO</title>
<para>
- Now we want to tell GateIn to redirect all user authentication to the CAS server.
+ The next part of the process is to redirect all user authentication to the JOSSO server.
</para>
<para>
- The CAS server can be located anywhere on the Internet, and this information must be properly configured within the GateIn instance. This configuration needs to be done in 3 files
+ Information about where the JOSSO server is hosted must be properly configured within the &PRODUCT; instance. The required configuration is done by modifying four files:
<itemizedlist>
<listitem>
<para>
- <emphasis>In gatein.ear/02portal.war/groovy/portal/webui/UILoginForm.gtmpl replace the javascript at the bottom by:</emphasis>
-
-
+ Replace the javascript at the bottom <filename>gatein.ear/02portal.war/groovy/portal/webui/UILoginForm.gtmpl</filename> with:
+ </para>
<programlisting><script>
<%=uicomponent.event("Close");%>
window.location = 'http://localhost:8888/josso/signon/login.do?josso_back_to=http://localhost:8080/portal/private/classic';
</script>
</programlisting>
- </para>
+
</listitem>
<listitem>
<para>
- <emphasis>In gatein.ear/02portal.war/login/jsp/login.jsp replace everything by:</emphasis>
-
-
+ Replace the entire contents of <filename>gatein.ear/02portal.war/login/jsp/login.jsp</filename> with:
+ </para>
<programlisting><html>
<head>
<script type="text/javascript">
@@ -479,13 +477,11 @@
</body>
</html>
</programlisting>
- </para>
</listitem>
<listitem>
<para>
- <emphasis>In gatein.ear/02portal.war/WEB-INF/web.xml replace the InitiateLoginServlet declaration by:</emphasis>
-
-
+ Replace the <literal>InitiateLoginServlet</literal> declaration in <filename>gatein.ear/02portal.war/WEB-INF/web.xml</filename> with:
+ </para>
<programlisting><servlet>
<servlet-name>InitiateLoginServlet</servlet-name>
<servlet-class>org.gatein.sso.agent.GenericSSOAgent</servlet-class>
@@ -495,11 +491,10 @@
</init-param>
</servlet>
</programlisting>
- </para>
</listitem>
<listitem>
<para>
- In gatein.ear/02portal.war/WEB-INF/web.xml remove the PortalLoginController servlet declaration and mapping
+ Remove the <literal>PortalLoginController</literal> servlet declaration and mapping in <filename>gatein.ear/02portal.war/WEB-INF/web.xml</filename>
</para>
</listitem>
</itemizedlist>
@@ -514,51 +509,62 @@
<section id="sect-Reference_Guide-Single_Sign_On-OpenSSO_The_Open_Web_SSO_project">
<title>OpenSSO - The Open Web SSO project</title>
<para>
- This Single Sign On plugin enables seamless integration between GateIn Portal and the OpenSSO Single Sign On Framework. Details about OpenSSO can be found <ulink url="https://opensso.dev.java.net/">here.</ulink>
+ This Single Sign On plugin enables seamless integration between &PRODUCT; and the OpenSSO Single Sign On Framework. Details about OpenSSO can be found <ulink url="https://opensso.dev.java.net/">here</ulink>.
</para>
<para>
- The integration consitsts in two parts, the first part consists of installing or configuring an OpenSSO server, the second part consists of setting up the portal to use the OpenSSO server.
+ Setting up this integration happens in two distinct actions. The first part is installing or configuring an OpenSSO server and the second involves setting up the portal to use the OpenSSO server.
</para>
<section id="sect-Reference_Guide-OpenSSO_The_Open_Web_SSO_project-OpenSSO_server">
<title>OpenSSO server</title>
<para>
- First we will set up the server to authenticate against the portal login module. You can find more information about setting up the server by reading the official OpenSSO documentation, here we will install the OpenSSO server on Tomcat
+ This section details setting up the OpenSSO server to authenticate against the Enterprise Portal Platform login module.
</para>
+ <para>
+ In this example the JOSSO server will be installed on Tomcat.
+ </para>
<section id="sect-Reference_Guide-OpenSSO_server-Obtaining_OpenSSO">
<title>Obtaining OpenSSO</title>
<para>
- You can download OpenSSO from https://opensso.dev.java.net/public/use/index.html.
+ OpenSSO can be downloaded from <ulink type="http" url="https://opensso.dev.java.net/public/use/index.html">https://opensso.dev.java.net/public/use/index.html</ulink>.
</para>
<para>
- Once downloaded extract it in what we will call $OPENSSO_HOME from now.
+ Once downloaded, extract the package into a suitable location. This location will be referred to as <filename>OPENSSO_HOME</filename> in this example.
</para>
</section>
<section id="sect-Reference_Guide-OpenSSO_server-Modifying_OpenSSO_server">
<title>Modifying OpenSSO server</title>
<para>
- To simplify we will directly modify the sources so that the produced web archive is configured the way we want.
+ To configure the web server as desired, it is simpler to directly modify the sources.
</para>
<para>
- First we will want to add the GateIn Authentication Plugin:
+ The first step is to add the &PRODUCT; Authentication Plugin:
</para>
<para>
- The plugin makes secure authentication callbacks to a RESTful service installed on the remote GateIn server in order to authenticate a user. In order for the plugin to function correctly, it needs to be properly configured to connect to this service. This configuration is done via the <emphasis>opensso.war/config/auth/default/AuthenticationPlugin.xml</emphasis> file.
+ The plugin makes secure authentication callbacks to a RESTful service installed on the remote &PRODUCT; server in order to authenticate a user.
</para>
- <orderedlist>
- <listitem>
+ <para>
+ In order for the plugin to function correctly, it needs to be properly configured to connect to this service. This configuration is done via the <filename>opensso.war/config/auth/default/AuthenticationPlugin.xml</filename> file.
+ </para>
+ <procedure>
+ <step>
<para>
- Get an installation of Tomcat and extract it in what we will call $TOMCAT_HOME. Change the default port to avoid a conflict with the default GateIn (for testing purposes). Edit $TOMCAT_HOME/conf/server.xml and replace the 8080 port to 8888.
+ Obtain a copy of Tomcat and extract it into a suitable location (this location will be referred to as <filename>TOMCAT_HOME</filename> in this example).
+ </para>
+ </step>
+ <step>
+ <para>
+ Change the default port to avoid a conflict with the default &PRODUCT; port (for testing purposes). Do this by editing <filename>TOMCAT_HOME/conf/server.xml</filename> and replacing the 8080 port to 8888.
<note>
<para>
- If you are running GateIn with Tomcat on the same machine you will also need to change the port 8005 to something else to avoid port conflicts.
+ If &PRODUCT; is running on the same machine as Tomcat, the port 8005 will also need to be changed to avoid port conflicts.
</para>
</note>
</para>
- </listitem>
- <listitem>
+ </step>
+ <step>
<para>
- This is what the $TOMCAT_HOME/webapps/opensso/config/auth/default/AuthenticationPlugin.xml file should look like:
+ Ensure the <filename>TOMCAT_HOME/webapps/opensso/config/auth/default/AuthenticationPlugin.xml</filename> file looks like this:
<programlisting>
<?xml version='1.0' encoding="UTF-8"?>
@@ -582,46 +588,46 @@
</ModuleProperties>
</programlisting>
</para>
- </listitem>
- <listitem>
+ </step>
+ <step>
<para>
- Copy $GATEIN_SSO/opensso/plugin/WEB-INF/lib/sso-opensso-plugin-<VERSION>.jar , $GATEIN_SSO/opensso/plugin/WEB-INF/lib/commons-httpclient-<VERSION>.jar, and $GATEIN_SSO/opensso/plugin/WEB-INF/lib/commons-logging-<VERSION>.jar into the Tomcat Installation at: $TOMCAT_HOME/webapps/opensso/WEB-INF/lib
+ Copy <filename>GATEIN_SSO/opensso/plugin/WEB-INF/lib/sso-opensso-plugin-<VERSION>.jar</filename>, <filename>GATEIN_SSO/opensso/plugin/WEB-INF/lib/commons-httpclient-<VERSION>.jar</filename>, and <filename>GATEIN_SSO/opensso/plugin/WEB-INF/lib/commons-logging-<VERSION>.jar</filename> into the Tomcat directory at <filename>TOMCAT_HOME/webapps/opensso/WEB-INF/lib</filename>.
</para>
- </listitem>
- <listitem>
+ </step>
+ <step>
<para>
- Copy $GATEIN_SSO/opensso/plugin/WEB-INF/classes/gatein.properties into the Tomcat Installation at: $TOMCAT_HOME/webapps/opensso/WEB-INF/classes
+ Copy <filename>GATEIN_SSO/opensso/plugin/WEB-INF/classes/gatein.properties</filename> into <filename>TOMCAT_HOME/webapps/opensso/WEB-INF/classes</filename>
</para>
- </listitem>
- <listitem>
+ </step>
+ <step>
<para>
- Now you should be able to start Tomcat and access http://localhost:8888/opensso/UI/Login?realm=gatein but at this stage you won't be able to login.
+ Tomcat should start and be able to access <ulink type="http" url="http://localhost:8888/opensso/UI/Login?realm=gatein">http://localhost:8888/opensso/UI/Login?realm=gatein</ulink>. Login will not be available at this point.
</para>
<mediaobject>
<imageobject>
<imagedata fileref="images/opensso-shot.png" format="PNG" />
</imageobject>
</mediaobject>
- </listitem>
- </orderedlist>
+ </step>
+ </procedure>
</section>
</section>
<section id="sect-Reference_Guide-OpenSSO_The_Open_Web_SSO_project-Setup_the_OpenSSO_client">
<title>Setup the OpenSSO client</title>
- <orderedlist>
- <listitem>
+ <procedure>
+ <step>
<para>
- Copy all libraries from $GATEIN_SSO/opensso/gatein.ear/lib into $JBOSS_HOME/server/default/deploy/gatein.ear/lib (Or if you are running GateIn in Tomcat, in $GATEIN_HOME/lib)
+ Copy all libraries from <filename>GATEIN_SSO/opensso/gatein.ear/lib</filename> into <filename>JBOSS_HOME/server/default/deploy/gatein.ear/lib</filename> (Or, in Tomcat, into <filename>GATEIN_HOME/lib</filename>)
</para>
- </listitem>
- <listitem>
- <para>
- In JBoss AS, edit gatein.ear/META-INF/gatein-jboss-beans.xml and uncomment this section
- </para>
- <para>
-
+ </step>
+ <step>
+ <itemizedlist>
+ <listitem>
+ <para>
+ In JBoss AS, edit gatein.ear/META-INF/gatein-jboss-beans.xml and uncomment this section
+ </para>
<programlisting><authentication>
<login-module code="org.gatein.sso.agent.login.SSOLoginModule" flag="required">
</login-module>
@@ -631,48 +637,62 @@
</login-module>
</authentication>
</programlisting>
- </para>
- <para>
- If you are running GateIn in Tomcat, edit $GATEIN_HOME/conf/jaas.conf and uncomment this section
- </para>
- <para>
-
+
+ </listitem>
+ <listitem>
+ <para>
+ If you are running GateIn in Tomcat, edit $GATEIN_HOME/conf/jaas.conf and uncomment this section
+ </para>
<programlisting>org.gatein.sso.agent.login.SSOLoginModule required
org.exoplatform.services.security.j2ee.JbossLoginModule required
portalContainerName=portal
realmName=gatein-domain
</programlisting>
- At this point, you can test the installation, start GateIn (assuming that the OpenSSO server using Tomcat is still running) by going to http://localhost:8888/opensso/UI/Login?realm=gatein you should be able to login with username 'root' and password 'gtn' or any account created through the portal.
+
+ </listitem>
+ </itemizedlist>
+ <para>
+ At this point the installation can be tested:
</para>
- </listitem>
- </orderedlist>
+ <procedure>
+ <step>
+ <para>
+ Access &PRODUCT; by going to <ulink type="http" url="http://localhost:8888/opensso/UI/Login?realm=gatein">http://localhost:8888/opensso/UI/Login?realm=gatein</ulink> (assuming that the OpenSSO server using Tomcat is still running).
+ </para>
+ </step>
+ <step>
+ <para>
+ Login with the username <literal>root</literal> and the password <literal>gtn</literal> or any account created through the portal.
+ </para>
+ </step>
+ </procedure>
+ </step>
+ </procedure>
</section>
<section id="sect-Reference_Guide-OpenSSO_The_Open_Web_SSO_project-Setup_the_portal_to_redirect_to_OpenSSO">
<title>Setup the portal to redirect to OpenSSO</title>
<para>
- Now we want to tell GateIn to redirect all user authentication to the OpenSSO server.
+ The next part of the process is to redirect all user authentication to the OpenSSO server.
</para>
<para>
- The OpenSSO server can be located anywhere on the Internet, and this information must be properly configured within the GateIn instance. This configuration needs to be done in 3 files
+ Information about where the OpenSSO server is hosted must be properly configured within the Enterprise Portal Platform instance. The required configuration is done by modifying three files:
<itemizedlist>
<listitem>
<para>
- <emphasis>In gatein.ear/02portal.war/groovy/portal/webui/UILoginForm.gtmpl replace the javascript at the bottom by:</emphasis>
-
-
+ Replace the javascript at the bottom of <filename>gatein.ear/02portal.war/groovy/portal/webui/UILoginForm.gtmpl</filename> with:
+ </para>
<programlisting><script>
<%=uicomponent.event("Close");%>
window.location = 'http://localhost:8888/opensso/UI/Login?realm=gatein&goto=http://localhost:8080/portal/private/classic';
</script>
</programlisting>
- </para>
+
</listitem>
<listitem>
<para>
- <emphasis>In gatein.ear/02portal.war/login/jsp/login.jsp replace everything by:</emphasis>
-
-
+ Replace the contents of <filename>gatein.ear/02portal.war/login/jsp/login.jsp</filename> with:
+ </para>
<programlisting><html>
<head>
<script type="text/javascript">
@@ -683,13 +703,11 @@
</body>
</html>
</programlisting>
- </para>
</listitem>
<listitem>
<para>
- <emphasis>In gatein.ear/02portal.war/WEB-INF/web.xml replace the InitiateLoginServlet declaration by:</emphasis>
-
-
+ Replace the <literal>InitiateLoginServlet</literal> declaration in <filename>gatein.ear/02portal.war/WEB-INF/web.xml</filename> with:
+ </para>
<programlisting><servlet>
<servlet-name>InitiateLoginServlet</servlet-name>
<servlet-class>org.gatein.sso.agent.GenericSSOAgent</servlet-class>
@@ -703,7 +721,7 @@
</init-param>
</servlet>
</programlisting>
- </para>
+
</listitem>
</itemizedlist>
</para>
14 years, 10 months
gatein SVN: r1776 - portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US.
by do-not-reply@jboss.org
Author: smumford
Date: 2010-02-18 23:48:19 -0500 (Thu, 18 Feb 2010)
New Revision: 1776
Modified:
portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/Author_Group.xml
Log:
minor edits
Modified: portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/Author_Group.xml
===================================================================
--- portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/Author_Group.xml 2010-02-18 23:20:47 UTC (rev 1775)
+++ portal/branches/EPP_5_0_0_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/Author_Group.xml 2010-02-19 04:48:19 UTC (rev 1776)
@@ -2,14 +2,32 @@
<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
<authorgroup>
- <author>
+ <editor>
<firstname>Scott</firstname>
<surname>Mumford</surname>
<affiliation>
<orgname>Red Hat</orgname>
<orgdiv>Engineering Content Services</orgdiv>
</affiliation>
+ <contrib>Document editing</contrib>
<email>smumford(a)redhat.com</email>
- </author>
+ </editor>
+ <editor>
+ <firstname>Thomas</firstname>
+ <surname>Heute</surname>
+ <affiliation>
+ <orgname>Red Hat</orgname>
+ <orgdiv>JBoss Services R&D</orgdiv>
+ </affiliation>
+ <contrib>Document review and editing</contrib>
+ <email>theute(a)redhat.com</email>
+ </editor>
+ <othercredit>
+ <affiliation>
+ <orgname><ulink type="http" url="http://www.jboss.org/gatein/">GateIn</ulink> and <ulink type="http" url="http://www.exoplatform.com/portal/public/website/">Exo Platform</ulink></orgname>
+ <orgdiv>Documentation Teams</orgdiv>
+ </affiliation>
+ <contrib>Original product documentation by:</contrib>
+ </othercredit>
</authorgroup>
14 years, 10 months
gatein SVN: r1775 - in portal/trunk/docs/user-guide/en/modules: account and 3 other directories.
by do-not-reply@jboss.org
Author: smumford
Date: 2010-02-18 18:20:47 -0500 (Thu, 18 Feb 2010)
New Revision: 1775
Modified:
portal/trunk/docs/user-guide/en/modules/Introduction.xml
portal/trunk/docs/user-guide/en/modules/account/Account_and_Password_Retrieval.xml
portal/trunk/docs/user-guide/en/modules/account/Change_Account_Settings.xml
portal/trunk/docs/user-guide/en/modules/account/Register_New_Accounts.xml
portal/trunk/docs/user-guide/en/modules/account/Remember_User_Account.xml
portal/trunk/docs/user-guide/en/modules/account/Sign_in_and_Sign_out.xml
portal/trunk/docs/user-guide/en/modules/portal/Toolbar.xml
portal/trunk/docs/user-guide/en/modules/portal/User_Management.xml
portal/trunk/docs/user-guide/en/modules/portletsUser/Dashboard_Portlet.xml
portal/trunk/docs/user-guide/en/modules/portletsUser/Interface_Portlets.xml
portal/trunk/docs/user-guide/en/modules/terms/Gadget_concept.xml
portal/trunk/docs/user-guide/en/modules/terms/Navigation_concept.xml
portal/trunk/docs/user-guide/en/modules/terms/Portal_concept.xml
portal/trunk/docs/user-guide/en/modules/terms/Portlet_concept.xml
portal/trunk/docs/user-guide/en/modules/terms/Toolbar_concept.xml
Log:
minor edits
Modified: portal/trunk/docs/user-guide/en/modules/Introduction.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/Introduction.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/Introduction.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -17,7 +17,7 @@
This book explains various apsects of &PRODUCT;, such as managing users and access permissions, using portlets and changing simple interface features such as skins, langauage and page orientation.
</para>
<para>
- Refer to the <ulink type="http" url="http://redhat.com/docs">&PRODUCT; Installation Guide</ulink> for information on downloading and installing the product or see the <ulink type="http" url="http://redhat.com/docs">&PRODUCT; Reference Guide</ulink> for information on more advances topics.
+ Refer to the <ulink type="http" url="http://redhat.com/docs">&PRODUCT; Installation Guide</ulink> for information on downloading and installing the product or the <ulink type="http" url="http://redhat.com/docs">&PRODUCT; Reference Guide</ulink> for information on more advanced topics.
</para>
<section id="sect-Install_Guide-Introduction-Related_Links">
<title>Related Links</title>
Modified: portal/trunk/docs/user-guide/en/modules/account/Account_and_Password_Retrieval.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/account/Account_and_Password_Retrieval.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/account/Account_and_Password_Retrieval.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -45,12 +45,12 @@
<itemizedlist>
<listitem>
<para>
- <emphasis role="bold">Forgot my password</emphasis>. If you forget your password, you need to select this option.
+ <emphasis role="bold">Forgot my password</emphasis>.
</para>
</listitem>
<listitem>
<para>
- <emphasis role="bold">Forgot my username</emphasis>. If you forget your username, you need to select this option.
+ <emphasis role="bold">Forgot my username</emphasis>.
</para>
</listitem>
</itemizedlist>
Modified: portal/trunk/docs/user-guide/en/modules/account/Change_Account_Settings.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/account/Change_Account_Settings.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/account/Change_Account_Settings.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -26,9 +26,6 @@
--><title>Change Account Settings</title>
<para>
- Users can follow this guide to change account information.
- </para>
- <para>
To change your account information, click on the account name in the top navigation bar:
</para>
<mediaobject>
Modified: portal/trunk/docs/user-guide/en/modules/account/Register_New_Accounts.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/account/Register_New_Accounts.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/account/Register_New_Accounts.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -25,9 +25,12 @@
--><title>Register New Accounts</title>
<para>
- Users who visit the Portal and who are not registered are limited in the content they can see. Users who need access to deeper content or who need to undertake actions within the prtal should register themselves and then contact the portal administrator to have appropriate permissions added to their account.
+ Unregistered users who visit the portal are limited in the content they can see.
</para>
<para>
+ Users who need access to deeper content or who need to undertake actions within the portal should register themselves and then contact the portal administrator to have appropriate permissions added to their account.
+ </para>
+ <para>
Users can quickly and easily register a new account for themselves. Complete the steps below:
</para>
<procedure>
@@ -58,7 +61,7 @@
<term>User Name</term>
<listitem>
<para>
- The name used to login.
+ The name used to log in.
</para>
</listitem>
</varlistentry>
@@ -98,7 +101,7 @@
<term>Email Address</term>
<listitem>
<para>
- The user's email address. This must be in the appropriate format. For example: username(a)abc.com.
+ The user's email address. This must be in the appropriate format. For example: <replaceable>username(a)abc.com</replaceable>.
</para>
</listitem>
</varlistentry>
@@ -165,7 +168,7 @@
<note>
<title>Note</title>
<para>
- Be sure you enter your email address carefully. If you should forget your user name or password, you can recover it with this email address.
+ Be sure you enter your email address carefully. If you should forget your user name or password, you can recover it from this email address.
</para>
</note>
</para>
Modified: portal/trunk/docs/user-guide/en/modules/account/Remember_User_Account.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/account/Remember_User_Account.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/account/Remember_User_Account.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -25,7 +25,7 @@
--><title>Remember User Account</title>
<para>
- Users can return to the &PRODUCT; and be automatically authenticated with a cookie provided by their browser. Thus users do not have to perform an explicit authentication each time they access the portal.
+ Users can return to the &PRODUCT; and be automatically authenticated with a cookie provided by their browser. This means users do not have to perform an explicit authentication each time they access the portal.
</para>
<mediaobject>
<imageobject>
Modified: portal/trunk/docs/user-guide/en/modules/account/Sign_in_and_Sign_out.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/account/Sign_in_and_Sign_out.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/account/Sign_in_and_Sign_out.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -97,7 +97,7 @@
<title>Sign In</title>
<step>
<para>
- Go to your Portal by entering the URL into the address bar of your browser (For example http://localhost:8080/portal).
+ Go to your portal by entering the URL into the address bar of your browser (For example http://localhost:8080/portal).
</para>
</step>
<step>
@@ -127,7 +127,7 @@
</step>
</procedure>
<para>
- If the user name does not exist or the user name and/or password is invalid an alert message will appear. To attempt the login again; click the <emphasis role="bold">OK</emphasis> button on the alert message to be returned to the Sign In form. Enter the user name and password again.
+ If the user name does not exist or the user name and/or password is invalid an alert message will appear. To attempt the log in again; click the <emphasis role="bold">OK</emphasis> button on the alert message to be returned to the Sign In form. Enter the user name and password again.
</para>
<para>
After signing in, you will be redirected to the homepage and welcomed with your full name in the top right corner of the page.
Modified: portal/trunk/docs/user-guide/en/modules/portal/Toolbar.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/portal/Toolbar.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/portal/Toolbar.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -21,7 +21,7 @@
<term>User Menu</term>
<listitem>
<para>
- You can use the user menu to change the language or skin used in the portal or to sign out.
+ You can use the main menu (located under the product icon) to change the language or skin used in the portal or to sign out.
</para>
<mediaobject>
<imageobject>
@@ -79,7 +79,7 @@
<term> Editor</term>
<listitem>
<para>
- Portal Administrators have access to another navigation that offers links to add a new page to the current portal, edit a particular page's properties or to change a page's layout. This navigation appears next to the Dashboard navigation in the Toolbar and is contextually-named. It will appear as either <emphasis role="bold">Site Editor</emphasis> or <emphasis role="bold">Group Editor</emphasis> depending on the user's location within the portal.
+ Portal Administrators have access to another navigation that allows them to; add a new page to the current portal, edit a particular page's properties or to change a page's layout. This navigation appears next to the Dashboard navigation in the Toolbar and is contextually-named. It will appear as either <emphasis role="bold">Site Editor</emphasis> or <emphasis role="bold">Group Editor</emphasis> depending on the user's location within the portal.
</para>
<mediaobject>
<imageobject>
Modified: portal/trunk/docs/user-guide/en/modules/portal/User_Management.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/portal/User_Management.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/portal/User_Management.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -6,7 +6,7 @@
<section id="sect-User_Guide-User_management">
<title>User management</title>
<para>
- To assist Administrators to manage a number of registered users &PRODUCT; offers a number of tools to manage users, groups and memberships easily and effectively.
+ &PRODUCT; offers a number of tools to assist Administrators to manage a number of registered users, groups and memberships easily and effectively.
</para>
<section id="sect-User_Guide-User_Management-Manage_users">
Modified: portal/trunk/docs/user-guide/en/modules/portletsUser/Dashboard_Portlet.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/portletsUser/Dashboard_Portlet.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/portletsUser/Dashboard_Portlet.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -6,8 +6,11 @@
<section id="sect-User_Guide-Dashboard_Portlet">
<title>Dashboard Portlet</title>
<para>
- The Dashboard portlet is used for hosting mini applications known as gadgets. The Dashboard uses a variety of graphical effects for displaying, opening and using gadgets. Gadgets can be moved, rearranged, created and deleted. More than one instance of the same gadget can be opened at the same time and each instance of the same gadget can have different settings. The gadgets instances are as independent as different portlets instances.
+ The Dashboard portlet is used for hosting mini applications known as gadgets. The Dashboard uses a variety of graphical effects for displaying, opening and using gadgets.
</para>
+ <para>
+ Gadgets within the Dashboard portlet can be moved and rearranged. New gadgets can be created and unnecessary ones deleted. More than one instance of the same gadget can be opened at the same time and each instance of the same gadget can have different settings. The gadgets instances are completely independent.
+ </para>
<mediaobject>
<imageobject>
<imagedata fileref="images/Dashboard1.png" format="PNG" width="444" />
@@ -128,7 +131,7 @@
<note>
<title>URL Types</title>
<para>
- Remote gadgets can be only created using an .xml link or RSS URL. However, if you use a link that generates an RSS feed (for example: http://feeds.feedburner.com/gatein), a new RSS reader gadget will be created automatically.
+ Remote gadgets can be only created using an .xml link or RSS URL. However, if you use a link that generates an RSS feed (for example: <ulink type="http" url="http://feeds.feedburner.com/gatein">http://feeds.feedburner.com/gatein</ulink>), a new RSS reader gadget will be created automatically even if the URL does not end in <literal>.rss</literal>.
</para>
</note>
</step>
Modified: portal/trunk/docs/user-guide/en/modules/portletsUser/Interface_Portlets.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/portletsUser/Interface_Portlets.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/portletsUser/Interface_Portlets.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -14,7 +14,7 @@
<term>Banner Portlet</term>
<listitem>
<para>
- This Portlet is considered the welcome gateway of a Portal. It contains the organization's slogan, logo, and icons etc.
+ This Portlet contains the organization's slogan, logo, and icons.
</para>
<!-- <mediaobject>
<imageobject>
@@ -27,7 +27,7 @@
<term>HomePage Portlet</term>
<listitem>
<para>
- This Portlet is used to provide the home page for a portal. The home page is the first page displayed when you visit the site.
+ This Portlet is the home page for a portal. The home page is the first page displayed when you visit the site.
</para>
<!-- <mediaobject>
<imageobject>
@@ -40,7 +40,7 @@
<term>Navigation Portlet</term>
<listitem>
<para>
- This Portlet provides a navigation bar. A is a menu that helps users to visualize the structure of a site and provide links to quickly move from page to page.
+ This Portlet provides a navigation bar. A navigation is a menu that helps users to visualize the structure of a site and provide links to quickly move from page to page.
</para>
<!-- <mediaobject>
<imageobject>
Modified: portal/trunk/docs/user-guide/en/modules/terms/Gadget_concept.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/terms/Gadget_concept.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/terms/Gadget_concept.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -8,7 +8,6 @@
<para>
A gadget is a mini web application that a portal user can add to their web page. Some useful gadgets that are packaged by default with &PRODUCT;:
</para>
-
<para>
See the <emphasis role="bold">Default Gadgets</emphasis> section of <xref linkend="sect-User_Guide-Dashboard_Portlet-Using_the_Dashboard_Workspace" /> for more information about these gadgets.
</para>
Modified: portal/trunk/docs/user-guide/en/modules/terms/Navigation_concept.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/terms/Navigation_concept.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/terms/Navigation_concept.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -6,7 +6,7 @@
<section id="sect-User_Guide-Navigation">
<title>Navigation</title>
<para>
- Portal navigations are menus that list hyperlinks to other parts of a Portal. They can help users to visualize the structure of a site. The default navigation menus in &PRODUCT; are located in a bar across the top of the 'Home' page.
+ Portal navigations are menus that contain hyperlinks to other parts of a Portal. They can help users to visualize the structure of a site. The default navigation menus in &PRODUCT; are located in the Toolbar (<xref linkend="sect-User_Guide-Toolbar-Concept"/>).
</para>
<para>
There are three navigation types.
@@ -16,23 +16,43 @@
<term>Site</term>
<listitem>
<para>
- This navigation links to separate sites of the main Portal. Each site has only one navigation and it is automatically created when the site is created. This functionality allows different sites to administer some Portal aspects individually, such as portlets, while maintaining other content standardized with the parent Portal.
+ This navigation links to separate sites of the parent Portal. Each site has only one navigation and it is automatically generated when the site is created.
</para>
+ <para>
+ This functionality allows different sites to administer some Portal aspects (such as portlets) individually while maintaining other content standardized with the parent Portal.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
<term>Group</term>
<listitem>
<para>
- The content of this navigation differs depending on the type of account logged in. For user accounts the Groups navigation holds personal links set up by the user. For management accounts, it keeps the links to pages for registered Portal users as well as administrative tasks and personal links. In the administrator account, the navigation adds further management abilities such as Internationalization and community management.
+ The content of this navigation differs depending on the type of account logged in.
</para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ If a user account in in effect, this navigation holds personal links set up by that user.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ When using a management account, this navigation contains links to pages for registered users as well as administrative tasks and personal links.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ In an administrator account the navigation adds further management abilities such as Internationalization and community management.
+ </para>
+ </listitem>
+ </itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>Dashboard</term>
<listitem>
<para>
- Each user has own navigation 'Dashboard' that houses links and portlets (or gadgets) that the user has selected. A user's navigation is created automatically when user is registered. This navigation only can be deleted when the user is deleted.
+ Each user has own navigation 'Dashboard' that contains links and portlets (or gadgets) that the user has selected. A user's navigation is created automatically when user is registered. This navigation only can be deleted when the user is deleted.
</para>
</listitem>
</varlistentry>
@@ -45,9 +65,12 @@
<term>Site/Group Editor</term>
<listitem>
<para>
- This navigation appears as either <emphasis role="bold">Site Editor</emphasis> or <emphasis role="bold">Group Editor</emphasis> depending on the administrator's location within the portal. When in areas of the portal displaying content, the navigation shows as <emphasis role="bold">Site Editor</emphasis> and in areas of the portal pertaining to users, the navigation shows as <emphasis role="bold">Group Editor</emphasis>.
+ This navigation appears as either <emphasis role="bold">Site Editor</emphasis> or <emphasis role="bold">Group Editor</emphasis> depending on the administrator's location within the portal.
</para>
<para>
+ When in areas of the portal displaying content, the navigation shows as <emphasis role="bold">Site Editor</emphasis> and in areas of the portal pertaining to users, the navigation shows as <emphasis role="bold">Group Editor</emphasis>.
+ </para>
+ <para>
This navigation contains links to add a new pages to the portal, to edit a page or to change the portal's layout. Administrators can use these links to manage the portal.
</para>
</listitem>
Modified: portal/trunk/docs/user-guide/en/modules/terms/Portal_concept.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/terms/Portal_concept.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/terms/Portal_concept.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -6,7 +6,7 @@
<section id="sect-User_Guide-Portal">
<title>Portal</title>
<para>
- &PRODUCT; is a web-based application that provides users with personalized User Interface (UI). This interface allows users to easily search applications or information or communicating with other users.
+ &PRODUCT; is a web-based application that provides users with a personalized User Interface (UI). This interface allows users to easily search applications and information or communicate with other users.
</para>
<para>
The Portal provides a graphical aggregation of enterprise content and business applications with flexible management and personalization options.
Modified: portal/trunk/docs/user-guide/en/modules/terms/Portlet_concept.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/terms/Portlet_concept.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/terms/Portlet_concept.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -6,10 +6,10 @@
<section id="sect-User_Guide-Portlet">
<title>Portlet</title>
<para>
- A portlet is a small, self-contained web application. Portlet interface components are managed and displayed within a Portal. Typically, a <emphasis>portal</emphasis> page is displayed as a collection of non-overlapping <emphasis>portlet</emphasis> windows, with each portlet window displaying a different portlet. Hence a portlet (or collection of portlets) resembles a web-based application hosted in a portal.
+ A portlet is a small, self-contained web application. Portlets are managed and displayed within a Portal. Typically, a <emphasis>portal</emphasis> page is displayed as a collection of non-overlapping <emphasis>portlet</emphasis> windows, with each portlet window displaying a different portlet. Hence a portlet (or collection of portlets) resembles a web-based application hosted in a portal.
</para>
<para>
- Portlets can be configured to generated differing content and &PRODUCT; has a number of default portlets that can be plugged into any portal.
+ Portlets can be configured to generated differing content and &PRODUCT; has a number of default portlets that can be used in any portal built in the application.
</para>
</section>
Modified: portal/trunk/docs/user-guide/en/modules/terms/Toolbar_concept.xml
===================================================================
--- portal/trunk/docs/user-guide/en/modules/terms/Toolbar_concept.xml 2010-02-18 22:06:39 UTC (rev 1774)
+++ portal/trunk/docs/user-guide/en/modules/terms/Toolbar_concept.xml 2010-02-18 23:20:47 UTC (rev 1775)
@@ -6,8 +6,11 @@
<section id="sect-User_Guide-Toolbar-Concept">
<title>Toolbar</title>
<para>
- This bar contains all user and administration actions. It helps users and the administrator access and perform actions easily, quickly and effectively. You can see the toolbar below as it appears in the Portal:
+ The Toolbar spans the top of the portal application and contains links to user and administrative actions. It helps users and the administrator access and perform actions easily, quickly and effectively.
</para>
+ <para>
+ You can see the toolbar below as it appears in the Portal:
+ </para>
<mediaobject>
<imageobject>
<imagedata fileref="images/Toolbar.png" format="PNG" width="444" />
14 years, 10 months
gatein SVN: r1774 - portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-02-18 17:06:39 -0500 (Thu, 18 Feb 2010)
New Revision: 1774
Modified:
portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java
Log:
- GTNPORTAL-692: WSRP portlets might have an extra / so we remove it if there's one.
- Removed unneeded re-parsing of the portlet id since the info for group_ and name_ is already known.
Modified: portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java 2010-02-18 06:47:16 UTC (rev 1773)
+++ portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java 2010-02-18 22:06:39 UTC (rev 1774)
@@ -262,20 +262,29 @@
private PortletInfo portletInfo_;
final PortletContext context;
+ private static final String SEPARATOR = "/";
+ private static final int SEPARATOR_LENGTH = SEPARATOR.length();
public PortletExtra(Portlet portlet)
{
PortletInfo info = portlet.getInfo();
String portletName = info.getName();
String appName = info.getApplicationName();
- String portletId = appName + "/" + portletName;
- String type = portlet.isRemote() ? REMOTE : LOCAL;
+ boolean remote = portlet.isRemote();
+ // if the portlet is remote, we might have an extra '/' at the beginning of the portlet name
+ if(remote && portletName.startsWith(SEPARATOR))
+ {
+ portletName = portletName.substring(SEPARATOR_LENGTH);
+ }
+
+ String portletId = appName + SEPARATOR + portletName;
+ String type = remote ? REMOTE : LOCAL;
+
//
id_ = portletId;
- String[] fragments = portletId.split("/");
- group_ = fragments[0];
- name_ = fragments[1];
+ group_ = appName;
+ name_ = portletName;
type_ = type;
portletInfo_ = info;
context = portlet.getContext();
14 years, 10 months