gatein SVN: r8954 - in epp/docs/branches/5.2/User_Guide/en-US/modules: language and 1 other directory.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-11-12 04:26:59 -0500 (Mon, 12 Nov 2012)
New Revision: 8954
Modified:
epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml
Log:
Minor amendments to the work done in BZ#813776.
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml 2012-11-09 04:56:31 UTC (rev 8953)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml 2012-11-12 09:26:59 UTC (rev 8954)
@@ -29,7 +29,7 @@
</term>
<listitem>
<para>
- The name used to log in. This username must be between 3 and 30 characters long, start with a lowercase letter and end with a lowercase letter or digit. Only lowercase letters, digits, dot and underscore characters are allowed for the username. Click the magnifying glass icon beside the user name to check whether the chosen username is available.
+ The name used to log in. This username must be between 3 and 30 characters long, start with a lowercase letter and end with a lowercase letter or digit. Only lowercase letters, digits, dots and underscore characters are allowed for the username. Click the magnifying glass icon beside the user name to check whether the chosen username is available.
</para>
</listitem>
</varlistentry>
@@ -79,7 +79,7 @@
</term>
<listitem>
<para>
- The user's name displayed in portal screens when the user is logged in. The field is opitonal and if no value is entered, a value in the <emphasis><First Name> <Last Name></emphasis> format is used instead.
+ The user's name displayed in portal screens when the user is logged in. The field is opitonal and if no value is entered, a value in the <emphasis><First Name> <Last Name></emphasis> format is used automatically.
</para>
</listitem>
</varlistentry>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml 2012-11-09 04:56:31 UTC (rev 8953)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml 2012-11-12 09:26:59 UTC (rev 8954)
@@ -17,7 +17,7 @@
<note>
<title>Extended Label Mode</title>
<para>
- A localization feature called Extended Label Mode has been available as of JBoss Enterprise Portal Platform 5.2.0. This feature allows site administrators to add labels to nodes and pages in multiple supported languages. When the language of the site is changed, the nodes will display the appropriate localized label.
+ A localization feature called Extended Label Mode has been available in JBoss Enterprise Portal Platform as of version 5.2.0. This feature allows site administrators to add labels to nodes and pages in multiple supported languages. When the language of the site is changed, the nodes will display the appropriate localized label.
</para>
</note>
12 years, 1 month
gatein SVN: r8953 - in epp/portal/branches/EPP_5_2_2_GA_BZ874821: portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component and 4 other directories.
by do-not-reply@jboss.org
Author: ghjboss
Date: 2012-11-08 23:56:31 -0500 (Thu, 08 Nov 2012)
New Revision: 8953
Modified:
epp/portal/branches/EPP_5_2_2_GA_BZ874821/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java
epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java
epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java
epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java
epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
Log:
commit the fix for BZ874821
Modified: epp/portal/branches/EPP_5_2_2_GA_BZ874821/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java
===================================================================
--- epp/portal/branches/EPP_5_2_2_GA_BZ874821/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java 2012-11-08 21:39:42 UTC (rev 8952)
+++ epp/portal/branches/EPP_5_2_2_GA_BZ874821/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java 2012-11-09 04:56:31 UTC (rev 8953)
@@ -30,13 +30,22 @@
{
private final String messageKey_;
private final Object[] messageArgs_;
+ private String message;
public ApplicationMessage(String key, Object[] args)
{
this.messageKey_ = key;
this.messageArgs_ = args;
+ message = null;
}
+ public ApplicationMessage(String message)
+ {
+ messageKey_ = null;
+ messageArgs_ = null;
+ this.message = message;
+ }
+
@Override
public boolean equals(Object o)
{
@@ -85,24 +94,32 @@
public String getMessage()
{
- String msg = resolveMessage(messageKey_);
- if (msg != null && messageArgs_ != null)
+ if (message == null)
{
- for (int i = 0; i < messageArgs_.length; i++)
+ String msg = resolveMessage(messageKey_);
+ if (msg != null && messageArgs_ != null)
{
- final Object messageArg = messageArgs_[i];
- if (messageArg != null)
+ for (int i = 0; i < messageArgs_.length; i++)
{
- String arg = messageArg.toString();
- if (isArgsLocalized())
+ final Object messageArg = messageArgs_[i];
+ if (messageArg != null)
{
- arg = resolveMessage(arg);
+ String arg = messageArg.toString();
+ if (isArgsLocalized())
+ {
+ arg = resolveMessage(arg);
+ }
+ msg = msg.replace("{" + i + "}", arg);
}
- msg = msg.replace("{" + i + "}", arg);
}
}
+
+ message = msg;
+ return msg;
}
-
- return msg;
+ else
+ {
+ return message;
+ }
}
}
Modified: epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java
===================================================================
--- epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java 2012-11-08 21:39:42 UTC (rev 8952)
+++ epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java 2012-11-09 04:56:31 UTC (rev 8953)
@@ -154,7 +154,7 @@
}
catch (MessageException e)
{
- event.getRequestContext().getUIApplication().addMessage(e.getDetailMessage());
+ event.getRequestContext().getUIApplication().addMessage(e.getDetailedMessage());
return;
}
Modified: epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java
===================================================================
--- epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java 2012-11-08 21:39:42 UTC (rev 8952)
+++ epp/portal/branches/EPP_5_2_2_GA_BZ874821/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java 2012-11-09 04:56:31 UTC (rev 8953)
@@ -677,7 +677,7 @@
}
catch (MessageException ex)
{
- uiPortalApp.addMessage(ex.getDetailMessage());
+ uiPortalApp.addMessage(ex.getDetailedMessage());
return;
}
catch (Exception ex)
Modified: epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java
===================================================================
--- epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java 2012-11-08 21:39:42 UTC (rev 8952)
+++ epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java 2012-11-09 04:56:31 UTC (rev 8953)
@@ -195,7 +195,7 @@
}
catch (MessageException ex)
{
- uiApp.addMessage(ex.getDetailMessage());
+ uiApp.addMessage(ex.getDetailedMessage());
context.setProcessRender(true);
}
catch (Exception ex)
@@ -231,7 +231,7 @@
}
catch (MessageException ex)
{
- uiApp.addMessage(ex.getDetailMessage());
+ uiApp.addMessage(ex.getDetailedMessage());
context.setProcessRender(true);
}
}
@@ -261,7 +261,7 @@
}
catch (MessageException ex)
{
- uiApp.addMessage(ex.getDetailMessage());
+ uiApp.addMessage(ex.getDetailedMessage());
context.setProcessRender(true);
}
catch (Exception ex)
Modified: epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
===================================================================
--- epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-11-08 21:39:42 UTC (rev 8952)
+++ epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-11-09 04:56:31 UTC (rev 8953)
@@ -138,7 +138,7 @@
}
catch (MessageException ex)
{
- addMessage(ex.getDetailMessage());
+ addMessage(ex.getDetailedMessage());
}
catch (Throwable t)
{
Modified: epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
===================================================================
--- epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-11-08 21:39:42 UTC (rev 8952)
+++ epp/portal/branches/EPP_5_2_2_GA_BZ874821/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-11-09 04:56:31 UTC (rev 8953)
@@ -45,9 +45,13 @@
this((AbstractApplicationMessage)message);
}
- public AbstractApplicationMessage getDetailMessage()
+ public AbstractApplicationMessage getDetailedMessage()
{
return message;
}
+ public ApplicationMessage getDetailMessage()
+ {
+ return new ApplicationMessage(message.getMessage());
+ }
}
12 years, 1 month
gatein SVN: r8952 - epp/portal/branches.
by do-not-reply@jboss.org
Author: ghjboss
Date: 2012-11-08 16:39:42 -0500 (Thu, 08 Nov 2012)
New Revision: 8952
Added:
epp/portal/branches/EPP_5_2_2_GA_BZ874821/
Log:
create branch for support patch BZ874821
12 years, 1 month
gatein SVN: r8951 - in epp/docs/branches/6.0/User_Guide/en-US: images and 4 other directories.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-11-08 11:30:53 -0500 (Thu, 08 Nov 2012)
New Revision: 8951
Removed:
epp/docs/branches/6.0/User_Guide/en-US/images/AccountSetting.png
Modified:
epp/docs/branches/6.0/User_Guide/en-US/Revision_History.xml
epp/docs/branches/6.0/User_Guide/en-US/images/Account.png
epp/docs/branches/6.0/User_Guide/en-US/modules/Supported_Browsers.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/account/Change_Account_Settings.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/account/Register_New_Accounts.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Permission.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Portals.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/portal/User_Management.xml
Log:
BZ#813776 - removed various screenshots with no added information value and fixed various minor errors identified by docs QE.
Modified: epp/docs/branches/6.0/User_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/Revision_History.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/Revision_History.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -8,6 +8,20 @@
<simpara>
<revhistory>
<revision>
+ <revnumber>6.0.0-7</revnumber>
+ <date>Thu Nov 8 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email></email>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>BZ#813776 - removed various screenshots with no added information value and fixed various minor errors identified by docs QE.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
<revnumber>6.0.0-5</revnumber>
<date>Thu Oct 25 2012</date>
<author>
Modified: epp/docs/branches/6.0/User_Guide/en-US/images/Account.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/6.0/User_Guide/en-US/images/AccountSetting.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/6.0/User_Guide/en-US/modules/Supported_Browsers.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/Supported_Browsers.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/Supported_Browsers.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -15,7 +15,7 @@
--> <itemizedlist>
<listitem>
<para>
- <ulink url="http://www.mozilla.com/en-US/firefox/new/" type="http">Firefox</ulink> (versions 3.5 to 7).
+ <ulink url="http://www.mozilla.com/en-US/firefox/new/" type="http">Firefox</ulink> (versions 3.5 to 10).
</para>
</listitem>
<listitem>
Modified: epp/docs/branches/6.0/User_Guide/en-US/modules/account/Change_Account_Settings.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/account/Change_Account_Settings.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/account/Change_Account_Settings.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -18,8 +18,16 @@
</imageobject>
</mediaobject>
<para>
- The <emphasis role="bold">Account Profiles</emphasis> form will appear.
+ The <emphasis role="bold">Account Profiles</emphasis> form will appear:
</para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata fileref="images/AccountProfiles3.png" format="PNG" align="center" scale="100" />
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata fileref="images/AccountProfiles3.png" format="PNG" align="center" scalefit="1" contentwidth="100mm" />
+ </imageobject>
+ </mediaobject>
<para>
To change your Account Profile information:
</para>
@@ -31,7 +39,7 @@
</step>
<step>
<para>
- Your <emphasis role="bold">User Name</emphasis> cannot be changed. You can change your: <emphasis role="bold">First Name</emphasis> , <emphasis role="bold">Last Name</emphasis> and <emphasis role="bold">Email</emphasis>.
+ Your <emphasis role="bold">User Name</emphasis> cannot be changed. You can change your: <emphasis role="bold">First Name</emphasis> , <emphasis role="bold">Last Name</emphasis>, <emphasis role="bold">Display Name</emphasis> and <emphasis role="bold">Email</emphasis>.
</para>
</step>
<step>
Modified: epp/docs/branches/6.0/User_Guide/en-US/modules/account/Register_New_Accounts.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/account/Register_New_Accounts.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/account/Register_New_Accounts.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -20,18 +20,7 @@
Click <emphasis role="bold">Register</emphasis> on the Navigation bar.
</para>
<para>
- The <emphasis role="bold">Register New Account</emphasis> page appears:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="100" fileref="images/AccountSetting.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="150mm" align="center" scalefit="1" fileref="images/AccountSetting.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- <para>
- Complete the form with the required information:
+ The <emphasis role="bold">Register New Account</emphasis> page appears. Complete the form with the required information:
</para>
<variablelist>
<varlistentry>
@@ -40,8 +29,8 @@
</term>
<listitem>
<para>
- The name used to log in. This username must be between 3 and 30 characters long, start with a character. Only alpha, digit, underscore, dash and dot characters are allowed for the username. Click the magnifying glass icon beside the user name to check whether the chosen username is available.
- </para>
+ The name used to log in. This username must be between 3 and 30 characters long, start with a lowercase letter and end with a lowercase letter or digit. Only lowercase letters, digits, dot and underscore characters are allowed for the username. Click the magnifying glass icon beside the user name to check whether the chosen username is available.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
@@ -86,6 +75,16 @@
</varlistentry>
<varlistentry>
<term>
+ <emphasis role="bold">Display Name</emphasis>
+ </term>
+ <listitem>
+ <para>
+ The user's name displayed in portal screens when the user is logged in. The field is opitonal and if no value is entered, a value in the <emphasis><First Name> <Last Name></emphasis> format is used instead.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
<emphasis role="bold">Email Address</emphasis>
</term>
<listitem>
Modified: epp/docs/branches/6.0/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -115,7 +115,7 @@
</step>
</procedure>
<para>
- If the user name does not exist or the user name and/or password is invalid you will be redirected to the GateIn Sign In form. Enter a correct user name and password.
+ If the user name does not exist or the user name and/or password is invalid you will be redirected to the JBoss Portal Platform Sign In form. Enter a correct user name and password.
</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: epp/docs/branches/6.0/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -17,7 +17,7 @@
<note>
<title>Extended Label Mode</title>
<para>
- In JBoss Portal Platform &VZ; a new localization functionality called Extended Label Mode has been implemented. This function allows Site Administrators to add labels to nodes and pages in multiple supported languages. When the language of the site is changed, the nodes will display the appropriate localized label.
+ A localization feature called Extended Label Mode has been available as of JBoss Enterprise Portal Platform 5.2.0. This feature allows site administrators to add labels to nodes and pages in multiple supported languages. When the language of the site is changed, the nodes will display the appropriate localized label.
</para>
</note>
<section id="sect-User_Guide-Multi_Language_Navigation_Nodes-Key_Format">
Modified: epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Permission.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Permission.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Permission.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -28,7 +28,7 @@
<term><emphasis role="bold">Existing portals</emphasis></term>
<listitem>
<para>
- On the Toolbar click <emphasis role="bold">Site</emphasis> then <emphasis role="bold">Edit Portal's Properties</emphasis>. Then select the <emphasis role="bold">Permission Setting</emphasis> tab.
+ On the Toolbar click <emphasis role="bold">Site</emphasis> then <emphasis role="bold">Edit Portal's Config</emphasis>. Then select the <emphasis role="bold">Permission Setting</emphasis> tab.
</para>
</listitem>
</varlistentry>
Modified: epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Portals.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -13,119 +13,129 @@
<procedure>
<step>
<para>
- Click on <emphasis role="bold">Site</emphasis> in the toolbar then click the <emphasis role="bold">Add New Portal</emphasis> button.
- </para>
+ Click on <emphasis role="bold">Site</emphasis> in the toolbar, then click the <emphasis role="bold">Add New Portal</emphasis> button.
+ </para>
</step>
<step>
<para>
- This opens the <emphasis role="bold">Create New Portal</emphasis> window.
- </para>
- </step>
- <step>
- <para>
- The first tab in the window is the <emphasis role="bold">Portal Templates</emphasis> tab. This tab lets you choose a template for the new portal from templates that are saved in the installation.
- </para>
- <para>
- Click this tab if you have custom templates stored, or if you wish to use a default template for your portal.
- </para>
- </step>
- <step>
- <para>
- Click the next <emphasis role="bold">Portal Setting</emphasis> tab to configure some aspects of the new portal.
- </para>
- <para>
- Enter a string for the <emphasis role="bold">Portal Name</emphasis> field. This field is required and must be unique. Only alphabetical, numerical, dash and underscore characters are allowed for this field. The name must be between 3 and 30 characters and must begin with an alphabetical character or an underscore.
- </para>
- </step>
- <step>
- <para>
- Select the default display language for the portal.
- </para>
- </step>
- <step>
- <para>
- Enter a Label for the new portal. This field is optional.
- </para>
- </step>
- <step>
- <para>
- Enter a description of the portal. This field is optional.
- </para>
- </step>
- <step>
- <para>
- Select a skin for a portal.
- </para>
- </step>
- <step>
- <para>
- Click on the <guilabel>Properties</guilabel> tab to fill in the <guilabel>Keep session alive</guilabel> property. There are three options:
- <variablelist>
+ This opens the <emphasis role="bold">Create New Portal</emphasis> window. Initially, the <emphasis role="bold">Portal Setting</emphasis> tab will be selected. On this tab, specify the following properties of the portal:
+ <variablelist>
<varlistentry>
- <term>Never</term>
+ <term>Portal Name</term>
<listitem>
<para>
- The session will never timeout, even if an application requests it.
- </para>
+ Enter the name of the new portal. This field is required and the value must be unique. The name must be between 3 and 30 characters and must begin with an alphabetical character or an underscore. Only alphabetical, numerical, dash and underscore characters are allowed.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
- <term>On-demand</term>
+ <term>Label</term>
<listitem>
<para>
- The session will timeout if an application requests it
- </para>
+ Enter a Label for the new portal. This field is optional.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
- <term>Always</term>
+ <term>Description</term>
<listitem>
<para>
- The session will time out after a set period.
- </para>
+ Enter a description of the portal. This field is optional.
+ </para>
</listitem>
</varlistentry>
- </variablelist>
- </para>
+ <varlistentry>
+ <term>Locale</term>
+ <listitem>
+ <para>
+ Select the default display language for the portal.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Skin</term>
+ <listitem>
+ <para>
+ Select a skin for a portal.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
</step>
<step>
<para>
- Also while on the <guilabel>Properties</guilabel> tab, check or uncheck the box labeled <guilabel>Show info bar by default</guilabel>. If checked, portlets show an information bar containing the portlet's name, a <emphasis>help</emphasis> drop-down menu and <guilabel>minimize/maximize</guilabel> buttons after being added to a page.
- </para>
+ Switch to the <emphasis role="bold">Properties</emphasis> tab and choose values of the following properties:
+ <variablelist>
+ <varlistentry>
+ <term>Keep session alive</term>
+ <listitem>
+ <para>
+ This property determines session timeout behavior. Choose one of the following values:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <emphasis>Never</emphasis> - The session will never timeout, even if an application requests it.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>On-demand</emphasis> - The session will timeout if an application requests it.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>Always</emphasis> - The session will time out after a set period.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Show info bar by default</term>
+ <listitem>
+ <para>
+ If checked, portlets added to a page will show an information bar containing their name, a help drop-down menu and minimize/maximize buttons.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
</step>
<step>
<para>
- Click on the <emphasis role="bold">Permission Setting</emphasis> tab and set the permissions for the Portal.
- </para>
+ Switch to the <emphasis role="bold">Permission Setting</emphasis> tab and set the permissions for the portal. Two types of permissions need to be set for a new portal; <emphasis>Access Permission</emphasis> and <emphasis>Edit Permission</emphasis>.
<itemizedlist>
<listitem>
<para>
- Two types of permissions need to be set for a new portal; <emphasis>Access Permission</emphasis> and <emphasis>Edit Permission</emphasis>.
- </para>
+ <emphasis>Access Permission</emphasis> can be set to allow global access by checking the <emphasis role="bold">Make it Public</emphasis> box. Alternatively, specific permission for groups can be added by clicking <emphasis role="bold">Add Permission</emphasis>, then selecting a group in the left pane of the box and then a membership level in the right pane.
+ </para>
</listitem>
<listitem>
<para>
- <emphasis>Access Permission</emphasis> can be set to allow global access by checking the <emphasis role="bold">Make it Public</emphasis> box. Alternatively, specific permission for groups can be added by clicking <emphasis role="bold">Add Permission</emphasis>, then selecting a group in the left pane of the box and then a membership level in the right pane.
- </para>
+ <emphasis>Edit Permission</emphasis> requires specific permissions to be set. Click on <emphasis role="bold">Select Permission</emphasis> and choose a group and level as above.
+ </para>
</listitem>
- <listitem>
- <para>
- <emphasis>Edit Permission</emphasis> requires specific permissions to be set. Click on <emphasis role="bold">Select Permission</emphasis> and choose a group and level as above.
- </para>
- </listitem>
</itemizedlist>
+ </para>
+ <para>
+ See <xref linkend="sect-User_Guide-User_management"/> and <xref linkend="sect-User_Guide-Manage_Permissions"/> for further information.
+ </para>
+ </step>
+ <step>
<para>
- See <xref linkend="sect-User_Guide-User_management"/> and <xref linkend="sect-User_Guide-Manage_Permissions"/> for further information.
- </para>
+ If you wish to use a template for your portal, switch to the <emphasis role="bold">Portal Templates</emphasis> tab. This tab lets you choose a template for the new portal from templates that are saved in the installation.
+ </para>
</step>
<step>
<para>
- Click <emphasis role="bold">Save</emphasis>
+ Click <emphasis role="bold">Save</emphasis> to create the portal.
</para>
</step>
</procedure>
<para>
- You also can edit or delete a portal. See <xref linkend="sect-User_Guide-Manage_Portals-Access_a_Portal"/> or <xref linkend="sect-User_Guide-Manage_Portals-Delete_a_Portal"/> for more details.
+ You can edit or delete the created portal any time later. See <xref linkend="sect-User_Guide-Manage_Portals-Access_a_Portal"/> or <xref linkend="sect-User_Guide-Manage_Portals-Delete_a_Portal"/> for more details.
</para>
</section>
<section id="sect-User_Guide-Manage_Portals-Access_a_Portal">
@@ -198,6 +208,124 @@
More information about actions possible in this window can be found in <xref linkend="sect-User_Guide-Manage_Navigation_Nodes"/>
</para>
</section>
+ <section id="proc-User_Guide-Manage_Portals-Edit_Properties">
+ <title>Edit Properties</title>
+ <para>
+ Portal properties such as language, skin and permissions can be set by clicking on <emphasis role="bold">Site</emphasis> in the <emphasis role="bold">Toolbar</emphasis> and selecting the <emphasis role="bold">Edit Portal's Config</emphasis> link for the portal you wish to edit:
+ </para>
+ <para>
+ The various tabs available in the edit properties window give access to the properties that can be edited for the chosen portal:
+ </para>
+ <para>
+ Click on <emphasis role="bold">Save</emphasis> or <emphasis role="bold">Cancel</emphasis> to either set or discard any changes you have made in the portal.
+ </para>
+ </section>
+ <section id="sect-User_Guide-Manage_Portals-Delete_a_Portal">
+ <title>Delete a Portal</title>
+ <procedure>
+ <step>
+ <para>
+ To delete a portal click on the Delete icon beside the portal you no longer require.
+ </para>
+ <para>
+ The confirmation message will appear:
+ </para>
+ </step>
+ <step>
+ <para>
+ Click <emphasis role="bold">OK</emphasis>
+ </para>
+ </step>
+ </procedure>
+ </section>
+ <section id="sect-User_Guide-Change_Portal_Skins">
+ <title>Change Portal Skins</title>
+ <para>
+ Skins are graphic styles used to provide an attractive user interface. Each skin has its own characteristics with different backgrounds, icons, and other visual elements.
+ </para>
+ <para>
+ There are two ways to change the portal skin, each offering differing effects on the user experience.
+ </para>
+ <para>
+ When you set skin using <emphasis role="bold">method one</emphasis> change is applied to this portal, and every user that accesses this portal will see it in the chosen skin.
+ </para>
+ <para>
+ When you change skin using <emphasis role="bold">method two</emphasis>, the skin is set for the logged in user and all portals within the domain will be shown with the chosen skin.
+ </para>
+ <para>
+ Portal skins set via method two have a higher priority when the portal is rendered.
+ </para>
+ <variablelist>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Method One</emphasis>
+ </term>
+ <listitem>
+ <procedure>
+ <step>
+ <para>
+ Click on <emphasis role="bold">Site</emphasis>, then <emphasis role="bold">Edit Portal's Config</emphasis>.
+ </para>
+ </step>
+ <step>
+ <para>
+ In the <emphasis role="bold">Portal Setting</emphasis> tab, select another skin <emphasis role="bold">Skin</emphasis> list
+ </para>
+ </step>
+ <step>
+ <para>
+ Click <emphasis role="bold">Save</emphasis> to <emphasis role="bold">Finish</emphasis>.
+ </para>
+ </step>
+ </procedure>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Method Two</emphasis>
+ </term>
+ <listitem>
+ <procedure>
+ <step>
+ <para>
+ Mouse over the Start menu and click on <emphasis role="bold">Change Skin</emphasis>.
+ </para>
+ </step>
+ <step>
+ <para>
+ Select a new skin from the Skin list. By clicking on the skin name a picture will appear in the preview pane.
+ </para>
+ </step>
+ <step>
+ <para>
+ Click <emphasis role="bold">Apply</emphasis> to apply to the portal.
+ </para>
+ </step>
+ </procedure>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ <para>
+ More information about adding skins to a portal can be found in the <ulink url="http://www.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/" type="http">Reference Guide</ulink> for this product.
+ </para>
+ </section>
+ <section id="sect-User_Guide-Switching_between_Portals">
+ <title>Switching between portals</title>
+ <para>
+ Mouse over <emphasis role="bold">Site</emphasis> on the Toolbar for a list all portals in which you have at least access rights:
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/SitePortlet.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" scalefit="1" fileref="images/SitePortlet.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ <para>
+ Users switch between portals by clicking on the desired portal. Please wait a few seconds for the change to take effect.
+ </para>
+ </section>
<section id="Export_and_Import">
<title><remark>BZ#794408 </remark>Export and Import</title>
<para>You can export and import portals and groups using the controls provided in the <menuchoice>
@@ -452,122 +580,4 @@
</procedure>
</task>
</section>
- <section id="proc-User_Guide-Manage_Portals-Edit_Properties">
- <title>Edit Properties</title>
- <para>
- Portal properties such as language, skin and permissions can be set by clicking on <emphasis role="bold">Site</emphasis> in the <emphasis role="bold">Toolbar</emphasis> and selecting the <emphasis role="bold">Edit Portal Properties</emphasis> link for the portal you wish to edit:
- </para>
- <para>
- The various tabs available in the edit properties window give access to the properties that can be edited for the chosen portal:
- </para>
- <para>
- Click on <emphasis role="bold">Save</emphasis> or <emphasis role="bold">Cancel</emphasis> to either set or discard any changes you have made in the portal.
- </para>
- </section>
- <section id="sect-User_Guide-Manage_Portals-Delete_a_Portal">
- <title>Delete a Portal</title>
- <procedure>
- <step>
- <para>
- To delete a portal click on the Delete icon beside the portal you no longer require.
- </para>
- <para>
- The confirmation message will appear:
- </para>
- </step>
- <step>
- <para>
- Click <emphasis role="bold">OK</emphasis>
- </para>
- </step>
- </procedure>
- </section>
- <section id="sect-User_Guide-Change_Portal_Skins">
- <title>Change Portal Skins</title>
- <para>
- Skins are graphic styles used to provide an attractive user interface. Each skin has its own characteristics with different backgrounds, icons, and other visual elements.
- </para>
- <para>
- There are two ways to change the portal skin, each offering differing effects on the user experience.
- </para>
- <para>
- When you set skin using <emphasis role="bold">method one</emphasis> change is applied to this portal, and every user that accesses this portal will see it in the chosen skin.
- </para>
- <para>
- When you change skin using <emphasis role="bold">method two</emphasis>, the skin is set for the logged in user and all portals within the domain will be shown with the chosen skin.
- </para>
- <para>
- Portal skins set via method two have a higher priority when the portal is rendered.
- </para>
- <variablelist>
- <varlistentry>
- <term>
- <emphasis role="bold">Method One</emphasis>
- </term>
- <listitem>
- <procedure>
- <step>
- <para>
- Click on <emphasis role="bold">Site</emphasis>, then <emphasis role="bold">Edit Portal's Properties</emphasis>.
- </para>
- </step>
- <step>
- <para>
- In the <emphasis role="bold">Portal Setting</emphasis> tab, select another skin <emphasis role="bold">Skin</emphasis> list
- </para>
- </step>
- <step>
- <para>
- Click <emphasis role="bold">Save</emphasis> to <emphasis role="bold">Finish</emphasis>.
- </para>
- </step>
- </procedure>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>
- <emphasis role="bold">Method Two</emphasis>
- </term>
- <listitem>
- <procedure>
- <step>
- <para>
- Mouse over the Start menu and click on <emphasis role="bold">Change Skin</emphasis>.
- </para>
- </step>
- <step>
- <para>
- Select a new skin from the Skin list. By clicking on the skin name a picture will appear in the preview pane.
- </para>
- </step>
- <step>
- <para>
- Click <emphasis role="bold">Apply</emphasis> to apply to the portal.
- </para>
- </step>
- </procedure>
- </listitem>
- </varlistentry>
- </variablelist>
- <para>
- More information about adding skins to a portal can be found in the <ulink url="http://www.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/" type="http">Reference Guide</ulink> for this product.
- </para>
- </section>
- <section id="sect-User_Guide-Switching_between_Portals">
- <title>Switching between portals</title>
- <para>
- Mouse over <emphasis role="bold">Site</emphasis> on the Toolbar for a list all portals in which you have at least access rights:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="100" fileref="images/SitePortlet.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="130mm" align="center" scalefit="1" fileref="images/SitePortlet.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- <para>
- Users switch between portals by clicking on the desired portal. Please wait a few seconds for the change to take effect.
- </para>
- </section>
</section>
Modified: epp/docs/branches/6.0/User_Guide/en-US/modules/portal/User_Management.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/modules/portal/User_Management.xml 2012-11-08 16:27:23 UTC (rev 8950)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/portal/User_Management.xml 2012-11-08 16:30:53 UTC (rev 8951)
@@ -65,7 +65,7 @@
</step>
<step>
<para>
- To create a new user all of the fields in the <emphasis role="bold">Account Settings</emphasis> tab must be completed.
+ To create a new user, all fields on the <emphasis role="bold">Account Settings</emphasis> tab that are marked with an asterisk must be filled in. The <emphasis role="bold">Display Name</emphasis> field is optional and when left blank, a value in format <emphasis><First Name> <Last Name></emphasis> is used.
</para>
<para>
Further information about the user (such as nickname and birthday) can be added in the <emphasis role="bold">User Profile</emphasis> tab. This information is not required for the creation of the account.
@@ -130,7 +130,7 @@
<term>User Name</term>
<listitem>
<para>
- The <emphasis role="bold">User Name</emphasis> field cannot be changed. Other fields <emphasis role="bold">First Name</emphasis> , <emphasis role="bold">Last Name</emphasis> , <emphasis role="bold">Email Address</emphasis> can be changed.
+ The <emphasis role="bold">User Name</emphasis> field cannot be changed. Other fields — <emphasis role="bold">First Name</emphasis>, <emphasis role="bold">Last Name</emphasis>, <emphasis role="bold">Display Name</emphasis> and <emphasis role="bold">Email Address</emphasis> — can be changed.
</para>
</listitem>
</varlistentry>
12 years, 1 month
gatein SVN: r8950 - in epp/docs/branches/5.2/User_Guide/en-US: images and 4 other directories.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-11-08 11:27:23 -0500 (Thu, 08 Nov 2012)
New Revision: 8950
Removed:
epp/docs/branches/5.2/User_Guide/en-US/images/AccountSetting.png
epp/docs/branches/5.2/User_Guide/en-US/images/AddGroup.png
epp/docs/branches/5.2/User_Guide/en-US/images/AddNode4.png
epp/docs/branches/5.2/User_Guide/en-US/images/AddPortal.png
epp/docs/branches/5.2/User_Guide/en-US/images/Admin1.png
epp/docs/branches/5.2/User_Guide/en-US/images/CloneNode2.png
epp/docs/branches/5.2/User_Guide/en-US/images/CopyNode3.png
epp/docs/branches/5.2/User_Guide/en-US/images/CutNode4.png
epp/docs/branches/5.2/User_Guide/en-US/images/DeleteNode2.png
epp/docs/branches/5.2/User_Guide/en-US/images/Demo1.png
epp/docs/branches/5.2/User_Guide/en-US/images/Demo3.png
epp/docs/branches/5.2/User_Guide/en-US/images/EditMember1.png
epp/docs/branches/5.2/User_Guide/en-US/images/EditNavigation.png
epp/docs/branches/5.2/User_Guide/en-US/images/Gadgetnew.png
epp/docs/branches/5.2/User_Guide/en-US/images/MoveUpDown.png
epp/docs/branches/5.2/User_Guide/en-US/images/NewStaff.png
epp/docs/branches/5.2/User_Guide/en-US/images/NodeIcons.png
epp/docs/branches/5.2/User_Guide/en-US/images/PageNodeSetting.png
epp/docs/branches/5.2/User_Guide/en-US/images/PageSelector.png
epp/docs/branches/5.2/User_Guide/en-US/images/PageSelectorEmpty.png
epp/docs/branches/5.2/User_Guide/en-US/images/PageSetting.png
epp/docs/branches/5.2/User_Guide/en-US/images/PasteNode3.png
epp/docs/branches/5.2/User_Guide/en-US/images/PortalSetting2.5.png
epp/docs/branches/5.2/User_Guide/en-US/images/PortalTemplate.png
epp/docs/branches/5.2/User_Guide/en-US/images/PortalTemplates.png
epp/docs/branches/5.2/User_Guide/en-US/images/Register.png
epp/docs/branches/5.2/User_Guide/en-US/images/SearchUser.png
epp/docs/branches/5.2/User_Guide/en-US/images/SelectPage1.png
epp/docs/branches/5.2/User_Guide/en-US/images/Skin1.png
epp/docs/branches/5.2/User_Guide/en-US/images/SkinSet1.png
epp/docs/branches/5.2/User_Guide/en-US/images/Verification.png
epp/docs/branches/5.2/User_Guide/en-US/images/Videos.png
epp/docs/branches/5.2/User_Guide/en-US/images/XMLURL.png
epp/docs/branches/5.2/User_Guide/en-US/images/httpNode.png
Modified:
epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml
epp/docs/branches/5.2/User_Guide/en-US/images/Account.png
epp/docs/branches/5.2/User_Guide/en-US/images/AccountProfiles3.png
epp/docs/branches/5.2/User_Guide/en-US/modules/Supported_Browsers.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/account/Change_Account_Settings.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Navigation_Nodes.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Permission.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/User_Management.xml
Log:
BZ#813776 - removed various screenshots with no added information value and fixed various minor errors identified by docs QE.
Modified: epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -9,6 +9,21 @@
<revhistory>
<revision>
+ <revnumber>5.2.2-103</revnumber>
+ <date>Wed Oct 15 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>BZ#813776 - removed various screenshots with no added information value and fixed various minor errors identified by docs QE.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+
+ <revision>
<revnumber>5.2.2-102</revnumber>
<date>Wed Oct 15 2012</date>
<author>
Modified: epp/docs/branches/5.2/User_Guide/en-US/images/Account.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/User_Guide/en-US/images/AccountProfiles3.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/AccountSetting.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/AddGroup.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/AddNode4.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/AddPortal.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Admin1.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/CloneNode2.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/CopyNode3.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/CutNode4.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/DeleteNode2.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Demo1.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Demo3.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/EditMember1.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/EditNavigation.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Gadgetnew.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/MoveUpDown.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/NewStaff.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/NodeIcons.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PageNodeSetting.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PageSelector.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PageSelectorEmpty.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PageSetting.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PasteNode3.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PortalSetting2.5.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PortalTemplate.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/PortalTemplates.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Register.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/SearchUser.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/SelectPage1.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Skin1.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/SkinSet1.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Verification.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/Videos.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/XMLURL.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/User_Guide/en-US/images/httpNode.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/Supported_Browsers.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/Supported_Browsers.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/Supported_Browsers.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -17,7 +17,7 @@
<itemizedlist>
<listitem>
<para>
- <ulink type="http" url="http://www.mozilla.com/en-US/firefox/new/">Firefox</ulink> (versions 3.5 to 7).
+ <ulink type="http" url="http://www.mozilla.com/en-US/firefox/new/">Firefox</ulink> (versions 3.5 to 10).
</para>
</listitem>
<listitem>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/account/Change_Account_Settings.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/account/Change_Account_Settings.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/account/Change_Account_Settings.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -39,7 +39,7 @@
</step>
<step>
<para>
- Your <emphasis role="bold">User Name</emphasis> cannot be changed. You can change your: <emphasis role="bold">First Name</emphasis> , <emphasis role="bold">Last Name</emphasis> and <emphasis role="bold">Email</emphasis>.
+ Your <emphasis role="bold">User Name</emphasis> cannot be changed. You can change your: <emphasis role="bold">First Name</emphasis> , <emphasis role="bold">Last Name</emphasis>, <emphasis role="bold">Display Name</emphasis> and <emphasis role="bold">Email</emphasis>.
</para>
</step>
<step>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/account/Register_New_Accounts.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -18,29 +18,10 @@
<step>
<para>
Click <emphasis role="bold">Register</emphasis> on the Navigation bar.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="100" fileref="images/Register.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="150mm" align="center" scalefit="1" fileref="images/Register.png" format="PNG"/>
- </imageobject>
- </mediaobject>
+ </para>
<para>
- The <emphasis role="bold">Register New Account</emphasis> page appears:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="100" fileref="images/AccountSetting.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="150mm" align="center" scalefit="1" fileref="images/AccountSetting.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- <para>
- Complete the form with the required information:
- </para>
+ The <emphasis role="bold">Register New Account</emphasis> page appears. Complete the form with the required information:
+ </para>
<variablelist>
<varlistentry>
<term>
@@ -48,8 +29,8 @@
</term>
<listitem>
<para>
- The name used to log in. This username must be between 3 and 30 characters long, start with a character. Only alpha, digit, underscore, dash and dot characters are allowed for the username. Click the magnifying glass icon beside the user name to check whether the chosen username is available.
- </para>
+ The name used to log in. This username must be between 3 and 30 characters long, start with a lowercase letter and end with a lowercase letter or digit. Only lowercase letters, digits, dot and underscore characters are allowed for the username. Click the magnifying glass icon beside the user name to check whether the chosen username is available.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
@@ -94,6 +75,16 @@
</varlistentry>
<varlistentry>
<term>
+ <emphasis role="bold">Display Name</emphasis>
+ </term>
+ <listitem>
+ <para>
+ The user's name displayed in portal screens when the user is logged in. The field is opitonal and if no value is entered, a value in the <emphasis><First Name> <Last Name></emphasis> format is used instead.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
<emphasis role="bold">Email Address</emphasis>
</term>
<listitem>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/account/Sign_in_and_Sign_out.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -116,7 +116,7 @@
</step>
</procedure>
<para>
- If the user name does not exist or the user name and/or password is invalid you will be redirected to the GateIn Sign In form. Enter a correct user name and password.
+ If the user name does not exist or the user name and/or password is invalid you will be redirected to the JBoss Enterprise Portal Platform Sign In form. Enter a correct user name and password.
</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: epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/language/Multi-Language_Navigation_Nodes.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -17,7 +17,7 @@
<note>
<title>Extended Label Mode</title>
<para>
- In JBoss Enterprise Portal Platform &VZ; a new localization functionality called Extended Label Mode has been implemented. This function allows Site Administrators to add labels to nodes and pages in multiple supported languages. When the language of the site is changed, the nodes will display the appropriate localized label.
+ A localization feature called Extended Label Mode has been available as of JBoss Enterprise Portal Platform 5.2.0. This feature allows site administrators to add labels to nodes and pages in multiple supported languages. When the language of the site is changed, the nodes will display the appropriate localized label.
</para>
</note>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Navigation_Nodes.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Navigation_Nodes.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Navigation_Nodes.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -15,14 +15,6 @@
<para>
Click on <emphasis role="bold">Site</emphasis> then click on <emphasis role="bold">Edit Navigation</emphasis> of the portal you want to modify.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/EditNavigation.png" format="PNG" align="center" scale="110"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/EditNavigation.png" format="PNG" align="center" contentwidth="150mm" />
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
@@ -33,14 +25,6 @@
<para>
Right-click on the selected navigation or node and select <guilabel>Add Node</guilabel> option. The <guilabel>ADD/EDIT PAGE NODE</guilabel> form appears:
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/AddNode4.png" format="PNG" align="center" scale="110" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/AddNode4.png" format="PNG" align="center" contentwidth="150mm" />
- </imageobject>
- </mediaobject>
<para>
The <emphasis role="bold">Page Node Setting</emphasis> tab includes:
</para>
@@ -123,14 +107,6 @@
<para>
In the <emphasis role="bold">Page Selector</emphasis> tab, you can select a page or not for this node.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/PageSelectorEmpty.png" format="PNG" align="center" scale="110" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/PageSelectorEmpty.png" format="PNG" align="center" contentwidth="150mm"/>
- </imageobject>
- </mediaobject>
<variablelist>
<varlistentry>
<term><emphasis role="bold">Page Id</emphasis></term>
@@ -163,14 +139,6 @@
<para>
The <emphasis role="bold">Select Page</emphasis> form appears:
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/SelectPage1.png" format="PNG" align="center" scale="110" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/SelectPage1.png" format="PNG" align="center" contentwidth="150mm"/>
- </imageobject>
- </mediaobject>
<para>
This window lists all existing pages of <emphasis role="bold">Portal</emphasis> or <emphasis role="bold">Group</emphasis> with basic information for each page.
</para>
@@ -239,14 +207,6 @@
<emphasis role="bold">Page Selector</emphasis>
form.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/PageSelector.png" format="PNG" align="center" scale="110" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/PageSelector.png" format="PNG" align="center" contentwidth="150mm"/>
- </imageobject>
- </mediaobject>
<para>
After configuring the page node settings, the page selector and the node's icon, click the
<emphasis role="bold">Save</emphasis>
@@ -276,11 +236,6 @@
<para>
This will display a form to edit this node:
</para>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/PageNodeSetting.png" format="PNG" align="center" width="444" />
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
@@ -312,11 +267,6 @@
<para>
After you finish making the desired changes, click the <emphasis role="bold">Save</emphasis> button to accept changes or <emphasis role="bold">Cancel</emphasis> button to exit without change.
</para>
- <!-- <mediaobject>
- <imageobject>
- <imagedata fileref="images/PageSelector6.png" format="PNG" align="center" width="444" />
- </imageobject>
- </mediaobject> -->
</step>
<step>
<para>
@@ -344,27 +294,11 @@
<para>
Right-click on the selected node and select <emphasis role="bold">Copy node</emphasis> option.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/CopyNode3.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/CopyNode3.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
Select the position that you want to paste this node and select <emphasis role="bold">Paste Node</emphasis> option. Click the mark icon to <emphasis role="bold">Save</emphasis>.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/PasteNode3.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/PasteNode3.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
</step>
</procedure>
</section>
@@ -390,27 +324,11 @@
<para>
Right-click on selected node and select <emphasis role="bold">Clone node</emphasis> option.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/CloneNode2.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/CloneNode2.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
Select the position that you want to paste this node and select <emphasis role="bold">Paste Node</emphasis> option. Click the mark icon to <emphasis role="bold">Save</emphasis>.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/PasteNode3.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/PasteNode3.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
</step>
</procedure>
</section>
@@ -427,27 +345,11 @@
<para>
Right-click on the selected node and select <emphasis role="bold">Cut node</emphasis> option.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/CutNode4.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/CutNode4.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
Select the position that you want to paste this node and select <emphasis role="bold">Paste Node</emphasis> option. mark icon to <emphasis role="bold">Save</emphasis>.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/PasteNode3.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/PasteNode3.png" format="PNG" align="center" contentwidth="130mm" />
- </imageobject>
- </mediaobject>
</step>
</procedure>
</section>
@@ -464,22 +366,9 @@
<para>
Right-click on the selected node and select <emphasis role="bold">Delete node</emphasis> option.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/DeleteNode2.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/DeleteNode2.png" format="PNG" align="center" contentwidth="130mm" />
- </imageobject>
- </mediaobject>
<para>
It will display an alert message confirming the removal of the node. Click the <emphasis role="bold">OK</emphasis> button to accept the deletion or <emphasis role="bold">Cancel</emphasis> button to quit without deleting the node.
</para>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/httpNode.png" format="PNG" align="center" />
- </imageobject>
- </mediaobject>
</step>
</procedure>
</section>
@@ -499,11 +388,6 @@
<para>
Select the node that you want to move. Right click on the selected node and then click on <emphasis role="bold">Move up</emphasis> or <emphasis role="bold">Move down</emphasis>
</para>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/MoveUpDown.png" format="PNG" />
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Permission.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Permission.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Permission.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -19,7 +19,7 @@
<term><emphasis role="bold">New portals</emphasis></term>
<listitem>
<para>
- Click on <menuchoice><guimenu>Site</guimenu></menuchoice> on the <guilabel>Toolbar</guilabel> , then click on <menuchoice><guimenuitem>Add New Portal</guimenuitem><guimenuitem>Permission Setting</guimenuitem></menuchoice>
+ Click on <menuchoice><guimenu>Site</guimenu></menuchoice> on the <guilabel>Toolbar</guilabel> , then click on <menuchoice><guimenuitem>Add New Portal</guimenuitem><guimenuitem>Permission Setting</guimenuitem></menuchoice>.
</para>
</listitem>
@@ -28,7 +28,7 @@
<term><emphasis role="bold">Existing portals</emphasis></term>
<listitem>
<para>
- On the Toolbar click <emphasis role="bold">Site</emphasis> then <emphasis role="bold">Edit Portal's Properties</emphasis>. Then select the <emphasis role="bold">Permission Setting</emphasis> tab.
+ On the Toolbar click <emphasis role="bold">Site</emphasis> then <emphasis role="bold">Edit Portal's Config</emphasis>. Then select the <emphasis role="bold">Permission Setting</emphasis> tab.
</para>
</listitem>
</varlistentry>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -13,143 +13,129 @@
<procedure>
<step>
<para>
- Click on <emphasis role="bold">Site</emphasis> in the toolbar then click the <emphasis role="bold">Add New Portal</emphasis> button.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="90" fileref="images/AddPortal.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="150mm" align="center" fileref="images/AddPortal.png" format="PNG"/>
- </imageobject>
- </mediaobject>
+ Click on <emphasis role="bold">Site</emphasis> in the toolbar, then click the <emphasis role="bold">Add New Portal</emphasis> button.
+ </para>
</step>
<step>
<para>
- This opens the <emphasis role="bold">Create New Portal</emphasis> window.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="90" fileref="images/PortalSetting2.5.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="150mm" align="center" fileref="images/PortalSetting2.5.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- </step>
- <step>
- <para>
- The first tab in the window is the <emphasis role="bold">Portal Templates</emphasis> tab. This tab lets you choose a template for the new portal from templates that are saved in the installation.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="90" fileref="images/PortalTemplates.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="150mm" align="center" fileref="images/PortalTemplates.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- <para>
- Click this tab if you have custom templates stored, or if you wish to use a default template for your portal.
- </para>
- </step>
- <step>
- <para>
- Click the next <emphasis role="bold">Portal Setting</emphasis> tab to configure some aspects of the new portal.
- </para>
- <para>
- Enter a string for the <emphasis role="bold">Portal Name</emphasis> field. This field is required and must be unique. Only alphabetical, numerical, dash and underscore characters are allowed for this field. The name must be between 3 and 30 characters and must begin with an alphabetical character or an underscore.
- </para>
- </step>
- <step>
- <para>
- Select the default display language for the portal.
- </para>
- </step>
- <step>
- <para>
- Enter a Label for the new portal. This field is optional.
- </para>
- </step>
- <step>
- <para>
- Enter a description of the portal. This field is optional.
- </para>
- </step>
- <step>
- <para>
- Select a skin for a portal.
- </para>
- </step>
- <step>
- <para>
- Click on the <guilabel>Properties</guilabel> tab to fill in the <guilabel>Keep session alive</guilabel> property. There are three options:
- <variablelist>
+ This opens the <emphasis role="bold">Create New Portal</emphasis> window. Initially, the <emphasis role="bold">Portal Setting</emphasis> tab will be selected. On this tab, specify the following properties of the portal:
+ <variablelist>
<varlistentry>
- <term>Never</term>
+ <term>Portal Name</term>
<listitem>
<para>
- The session will never timeout, even if an application requests it.
- </para>
+ Enter the name of the new portal. This field is required and the value must be unique. The name must be between 3 and 30 characters and must begin with an alphabetical character or an underscore. Only alphabetical, numerical, dash and underscore characters are allowed.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
- <term>On-demand</term>
+ <term>Label</term>
<listitem>
<para>
- The session will timeout if an application requests it
- </para>
+ Enter a Label for the new portal. This field is optional.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
- <term>Always</term>
+ <term>Description</term>
<listitem>
<para>
- The session will time out after a set period.
- </para>
+ Enter a description of the portal. This field is optional.
+ </para>
</listitem>
</varlistentry>
- </variablelist>
- </para>
+ <varlistentry>
+ <term>Locale</term>
+ <listitem>
+ <para>
+ Select the default display language for the portal.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Skin</term>
+ <listitem>
+ <para>
+ Select a skin for a portal.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
</step>
<step>
<para>
- Also while on the <guilabel>Properties</guilabel> tab, check or uncheck the box labeled <guilabel>Show info bar by default</guilabel>. If checked, portlets show an information bar containing the portlet's name, a <emphasis>help</emphasis> drop-down menu and <guilabel>minimize/maximize</guilabel> buttons after being added to a page.
- </para>
+ Switch to the <emphasis role="bold">Properties</emphasis> tab and choose values of the following properties:
+ <variablelist>
+ <varlistentry>
+ <term>Keep session alive</term>
+ <listitem>
+ <para>
+ This property determines session timeout behavior. Choose one of the following values:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <emphasis>Never</emphasis> - The session will never timeout, even if an application requests it.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>On-demand</emphasis> - The session will timeout if an application requests it.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>Always</emphasis> - The session will time out after a set period.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Show info bar by default</term>
+ <listitem>
+ <para>
+ If checked, portlets added to a page will show an information bar containing their name, a help drop-down menu and minimize/maximize buttons.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
</step>
<step>
<para>
- Click on the <emphasis role="bold">Permission Setting</emphasis> tab and set the permissions for the Portal.
- </para>
+ Switch to the <emphasis role="bold">Permission Setting</emphasis> tab and set the permissions for the portal. Two types of permissions need to be set for a new portal; <emphasis>Access Permission</emphasis> and <emphasis>Edit Permission</emphasis>.
<itemizedlist>
<listitem>
<para>
- Two types of permissions need to be set for a new portal; <emphasis>Access Permission</emphasis> and <emphasis>Edit Permission</emphasis>.
- </para>
+ <emphasis>Access Permission</emphasis> can be set to allow global access by checking the <emphasis role="bold">Make it Public</emphasis> box. Alternatively, specific permission for groups can be added by clicking <emphasis role="bold">Add Permission</emphasis>, then selecting a group in the left pane of the box and then a membership level in the right pane.
+ </para>
</listitem>
<listitem>
<para>
- <emphasis>Access Permission</emphasis> can be set to allow global access by checking the <emphasis role="bold">Make it Public</emphasis> box. Alternatively, specific permission for groups can be added by clicking <emphasis role="bold">Add Permission</emphasis>, then selecting a group in the left pane of the box and then a membership level in the right pane.
- </para>
+ <emphasis>Edit Permission</emphasis> requires specific permissions to be set. Click on <emphasis role="bold">Select Permission</emphasis> and choose a group and level as above.
+ </para>
</listitem>
- <listitem>
- <para>
- <emphasis>Edit Permission</emphasis> requires specific permissions to be set. Click on <emphasis role="bold">Select Permission</emphasis> and choose a group and level as above.
- </para>
- </listitem>
</itemizedlist>
+ </para>
+ <para>
+ See <xref linkend="sect-User_Guide-User_management"/> and <xref linkend="sect-User_Guide-Manage_Permissions"/> for further information.
+ </para>
+ </step>
+ <step>
<para>
- See <xref linkend="sect-User_Guide-User_management"/> and <xref linkend="sect-User_Guide-Manage_Permissions"/> for further information.
- </para>
+ If you wish to use a template for your portal, switch to the <emphasis role="bold">Portal Templates</emphasis> tab. This tab lets you choose a template for the new portal from templates that are saved in the installation.
+ </para>
</step>
<step>
<para>
- Click <emphasis role="bold">Save</emphasis>
+ Click <emphasis role="bold">Save</emphasis> to create the portal.
</para>
</step>
</procedure>
<para>
- You also can edit or delete a portal. See <xref linkend="sect-User_Guide-Manage_Portals-Access_a_Portal"/> or <xref linkend="sect-User_Guide-Manage_Portals-Delete_a_Portal"/> for more details.
+ You can edit or delete the created portal any time later. See <xref linkend="sect-User_Guide-Manage_Portals-Access_a_Portal"/> or <xref linkend="sect-User_Guide-Manage_Portals-Delete_a_Portal"/> for more details.
</para>
</section>
<section id="sect-User_Guide-Manage_Portals-Access_a_Portal">
@@ -246,6 +232,148 @@
More information about actions possible in this window can be found in <xref linkend="sect-User_Guide-Manage_Navigation_Nodes"/>
</para>
</section>
+ <section id="proc-User_Guide-Manage_Portals-Edit_Properties">
+ <title>Edit Properties</title>
+ <para>
+ Portal properties such as language, skin and permissions can be set by clicking on <emphasis role="bold">Site</emphasis> in the <emphasis role="bold">Toolbar</emphasis> and selecting the <emphasis role="bold">Edit Portal's Config</emphasis> link for the portal you wish to edit:
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/PortalProperties.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" fileref="images/PortalProperties.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ <para>
+ The various tabs available in the edit properties window give access to the properties that can be edited for the chosen portal:
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="110" fileref="images/EditPortal2.6New.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="150mm" align="center" fileref="images/EditPortal2.6New.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ <para>
+ Click on <emphasis role="bold">Save</emphasis> or <emphasis role="bold">Cancel</emphasis> to either set or discard any changes you have made in the portal.
+ </para>
+ </section>
+ <section id="sect-User_Guide-Manage_Portals-Delete_a_Portal">
+ <title>Delete a Portal</title>
+ <procedure>
+ <step>
+ <para>
+ To delete a portal click on the Delete icon beside the portal you no longer require.
+ </para>
+ <para>
+ The confirmation message will appear:
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/SureDelete.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="100mm" align="center" fileref="images/SureDelete.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ </step>
+ <step>
+ <para>
+ Click <emphasis role="bold">OK</emphasis>
+ </para>
+ </step>
+ </procedure>
+ </section>
+ <section id="sect-User_Guide-Change_Portal_Skins">
+ <title>Change Portal Skins</title>
+ <para>
+ Skins are graphic styles used to provide an attractive user interface. Each skin has its own characteristics with different backgrounds, icons, and other visual elements.
+ </para>
+ <para>
+ There are two ways to change the portal skin, each offering differing effects on the user experience.
+ </para>
+ <para>
+ When you set skin using <emphasis role="bold">method one</emphasis> change is applied to this portal, and every user that accesses this portal will see it in the chosen skin.
+ </para>
+ <para>
+ When you change skin using <emphasis role="bold">method two</emphasis>, the skin is set for the logged in user and all portals within the domain will be shown with the chosen skin.
+ </para>
+ <para>
+ Portal skins set via method two have a higher priority when the portal is rendered.
+ </para>
+ <variablelist>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Method One</emphasis>
+ </term>
+ <listitem>
+ <procedure>
+ <step>
+ <para>
+ Click on <emphasis role="bold">Site</emphasis>, then <emphasis role="bold">Edit Portal's Config</emphasis>.
+ </para>
+ </step>
+ <step>
+ <para>
+ In the <emphasis role="bold">Portal Setting</emphasis> tab, select a skin from the <emphasis role="bold">Skin</emphasis> list.
+ </para>
+ </step>
+ <step>
+ <para>
+ Click <emphasis role="bold">Save</emphasis> to <emphasis role="bold">Finish</emphasis>.
+ </para>
+ </step>
+ </procedure>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Method Two</emphasis>
+ </term>
+ <listitem>
+ <procedure>
+ <step>
+ <para>
+ Mouse over the Start menu and click on <emphasis role="bold">Change Skin</emphasis>.
+ </para>
+ </step>
+ <step>
+ <para>
+ Select a new skin from the Skin list. By clicking on the skin name a picture will appear in the preview pane.
+ </para>
+ </step>
+ <step>
+ <para>
+ Click <emphasis role="bold">Apply</emphasis> to apply to the portal.
+ </para>
+ </step>
+ </procedure>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ <para>
+ More information about adding skins to a portal can be found in the <ulink url="http://www.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/" type="http">Reference Guide</ulink> for this product.
+ </para>
+ </section>
+ <section id="sect-User_Guide-Switching_between_Portals">
+ <title>Switching between portals</title>
+ <para>
+ Mouse over <emphasis role="bold">Site</emphasis> on the Toolbar for a list all portals in which you have at least access rights:
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/SitePortlet.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" scalefit="1" fileref="images/SitePortlet.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ <para>
+ Users switch between portals by clicking on the desired portal. Please wait a few seconds for the change to take effect.
+ </para>
+ </section>
<section id="Export_and_Import">
<title><remark>BZ#794408 </remark>Export and Import</title>
<para>You can export and import portals and groups using the controls provided in the <menuchoice>
@@ -500,170 +628,4 @@
</procedure>
</task>
</section>
- <section id="proc-User_Guide-Manage_Portals-Edit_Properties">
- <title>Edit Properties</title>
- <para>
- Portal properties such as language, skin and permissions can be set by clicking on <emphasis role="bold">Site</emphasis> in the <emphasis role="bold">Toolbar</emphasis> and selecting the <emphasis role="bold">Edit Portal Properties</emphasis> link for the portal you wish to edit:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="100" fileref="images/PortalProperties.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="130mm" align="center" fileref="images/PortalProperties.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- <para>
- The various tabs available in the edit properties window give access to the properties that can be edited for the chosen portal:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="110" fileref="images/EditPortal2.6New.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="150mm" align="center" fileref="images/EditPortal2.6New.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- <para>
- Click on <emphasis role="bold">Save</emphasis> or <emphasis role="bold">Cancel</emphasis> to either set or discard any changes you have made in the portal.
- </para>
- </section>
- <section id="sect-User_Guide-Manage_Portals-Delete_a_Portal">
- <title>Delete a Portal</title>
- <procedure>
- <step>
- <para>
- To delete a portal click on the Delete icon beside the portal you no longer require.
- </para>
- <para>
- The confirmation message will appear:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="100" fileref="images/SureDelete.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="100mm" align="center" fileref="images/SureDelete.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- </step>
- <step>
- <para>
- Click <emphasis role="bold">OK</emphasis>
- </para>
- </step>
- </procedure>
- </section>
- <section id="sect-User_Guide-Change_Portal_Skins">
- <title>Change Portal Skins</title>
- <para>
- Skins are graphic styles used to provide an attractive user interface. Each skin has its own characteristics with different backgrounds, icons, and other visual elements.
- </para>
- <para>
- There are two ways to change the portal skin, each offering differing effects on the user experience.
- </para>
- <para>
- When you set skin using <emphasis role="bold">method one</emphasis> change is applied to this portal, and every user that accesses this portal will see it in the chosen skin.
- </para>
- <para>
- When you change skin using <emphasis role="bold">method two</emphasis>, the skin is set for the logged in user and all portals within the domain will be shown with the chosen skin.
- </para>
- <para>
- Portal skins set via method two have a higher priority when the portal is rendered.
- </para>
- <variablelist>
- <varlistentry>
- <term>
- <emphasis role="bold">Method One</emphasis>
- </term>
- <listitem>
- <procedure>
- <step>
- <para>
- Click on <emphasis role="bold">Site</emphasis>, then <emphasis role="bold">Edit Portal's Properties</emphasis>.
- </para>
- </step>
- <step>
- <para>
- In the <emphasis role="bold">Portal Setting</emphasis> tab, select another skin <emphasis role="bold">Skin</emphasis> list
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata scale="90" fileref="images/Skin1.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="120mm" fileref="images/Skin1.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- </step>
- <step>
- <para>
- Click <emphasis role="bold">Save</emphasis> to <emphasis role="bold">Finish</emphasis>.
- </para>
- </step>
- </procedure>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>
- <emphasis role="bold">Method Two</emphasis>
- </term>
- <listitem>
- <procedure>
- <step>
- <para>
- Mouse over the Start menu and click on <emphasis role="bold">Change Skin</emphasis>.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata scale="100" fileref="images/StarPortlet.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="120mm" fileref="images/StarPortlet.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- </step>
- <step>
- <para>
- Select a new skin from the Skin list. By clicking on the skin name a picture will appear in the preview pane.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata scale="90" fileref="images/SkinSet1.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="120mm" fileref="images/SkinSet1.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- </step>
- <step>
- <para>
- Click <emphasis role="bold">Apply</emphasis> to apply to the portal.
- </para>
- </step>
- </procedure>
- </listitem>
- </varlistentry>
- </variablelist>
- <para>
- More information about adding skins to a portal can be found in the <ulink url="http://www.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/" type="http">Reference Guide</ulink> for this product.
- </para>
- </section>
- <section id="sect-User_Guide-Switching_between_Portals">
- <title>Switching between portals</title>
- <para>
- Mouse over <emphasis role="bold">Site</emphasis> on the Toolbar for a list all portals in which you have at least access rights:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" scale="100" fileref="images/SitePortlet.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata contentwidth="130mm" align="center" scalefit="1" fileref="images/SitePortlet.png" format="PNG"/>
- </imageobject>
- </mediaobject>
- <para>
- Users switch between portals by clicking on the desired portal. Please wait a few seconds for the change to take effect.
- </para>
- </section>
</section>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/portal/User_Management.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/portal/User_Management.xml 2012-11-02 16:54:24 UTC (rev 8949)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/User_Management.xml 2012-11-08 16:27:23 UTC (rev 8950)
@@ -47,21 +47,13 @@
<para>
The <emphasis role="bold">New Staff</emphasis> window will open:
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/NewStaff.png" format="PNG" align="center" scale="100" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/NewStaff.png" format="PNG" align="center" contentwidth="150mm" />
- </imageobject>
- </mediaobject>
<para>
This window has two tabs; <emphasis role="bold">Account Setting</emphasis> and <emphasis role="bold">User Profile</emphasis>.
</para>
</step>
<step>
<para>
- To create a new user all of the fields in the <emphasis role="bold">Account Settings</emphasis> tab must be completed.
+ To create a new user, all fields on the <emphasis role="bold">Account Settings</emphasis> tab that are marked with an asterisk must be filled in. The <emphasis role="bold">Display Name</emphasis> field is optional and when left blank, a value in format <emphasis><First Name> <Last Name></emphasis> is used.
</para>
<para>
Further information about the user (such as nickname and birthday) can be added in the <emphasis role="bold">User Profile</emphasis> tab. This information is not required for the creation of the account.
@@ -90,14 +82,6 @@
<para>
Select the information type (name, email, etc) to search against
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/SearchUser.png" format="PNG" align="center" scale="100" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/SearchUser.png" format="PNG" align="center" contentwidth="150mm" />
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
@@ -124,14 +108,6 @@
<para>
Click the edit icon (next to the trash icon).
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/Demo1.png" format="PNG" align="center" scale="100" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/Demo1.png" format="PNG" align="center" contentwidth="150mm" />
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
@@ -142,7 +118,7 @@
<term>User Name</term>
<listitem>
<para>
- The <emphasis role="bold">User Name</emphasis> field cannot be changed. Other fields <emphasis role="bold">First Name</emphasis> , <emphasis role="bold">Last Name</emphasis> , <emphasis role="bold">Email Address</emphasis> can be changed.
+ The <emphasis role="bold">User Name</emphasis> field cannot be changed. Other fields — <emphasis role="bold">First Name</emphasis>, <emphasis role="bold">Last Name</emphasis>, <emphasis role="bold">Display Name</emphasis> and <emphasis role="bold">Email Address</emphasis> — can be changed.
</para>
</listitem>
</varlistentry>
@@ -165,14 +141,6 @@
<para>
Select the <emphasis role="bold">User Membership</emphasis> tab to see a user's group membership information.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/Demo3.png" format="PNG" align="center" scale="100" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/Demo3.png" format="PNG" align="center" contentwidth="150mm" />
- </imageobject>
- </mediaobject>
<variablelist>
<varlistentry>
<term>User Membership</term>
@@ -240,27 +208,11 @@
<para>
First choose where in the existing group structure you want the new group to be created. You may navigate up the tree by clicking on the green vertical little arrow at the top of the tree. The current path is displayed in the path bar.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/Admin1.png" format="PNG" align="center" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/Admin1.png" format="PNG" align="center" contentwidth="50mm"/>
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
Click <emphasis role="bold">Add New Group</emphasis>.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/AddGroup.png" format="PNG" align="center" scale="100" />
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/AddGroup.png" format="PNG" align="center" contentwidth="110mm"/>
- </imageobject>
- </mediaobject>
<variablelist>
<varlistentry>
<term><emphasis role="bold">Group Name</emphasis></term>
@@ -374,14 +326,6 @@
<para>
Click the edit icon in the Action column
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/EditMember1.png" format="PNG" align="center" scale="100"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/EditMember1.png" format="PNG" align="center" contentwidth="90mm"/>
- </imageobject>
- </mediaobject>
</step>
<step>
<para>
12 years, 1 month
gatein SVN: r8949 - in epp/docs/branches/6.0/Reference_Guide/en-US: modules/PortalDevelopment and 1 other directory.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-11-02 12:54:24 -0400 (Fri, 02 Nov 2012)
New Revision: 8949
Modified:
epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml
epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
Log:
BZ#794099 - added info about creation of custom error pages.
Modified: epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml 2012-11-02 16:50:23 UTC (rev 8948)
+++ epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml 2012-11-02 16:54:24 UTC (rev 8949)
@@ -8,6 +8,20 @@
<simpara>
<revhistory>
<revision>
+ <revnumber>6.0.0-16</revnumber>
+ <date>Fri Nov 2 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>BZ#794099 - added info about creation of custom error pages.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
<revnumber>6.0.0-14</revnumber>
<date>Thu Nov 1 2012</date>
<author>
Modified: epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
===================================================================
--- epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-02 16:50:23 UTC (rev 8948)
+++ epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-02 16:54:24 UTC (rev 8949)
@@ -391,6 +391,54 @@
</listitem>
</itemizedlist>
</section>
+ <section id="sect-Reference_Guide-Creating_Custom_Error_Pages-Overview">
+ <title>Custom error pages</title>
+ <para>
+ When an HTML error code is returned as a response to a URL request (e.g. 404 Not Found), JBoss Enterprise Portal Platform redirects users to a default error page where the error code is displayed together with an explanatory message. To replace the default error page with a customized one, the configuration explained below needs to be performed.
+ </para>
+ <procedure>
+ <title>Configuring redirection to custom error pages</title>
+ <step>
+ <para>
+ Create the actual error pages and place them in the <filename>JPP_HOME/gatein/gatein.ear/portal.war/</filename> directory.
+ </para>
+ </step>
+ <step>
+ <para>
+ For each error code that shall have its custom error page, add the <literal><error-page></literal> element to the <filename>JPP_HOME/gatein/gatein.ear/portal.war/WEB-INF/web.xml</filename> file. This element specifies what page is displayed when the particular error code is returned.
+ </para>
+ <para>
+ The sample code below ensures that the <filename>my404.html</filename> page is displayed when the 404 error code is returned.
+<programlisting language="XML"><![CDATA[
+<error-page>
+ <error-code>404</error-code>
+ <location>/my404.html</location>
+</error-page>
+]]></programlisting>
+ </para>
+ </step>
+ <step>
+ <para>
+ Specify the error page locations as static resources in the <filename>JPP_HOME/standalone/configuration/gatein/controller.xml</filename> file. The code sample below demonstrates this configuration for the <filename>/my404.html</filename> path.
+<programlisting language="XML"><![CDATA[
+<route path="/my404.html">
+ <route-param qname="gtn:handler">
+ <value>staticResource</value>
+ </route-param>
+</route>
+]]></programlisting>
+ </para>
+ <para>
+ Without this configuration, the portal tries to resolve <filename>/my404.html</filename> as a name of a portal or another resource. This results in unwanted redirection to <filename>/portal/my404.html</filename>. It is therefore necessary to configure the error page locations as static resources.
+ </para>
+ </step>
+ <step>
+ <para>
+ When all the previous steps are performed, users are redirected to the specified custom error pages when the respective error codes are returned as a response to a URL request.
+ </para>
+ </step>
+ </procedure>
+ </section>
</section>
</section>
<section id="sect-Reference_Guide-Navigation_Controller_-Integrate_to_JBoss_Enterprise_Portal_Platform_WebUI_framework">
12 years, 1 month
gatein SVN: r8948 - in epp/docs/branches/5.2/Reference_Guide/en-US: modules and 1 other directories.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-11-02 12:50:23 -0400 (Fri, 02 Nov 2012)
New Revision: 8948
Modified:
epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml
epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment.xml
epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
Log:
BZ#794099 - added info about creation of custom error pages.
Modified: epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml 2012-11-01 21:54:20 UTC (rev 8947)
+++ epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml 2012-11-02 16:50:23 UTC (rev 8948)
@@ -8,6 +8,20 @@
<simpara>
<revhistory>
<revision>
+ <revnumber>5.2.2-110</revnumber>
+ <date>Fri Nov 2 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>BZ#794099 - added info about creation of custom error pages.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
<revnumber>5.2.2-109</revnumber>
<date>Thu Nov 1 2012</date>
<author>
Modified: epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
===================================================================
--- epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-01 21:54:20 UTC (rev 8947)
+++ epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-02 16:50:23 UTC (rev 8948)
@@ -391,6 +391,54 @@
</listitem>
</itemizedlist>
</section>
+ <section id="sect-Reference_Guide-Creating_Custom_Error_Pages">
+ <title>Custom error pages</title>
+ <para>
+ When an HTML error code is returned as a response to a URL request (e.g. 404 Not Found), JBoss Enterprise Portal Platform redirects users to a default error page where the error code is displayed together with an explanatory message. To replace the default error page with a customized one, the configuration explained below needs to be performed.
+ </para>
+ <procedure>
+ <title>Configuring redirection to custom error pages</title>
+ <step>
+ <para>
+ Create the actual error pages and place them in the <filename>EPP_HOME/jboss-as/server/PROFILE/deploy/gatein.ear/02portal.war/</filename> directory.
+ </para>
+ </step>
+ <step>
+ <para>
+ For each error code that shall have its custom error page, add the <literal><error-page></literal> element to the <filename>EPP_HOME/jboss-as/server/PROFILE/deploy/gatein.ear/02portal.war/WEB-INF/web.xml</filename> file. This element specifies what page is displayed when the particular error code is returned.
+ </para>
+ <para>
+ The sample code below ensures that the <filename>my404.html</filename> page is displayed when the 404 error code is returned.
+<programlisting language="XML"><![CDATA[
+<error-page>
+ <error-code>404</error-code>
+ <location>/my404.html</location>
+</error-page>
+]]></programlisting>
+ </para>
+ </step>
+ <step>
+ <para>
+ Specify the error page locations as static resources in the <filename>EPP_HOME/jboss-as/server/PROFILE/conf/gatein/controller.xml</filename> file. The code sample below demonstrates this configuration for the <filename>/my404.html</filename> path.
+<programlisting language="XML"><![CDATA[
+<route path="/my404.html">
+ <route-param qname="gtn:handler">
+ <value>staticResource</value>
+ </route-param>
+</route>
+]]></programlisting>
+ </para>
+ <para>
+ Without this configuration, the portal tries to resolve <filename>/my404.html</filename> as a name of a portal or another resource. This results in unwanted redirection to <filename>/portal/my404.html</filename>. It is therefore necessary to configure the error page locations as static resources.
+ </para>
+ </step>
+ <step>
+ <para>
+ When all the previous steps are performed, users are redirected to the specified custom error pages when the respective error codes are returned as a response to a URL request.
+ </para>
+ </step>
+ </procedure>
+ </section>
</section>
</section>
<section id="sect-Reference_Guide-Navigation_Controller_-Integrate_to_JBoss_Enterprise_Portal_Platform_WebUI_framework">
Modified: epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment.xml
===================================================================
--- epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment.xml 2012-11-01 21:54:20 UTC (rev 8947)
+++ epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment.xml 2012-11-02 16:50:23 UTC (rev 8948)
@@ -20,4 +20,3 @@
<!-- DOC NOTE: JavaScript Configuration section removed as per instruction from Thomas Heute -->
<xi:include href="PortalDevelopment/NavigationController.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
</part>
-
12 years, 1 month
gatein SVN: r8947 - epp/docs/branches/6.0/Migration_Guide.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2012-11-01 17:54:20 -0400 (Thu, 01 Nov 2012)
New Revision: 8947
Removed:
epp/docs/branches/6.0/Migration_Guide/en-US/
epp/docs/branches/6.0/Migration_Guide/publican.cfg
Log:
Removed Migration Guide XML because this guide is maintained in CCMS
Deleted: epp/docs/branches/6.0/Migration_Guide/publican.cfg
===================================================================
--- epp/docs/branches/6.0/Migration_Guide/publican.cfg 2012-11-01 11:02:48 UTC (rev 8946)
+++ epp/docs/branches/6.0/Migration_Guide/publican.cfg 2012-11-01 21:54:20 UTC (rev 8947)
@@ -1,7 +0,0 @@
-xml_lang: "en-US"
-brand: JBoss
-debug: 1
-type: Book
-git_branch: docs-rhel-6
-#show_remarks: 1
-
12 years, 1 month
gatein SVN: r8946 - in epp/docs/branches/5.2/Reference_Guide/en-US: modules/PortalDevelopment and 1 other directory.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-11-01 07:02:48 -0400 (Thu, 01 Nov 2012)
New Revision: 8946
Modified:
epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml
epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
Log:
Finished BZ#850885 - added relevant information about rendering of route parameters.
Modified: epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml 2012-11-01 11:00:50 UTC (rev 8945)
+++ epp/docs/branches/5.2/Reference_Guide/en-US/Revision_History.xml 2012-11-01 11:02:48 UTC (rev 8946)
@@ -7,6 +7,20 @@
<title>Revision History</title>
<simpara>
<revhistory>
+ <revision>
+ <revnumber>5.2.2-109</revnumber>
+ <date>Thu Nov 1 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Finished BZ#850885 - added relevant information about rendering of route parameters.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
<revision>
<revnumber>5.2.2-108</revnumber>
<date>Tue Oct 23 2012</date>
Modified: epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
===================================================================
--- epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-01 11:00:50 UTC (rev 8945)
+++ epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-01 11:02:48 UTC (rev 8946)
@@ -148,7 +148,7 @@
</listitem>
<listitem>
<para>
- Rendering: selection occurs when always.
+ Rendering: the system will select a route to render a URL if all route parameters are always matched.
</para>
</listitem>
</itemizedlist>
12 years, 1 month
gatein SVN: r8945 - in epp/docs/branches/6.0/Reference_Guide/en-US: modules/PortalDevelopment and 1 other directory.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-11-01 07:00:50 -0400 (Thu, 01 Nov 2012)
New Revision: 8945
Modified:
epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml
epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
Log:
Finished BZ#850885 - added relevant information about rendering of route parameters.
Modified: epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml 2012-11-01 04:36:16 UTC (rev 8944)
+++ epp/docs/branches/6.0/Reference_Guide/en-US/Revision_History.xml 2012-11-01 11:00:50 UTC (rev 8945)
@@ -8,6 +8,20 @@
<simpara>
<revhistory>
<revision>
+ <revnumber>6.0.0-14</revnumber>
+ <date>Thu Nov 1 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Finished BZ#850885 - added relevant information about rendering of route parameters.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
<revnumber>6.0.0-12</revnumber>
<date>Mon Oct 25 2012</date>
<author>
Modified: epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml
===================================================================
--- epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-01 04:36:16 UTC (rev 8944)
+++ epp/docs/branches/6.0/Reference_Guide/en-US/modules/PortalDevelopment/NavigationController.xml 2012-11-01 11:00:50 UTC (rev 8945)
@@ -148,7 +148,7 @@
</listitem>
<listitem>
<para>
- Rendering: selection occurs when always.
+ Rendering: the system will select a route to render an URL if all route parameters are always matched.
</para>
</listitem>
</itemizedlist>
12 years, 1 month