gatein SVN: r8870 - epp/docs/branches/5.2/Developer_Guide/en-US.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-10-11 15:03:37 -0400 (Thu, 11 Oct 2012)
New Revision: 8870
Modified:
epp/docs/branches/5.2/Developer_Guide/en-US/chapter-2-GDG_Architectural_choices.xml
epp/docs/branches/5.2/Developer_Guide/en-US/chapter-4-GDG_Portal_Development.xml
epp/docs/branches/5.2/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml
Log:
Implemented changes required in BZ#813583.
Modified: epp/docs/branches/5.2/Developer_Guide/en-US/chapter-2-GDG_Architectural_choices.xml
===================================================================
--- epp/docs/branches/5.2/Developer_Guide/en-US/chapter-2-GDG_Architectural_choices.xml 2012-10-11 19:03:11 UTC (rev 8869)
+++ epp/docs/branches/5.2/Developer_Guide/en-US/chapter-2-GDG_Architectural_choices.xml 2012-10-11 19:03:37 UTC (rev 8870)
@@ -59,11 +59,11 @@
</para>
<para>
- We do not provide additional recommendation to choose one database server over another as long as it is one of the certified environment.
+ We do not provide additional recommendations to choose one database server over another as long as it is one of the certified environments.
</para>
<para>
- As said earlier, content is stored through a JCR API, RDBMS aren't a great fit to store large files and it is possible to configure eXo JCR to store such files in the filesystem instead of a database, whereas metadata about the files would still be stored into the database. Note that if the website is running on a cluster, the filesystem will need to be accessible from all the nodes and a NFS solution needs to be set up. For more details see the notion of "value storage" in the reference guide.
+ As said earlier, content is stored through a JCR API, RDBMS aren't a great fit to store large files and it is possible to configure eXo JCR to store such files in the filesystem instead of a database, whereas metadata about the files would still be stored in the database. Note that if the website is running on a cluster, the filesystem will need to be accessible from all the nodes and a NFS solution needs to be set up. For more details see the notion of "value storage" in the reference guide.
</para>
</section>
Modified: epp/docs/branches/5.2/Developer_Guide/en-US/chapter-4-GDG_Portal_Development.xml
===================================================================
--- epp/docs/branches/5.2/Developer_Guide/en-US/chapter-4-GDG_Portal_Development.xml 2012-10-11 19:03:11 UTC (rev 8869)
+++ epp/docs/branches/5.2/Developer_Guide/en-US/chapter-4-GDG_Portal_Development.xml 2012-10-11 19:03:37 UTC (rev 8870)
@@ -7,13 +7,13 @@
<title>Portal containers</title>
<para>
- In a single instance (or cluster) of JBoss Enterprise Portal Platform, multiple portals can be running and share resources with other portals with two level of granularity:
+ In a single instance (or cluster) of JBoss Enterprise Portal Platform, multiple portals can be running and share resources with other portals with two levels of granularity:
</para>
<itemizedlist>
<listitem>
<para>
- Portal Containers: A portal container can host multiple sites, and an JBoss Enterprise Portal Platform instance can host multiple portal containers
+ Portal Containers: A portal container can host multiple sites, and a JBoss Enterprise Portal Platform instance can host multiple portal containers
</para>
</listitem>
@@ -25,11 +25,11 @@
</itemizedlist>
<para>
- The biggest granularity is what is called "Portal Containers". A Portal Container can host multiple "Sites". Those two components have a unique identifier that can be found in the default URL mapping according to the following scheme: <code> <ulink url="http://localhost:8080/"/> <portalcontainer>/<site> </code>
+ The biggest granularity is what is called "Portal Containers". A Portal Container can host multiple "Sites". Those two components have a unique identifier that can be found in the default URL mapping according to the following scheme: <code> <ulink url="http://localhost:8080/"/><portalcontainer>/<site> </code>
</para>
<para>
- When creating a website, it is possible to create a portal container from scratch or extend an existing one. It is then possible to extend the portal container which is accessed at <ulink url="http://localhost:8080/portal"/> on the out of the box solution, this is the recommended way. While running multiple portal containers is possible, it's usually better to keep those on separate installation. Note that multiple websites can run in a single portal container and share some services.
+ When creating a website, it is possible to create a portal container from scratch or extend an existing one. It is then possible to extend the portal container which is accessed at <ulink url="http://localhost:8080/portal"/> on the out of the box solution, this is the recommended way. While running multiple portal containers is possible, it's usually better to keep those on separate installations. Note that multiple websites can run in a single portal container and share some services.
</para>
<para>
Modified: epp/docs/branches/5.2/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml
===================================================================
--- epp/docs/branches/5.2/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml 2012-10-11 19:03:11 UTC (rev 8869)
+++ epp/docs/branches/5.2/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml 2012-10-11 19:03:37 UTC (rev 8870)
@@ -22,7 +22,7 @@
<title>Developing Gadgets</title>
<para>
- OpenSocial gadgets are made of standard HTML and javascript. The container offers an API, the documentation for which is available <ulink url="http://opensocial-resources.googlecode.com/svn/spec/1.0/Core-Gadget.xml">here</ulink> .
+ OpenSocial gadgets are made of standard HTML and JavaScript. The container offers an API, the documentation for which is available <ulink url="http://opensocial-resources.googlecode.com/svn/spec/1.0/Core-Gadget.xml">here</ulink> .
</para>
<para>
@@ -39,7 +39,7 @@
<title>Portlet Development</title>
<para>
- JBoss Enterprise Portal interface is fully customized with applications called portlets. Application development can be done by using the plain Portlet specification JSR-286 (refer to the "Portlet Primer" chapter in the JBoss Enterprise Portal Platform Reference Guide for more information), but it is also possible to use the JBoss Portlet Bridge to write applications with JSF and/or RichFaces and/or Seam, (refer to the "Getting started with JBoss Portlet Bridge" chapter of the JBoss Enterprise Portal Platform Reference Guide).
+ JBoss Enterprise Portal interface is fully customized with applications called portlets. Application development can be done by using the plain Portlet specification JSR-286 (refer to the "Portlet Primer" chapter in the JBoss Enterprise Portal Platform Reference Guide for more information), but it is also possible to use the JBoss Portlet Bridge to write applications with JSF and/or RichFaces and/or Seam (refer to the "Getting started with JBoss Portlet Bridge" chapter of the JBoss Enterprise Portal Platform Reference Guide).
</para>
<para>
12 years, 2 months
gatein SVN: r8869 - in epp/docs/branches/5.2/Reference_Guide/en-US: modules/PortletDevelopment/PortletBridge and 1 other directory.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-10-11 15:03:11 -0400 (Thu, 11 Oct 2012)
New Revision: 8869
Modified:
epp/docs/branches/5.2/Reference_Guide/en-US/extras/PortletBridge_Configuration/default205.xml
epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortletDevelopment/PortletBridge/configuration.xml
Log:
Incorporated changes requested in BZ#851086.
Modified: epp/docs/branches/5.2/Reference_Guide/en-US/extras/PortletBridge_Configuration/default205.xml
===================================================================
--- epp/docs/branches/5.2/Reference_Guide/en-US/extras/PortletBridge_Configuration/default205.xml 2012-10-11 05:46:21 UTC (rev 8868)
+++ epp/docs/branches/5.2/Reference_Guide/en-US/extras/PortletBridge_Configuration/default205.xml 2012-10-11 19:03:11 UTC (rev 8869)
@@ -1,3 +1,3 @@
-<script src="/richFacesPortlet/faces/rfRes/org/ajax4jsf/framework.pack.js" type="text/javascript"></script>
-<script src="/richFacesPortlet/faces/rfRes/org/richfaces/ui.pack.js" type="text/javascript"></script>
-<link rel="stylesheet" type="text/css" href="/richFacesPortlet/faces/rfRes/org/richfaces/skin.xcss"/>
+<a4j:loadScript src="resource:////org/ajax4jsf/framework.pack.js" type="text/javascript"/>
+<a4j:loadScript src="resource:////org/richfaces/ui.pack.js" type="text/javascript"/>
+<a4j:loadStyle src="resource:////org/richfaces/skin.xcss"/>
Modified: epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortletDevelopment/PortletBridge/configuration.xml
===================================================================
--- epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortletDevelopment/PortletBridge/configuration.xml 2012-10-11 05:46:21 UTC (rev 8868)
+++ epp/docs/branches/5.2/Reference_Guide/en-US/modules/PortletDevelopment/PortletBridge/configuration.xml 2012-10-11 19:03:11 UTC (rev 8869)
@@ -141,9 +141,10 @@
<para>
The styles below must also be manually added to the facelets template header in the <filename><replaceable>EPP_DIST</replaceable>/jboss-as/portletbridge/examples/richFacesPortlet-<replaceable>VERSION</replaceable>.war:richFacesPortlet.war/templates/main.xhtml</filename> file.
</para>
- <programlisting language="XML" role="XML"><link rel="stylesheet" type="text/css" href="/richFacesPortlet/faces/rfRes/org/richfaces/renderkit/html/css/basic_both.xcss"/>
-<link rel="stylesheet" type="text/css" href="/richFacesPortlet/faces/rfRes/org/richfaces/renderkit/html/css/extended_both.xcss"/>
-<link rel="stylesheet" type="text/css" href="/richFacesPortlet/faces/rfRes/org/richfaces/skin.xcss"/>
+ <programlisting language="XML" role="XML">
+<a4j:loadStyle src="resource:////org/richfaces/renderkit/html/css/basic_both.xcss"/>
+<a4j:loadStyle src="resource:////org/richfaces/renderkit/html/css/extended_both.xcss"/>
+<a4j:loadStyle src="resource:////org/richfaces/skin.xcss"/>
</programlisting>
<para>
The table below outlines the current status of RichFaces features when used in both local and remote portlets.
12 years, 2 months
gatein SVN: r8868 - epp/docs/branches/6.0/Draft_CSP_Maps.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2012-10-11 01:46:21 -0400 (Thu, 11 Oct 2012)
New Revision: 8868
Modified:
epp/docs/branches/6.0/Draft_CSP_Maps/ReferenceGuide.contentspec
Log:
Updated content spec with new changes from work done in Reference Guide in various tickets
Modified: epp/docs/branches/6.0/Draft_CSP_Maps/ReferenceGuide.contentspec
===================================================================
--- epp/docs/branches/6.0/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-10-11 03:09:32 UTC (rev 8867)
+++ epp/docs/branches/6.0/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-10-11 05:46:21 UTC (rev 8868)
@@ -9,10 +9,11 @@
Output Style = Narrative
Copyright Holder = Red Hat, Inc
Survey Links = OFF
+spaces = 8
Part: Portal Development
- Chapter: Skinning the Portal
+ Chapter: Skinning the Portal
Overview [N, Concept]
Section: Skin components
Portal skin [N, Concept]
@@ -26,7 +27,7 @@
The skin service [N, Concept]
Skin configuration [N, Task]
Resource request filter [N, Task]
- The default skin [N, Reference]
+ The default skin [N, Reference]
Process: Creating portal skins
Portal skin [N, Concept]
Configuring a portal skin [N, Task]
@@ -53,7 +54,7 @@
Chapter: Default Portal
Default portal overview [N, Concept]
Default portal example [N, Reference]
-
+
Chapter: Default permission configuration
Default permissions overview [N, Reference]
Overwriting default permissions [N, Task]
@@ -89,7 +90,7 @@
Chapter: XML resources bundles
Resource bundles overview [N, Concept]
Resource bundle XML format [N, Concept]
-
+
Chapter: Right To Left (RTL) Framework
RTL Groovy templates syntax [N, Reference]
@@ -125,7 +126,7 @@
WebUI URL builder [N, Reference]
WebUI Groovy templates [N, Reference]
-Part: Portlet Development
+ Part: Portlet Development
Chapter: JSR-168 and JSR-286
JSR overview [N, Concept]
@@ -142,7 +143,7 @@
Compiling the example [N, Task]
Package structure [N, Reference]
Portlet class [N, Reference]
-
+
Chapter: Shared portlet.xml
PortletFilter [N, Concept]
PortletFilter setup [N, Reference]
@@ -163,19 +164,19 @@
Configuring faces-config.xml [N, Task]
Configuring facelets web.xml [N, Task]
Configuring JSP-only web.xml [N, Task]
-
+
Process: RichFaces Setup and Configuration Options
Configuring RichFaces web.xml [N, Task]
Configure WSRP and PortletBridge [N, Task]
RichFaces local and remote portlet feature status [N, Reference]
-
+
Process: Seam Setup and Configuration Options
ExceptionHandler [N, Concept]
Sending and receiving events [N, Task]
Public render parameters (PRPs)[N, Concept]
Configuring PRPs [N, Task]
Serving JSF resources in a portal [N, Reference]
-
+
Chapter: Developing Portlets with the Bridge
Excluding attributes from the bridge request scope [N, Reference]
Supporting PortletMode changes [N, Reference]
@@ -191,8 +192,8 @@
Redirecting to an External Page or Resource [N, Reference]
Using Provided EL Variables [N, Reference]
-# check the EAP topics for related info for common info.
-Part: Authentication and Authorization
+ # check the EAP topics for related info for common info.
+ Part: Authentication and Authorization
Chapter: Authentication
Authentication Overview [N, Reference]
@@ -209,7 +210,7 @@
Authenticator and RolesExtractor [N, Reference]
Section: Authentication workflows
RememberMe authentication [N, Reference]
-#the following section is from 17.2 Password Encryption
+ #the following section is from 17.2 Password Encryption
RememberMe password encryption [N, Task]
BASIC authentication [N, Reference]
Cluster login authentication [N, Reference]
@@ -254,7 +255,7 @@
Configuring JOSSO client [N, Task]
Testing the JOSSO installation [N, Task]
Redirecting portal authentication to JOSSO [N, Task]
-
+
Section: Open Single Sign-on (OpenSSO)
OpenSSO [N, Concept]
Process: Implement OpenSSO for portal user authetication
@@ -263,7 +264,7 @@
Configuring the gatein realm [N, Task]
Configuring the OpenSSO client [N, Task]
Redirecting portal authentication to OpenSSO [N, Task]
-#Look for SPNEGO stuff in EAP 6
+ #Look for SPNEGO stuff in EAP 6
Section: Simple and Protected GSSAPI Negotiation Mechanism (SPNEGO)
SPNEGO [N, Concept]
Process: Implement SPNEGO configuration for portal user authetication
@@ -301,18 +302,18 @@
Servlet container authorization [N, Reference]
Portal level authorization [N, Reference]
-Part: Web Services for Remote Portlets (WSRP)
+ Part: Web Services for Remote Portlets (WSRP)
Chapter: WSRP Overview
Specification [N, Concept]
Level of support in JBoss Enterprise Portal Platform [N, Reference]
Deploying JBoss Enterprise Portal Platform's WSRP services [N, Reference]
-
+
Chapter: Securing WSRP
Considerations to use WSRP with SSL [N, Reference]
WSRP and WS-Security [N, Reference]
WS-Security configuration [N, Reference]
WS-Security producer and consumer configuration [N, Task]
-
+
Chapter: Making a portlet remotable
Single Portlet Remotable Example [N, Reference]
Multiple Portlets Remotable Example [N, Reference]
@@ -349,7 +350,7 @@
Registration configuration [N, Task]
WSRP validation mode [N, Reference]
-Part: Advanced Development Foundations
+ Part: Advanced Development Foundations
Chapter: The eXo Kernel
eXo kernel [N, Concept]
@@ -360,7 +361,7 @@
Chapter: Configuration Retrieval
Configuration retrieval targets [N, Reference]
How configuration retrieval works [N, Concept]
-
+
Chapter: PortalContainers
Adding new configuration files from a WAR file [N, Task]
Creating PortalContainers from a WAR file [N, Reference]
@@ -368,8 +369,8 @@
Defining a PortalContainerDefinition [N, Task]
Using a PortalContainerDefinition to define a new portal container [N, Task]
PortalContainerConfig Configuration Directives [N, Reference]
-# add PortalContainer settings [N, Task] and PortalContainer settings into PortalContainerConfig Configuration Directives
-
+ # add PortalContainer settings [N, Task] and PortalContainer settings into PortalContainerConfig Configuration Directives
+
Section: Dynamically add settings and dependencies to a PortalContainer
PortalContainerDefinitionChangePlugin [N, Reference]
PortalContainerDefinitionChangePlugin Configuration Directives [N, Reference]
@@ -381,7 +382,7 @@
Section: Dynamically disable a portal container
PortalContainerDefinitionDisablePlugin [N, Reference]
Preventing access to disabled portal container [N, Task]
-
+
Chapter: Runtime configuration profiles
Section: Configuring profiles
@@ -401,7 +402,7 @@
RootContainer [N, Reference]
PortalContainer [N, Reference]
External Plug-ins [N, Reference]
- Service instantiation [N, Reference]
+ Service instantiation [N, Reference]
Service access [N, Reference]
Includes, and special URLs [N, Reference]
Special variables [N, Reference]
@@ -416,7 +417,7 @@
Configuration logging [N, Reference]
<import> directive [N, Reference]
System properties [N, Reference]
-
+
Section: ListenerService
ListenerService [N, Concept]
@@ -436,12 +437,12 @@
Section: DataSourceProvider service
DataSourceProvider [N, Concept]
Configuring DataSourceProvider [N, Reference]
-
+
Chapter: Configuring a portal container
Portal container attributes [N, Reference]
Portal container instance [N, Reference]
-
+
Chapter: System property configuration
# merge this into the other init-params 19.9.1. Properties <init-param>
@@ -456,8 +457,8 @@
Overview [N, Concept]
Configuring multiple portals [N, Reference]
-Part: The Java Content Repository (JCR)
-
+ Part: The Java Content Repository (JCR)
+
Chapter: JCR Concepts and Overview
Java Content Repository (JCR) [N, Concept]
Repository [N, Concept]
@@ -475,11 +476,11 @@
<repository-service> directive [N, Reference]
<workspace> directive [N, Reference]
<workspace-data> directive [N, Reference]
-# Add the CAS Properties from 26.3. Content Addressable Value storage (CAS) support to the following directive
+ # Add the CAS Properties from 26.3. Content Addressable Value storage (CAS) support to the following directive
<value-storage> directive [N, Reference]
<initializer> directive [N, Reference]
<cache> directive [N, Reference]
-# Add the query-handler directive value pairs in "Configuring Search" to the next topic for completeness
+ # Add the query-handler directive value pairs in "Configuring Search" to the next topic for completeness
<query-handler> directive [N, Reference]
<lock-manager> directive [N, Reference]
@@ -491,7 +492,7 @@
PostgreSQL multi-language JCR support [N, Reference]
Chapter: JCR search functionality
-# Add the introductory info in this section to the <query-handler> directive topic in the chapter above.
+ # Add the introductory info in this section to the <query-handler> directive topic in the chapter above.
Section: Global search index [N, Reference]
Lucene analyzer [N, Reference]
Customized search indexes and analyzers [N, Reference]
@@ -540,7 +541,7 @@
CAS in portal [N, Concept]
Configuring CAS for JCR [N, Task]
Disabling CAS for JCR [N, Task]
-
+
Chapter: Workspace data container
Workspace data container [N, Concept]
JDBCWorkspaceDataContainer class, and parameters [N, Reference]
@@ -567,21 +568,21 @@
JBoss Cache instance sharing [N, Concept]
Configuring JBoss Cache instance [N, Task]
Template files for JBoss Cache [N, Reference]
-
+
Chapter: LockManager
LockManager [N, Concept]
CacheableLockManagerImpl class, and parameters [N, Reference]
jbosscache-lock-config.xml [N, Reference]
-#that table 31.1
+ #that table 31.1
Data types used in different databases [N, Reference]
Configure LockManager using a single configuration file reference [N, Task]
Configure LockManager using a common template for all instances [N, Task]
Lock migration [N, Concept]
Lock migration options [N, Reference]
-
+
Chapter: QueryHandler
Indexing in a clustered environment [N, Concept]
-# Insert the information contained in 32.2.1. Query-handler configuration overview into the <query-handler> directive
+ # Insert the information contained in 32.2.1. Query-handler configuration overview into the <query-handler> directive
Improving query performance with postgreSQL and rdbms-reindexing [N, Task]
Improving query performance with DB2 and rdbms-reindexing [N, Task]
Implementing shared indexing for clustered environments [N, Task]
@@ -594,11 +595,11 @@
Hot asynchronous workplace re-indexing [N, Concept]
Hot asynchronous workplace re-indexing using JMX [N, Task]
Lucene index tuning [N, Reference]
-
+
Chapter: JBoss Transactions Service
JBossTransactionsService [N, Reference]
Configuring JBossTransactionsService [N, Task]
-
+
Chapter: JBoss Transactions Manager Lookup
TransactionManagerLookup [N, Reference]
Configuring TransactionManagerLookup [N, Task]
@@ -617,10 +618,10 @@
XPath queries containing node names starting with a number [N, Reference]
Chapter: Searching repository content
-# Introduction - Look at referencing Configuring Search chapter or move this content there.
+ # Introduction - Look at referencing Configuring Search chapter or move this content there.
Bi-directional Range Iterator [N, Reference]
Fuzzy Searches [N, Reference]
-# note this following topic has impact on <query-handler> element covered earlier
+ # note this following topic has impact on <query-handler> element covered earlier
SynonymSearch [N, Reference]
Section: Highlighting
ExcerptProvider [N, Concept]
@@ -687,13 +688,13 @@
Section: Restore an existing workspace or repository
Restore methods overview [N, Concept]
Restore configuration example [N, Reference]
-
+
Section: Restore a workplace or a repository using original configuration
Back-up manager [N, Concept]
Back-up manager configuration example [N, Reference]
-
+
Back-up set portability [N, Reference]
-
+
Chapter: Back-up agent and back-up client
Section: Back-up agent
HTTPBackupAgent [N, Concept]
@@ -704,7 +705,7 @@
Building and running the back-up client [N, Task]
Starting back-ups [N, Task]
Stopping back-ups [N, Task]
-# The following topic in the original guide contains many sub processes. Make these examples
+ # The following topic in the original guide contains many sub processes. Make these examples
Restoring back-up examples [N, Reference]
Creating a Backup and Restoring a Workspace [N, Task]
Creating a Backup and Restoring a Repository [N, Task]
@@ -730,11 +731,11 @@
JMX-based consistency tool [N, Reference]
Chapter 46. Link Producer Service
-# Lnk is correct. It isn't Link.
+ # Lnk is correct. It isn't Link.
LnkProducer [N, Concept]
LnkProducer Example [N, Task]
-# Chapter 47 is not required
+ # Chapter 47 is not required
Chapter 48. JCR Workspace Data Container
Container [N, Concept]
@@ -773,96 +774,3 @@
Chapter: Use a managed DataSource under JBoss Enterprise Application Platform
Declaring datasources in the application server [N, Task]
Disable binding datasources [N, Task]
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
12 years, 2 months
gatein SVN: r8867 - in epp/docs/branches: 6.0/Installation_Guide/en-US and 1 other directory.
by do-not-reply@jboss.org
Author: smumford
Date: 2012-10-10 23:09:32 -0400 (Wed, 10 Oct 2012)
New Revision: 8867
Modified:
epp/docs/branches/5.2/Installation_Guide/en-US/Installation_With_ZIP_Download.xml
epp/docs/branches/5.2/Installation_Guide/en-US/Test_Your_Installation.xml
epp/docs/branches/6.0/Installation_Guide/en-US/Installation_With_ZIP_Download.xml
epp/docs/branches/6.0/Installation_Guide/en-US/Test_Your_Installation.xml
Log:
BZ#813333: Minor edit to satisfy QA review
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/Installation_With_ZIP_Download.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/Installation_With_ZIP_Download.xml 2012-10-10 13:49:57 UTC (rev 8866)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Installation_With_ZIP_Download.xml 2012-10-11 03:09:32 UTC (rev 8867)
@@ -80,7 +80,7 @@
download link.</para>
</step>
<step>
- <para>Click the <guibutton>Download</guibutton> link to start the Portal download.</para>
+ <para>Click the <guibutton>Download</guibutton> link to start the Site Publisher add-on download.</para>
</step>
</substeps>
</step>
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/Test_Your_Installation.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/Test_Your_Installation.xml 2012-10-10 13:49:57 UTC (rev 8866)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Test_Your_Installation.xml 2012-10-11 03:09:32 UTC (rev 8867)
@@ -137,7 +137,7 @@
<varlistentry>
<term>Standard Portal, with HTTPS configured, and Site Publisher.</term>
<listitem>
- <para>Open <literal>http://localhost:8443/ecmdemo/public/classic</literal> </para>
+ <para>Open <literal>http://localhost:8443/ecmdemo/</literal> </para>
</listitem>
</varlistentry>
</variablelist>
Modified: epp/docs/branches/6.0/Installation_Guide/en-US/Installation_With_ZIP_Download.xml
===================================================================
--- epp/docs/branches/6.0/Installation_Guide/en-US/Installation_With_ZIP_Download.xml 2012-10-10 13:49:57 UTC (rev 8866)
+++ epp/docs/branches/6.0/Installation_Guide/en-US/Installation_With_ZIP_Download.xml 2012-10-11 03:09:32 UTC (rev 8867)
@@ -80,7 +80,7 @@
download link.</para>
</step>
<step>
- <para>Click the <guibutton>Download</guibutton> link to start the Portal download.</para>
+ <para>Click the <guibutton>Download</guibutton> link to start the Site Publisher add-on download.</para>
</step>
</substeps>
</step>
Modified: epp/docs/branches/6.0/Installation_Guide/en-US/Test_Your_Installation.xml
===================================================================
--- epp/docs/branches/6.0/Installation_Guide/en-US/Test_Your_Installation.xml 2012-10-10 13:49:57 UTC (rev 8866)
+++ epp/docs/branches/6.0/Installation_Guide/en-US/Test_Your_Installation.xml 2012-10-11 03:09:32 UTC (rev 8867)
@@ -137,7 +137,7 @@
<varlistentry>
<term>Standard Portal, with HTTPS configured, and Site Publisher.</term>
<listitem>
- <para>Open <literal>http://localhost:8443/ecmdemo/public/classic</literal> </para>
+ <para>Open <literal>http://localhost:8443/ecmdemo/</literal> </para>
</listitem>
</varlistentry>
</variablelist>
12 years, 2 months
gatein SVN: r8866 - in epp/docs/branches/6.0/User_Guide/en-US: modules/portal and 1 other directory.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-10-10 09:49:57 -0400 (Wed, 10 Oct 2012)
New Revision: 8866
Modified:
epp/docs/branches/6.0/User_Guide/en-US/Book_Info.xml
epp/docs/branches/6.0/User_Guide/en-US/Revision_History.xml
epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Portals.xml
Log:
Implemented changes required in BZ#849806.
Modified: epp/docs/branches/6.0/User_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/6.0/User_Guide/en-US/Book_Info.xml 2012-10-10 13:49:05 UTC (rev 8865)
+++ epp/docs/branches/6.0/User_Guide/en-US/Book_Info.xml 2012-10-10 13:49:57 UTC (rev 8866)
@@ -8,7 +8,7 @@
<subtitle>A User Guide for Enterprise Portal Platform &VZ;</subtitle>
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
- <edition>5.2.2</edition>
+ <edition>5.2.3</edition>
<abstract>
<para>
This document provides an easy to follow guide to the functions and
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-10-10 13:49:05 UTC (rev 8865)
+++ epp/docs/branches/6.0/User_Guide/en-US/Revision_History.xml 2012-10-10 13:49:57 UTC (rev 8866)
@@ -9,6 +9,21 @@
<revhistory>
<revision>
+ <revnumber>5.2.3-100</revnumber>
+ <date>Wed Sep 10 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Implemented changes required in BZ#849806.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+
+ <revision>
<revnumber>5.2.2-100</revnumber>
<date>Tue Sep 05 2012</date>
<author>
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-10-10 13:49:05 UTC (rev 8865)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-10-10 13:49:57 UTC (rev 8866)
@@ -58,7 +58,7 @@
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 and the name must be between 3 and 30 characters.
+ 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>
12 years, 2 months
gatein SVN: r8865 - epp/docs/branches/5.2/User_Guide/en-US.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-10-10 09:49:05 -0400 (Wed, 10 Oct 2012)
New Revision: 8865
Modified:
epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml
epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml
Log:
Just added a revision to the revision history for the previous commit.
Modified: epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml 2012-10-10 13:48:55 UTC (rev 8864)
+++ epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml 2012-10-10 13:49:05 UTC (rev 8865)
@@ -8,7 +8,7 @@
<subtitle>A User Guide for Enterprise Portal Platform &VZ;</subtitle>
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
- <edition>5.2.2</edition>
+ <edition>5.2.3</edition>
<abstract>
<para>
This document provides an easy to follow guide to the functions and
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-10-10 13:48:55 UTC (rev 8864)
+++ epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml 2012-10-10 13:49:05 UTC (rev 8865)
@@ -9,6 +9,21 @@
<revhistory>
<revision>
+ <revnumber>5.2.3-100</revnumber>
+ <date>Wed Sep 10 2012</date>
+ <author>
+ <firstname>Petr</firstname>
+ <surname>Penicka</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Implemented changes required in BZ#849806.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+
+ <revision>
<revnumber>5.2.2-100</revnumber>
<date>Tue Sep 05 2012</date>
<author>
12 years, 2 months
gatein SVN: r8864 - epp/docs/branches/5.2/User_Guide/en-US/modules/portal.
by do-not-reply@jboss.org
Author: ppenicka
Date: 2012-10-10 09:48:55 -0400 (Wed, 10 Oct 2012)
New Revision: 8864
Modified:
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml
Log:
Implemented changes from BZ#849806.
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-10-10 04:05:21 UTC (rev 8863)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-10-10 13:48:55 UTC (rev 8864)
@@ -58,7 +58,7 @@
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 and the name must be between 3 and 30 characters.
+ 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>
12 years, 2 months
gatein SVN: r8863 - epp/docs/branches/6.0/User_Guide/en-US/modules/portal.
by do-not-reply@jboss.org
Author: smumford
Date: 2012-10-10 00:05:21 -0400 (Wed, 10 Oct 2012)
New Revision: 8863
Modified:
epp/docs/branches/6.0/User_Guide/en-US/modules/portal/User_Management.xml
Log:
BZ#793802: Added draft of new content as supplied by Bruno Machado
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-10-10 03:54:14 UTC (rev 8862)
+++ epp/docs/branches/6.0/User_Guide/en-US/modules/portal/User_Management.xml 2012-10-10 04:05:21 UTC (rev 8863)
@@ -5,9 +5,13 @@
]>
<section id="sect-User_Guide-User_management">
<title>Manage Users and Groups</title>
+
<para>
Several tools are offered to assist Administrators manage users, groups and memberships easily and effectively.
</para>
+
+ <!-- DOCS NOTE: Bug 793802: Added Info about EPP roles. Added in discrete file for relocation. -->
+ <xi:include href="EPP_Roles.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<section id="sect-User_Guide-User_Management-Manage_users">
<title>Manage users</title>
12 years, 2 months
gatein SVN: r8862 - in epp/docs/branches/5.2: Site_Publisher/User_Guide/en-US/modules/Advanced and 1 other directories.
by do-not-reply@jboss.org
Author: smumford
Date: 2012-10-09 23:54:14 -0400 (Tue, 09 Oct 2012)
New Revision: 8862
Added:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/SP_Roles.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/EPP_Roles.xml
Modified:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/User_Management.xml
Log:
BZ#793802: Added draft of new content as supplied by Bruno Machado
Added: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/SP_Roles.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/SP_Roles.xml (rev 0)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/SP_Roles.xml 2012-10-10 03:54:14 UTC (rev 8862)
@@ -0,0 +1,199 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "Site_Publisher_User_Guide.ent">
+%BOOK_ENTITIES;
+]>
+ <section>
+ <title>Roles</title>
+
+ <para>
+ Effective user management in JBoss Enterprise Portal Platform relies on an understanding of the rights and responsibilities of the various user roles available.
+ </para>
+
+ <note>
+ <para>
+ The details below refer only to roles and memberships for the Site Publisher extension. For information regarding the roles in the core portal platform, refer to the the <citetitle>JBoss Enterprise Portal Platform User Guide</citetitle> available on <ulink type="http" url="https://access.redhat.com/knowledge/docs/"></ulink>.
+ </para>
+ </note>
+
+ <itemizedlist>
+ <title>Site Publisher Memberships</title>
+
+ <listitem>
+ <para>
+ Author
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Editor
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Redactor
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Webdesigner
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Publisher
+ </para>
+ </listitem>
+ </itemizedlist>
+
+ <table>
+ <title>Role Attributes of Example Users</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>
+ User
+ </entry>
+
+ <entry>
+ Roles
+ </entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>
+ root
+ </entry>
+ <entry>
+ *:/platform/administrators,*:/platform/users,*:/platform/web-contributors
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ john
+ </entry>
+ <entry>
+ *:/platform/administrators,*:/platform/web-contributors, *:/platform/users
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ mary
+ </entry>
+ <entry>
+ member:/platform/users,editor:/platform/web-contributors,manager:/platform/web-contributors,publisher:/platform/web-contributors
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ james
+ </entry>
+ <entry>
+ member:/platform/users,redactor:/platform/web-contributors,author:/platform/web-contributors
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ demo
+ </entry>
+ <entry>
+ member:/platform/users
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <variablelist>
+ <title>Roles</title>
+ <varlistentry>
+ <term>*:/platform/administrators</term>
+ <listitem>
+ <para>
+ This core portal role extends edit permissions to Site Publisher components such as: Detail, Print Viewer, Group Navigation, Portal Navigation, Parameterized Content List Viewer, Category navigation, Content List Viewer, Single Content Viewer, Newsletter Viewer. Members also have root permissions for JCR repository configuration.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>member:/platform/users</term>
+ <listitem>
+ <para>
+ This core portal role is required for normal users to be able to log in.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>editor:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role can edit pages in the <emphasis>acme</emphasis> portal: Overview, Search Result, Detail, Print Viewer, New Account, News, Events, Confirmation can edit Search Result in classic SP portal portal.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>manager:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role can edit WCM Content Explorer, SiteExplorer Content Explorer, Editor, WCM Administration, Newsletter Manager Portlet, Form Generator Portlet and Workflow Controller.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>publisher:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role can publish contents, for users to move content to <emphasis>staged</emphasis> and <emphasis>published</emphasis> states in the life cycle of SP and ecmdemo portal (lifecycle1 and lifecycle2).
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>redactor:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role is for users to access the newsletter management page.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>author:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role can edit contents, for users to create content in <emphasis>draft</emphasis> and <emphasis>pending</emphasis> states in the life cycle of SP and ecmdemo portal (lifecycle1 and lifecycle2).
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>editor:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role is for users to get the edit mode drop-down in toolbar visible (<literal>WCMAdminToolbarPortlet</literal>).
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>webdesigner:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role has access to CSS and JavaScript templates.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ <para>
+ <remark>DOCS NOTE: This last paragraph needs to be certified and technically verified.</remark>
+ </para>
+ <para>
+ It seems that it's possible to remove all memberships in Site Publisher. There is no validation checking for this action. Any membership dependencies may not be available if the parent membership is removed. Administrators will need to add required dependencies to some other membership or group to access or edit it.
+ </para>
+ </section>
\ No newline at end of file
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced.xml 2012-10-10 03:53:58 UTC (rev 8861)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced.xml 2012-10-10 03:54:14 UTC (rev 8862)
@@ -6,6 +6,7 @@
]>
<chapter id="chap-User_Guide-Advanced_Actions">
<title>Advanced Actions</title>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Advanced/Manage_Site_Resources.xml"/>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Advanced/Administration.xml"/>
+ <!-- DOCS NOTE: Bug 793802: Added Info about SP roles. Added in discrete file for relocation. --><xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Advanced/SP_Roles.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Advanced/Manage_Site_Resources.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Advanced/Administration.xml"/>
</chapter>
Added: epp/docs/branches/5.2/User_Guide/en-US/modules/portal/EPP_Roles.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/portal/EPP_Roles.xml (rev 0)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/EPP_Roles.xml 2012-10-10 03:54:14 UTC (rev 8862)
@@ -0,0 +1,205 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "User_Guide.ent">
+%BOOK_ENTITIES;
+]>
+
+<section>
+ <title>Roles</title>
+ <para>
+ Effective user management in JBoss Enterprise Portal Platform relies on an understanding of the rights and responsibilities of the various user roles available.
+ </para>
+
+ <note>
+ <para>
+ The details below refer only to roles and memberships for the core JBoss Enterprise Portal Platform product. For information regarding the roles in the Site Publisher extension, refer to the the <citetitle>JBoss Enterprise Portal Platform Site Publisher User Guide</citetitle> available on <ulink type="http" url="https://access.redhat.com/knowledge/docs/"></ulink>.
+ </para>
+ </note>
+
+ <itemizedlist>
+ <title>Core Portal Memberships</title>
+ <listitem>
+ <para>
+ Member
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Manager
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Validator
+ </para>
+ </listitem>
+ </itemizedlist>
+
+ <table>
+ <title>Role Attributes of Example Users</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>
+ User
+ </entry>
+
+ <entry>
+ Roles
+ </entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>
+ root
+ </entry>
+ <entry>
+ manager:/platform/administrators,member:/platform/users,member:/organization/management/executive-board
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ john
+ </entry>
+ <entry>
+ member:/platform/administrators,member:/platform/users,manager:/organization/management/executive-board
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ mary
+ </entry>
+ <entry>
+ member:/platform/users
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ demo
+ </entry>
+ <entry>
+ member:/platform/guests,member:/platform/users
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <variablelist>
+ <title>Roles</title>
+ <varlistentry>
+ <term>manager:/platform/administrators</term>
+ <listitem>
+ <para>
+ This role is for users to have access and edit administrators pages. Examples are the New Account, Community Management, Registry, Page Management, New Staff, Organization Management and WSRP Admin pages.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>member:/platform/administrators</term>
+ <listitem>
+ <para>
+ This role is similar to the manager role above. The main difference is that it does not have access to the administrators pages, but can access and edit everything that falls under the <literal>*:/platform/administrators</literal> pages.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>*:/platform/administrators</term>
+ <listitem>
+ <para>
+ This role has edit permissions for everything. This includes; the Home Page, Group Navigation, Portal Navigation, Register and Site Map (in the <emphasis>classic</emphasis> portal). This membership also has permission to create and manage portals and has full permission with group navigation.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>member:/platform/users</term>
+ <listitem>
+ <para>
+ This role allows standard users to log in.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>*:/platform/users</term>
+ <listitem>
+ <para>
+ This role has access to portal toolbars, dashboard, default gadgets (todo, rss, calculator and calendar) and basic portlets (sitemap and iframe). In general it can access but cannot edit these areas.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>member:/organization/management/executive-board</term>
+ <listitem>
+ <para>
+ This role can edit New Staff and Organization Management pages. <remark>DOCS NOTE: I didn't see it in our EPP</remark>
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>member:/platform/guests</term>
+ <listitem>
+ <para>
+ Members of this role can access the Register and Site Map pages.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>*:/platform/web-contributors</term>
+ <listitem>
+ <para>
+ This role can edit the Contact Us page, has taxonomies permission to read, add nodes, set and remove properties in <emphasis>acme</emphasis>, <emphasis>classic</emphasis> and <emphasis>events</emphasis> and is the newsletter marketing moderator, general moderator and subscription redactor. They have access to the <literal>ManageDrivePlugin</literal> for Collaboration and Events. This role also has access to toolbars.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>*:/platform/administrators</term>
+ <listitem>
+ <para>
+ This role grants access to the edit mode drop-down in toolbar visible (<literal>WCMAdminToolbarPortlet</literal>)
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>validator:*</term>
+ <listitem>
+ <para>
+ This role is not used. It can be removed if it is present in your instance.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+
+ <itemizedlist>
+ <title>Mandatory groups (groups that can not be deleted)</title>
+ <listitem>
+ <para>
+ /platform/administrators
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ /platform/users
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ /platform/guests
+ </para>
+ </listitem>
+ </itemizedlist>
+
+ <itemizedlist>
+ <title>Mandatory membership types (Membership type that can not be deleted)</title>
+ <listitem>
+ <para>
+ member
+ </para>
+ </listitem>
+ </itemizedlist>
+</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-10-10 03:53:58 UTC (rev 8861)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/User_Management.xml 2012-10-10 03:54:14 UTC (rev 8862)
@@ -8,6 +8,8 @@
<para>
Several tools are offered to assist Administrators manage users, groups and memberships easily and effectively.
</para>
+ <!-- DOCS NOTE: Bug 793802: Added Info about EPP roles. Added in discrete file for relocation. -->
+ <xi:include href="EPP_Roles.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<section id="sect-User_Guide-User_Management-Manage_users">
<title>Manage users</title>
12 years, 2 months