gatein SVN: r8259 - epp/docs/tags.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-12-18 16:14:23 -0500 (Sun, 18 Dec 2011)
New Revision: 8259
Added:
epp/docs/tags/EPP_5_2_0_GA/
Log:
Tagging post release
13 years
gatein SVN: r8258 - in portal/trunk/docs/reference-guide/en-US/modules: AuthenticationAndIdentity and 1 other directory.
by do-not-reply@jboss.org
Author: mposolda
Date: 2011-12-16 06:48:35 -0500 (Fri, 16 Dec 2011)
New Revision: 8258
Added:
portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/PasswordEncryption.xml
Modified:
portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity.xml
Log:
GTNPORTAL-2313 Port documentation about password encryption from EPP
Added: portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/PasswordEncryption.xml
===================================================================
--- portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/PasswordEncryption.xml (rev 0)
+++ portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/PasswordEncryption.xml 2011-12-16 11:48:35 UTC (rev 8258)
@@ -0,0 +1,144 @@
+<?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 "../../Reference_Guide.ent">
+ %BOOK_ENTITIES;
+ ]>
+<section id="sect-Reference_Guide-Authentication_and_Identity-Password_Encryption">
+ <title>Password Encryption</title>
+ <!-- The warning and first listitem below were relocated from sect-Reference_Guide-Authentication_Token_Configuration as security and plain-text password issues were being expanded on (from JBEPP-610) --> <warning>
+ <title>Username and passwords stored in clear text</title>
+ <para>
+ The <emphasis>Remember Me</emphasis> feature of JBoss Enterprise Portal Platform uses a token mechanism to be able to authenticate returning users without requiring an explicit login. However, to be able to authenticate these users, the token needs to store the username and password in clear text in the JCR.
+ </para>
+
+</warning>
+ <para>
+ Administrators have two options available to ameliorate this risk:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ The <emphasis>Remember Me</emphasis> feature can be disabled by removing the corresponding checkbox in: <filename><replaceable><JBOSS_HOME></replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/gatein.ear/02portal.war/login/jsp/login.jsp</filename> and <filename><replaceable><JBOSS_HOME></replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/gatein.ear/02portal.war/groovy/portal/webui/UILoginForm.gtmpl</filename>.
+ </para>
+
+ </listitem>
+ <listitem>
+ <para>
+ Passwords can be encoded prior to being saved to the JCR. This option requires administrators to provide a custom subclass of <parameter>org.exoplatform.web.security.security.AbstractCodec</parameter> and set up a codec implementation with <parameter>CookieTokenService</parameter>:
+ </para>
+ <procedure id="proc-Reference_Guide-Password_Encryption-Encrypt_Password_in_JCR">
+ <title>Encrypt Password in JCR</title>
+ <step>
+ <para>
+ Create a javaclass similar to:
+ </para>
+
+ <programlisting language="Java" role="Java">
+ <![CDATA[
+package org.example.codec;
+
+import org.exoplatform.container.xml.InitParams;
+import org.exoplatform.web.security.security.AbstractCodec;
+import org.exoplatform.web.security.security.CookieTokenService;
+import org.picocontainer.Startable;
+
+public class ExampleCodec extends AbstractCodec implements Startable
+{
+ private String simpleParam;
+ private CookieTokenService cookieTokenService;
+
+ public ExampleCodec(InitParams params, CookieTokenService cookieTokenService)
+ {
+ simpleParam = params.getValueParam("encodingParam").getValue();
+ this.cookieTokenService = cookieTokenService;
+ }
+
+ public void start()
+ {
+ cookieTokenService.setupCodec(this);
+ }
+
+ public void stop()
+ {
+ }
+
+ /**
+ * Very simple encoding algorithm used only for demonstration purposes.
+ * You should use stronger algorithm in real production environment.
+ */
+ public String encode(String plainInput)
+ {
+ return plainInput + simpleParam;
+ }
+
+ public String decode(String encodedInput)
+ {
+ return encodedInput.substring(0, encodedInput.length() - simpleParam.length());
+ }
+
+}
+
+]]>
+ </programlisting>
+
+ </step>
+ <step>
+ <para>
+ Compile the class and package it into a jar file. For this example we will call the jar file <filename>codec-example.jar</filename>.
+ </para>
+
+ </step>
+ <step>
+ <para>
+ Create a <filename>conf/portal/configuration.xml</filename> file within the <filename>codec-example.jar</filename> similar to the example below. This allows the portal kernel to find and use the new codec implementation.
+ </para>
+
+ <programlisting language="XML" role="XML">
+ <![CDATA[
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_2.xsd http://www.exoplaform.org/xml/ns/kernel_1_2.xsd"
+xmlns="http://www.exoplaform.org/xml/ns/kernel_1_2.xsd">
+
+<component>
+ <key>org.example.codec.ExampleCodec</key>
+ <type>org.example.codec.ExampleCodec</type>
+ <init-params>
+ <value-param>
+ <name>encodingParam</name>
+ <value>aaa</value>
+ </value-param>
+ </init-params>
+</component>
+
+</configuration>
+]]>
+ </programlisting>
+
+ </step>
+ <step>
+ <para>
+ Deploy the <filename>codec-example.jar</filename> into your <filename><replaceable><JBOSS_HOME></replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/gatein.ear/lib/</filename> directory.
+ </para>
+
+ </step>
+ <step>
+ <para>
+ Start (or restart) your JBoss Enterprise Portal Platform.
+ </para>
+ <para>
+ Any passwords written to the JCR will now be encoded and not plain text.
+ </para>
+
+ </step>
+
+ </procedure>
+
+
+ </listitem>
+
+ </orderedlist>
+
+</section>
+
Modified: portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity.xml
===================================================================
--- portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity.xml 2011-12-15 20:21:49 UTC (rev 8257)
+++ portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity.xml 2011-12-16 11:48:35 UTC (rev 8258)
@@ -5,6 +5,7 @@
]>
<chapter id="chap-Reference_Guide-Authentication_And_Identity">
<title>Authentication and Identity</title>
+ <xi:include href="AuthenticationAndIdentity/PasswordEncryption.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="AuthenticationAndIdentity/PredefinedUserConfiguration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="AuthenticationAndIdentity/AuthenticationTokenConfiguration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="AuthenticationAndIdentity/BackendConfiguration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
13 years
gatein SVN: r8257 - portal/trunk/component/web/security/src/main/java/org/exoplatform/web/login.
by do-not-reply@jboss.org
Author: mposolda
Date: 2011-12-15 15:21:49 -0500 (Thu, 15 Dec 2011)
New Revision: 8257
Modified:
portal/trunk/component/web/security/src/main/java/org/exoplatform/web/login/InitiateLoginServlet.java
Log:
GTNPORTAL-2296 Incorrect portal container "portal" is bound to ExoContainerContext thread-local variable
Modified: portal/trunk/component/web/security/src/main/java/org/exoplatform/web/login/InitiateLoginServlet.java
===================================================================
--- portal/trunk/component/web/security/src/main/java/org/exoplatform/web/login/InitiateLoginServlet.java 2011-12-15 04:42:03 UTC (rev 8256)
+++ portal/trunk/component/web/security/src/main/java/org/exoplatform/web/login/InitiateLoginServlet.java 2011-12-15 20:21:49 UTC (rev 8257)
@@ -53,10 +53,6 @@
public static final String COOKIE_NAME = "rememberme";
/** . */
- public static final long LOGIN_VALIDITY =
- 1000 * TicketConfiguration.getInstance(TicketConfiguration.class).getValidityTime();
-
- /** . */
private WCIController wciController;
/** . */
@@ -112,7 +108,7 @@
else
{
// WCI authentication
- servletContainer.login(req, resp, credentials, LOGIN_VALIDITY, wciController.getInitialURI(req));
+ servletContainer.login(req, resp, credentials, getLoginValidity(), wciController.getInitialURI(req));
}
}
@@ -158,4 +154,9 @@
}
return wciController;
}
+
+ private long getLoginValidity()
+ {
+ return 1000 * TicketConfiguration.getInstance(TicketConfiguration.class).getValidityTime();
+ }
}
13 years
gatein SVN: r8256 - in epp/docs/branches/5.2/Site_Publisher/User_Guide: en-US and 2 other directories.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-12-14 23:42:03 -0500 (Wed, 14 Dec 2011)
New Revision: 8256
Modified:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Revision_History.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/publican.cfg
Log:
Publication build.
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-12-15 04:33:14 UTC (rev 8255)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-12-15 04:42:03 UTC (rev 8256)
@@ -9,7 +9,7 @@
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
<edition>5.2.0</edition>
- <pubsnumber>7</pubsnumber>
+ <pubsnumber>100</pubsnumber>
<abstract>
<para>
This document provides an easy to follow guide to the functions and options available in the Enterprise Portal Platform Site Publisher extension (powered by eXo). It is intended to be accessible and useful to both experienced and novice portal users.
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Revision_History.xml 2011-12-15 04:33:14 UTC (rev 8255)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Revision_History.xml 2011-12-15 04:42:03 UTC (rev 8256)
@@ -8,6 +8,20 @@
<simpara>
<revhistory>
<revision>
+ <revnumber>5.2.0-100</revnumber>
+ <date>Wed Dec 14 2011</date>
+ <author>
+ <firstname>Scott</firstname>
+ <surname>Mumford</surname>
+ <email></email>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Publication build.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
<revnumber>5.2.0-7</revnumber>
<date>Tue Dec 13 2011</date>
<author>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml 2011-12-15 04:33:14 UTC (rev 8255)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml 2011-12-15 04:42:03 UTC (rev 8256)
@@ -4,7 +4,7 @@
%BOOK_ENTITIES;
]>
<section id="sect-User_Guide-Contribute_Content">
- <title><remark>Contribute Content</remark></title>
+ <title>Contribute Content</title>
<section id="sect-User_Guide-Contribute_Content-Edit_Mode">
<title>Edit Mode</title>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml 2011-12-15 04:33:14 UTC (rev 8255)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml 2011-12-15 04:42:03 UTC (rev 8256)
@@ -5,7 +5,7 @@
%BOOK_ENTITIES;
]>
<section id="sect-User_Guide-Actions_on_Folders_and_Documents">
- <title><remark>Actions on Folders and Documents</remark></title>
+ <title>Actions on Folders and Documents</title>
<para>
This section will discuss actions that can be performed on folders and document, both from the right-click menu (<emphasis>Cut</emphasis> and <emphasis>Paste</emphasis> for example) and manual actions (like dragging and dropping).
</para>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml 2011-12-15 04:33:14 UTC (rev 8255)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml 2011-12-15 04:42:03 UTC (rev 8256)
@@ -205,7 +205,7 @@
</section>
<section id="sect-User_Guide-How_to_Use_WebDAV_With_Site_Publisher-WebDAV_Considerations">
- <title><remark>WebDAV Considerations</remark></title>
+ <title>WebDAV Considerations</title>
<!-- DOCS NOTE: This content is duplicated in the EPP Reference Guide to avoid cross-document linking.
Any changes here should also be made there-->
<para>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/publican.cfg
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/publican.cfg 2011-12-15 04:33:14 UTC (rev 8255)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/publican.cfg 2011-12-15 04:42:03 UTC (rev 8256)
@@ -5,8 +5,8 @@
type: Book
brand: JBoss
debug:1
-show_remarks: 1
-toc_section_depth:10
+#show_remarks: 1
+#toc_section_depth:10
max_image_width:660
condition: redhat
cvs_branch: DOCS-RHEL-6
13 years
gatein SVN: r8255 - in epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US: modules/Advanced/Administration and 2 other directories.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-12-14 23:33:14 -0500 (Wed, 14 Dec 2011)
New Revision: 8255
Removed:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/sitesmanagementdrive.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/viewdocument.png
Modified:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/CKEditor_Inline.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addactionstab.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addecmtemplate.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addlanguageform.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addnewproperties.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/categorynavigation.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/cneditmode.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/edit_area_Inline.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/editcn.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/editcomponentpropertiesform.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/illustrationtab.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manageunlockstab.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters-newsletter_manager.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_direct_category_subscription.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_subscription_form.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/publish-state.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/publish_Inline.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/selectmembership.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/webcontentfolder.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Advanced.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Categories.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Manage_Content.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml
Log:
JBEPP-712: Updated most screenshots. More relevant commits attached to JBEPP-1437
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/CKEditor_Inline.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addactionstab.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addecmtemplate.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addlanguageform.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addnewproperties.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/categorynavigation.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/cneditmode.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/edit_area_Inline.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/editcn.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/editcomponentpropertiesform.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/illustrationtab.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manageunlockstab.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters-newsletter_manager.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_direct_category_subscription.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_subscription_form.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/publish-state.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/publish_Inline.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/selectmembership.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/sitesmanagementdrive.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/viewdocument.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/webcontentfolder.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Advanced.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Advanced.xml 2011-12-15 02:54:18 UTC (rev 8254)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Advanced.xml 2011-12-15 04:33:14 UTC (rev 8255)
@@ -460,8 +460,8 @@
</procedure>
</section>
- <section id="sect-User_Guide-Advanced_Configuration-Manage_Unlocks">
- <title>Manage Unlocks</title>
+ <section id="sect-User_Guide-Advanced_Configuration-Manage_Locks">
+ <title>Manage Locks</title>
<para>
All locked nodes are listed and managed by administrators in the <guilabel>Administration page</guilabel>.
</para>
@@ -476,12 +476,12 @@
</listitem>
<listitem>
<para>
- <guilabel>Manage Unlocks</guilabel> in the <guilabel>Administration page.</guilabel>
+ <guilabel>Manage Locks</guilabel> in the <guilabel>Administration page.</guilabel>
</para>
</listitem>
</orderedlist>
- <procedure id="proc-User_Guide-Manage_Unlocks-Unlock_Nodes">
- <title>Manage Unlocks</title>
+ <procedure id="proc-User_Guide-Manage_Locks-Unlock_Nodes">
+ <title>Manage Locks</title>
<step>
<para>
Go to <menuchoice>
@@ -489,7 +489,7 @@
<guimenuitem>Administration</guimenuitem>
</menuchoice> on the navigation bar. Then go to <menuchoice>
<guimenu>Advanced Configuration</guimenu>
- <guimenuitem>Manage Unlocks</guimenuitem>
+ <guimenuitem>Manage Locks</guimenuitem>
</menuchoice>.
</para>
<mediaobject>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Categories.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Categories.xml 2011-12-15 02:54:18 UTC (rev 8254)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Categories.xml 2011-12-15 04:33:14 UTC (rev 8255)
@@ -63,7 +63,7 @@
Go to <menuchoice>
<guimenu>Group</guimenu>
<guimenuitem>Administration</guimenuitem>
- <guimenuitem>Manage Pages</guimenuitem>
+ <guimenuitem>Page Management</guimenuitem>
</menuchoice> on the administration bar. The <guilabel>Manage Pages</guilabel> list will appear:
</para>
<mediaobject>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml 2011-12-15 02:54:18 UTC (rev 8254)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml 2011-12-15 04:33:14 UTC (rev 8255)
@@ -3935,8 +3935,11 @@
<guilabel>Add language</guilabel>
tab for a
<guilabel>Sample node</guilabel>
- file:
+ file.
</para>
+ <para>
+ The foreground sections of this image may appear differently depending on which file you selected:.
+ </para>
<mediaobject>
<imageobject role="html">
<imagedata align="center" fileref="images/addlanguageform.png" format="PNG"/>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml 2011-12-15 02:54:18 UTC (rev 8254)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml 2011-12-15 04:33:14 UTC (rev 8255)
@@ -660,19 +660,11 @@
<para>
The document is opened in another browser:
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/viewdocument.png" format="PNG" align="center"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/viewdocument.png" format="PNG" align="center" width="150mm"/>
- </imageobject>
- </mediaobject>
<para>
- The URL of the document is structured like so:
+ The URL of the document is structured as; <uri>http://example.com:8080/ecmdemo/private/acme/siteExplorer/repository/path...</uri>
</para>
<para>
- <emphasis>http://example.com:8080/ecmdemo/private/acme/siteExplorer/repository/path...</emphasis>
+
</para>
</step>
</procedure>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Manage_Content.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Manage_Content.xml 2011-12-15 02:54:18 UTC (rev 8254)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Manage_Content.xml 2011-12-15 04:33:14 UTC (rev 8255)
@@ -4,402 +4,402 @@
%BOOK_ENTITIES;
]>
<section id="sect-User_Guide-Manage_Content_In_Content_Explorer">
- <title>Manage Content In Content Explorer</title>
- <para>
- A web content is a key resource in creating a site. Other resources make a site more dynamic and animated by using layout, color, font, and more. This section focuses on how to manage a web content in a specific site.
- </para>
- <note>
- <para>
+ <title>Manage Content In Content Explorer</title>
+ <para>
+ A web content is a key resource in creating a site. Other resources make a site more dynamic and animated by using layout, color, font, and more. This section focuses on how to manage a web content in a specific site.
+ </para>
+ <note>
+ <para>
Only users who have the right to access the <guilabel>Sites Management</guilabel> drive can manage web content.
- </para>
+ </para>
- </note>
- <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Create_a_new_web_content">
- <title>Create a new web content</title>
- <para>
- This function is used to add a new web content into a specific site.
- </para>
- <procedure id="proc-User_Guide-Create_a_new_web_content-Add_new_content">
- <title>Add new content</title>
- <step>
- <para>
- Go to the <guilabel>Sites Management</guilabel> drive and select a site that you want to add a web content to.
- </para>
+ </note>
+ <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Create_a_new_web_content">
+ <title>Create a new web content</title>
+ <para>
+ This function is used to add a new web content into a specific site.
+ </para>
+ <procedure id="proc-User_Guide-Create_a_new_web_content-Add_new_content">
+ <title>Add new content</title>
+ <step>
+ <para>
+ Go to the <guilabel>Sites Management</guilabel> drive and select a site that you want to add a web content to.
+ </para>
- </step>
- <step>
- <para>
- Select the web content folder on the left:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" fileref="images/webcontentfolder.png" format="PNG" />
- </imageobject>
- <imageobject role="fo">
+ </step>
+ <step>
+ <para>
+ Select the <filename>web contents</filename> folder on the left:
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" fileref="images/webcontentfolder.png" format="PNG" />
+ </imageobject>
+ <imageobject role="fo">
<imagedata align="center" fileref="images/webcontentfolder.png" format="PNG" width="150mm" />
- </imageobject>
+ </imageobject>
- </mediaobject>
- <note>
- <para>
- You also can add the new web content into other folders (documents and media folder) of a site but it is recommended that you add new content to the web content folder because:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- It will allow you to manage web content of a site more easily.
- </para>
- </listitem>
- <listitem>
- <para>
- If you add a new web content in this folder, you don't need to select a web content document in the list of document types. This makes adding a new web content more flexible.
- </para>
- </listitem>
- </itemizedlist>
- </note>
- </step>
- <step>
- <para>
+ </mediaobject>
+ <note>
+ <para>
+ You also can add the new web content into other folders (documents and media folder) of a site but it is recommended that you add new content to the web content folder because:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ It will allow you to manage web content of a site more easily.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ If you add a new web content in this folder, you don't need to select a web content document in the list of document types. This makes adding a new web content more flexible.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </note>
+ </step>
+ <step>
+ <para>
Open the <guilabel>Add New Document</guilabel> form by clicking the <inlinemediaobject>
- <imageobject>
+ <imageobject>
<imagedata fileref="images/adddocumenticon.png" format="PNG" width="28mm"/>
- </imageobject>
+ </imageobject>
<textobject>
- <phrase>Add Document</phrase>
+ <phrase>Add Content</phrase>
</textobject>
- </inlinemediaobject> icon on the Action bar.
- </para>
+ </inlinemediaobject> icon on the Action bar.
+ </para>
- </step>
- <step>
- <para>
+ </step>
+ <step>
+ <para>
Select a template in the <guilabel>Select Template</guilabel> field to present web content:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" fileref="images/maincontenttab.png" format="PNG" />
- </imageobject>
- <imageobject role="fo">
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" fileref="images/maincontenttab.png" format="PNG" />
+ </imageobject>
+ <imageobject role="fo">
<imagedata align="center" fileref="images/maincontenttab.png" format="PNG" width="150mm" />
- </imageobject>
+ </imageobject>
- </mediaobject>
- <para>
+ </mediaobject>
+ <para>
The <guilabel>Select Template</guilabel> field has two options:
- </para>
- <itemizedlist>
- <listitem>
- <para>
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
<guilabel>Picture on head layout web content:</guilabel> The site's content is presented in two spaces. One for inserting an image and one for editing the site's content. In which, the image is put at the head of a site.
- </para>
+ </para>
- </listitem>
- <listitem>
- <para>
+ </listitem>
+ <listitem>
+ <para>
<guilabel>Free layout web content:</guilabel> This template is a free layout.
- </para>
+ </para>
- </listitem>
+ </listitem>
- </itemizedlist>
- <!-- Doc Note: The content from this point until the next comment 'END' should probably be moved to a breakout explanation. Having it in the middle of a procedure breaks the flow of the steps. -->
- </step>
- <step>
- <para>
+ </itemizedlist>
+ <!-- Doc Note: The content from this point until the next comment 'END' should probably be moved to a breakout explanation. Having it in the middle of a procedure breaks the flow of the steps. -->
+ </step>
+ <step>
+ <para>
Enter values in the fields of the <guilabel>Add New Document</guilabel> form.
- </para>
+ </para>
- </step>
- <step>
- <para>
+ </step>
+ <step>
+ <para>
Click <guilabel>Save as Draft</guilabel> to save the content or <guilabel>Cancel</guilabel> to exit the form.
- </para>
+ </para>
- </step>
- <step>
+ </step>
+ <step>
<title>Tabs in the Add New Document form</title>
- <para>
+ <para>
The <guilabel>Main Content</guilabel> Tab includes:
- </para>
- <table>
- <title></title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>
- Field
- </entry>
- <entry>
- Options
- </entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>
+ </para>
+ <table>
+ <title></title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>
+ Field
+ </entry>
+ <entry>
+ Options
+ </entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>
<guilabel>Name</guilabel>
- </entry>
- <entry>
- The name of a web content that you want to add new
- </entry>
- </row>
- <row>
- <entry>
+ </entry>
+ <entry>
+ The name of a web content that you want to add new
+ </entry>
+ </row>
+ <row>
+ <entry>
<guilabel>Title</guilabel>
- </entry>
- <entry>
- The title of a web content
- </entry>
+ </entry>
+ <entry>
+ The title of a web content
+ </entry>
- </row>
- <row>
- <entry>
+ </row>
+ <row>
+ <entry>
<guilabel>Main content</guilabel>
- </entry>
- <entry>
- The main content that you want to display when publishing this web content
- </entry>
- </row>
- <row>
- <entry>
+ </entry>
+ <entry>
+ The main content that you want to display when publishing this web content
+ </entry>
+ </row>
+ <row>
+ <entry>
<guilabel>Save button</guilabel>
- </entry>
- <entry>
- To save the inputted values
- </entry>
- </row>
- <row>
- <entry>
+ </entry>
+ <entry>
+ To save the inputted values
+ </entry>
+ </row>
+ <row>
+ <entry>
<guilabel>Cancel button</guilabel>
- </entry>
- <entry>
- To exit the current form
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- <para>
+ </entry>
+ <entry>
+ To exit the current form
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <para>
The <guilabel>Illustration Tab</guilabel> allows you to upload an illustration that makes the site's content more attractive.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" fileref="images/illustrationtab.png" format="PNG" />
- </imageobject>
- <imageobject role="fo">
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" fileref="images/illustrationtab.png" format="PNG" />
+ </imageobject>
+ <imageobject role="fo">
<imagedata align="center" fileref="images/illustrationtab.png" format="PNG" width="150mm" />
- </imageobject>
+ </imageobject>
- </mediaobject>
- <table>
- <title></title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>
- Field
- </entry>
- <entry>
- Option
- </entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>
+ </mediaobject>
+ <table>
+ <title></title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>
+ Field
+ </entry>
+ <entry>
+ Option
+ </entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>
<guilabel>Illustration Image</guilabel>
- </entry>
- <entry>
- The path to an image that you want to upload into a site. This image will be used like an illustration of that site.
- </entry>
- </row>
- <row>
- <entry>
+ </entry>
+ <entry>
+ The path to an image that you want to upload into a site. This image will be used like an illustration of that site.
+ </entry>
+ </row>
+ <row>
+ <entry>
<guilabel>Image Type</guilabel>
- </entry>
- <entry>
- The image format that you want to upload to the site. It can be: image/gif; image/png; image/jpg; image/jpeg.
- </entry>
- </row>
- <row>
- <entry>
+ </entry>
+ <entry>
+ The image format that you want to upload to the site. It can be: image/gif; image/png; image/jpg; image/jpeg.
+ </entry>
+ </row>
+ <row>
+ <entry>
<guilabel>Summary</guilabel>
- </entry>
- <entry>
- You can supply a short description about the web content that will be displayed with the illustration image when the web content is listed. The main content will be shown when it is selected to be viewed.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- <para>
- Do the following to upload an image:
- </para>
- <procedure id="proc-User_Guide-Add_new_content-_Upload_an_image">
- <title> Upload an image</title>
- <step>
- <para>
+ </entry>
+ <entry>
+ You can supply a short description about the web content that will be displayed with the illustration image when the web content is listed. The main content will be shown when it is selected to be viewed.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <para>
+ Do the following to upload an image:
+ </para>
+ <procedure id="proc-User_Guide-Add_new_content-_Upload_an_image">
+ <title> Upload an image</title>
+ <step>
+ <para>
Browse an image list on your local device by clicking the <guilabel>Browse...</guilabel> button and then select a specific location.
- </para>
- </step>
- <step>
- <para>
- Select an image in the list to upload.
- </para>
- </step>
- </procedure>
- <para>
+ </para>
+ </step>
+ <step>
+ <para>
+ Select an image in the list to upload.
+ </para>
+ </step>
+ </procedure>
+ <para>
The <guilabel>Advanced</guilabel> tab:
- </para>
- <para>
+ </para>
+ <para>
This tab includes two parts: <guilabel>CSS data</guilabel> and <guilabel>JS data</guilabel>:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" fileref="images/advancedtab.png" format="PNG" />
- </imageobject>
- <imageobject role="fo">
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" fileref="images/advancedtab.png" format="PNG" />
+ </imageobject>
+ <imageobject role="fo">
<imagedata align="center" fileref="images/advancedtab.png" format="PNG" width="150mm" />
- </imageobject>
- </mediaobject>
- <table>
- <title></title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>
- Field
- </entry>
- <entry>
- Information
- </entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>
+ </imageobject>
+ </mediaobject>
+ <table>
+ <title></title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>
+ Field
+ </entry>
+ <entry>
+ Information
+ </entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>
<guilabel>CSS data</guilabel>
- </entry>
- <entry>
- Contains CSS definition to present data in a web content. You can optionally enter CSS data into this field to specify the style.
- </entry>
- </row>
- <row>
- <entry>
+ </entry>
+ <entry>
+ Contains CSS definition to present data in a web content. You can optionally enter CSS data into this field to specify the style.
+ </entry>
+ </row>
+ <row>
+ <entry>
<guilabel>JS data</guilabel>
- </entry>
- <entry>
- Contains JS content to make the web content more dynamic when after publishing. You can optionally enter JS content in this field.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- <!-- END -->
- </step>
- </procedure>
- </section>
-
- <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Edit_a_web_content">
- <title>Edit a web content</title>
- <para>
- This function is used to edit a web content in a specific drive of an existing site.
- </para>
- <para>
- Do the following:
- </para>
- <procedure id="proc-User_Guide-Edit_a_web_content-Edit_a_web_content">
- <title>Edit a web content</title>
- <step>
- <para>
- Go into the folder of a site which contains the web content that you want to edit.
- </para>
- </step>
- <step>
- <para>
- Select the web content by double-clicking it on the left tree or on the right panel. The detailed information of web content will be viewed on the right panel.
- </para>
- </step>
- <step>
- <para>
- Click the
- <inlinemediaobject>
- <imageobject>
+ </entry>
+ <entry>
+ Contains JS content to make the web content more dynamic when after publishing. You can optionally enter JS content in this field.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <!-- END -->
+ </step>
+ </procedure>
+ </section>
+
+ <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Edit_a_web_content">
+ <title>Edit a web content</title>
+ <para>
+ This function is used to edit a web content in a specific drive of an existing site.
+ </para>
+ <para>
+ Do the following:
+ </para>
+ <procedure id="proc-User_Guide-Edit_a_web_content-Edit_a_web_content">
+ <title>Edit a web content</title>
+ <step>
+ <para>
+ Go into the folder of a site which contains the web content that you want to edit.
+ </para>
+ </step>
+ <step>
+ <para>
+ Select the web content by double-clicking it on the left tree or on the right panel. The detailed information of web content will be viewed on the right panel.
+ </para>
+ </step>
+ <step>
+ <para>
+ Click the
+ <inlinemediaobject>
+ <imageobject>
<imagedata fileref="images/editdocumenticon.png" format="PNG" width="38mm" />
- </imageobject>
+ </imageobject>
<textobject>
<phrase>Edit Document</phrase>
</textobject>
- </inlinemediaobject> icon on the action bar to show the edit form of the selected web content as the <guilabel>Add New Document</guilabel> form.
- </para>
+ </inlinemediaobject> icon on the action bar to show the edit form of the selected web content as the <guilabel>Add New Document</guilabel> form.
+ </para>
- </step>
- <step>
- <para>
- Change the current values in the fields of this edit form.
- </para>
+ </step>
+ <step>
+ <para>
+ Change the current values in the fields of this edit form.
+ </para>
- </step>
- <step>
- <para>
- Complete editing the selected web content by clicking <guilabel>Save</guilabel>.
- </para>
+ </step>
+ <step>
+ <para>
+ Complete editing the selected web content by clicking <guilabel>Save</guilabel>.
+ </para>
- </step>
+ </step>
- </procedure>
-
- <note>
- <title>Auto-lock</title>
- <para>
- When you click <guilabel>Edit Document</guilabel>, the web-content will be auto-locked for editing. After finishing, the content reverts to unlocked status. You can manage Locks in the Administration portlet.
- </para>
+ </procedure>
+
+ <note>
+ <title>Auto-lock</title>
+ <para>
+ When you click <guilabel>Edit Document</guilabel>, the web-content will be auto-locked for editing. After finishing, the content reverts to unlocked status. You can manage Locks in the Administration portlet.
+ </para>
- </note>
+ </note>
- </section>
-
- <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Delete_a_web_content">
- <title>Delete a web content</title>
- <para>
- This function is used to remove a web content from the web content folder in a specific site's drive.
- </para>
- <para>
- To delete a web-content, do the following:
- </para>
- <procedure id="proc-User_Guide-Delete_a_web_content-Delete_a_web_content">
- <title>Delete a web content</title>
- <step>
- <para>
+ </section>
+
+ <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Delete_a_web_content">
+ <title>Delete a web content</title>
+ <para>
+ This function is used to remove a web content from the web content folder in a specific site's drive.
+ </para>
+ <para>
+ To delete a web-content, do the following:
+ </para>
+ <procedure id="proc-User_Guide-Delete_a_web_content-Delete_a_web_content">
+ <title>Delete a web content</title>
+ <step>
+ <para>
Right-click the name of the web content that you want to delete and then select <guilabel>Delete</guilabel> in the drop-down menu:
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" fileref="images/selectdelete.png" format="PNG" />
- </imageobject>
- <imageobject role="fo">
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" fileref="images/selectdelete.png" format="PNG" />
+ </imageobject>
+ <imageobject role="fo">
<imagedata align="center" fileref="images/selectdelete.png" format="PNG" width="75mm"/>
- </imageobject>
- </mediaobject>
- </step>
- <step>
- <para>
+ </imageobject>
+ </mediaobject>
+ </step>
+ <step>
+ <para>
A confirmation message will appear. Click <guilabel>OK</guilabel> to accept the deletion, or <guilabel>Cancel</guilabel> to quit without deleting.
- </para>
- </step>
- </procedure>
- </section>
-
- <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Publish_a_web_content">
- <title>Publish a web content</title>
- <para>
- This function helps you publish a web content that you have added to web content folder in Content Explorer.
- </para>
- <para>
- See <xref linkend="sect-User_Guide-Contribute_Content-Publication_Process" /> to know how to publish a web content.
- </para>
- <para>
- After the content is published, all users who have the right to access that position can view the published web content as a page on the Navigation bar.
- </para>
- </section>
+ </para>
+ </step>
+ </procedure>
+ </section>
+
+ <section id="sect-User_Guide-Manage_Content_In_Content_Explorer-Publish_a_web_content">
+ <title>Publish a web content</title>
+ <para>
+ This function helps you publish a web content that you have added to web content folder in Content Explorer.
+ </para>
+ <para>
+ See <xref linkend="sect-User_Guide-Contribute_Content-Publication_Process" /> to know how to publish a web content.
+ </para>
+ <para>
+ After the content is published, all users who have the right to access that position can view the published web content as a page on the Navigation bar.
+ </para>
+ </section>
</section>
\ No newline at end of file
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml 2011-12-15 02:54:18 UTC (rev 8254)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Webdav.xml 2011-12-15 04:33:14 UTC (rev 8255)
@@ -162,14 +162,6 @@
<para>
Click the <guilabel>Drives</guilabel> button then select <guilabel>Sites Management</guilabel>.
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata align="center" fileref="images/sitesmanagementdrive.png" format="PNG"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata align="center" fileref="images/sitesmanagementdrive.png" format="PNG" width="150mm"/>
- </imageobject>
- </mediaobject>
<para>
You will see all sites listed in the left sidebar:
</para>
@@ -212,155 +204,155 @@
</procedure>
</section>
- <section id="sect-User_Guide-How_to_Use_WebDAV_With_Site_Publisher-WebDAV_Considerations">
+ <section id="sect-User_Guide-How_to_Use_WebDAV_With_Site_Publisher-WebDAV_Considerations">
<title><remark>WebDAV Considerations</remark></title>
<!-- DOCS NOTE: This content is duplicated in the EPP Reference Guide to avoid cross-document linking.
Any changes here should also be made there-->
- <para>
- There are some restrictions for WebDAV in different operating systems.
- </para>
- <formalpara id="form-User_Guide-How_to_Use_WebDAV_With_Site_Publisher-WebDAV_Considerations-Windows_7">
- <title>Windows 7</title>
- <para>
- When attemping to set up a web folder through <guilabel>Add a Network Location</guilabel> or <guilabel>Map a Network Drive</guilabel> through <guilabel>My Computer</guilabel>, an error message stating <guilabel>The folder you entered does not appear to be valid. Please choose another</guilabel> or <guilabel>Windows cannot access … Check the spelling of the name. Otherwise, there might be …</guilabel> may be encountered. These errors may appear when you are using SSL or non-SSL.
- </para>
+ <para>
+ There are some restrictions for WebDAV in different operating systems.
+ </para>
+ <formalpara id="form-User_Guide-How_to_Use_WebDAV_With_Site_Publisher-WebDAV_Considerations-Windows_7">
+ <title>Windows 7</title>
+ <para>
+ When attemping to set up a web folder through <guilabel>Add a Network Location</guilabel> or <guilabel>Map a Network Drive</guilabel> through <guilabel>My Computer</guilabel>, an error message stating <guilabel>The folder you entered does not appear to be valid. Please choose another</guilabel> or <guilabel>Windows cannot access … Check the spelling of the name. Otherwise, there might be …</guilabel> may be encountered. These errors may appear when you are using SSL or non-SSL.
+ </para>
- </formalpara>
- <para>
- To fix this, do as follows:
- </para>
- <procedure>
- <step>
- <para>
- Go to Windows Registry Editor.
- </para>
+ </formalpara>
+ <para>
+ To fix this, do as follows:
+ </para>
+ <procedure>
+ <step>
+ <para>
+ Go to Windows Registry Editor.
+ </para>
- </step>
- <step>
- <para>
- Find a key: \HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlset\services\WebClient\Parameters\BasicAuthLevel .
- </para>
+ </step>
+ <step>
+ <para>
+ Find a key: \HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlset\services\WebClient\Parameters\BasicAuthLevel .
+ </para>
- </step>
- <step>
- <para>
- Change the value to 2.
- </para>
+ </step>
+ <step>
+ <para>
+ Change the value to 2.
+ </para>
- </step>
+ </step>
- </procedure>
- <formalpara id="form-User_Guide-How_to_Use_WebDAV_With_Site_Publisher-WebDAV_Considerations-Microsoft_Office_2010">
- <title>Microsoft Office 2010</title>
- <para>
- If you have:
- </para>
+ </procedure>
+ <formalpara id="form-User_Guide-How_to_Use_WebDAV_With_Site_Publisher-WebDAV_Considerations-Microsoft_Office_2010">
+ <title>Microsoft Office 2010</title>
+ <para>
+ If you have:
+ </para>
- </formalpara>
- <itemizedlist>
- <listitem>
- <para>
- Microsoft Office 2007/2010 applications installed on a client computer AND...
- </para>
+ </formalpara>
+ <itemizedlist>
+ <listitem>
+ <para>
+ Microsoft Office 2007/2010 applications installed on a client computer AND...
+ </para>
- </listitem>
- <listitem>
- <para>
- The client computer is connected to a web server configured for Basic authentication VIA...
- </para>
+ </listitem>
+ <listitem>
+ <para>
+ The client computer is connected to a web server configured for Basic authentication VIA...
+ </para>
- </listitem>
- <listitem>
- <para>
- A connection that does not use Secure Sockets Layer (SSL) AND...
- </para>
+ </listitem>
+ <listitem>
+ <para>
+ A connection that does not use Secure Sockets Layer (SSL) AND...
+ </para>
- </listitem>
- <listitem>
- <para>
- You try to access an Office file that is stored on the remote server...
- </para>
+ </listitem>
+ <listitem>
+ <para>
+ You try to access an Office file that is stored on the remote server...
+ </para>
- </listitem>
- <listitem>
- <para>
- You might experience the following symptoms when you try to open or to download the file:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- The Office file does not open or download.
- </para>
+ </listitem>
+ <listitem>
+ <para>
+ You might experience the following symptoms when you try to open or to download the file:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ The Office file does not open or download.
+ </para>
- </listitem>
- <listitem>
- <para>
- You do not receive a Basic authentication password prompt when you try to open or to download the file.
- </para>
+ </listitem>
+ <listitem>
+ <para>
+ You do not receive a Basic authentication password prompt when you try to open or to download the file.
+ </para>
- </listitem>
- <listitem>
- <para>
- You do not receive an error message when you try to open the file. The associated Office application starts. However, the selected file does not open.
- </para>
+ </listitem>
+ <listitem>
+ <para>
+ You do not receive an error message when you try to open the file. The associated Office application starts. However, the selected file does not open.
+ </para>
- </listitem>
+ </listitem>
- </itemizedlist>
+ </itemizedlist>
- </listitem>
+ </listitem>
- </itemizedlist>
- <para>
- These outcomes can be circumvented by enabling Basic authentication on the client machine.
- </para>
- <para>
- To enable Basic authentication on the client computer, follow these steps:
- </para>
- <procedure>
- <step>
- <para>
- Click Start, type <literal>regedit</literal> in the Start Search box, and then press Enter.
- </para>
+ </itemizedlist>
+ <para>
+ These outcomes can be circumvented by enabling Basic authentication on the client machine.
+ </para>
+ <para>
+ To enable Basic authentication on the client computer, follow these steps:
+ </para>
+ <procedure>
+ <step>
+ <para>
+ Click Start, type <literal>regedit</literal> in the Start Search box, and then press Enter.
+ </para>
- </step>
- <step>
- <para>
- Locate and then click the following registry subkey:
- </para>
- <para>
- <envar>HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\Internet</envar>
- </para>
+ </step>
+ <step>
+ <para>
+ Locate and then click the following registry subkey:
+ </para>
+ <para>
+ <envar>HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\Internet</envar>
+ </para>
- </step>
- <step>
- <para>
- On the <guilabel>Edit</guilabel> menu, point to <guilabel>New</guilabel>, and then click <guilabel>DWORD Value</guilabel>.
- </para>
+ </step>
+ <step>
+ <para>
+ On the <guilabel>Edit</guilabel> menu, point to <guilabel>New</guilabel>, and then click <guilabel>DWORD Value</guilabel>.
+ </para>
- </step>
- <step>
- <para>
- Type <literal>BasicAuthLevel</literal>, and then press <keycap>Enter</keycap>.
- </para>
+ </step>
+ <step>
+ <para>
+ Type <literal>BasicAuthLevel</literal>, and then press <keycap>Enter</keycap>.
+ </para>
- </step>
- <step>
- <para>
- Right-click <literal>BasicAuthLevel</literal>, and then click <guilabel>Modify</guilabel>.
- </para>
+ </step>
+ <step>
+ <para>
+ Right-click <literal>BasicAuthLevel</literal>, and then click <guilabel>Modify</guilabel>.
+ </para>
- </step>
- <step>
- <para>
- In the Value data box, type <literal>2</literal>, and then click <guilabel>OK</guilabel>.
- </para>
+ </step>
+ <step>
+ <para>
+ In the Value data box, type <literal>2</literal>, and then click <guilabel>OK</guilabel>.
+ </para>
- </step>
+ </step>
- </procedure>
+ </procedure>
- </section>
+ </section>
<section id="sect-User_Guide-Manage_Site_Content_with_WebDAV-Actions">
<title>Actions</title>
13 years
gatein SVN: r8254 - in epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US: modules/Advanced/Administration and 1 other directory.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-12-14 21:54:18 -0500 (Wed, 14 Dec 2011)
New Revision: 8254
Added:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/add_category_tree.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manage_tags.png
Removed:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/JBoss_product_and_documentation_overview.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/add_taxonomy_tree.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/moderationbutton.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newletterbutton.png
Modified:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/formgeneratorform.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manage_taxonomy_trees.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manage_templates_form.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletter-deleteconfirmdialog.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/resourcesleftpanel.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/sites_admin.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/taxonomy_permissions.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Ontology.xml
Log:
JBEPP-1437: Updating screenshots
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/JBoss_product_and_documentation_overview.png
===================================================================
(Binary files differ)
Copied: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/add_category_tree.png (from rev 8248, epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/add_taxonomy_tree.png)
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/add_taxonomy_tree.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/formgeneratorform.png
===================================================================
(Binary files differ)
Copied: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manage_tags.png (from rev 8248, epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/JBoss_product_and_documentation_overview.png)
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manage_taxonomy_trees.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manage_templates_form.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/moderationbutton.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newletterbutton.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletter-deleteconfirmdialog.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/resourcesleftpanel.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/sites_admin.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/taxonomy_permissions.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Ontology.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Ontology.xml 2011-12-14 22:45:11 UTC (rev 8253)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Ontology.xml 2011-12-15 02:54:18 UTC (rev 8254)
@@ -25,10 +25,10 @@
</para>
<mediaobject>
<imageobject role="html">
- <imagedata fileref="images/JBoss_product_and_documentation_overview.png" format="PNG" align="center"/>
+ <imagedata fileref="images/manage_tags.png" format="PNG" align="center"/>
</imageobject>
<imageobject role="fo">
- <imagedata fileref="images/JBoss_product_and_documentation_overview.png" format="PNG" align="center" width="150mm" />
+ <imagedata fileref="images/manage_tags.png" format="PNG" align="center" width="150mm" />
</imageobject>
</mediaobject>
<section id="sect-User_Guide-Manage_Tags-Add_a_tag_style">
@@ -295,17 +295,17 @@
Perform the steps in <xref linkend="proc-User_Guide-Add_a_Taxonomy_Tree-Adding_a_Taxonomy_Tree"/> to add a taxonomy tree.
</para>
<procedure id="proc-User_Guide-Add_a_Taxonomy_Tree-Adding_a_Taxonomy_Tree">
- <title>Add a Taxonomy Tree</title>
+ <title>Add a Category Tree</title>
<step>
<para>
- Click the <guibutton>Add Taxonomy Tree</guibutton> button to add a new taxonomy. The <guilabel>Add taxonomy tree</guilabel> form will appear.
+ Click the <guibutton>Add Category Tree</guibutton> button to add a new category. The <guilabel>Add taxonomy tree</guilabel> form will appear.
</para>
<mediaobject>
<imageobject role="html">
- <imagedata fileref="images/add_taxonomy_tree.png" format="PNG" align="center"/>
+ <imagedata fileref="images/add_category_tree.png" format="PNG" align="center"/>
</imageobject>
<imageobject role="fo">
- <imagedata fileref="images/add_taxonomy_tree.png" format="PNG" align="center" width="150mm" />
+ <imagedata fileref="images/add_category_tree.png" format="PNG" align="center" width="150mm" />
</imageobject>
</mediaobject>
</step>
13 years
gatein SVN: r8253 - epp/docs/branches/5.2/Installation_Guide/en-US.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-12-14 17:45:11 -0500 (Wed, 14 Dec 2011)
New Revision: 8253
Modified:
epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml
epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml
epp/docs/branches/5.2/Installation_Guide/en-US/Test_Your_Installation.xml
Log:
Removing ulink markup from localhost url as resolves to hosting server
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml 2011-12-14 21:05:46 UTC (rev 8252)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml 2011-12-14 22:45:11 UTC (rev 8253)
@@ -9,7 +9,7 @@
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
<edition>5.2.0</edition>
- <pubsnumber>90</pubsnumber>
+ <pubsnumber>100</pubsnumber>
<abstract>
<para>
This book provides information about obtaining, installing and running JBoss Enterprise Portal Platform. It forms part of the complete document suite along with the <emphasis role="bold">User Guide</emphasis> and <emphasis role="bold">Reference Guide</emphasis> available at <ulink type="http" url="http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/index...." />.
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml 2011-12-14 21:05:46 UTC (rev 8252)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml 2011-12-14 22:45:11 UTC (rev 8253)
@@ -9,7 +9,7 @@
<simpara>
<revhistory>
<revision>
- <revnumber>5.2.0-90</revnumber>
+ <revnumber>5.2.0-100</revnumber>
<date>Wed Dec 14 2011</date>
<author>
<firstname>Scott</firstname>
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 2011-12-14 21:05:46 UTC (rev 8252)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Test_Your_Installation.xml 2011-12-14 22:45:11 UTC (rev 8253)
@@ -75,7 +75,7 @@
Ensure that port 8080 is not already in use and open <literal>http://localhost:8080/portal</literal> in your web browser.
<note>
<para>
- On some machines, the name localhost won’t resolve properly and you should use the local loopback address <ulink type="http" url="127.0.0.1">127.0.0.1</ulink> instead.
+ On some machines, the name localhost won’t resolve properly and you should use the local loopback address <uri>127.0.0.1</uri> instead.
</para>
</note>
The contents of your page should look similar to this: <xref linkend="Test_your_Installation-Test_your_Installation" />.
13 years
gatein SVN: r8252 - epp/docs/branches/5.2/Installation_Guide/en-US.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-12-14 16:05:46 -0500 (Wed, 14 Dec 2011)
New Revision: 8252
Modified:
epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml
epp/docs/branches/5.2/Installation_Guide/en-US/DatabaseConfiguration.xml
epp/docs/branches/5.2/Installation_Guide/en-US/Getting_Started.xml
epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml
Log:
JBEPP-1431: QE updates
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml 2011-12-14 20:52:20 UTC (rev 8251)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Book_Info.xml 2011-12-14 21:05:46 UTC (rev 8252)
@@ -9,7 +9,7 @@
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
<edition>5.2.0</edition>
- <pubsnumber>4</pubsnumber>
+ <pubsnumber>90</pubsnumber>
<abstract>
<para>
This book provides information about obtaining, installing and running JBoss Enterprise Portal Platform. It forms part of the complete document suite along with the <emphasis role="bold">User Guide</emphasis> and <emphasis role="bold">Reference Guide</emphasis> available at <ulink type="http" url="http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/index...." />.
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/DatabaseConfiguration.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/DatabaseConfiguration.xml 2011-12-14 20:52:20 UTC (rev 8251)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/DatabaseConfiguration.xml 2011-12-14 21:05:46 UTC (rev 8252)
@@ -248,7 +248,7 @@
<formalpara id="form-Portal_EAP-Using_a_MySQL_Database-MySQL_Datasource_Descriptor">
<title>MySQL Datasource Descriptor</title>
<para>
- We now need to change the portal database descriptor
+ You now need to change the portal database descriptor
</para>
</formalpara>
<orderedlist>
@@ -310,30 +310,30 @@
<para><filename>gatein-ds.xml</filename> will then look like:</para>
<programlisting language="XML" role="XML"><![CDATA[<datasources>
<no-tx-datasource>
- <jndi-name>gatein-idm</jndi-name>
- <connection-url>jdbc:mysql://mysql-hostname:3306/gateinidm</connection-url>
- <driver-class>com.mysql.jdbc.Driver</driver-class>
- <user-name>gateinuser</user-name>
- <password>gateinpassword</password>
+ <jndi-name>gatein-idm</jndi-name>
+ <connection-url>jdbc:mysql://mysql-hostname:3306/gateinidm</connection-url>
+ <driver-class>com.mysql.jdbc.Driver</driver-class>
+ <user-name>gateinuser</user-name>
+ <password>gateinpassword</password>
- <min-pool-size>5</min-pool-size>
- <max-pool-size>20</max-pool-size>
- <idle-timeout-minutes>0</idle-timeout-minutes>
- <prepared-statement-cache-size>32</prepared-statement-cache-size>
- </no-tx-datasource>
-
- <no-tx-datasource>
- <jndi-name>gatein-jcr</jndi-name>
- <connection-url>jdbc:mysql://mysql-hostname:3306/gateinjcr</connection-url>
- <driver-class>com.mysql.jdbc.Driver</driver-class>
- <user-name>gateinuser</user-name>
- <password>gateinpassword</password>
+ <min-pool-size>5</min-pool-size>
+ <max-pool-size>20</max-pool-size>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prepared-statement-cache-size>32</prepared-statement-cache-size>
+ </no-tx-datasource>
- <min-pool-size>5</min-pool-size>
- <max-pool-size>20</max-pool-size>
- <idle-timeout-minutes>0</idle-timeout-minutes>
- <prepared-statement-cache-size>32</prepared-statement-cache-size>
- </no-tx-datasource>
+ <local-tx-datasource>
+ <jndi-name>gatein-jcr</jndi-name>
+ <connection-url>jdbc:mysql://mysql-hostname:3306/gateinjcr</connection-url>
+ <driver-class>com.mysql.jdbc.Driver</driver-class>
+ <user-name>gateinuser</user-name>
+ <password>gateinpassword</password>
+
+ <min-pool-size>5</min-pool-size>
+ <max-pool-size>20</max-pool-size>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prepared-statement-cache-size>32</prepared-statement-cache-size>
+ </local-tx-datasource>
</datasources>]]>
</programlisting>
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/Getting_Started.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/Getting_Started.xml 2011-12-14 20:52:20 UTC (rev 8251)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Getting_Started.xml 2011-12-14 21:05:46 UTC (rev 8252)
@@ -15,7 +15,7 @@
<important>
<title>Upgrading JBoss Enterprise Portal Platform</title>
<para>
- It is possible to upgrade from JBoss Enterprise Portal Platform version 5.0 or 5.1.0 to JBoss Enterprise Portal Platform &VZ;.
+ It is possible to upgrade from JBoss Enterprise Portal Platform version 5.1.0 or 5.1.1 to JBoss Enterprise Portal Platform &VZ;.
</para>
<para>
To upgrade, copy any customized configuration files and database settings from your existing JBoss Enterprise Portal Platform installation to the corresponding location of the &VZ; installation.
@@ -174,7 +174,7 @@
Red Hat Enterprise Linux 6
</entry>
<entry>
- OpenJDK
+ OpenJDK 1.6 Update 15
</entry>
</row>
<row>
@@ -182,7 +182,7 @@
Red Hat Enterprise Linux 6
</entry>
<entry>
- SunJDK
+ SunJDK 1.6 Update 15
</entry>
</row>
<row>
@@ -275,12 +275,16 @@
<primary>Database</primary>
<secondary>System Requirements</secondary>
</indexterm>
+<!-- Source Metadata
+URL: https://docspace.corp.redhat.com/docs/DOC-16080
+Author [w/email]: Added at request of Vlastislav Ramik (vramik(a)redhat.com)
+License:
+-->
<table>
<title>Supported Database and JDBC driver Combinations</title>
<tgroup cols="2">
<colspec colnum="1" colname="c1" colwidth="1*"></colspec>
<colspec colnum="2" colname="c2" colwidth="1*"></colspec>
- <spanspec spanname="hspan" namest="c1" nameend="c2" align="left"></spanspec>
<thead>
<row>
<entry>
@@ -290,114 +294,144 @@
<emphasis>Database driver</emphasis>
</entry>
</row>
- </thead>
- <tbody>
- <row>
- <entry spanname="hspan">
- <emphasis><emphasis role="bold">JBoss Enterprise Portal Platform 5.0</emphasis></emphasis>
- </entry>
- </row>
+ </thead>
+ <tbody>
<row>
<entry>
- MySQL 5.1
+ IBM DB2 9.7
</entry>
<entry>
- MySQL Connector/J 5.1.8
+ IBM DB2 JDBC Universal Driver Architecture 4.12.55
</entry>
</row>
<row>
<entry>
- Oracle 10g R2 <!--(10.2.0.4)-->
+ Oracle 10g R2, (10.2.0.4)
</entry>
<entry>
- 10g R2 <!--(10.2.0.4)-->
+ Oracle JDBC Driver v10.2.0.5
</entry>
</row>
<row>
<entry>
- Oracle 11g R1 <!-- (11.1.0.7.0) -->(Supported)
+ Oracle 11g R1, (11.1.0.7.0)
</entry>
<entry>
- 11g R1 <!--(11.1.0.7.0)-->
+ Oracle JDBC Driver v11.1.0.7
</entry>
</row>
<row>
<entry>
- Oracle 11g RAC <!--(11.1.0.7.0)--> (Supported)
+ Oracle 11g R1 RAC (11.1.0.7.0)
</entry>
<entry>
- 11g R1 <!--(11.1.0.7.0)-->
+ Oracle JDBC Driver v11.1.0.7
</entry>
</row>
<row>
<entry>
- Microsoft SQL Server 2005 SP3
+ Oracle 11g R2
</entry>
<entry>
- Microsoft JDBC Driver 2.0
+ Oracle JDBC Driver v11.2.0.2.0
</entry>
</row>
<row>
<entry>
- Microsoft SQL Server 2008 SP1
+ Oracle 11g R2 RAC
</entry>
<entry>
- Microsoft JDBC Driver 2.0
+ Oracle JDBC Driver v11.2.0.2.0
</entry>
</row>
<row>
<entry>
- PostgresSQL 8.3.7
+ MySQL 5.0 (5.0.79)
</entry>
<entry>
- PostgresSQL Driver JDBC4, 8.3-605
+ MySQL Connector/J 5.0.8
</entry>
</row>
<row>
<entry>
- PostgresSQL 8.2.4 (Supported)
+ MySQL 5.0 (5.0.79)
</entry>
<entry>
- PostgresSQL Driver JDBC4, 8.2-510
+ MySQL Connector/J 5.1.17
</entry>
</row>
<row>
<entry>
- DB2 9.7
+ MySQL 5.1 (5.1.36)
</entry>
<entry>
- IBM Data Server Driver for JDBC and SQLJ (JCC Driver) Version: 9.1 (fixpack 3a)
+ MySQL Connector/J 5.1.17
</entry>
</row>
<row>
<entry>
- Sybase 15.0.2
+ Microsoft SQL Server 2005 (Deprecated from 5.1.2)
</entry>
<entry>
- JConnect v6.0.5 <!--(Build 26564 / 11 Jun 2009) -->
+ Microsoft SQL Server JDBC Driver 3.0.1301.101
</entry>
</row>
- <row>
- <entry spanname="hspan">
- <emphasis><emphasis role="bold">JBoss Enterprise Portal Platform 5.1</emphasis></emphasis>
+ <row>
+ <entry>
+ Microsoft SQL Server 2008
</entry>
- </row>
- <row>
<entry>
- Oracle 11g R2
+ Microsoft SQL Server JDBC Driver 3.0.1301.101
</entry>
+ </row>
+ <row>
<entry>
- 11g R2
+ Microsoft SQL Server 2008 R2
</entry>
+ <entry>
+ Microsoft SQL Server JDBC Driver 3.0.1301.101
+ </entry>
</row>
<row>
<entry>
- Oracle 11g R2 RAC
+ PostgreSQL 8.2.17
</entry>
<entry>
- 11g R2 RAC
+ JDBC4 Postgresql Driver, Version 8.2-511
</entry>
</row>
+ <row>
+ <entry>
+ PostgreSQL 8.3.11
+ </entry>
+ <entry>
+ JDBC4 Postgresql Driver, Version 8.3-606
+ </entry>
+ </row>
+ <row>
+ <entry>
+ PostgreSQL 8.4.7
+ </entry>
+ <entry>
+ JDBC4 Postgresql Driver, Version 8.4-703
+ </entry>
+ </row>
+ <row>
+ <entry>
+ Sybase ASE 15.0.3
+ </entry>
+ <entry>
+ Sybase jConnect JDBC driver v7 (Build 26502/EBF17993)
+ </entry>
+ </row>
+ <row>
+ <entry>
+ Sybase ASE 15.5
+ </entry>
+ <entry>
+ Sybase jConnect JDBC driver v7 (Build 26502/EBF17993)
+ </entry>
+ </row>
</tbody>
</tgroup>
</table>
@@ -419,9 +453,9 @@
<entry>
<emphasis>Directory Server</emphasis>
</entry>
- <entry>
- <emphasis>Version</emphasis>
- </entry>
+ <entry>
+ <emphasis>Version</emphasis>
+ </entry>
</row>
</thead>
<tbody>
@@ -429,41 +463,41 @@
<entry>
OpenDS
</entry>
- <entry>
- 1.2
- </entry>
+ <entry>
+ 1.2
+ </entry>
</row>
<row>
<entry>
OpenDS
</entry>
- <entry>
- 2.0
- </entry>
+ <entry>
+ 2.0
+ </entry>
</row>
<row>
<entry>
OpenLDAP
</entry>
- <entry>
- 2.4
- </entry>
+ <entry>
+ 2.4
+ </entry>
</row>
<row>
<entry>
Red Hat Directory Server
</entry>
- <entry>
- 7.1
- </entry>
+ <entry>
+ 7.1
+ </entry>
</row>
<row>
<entry>
MS Active Directory
</entry>
- <entry>
- Windows Server 2008
- </entry>
+ <entry>
+ Windows Server 2008
+ </entry>
</row>
</tbody>
</tgroup>
@@ -579,12 +613,12 @@
<title>Installing and Configuring JDK 6.0 on a generic Linux platform</title>
<listitem>
<para>
- Download the Java 2 Platform, Standard Edition (J2SE) Development Kit (JDK) 6.0 from Sun's website: <ulink url="http://java.sun.com/javase/downloads/index.jsp#need"></ulink>.
+ Download the Java 2 Platform, Standard Edition (J2SE) Development Kit (JDK) 6.0 from Oracle's website: <ulink type="http" url="http://www.oracle.com/technetwork/java/javase/downloads/index.html#need"></ulink>.
</para>
</listitem>
<listitem>
<para>
- From this page, select the latest update under the <literal>Java Platform, Standard Edition</literal> heading. Alternatively, this page can be accessed directly at <ulink url="http://java.sun.com/javase/downloads/widget/jdk6.jsp"></ulink>.
+ From this page, select the latest update under the <literal>Java Platform, Standard Edition</literal> heading. Alternatively, this page can be accessed directly at <ulink type="http" url="http://www.oracle.com/technetwork/java/javase/downloads/jdk6-jsp-136632.html"></ulink>.
</para>
</listitem>
<listitem>
Modified: epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml 2011-12-14 20:52:20 UTC (rev 8251)
+++ epp/docs/branches/5.2/Installation_Guide/en-US/Revision_History.xml 2011-12-14 21:05:46 UTC (rev 8252)
@@ -9,6 +9,20 @@
<simpara>
<revhistory>
<revision>
+ <revnumber>5.2.0-90</revnumber>
+ <date>Wed Dec 14 2011</date>
+ <author>
+ <firstname>Scott</firstname>
+ <surname>Mumford</surname>
+ <email></email>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Publication build.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
<revnumber>5.2.0-4</revnumber>
<date>Tue Dec 13 2011</date>
<author>
13 years
gatein SVN: r8251 - in epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US: images and 4 other directories.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-12-14 15:52:20 -0500 (Wed, 14 Dec 2011)
New Revision: 8251
Added:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/import_button.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/watch_button.png
Removed:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/abortbutton.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addcategoryicon.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/discsave.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manageversionsbutton.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/switchviewbutton.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/versionminusicon.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/webdavurl.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/webdavurl1.png
Modified:
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/Edit_mode_Inline.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/Highlighted_Edit_Area.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/acme_inline_editing.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addactionstab.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addnewproperties.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/advancedsearches.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/advancedsearchtab.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/clipboarditem.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/clipboarditemlist.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/copyurl.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/emptysearch.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/importnodeform.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_newsletter_administration.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_newsletter_administration2.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/nosearchresult.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/querylistsections.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/relationsbutton.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/savedsearches.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/searchpage.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/searchresults.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/selectdelete.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/taglistiediticon.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/tagmanager.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/typeactions.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/watchingdocumentform.png
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Presentation.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Content_Inside_Categories.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SearchPortlet.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Drives.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml
epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Get_Started/Account.xml
Log:
JBEPP-1437: Updating screenshots
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -9,7 +9,7 @@
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
<edition>5.2.0</edition>
- <pubsnumber>6</pubsnumber>
+ <pubsnumber>7</pubsnumber>
<abstract>
<para>
This document provides an easy to follow guide to the functions and options available in the Enterprise Portal Platform Site Publisher extension (powered by eXo). It is intended to be accessible and useful to both experienced and novice portal users.
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/Edit_mode_Inline.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/Highlighted_Edit_Area.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/abortbutton.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/acme_inline_editing.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addactionstab.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addcategoryicon.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/addnewproperties.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/advancedsearches.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/advancedsearchtab.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/clipboarditem.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/clipboarditemlist.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/copyurl.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/discsave.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/emptysearch.png
===================================================================
(Binary files differ)
Added: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/import_button.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/import_button.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/importnodeform.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/manageversionsbutton.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_newsletter_administration.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/newsletters_newsletter_administration2.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/nosearchresult.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/querylistsections.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/relationsbutton.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/savedsearches.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/searchpage.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/searchresults.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/selectdelete.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/switchviewbutton.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/taglistiediticon.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/tagmanager.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/typeactions.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/versionminusicon.png
===================================================================
(Binary files differ)
Added: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/watch_button.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/watch_button.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/watchingdocumentform.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/webdavurl.png
===================================================================
(Binary files differ)
Deleted: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/images/webdavurl1.png
===================================================================
(Binary files differ)
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Presentation.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Presentation.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Advanced/Administration/Presentation.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -440,7 +440,7 @@
<section id="sect-User_Guide-Content_Presentation_Manager-Manage_Views">
<title>Manage Views</title>
<para>
- The <emphasis>Manage Views</emphasis> function is used to control view ways of a user. It has three tabs: <guilabel>View</guilabel>, <guilabel>ECM Templates</guilabel> and <guilabel>BC Templates</guilabel> tabs.
+ The <emphasis>Manage Views</emphasis> function is used to control view ways of a user. It has two tabs: <guilabel>View</guilabel> and <guilabel>ECM Templates</guilabel>.
</para>
<para>
To open the <emphasis role="bold">Manage View</emphasis> function, go to <menuchoice>
@@ -1125,7 +1125,7 @@
To delete a drive, do the following:
</para>
<procedure id="proc-User_Guide-Add_a_new_drive-Delete_a_drive">
- <title>Delete a drive</title>
+ <title>Delete a drive</title>
<step>
<para>
Click the <inlinemediaobject>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Content_Inside_Categories.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Content_Inside_Categories.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Content_Inside_Categories.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -56,6 +56,9 @@
<imageobject role="html">
<imagedata fileref="images/highlight_category.png" format="PNG" align="center"/>
</imageobject>
+ <imageobject role="fo">
+ <imagedata fileref="images/highlight_category.png" format="PNG" align="center" width="150mm"/>
+ </imageobject>
</mediaobject>
</step>
<step>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Contribute_Content.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -233,7 +233,7 @@
<note>
<para>
- Saving a document in which folder of the Collaboration drive depends on the path you choose in<xref
+ Saving a document in which folder of the Collaboration drive depends on the path you choose in <xref
linkend="sect-User_Guide-InContext_Editing-Preferences"/>.
</para>
</note>
@@ -394,7 +394,7 @@
</para>
<para>
- To take other actions on a specific content in the CLV, right-click it to open a drop-down menu. See more details how to takes the actions in<xref linkend="sect-User_Guide-Actions_on_Folders_and_Documents"/>.
+ To take other actions on a specific content in the CLV, right-click it to open a drop-down menu. See more details how to takes the actions in <xref linkend="sect-User_Guide-Actions_on_Folders_and_Documents"/>.
</para>
</step>
</procedure>
@@ -627,7 +627,7 @@
<imagedata fileref="images/print_bar.png" format="PNG" align="center"/>
</imageobject>
<imageobject role="fo">
- <imagedata fileref="images/print_bar.png" format="PNG" align="center" width="XXXmm"/>
+ <imagedata fileref="images/print_bar.png" format="PNG" align="center" width="100mm"/>
</imageobject>
</mediaobject>
</step>
@@ -993,7 +993,7 @@
</imageobject>
<imageobject role="fo">
- <imagedata width="150mm" align="center" fileref="images/Edit_mode_Inline.png" format="PNG"/>
+ <imagedata width="50mm" align="center" fileref="images/Edit_mode_Inline.png" format="PNG"/>
</imageobject>
</mediaobject>
@@ -1121,7 +1121,7 @@
</imageobject>
<imageobject role="fo">
- <imagedata width="150mm" align="center" fileref="images/publish-state.png" format="PNG"/>
+ <imagedata width="100mm" align="center" fileref="images/publish-state.png" format="PNG"/>
</imageobject>
</mediaobject>
</step>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -380,7 +380,7 @@
<imagedata fileref="images/trashicon.png" format="PNG" width="5mm"/>
</imageobject>
<textobject>
- <phrase></phrase>
+ <phrase>trash can icon</phrase>
</textobject>
</inlinemediaobject>
</entry>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SearchPortlet.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SearchPortlet.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SearchPortlet.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -1,11 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- This document was created with Syntext Serna Free. -->
-<!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;
+<!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 id="sect-User_Guide-Search_portlet">
- <title>Search Porlet</title>
+ <title>Search Portlet</title>
<para>
The <guilabel>Search</guilabel> function allows you to quickly search for any contents in the system with a keyword from the front page, even if you do not log in. However, the number of the search results displayed depends on your role.
@@ -190,7 +190,7 @@
</imageobject>
<imageobject role="fo">
- <imagedata align="center" fileref="images/search-editmode.png" format="PNG"
+ <imagedata align="center" fileref="images/search-editmode.png" format="PNG"
width="150mm"/>
</imageobject>
</mediaobject>
@@ -217,7 +217,7 @@
</imageobject>
<imageobject role="fo">
- <imagedata align="center" fileref="images/edit_searchresult.png" format="PNG"
+ <imagedata align="center" fileref="images/edit_searchresult.png" format="PNG"
width="150mm"/>
</imageobject>
</mediaobject>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -6,7 +6,7 @@
<section id="sect-User_Guide-Manage_a_site">
<title>Manage a site</title>
<section id="sect-User_Guide-Manage_a_site-Create_a_new_site">
- <title><remark>Create a new site</remark></title>
+ <title>Create a new site</title>
<para>
</para>
<note>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Actions.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -5,7 +5,7 @@
%BOOK_ENTITIES;
]>
<section id="sect-User_Guide-Actions">
- <title><remark>Actions</remark></title>
+ <title>Actions</title>
<para>
Actions appear as tabs on the action bar of the Content Explorer pane. They are managed by administrators. The
actions visible to any given user will depend on their role permissions and the tab and drive they are browsing.
@@ -15,6 +15,26 @@
<guilabel>Content Explorer</guilabel>
and how to use them.
</para>
+ <important id="impo-User_Guide-Actions-Button_Visibility_in_Views">
+ <title>Button Visibility in Views</title>
+ <para>
+ Certain buttons mentioned in this section may not be visible on the tabs in the <guilabel>Content Explorer</guilabel>. These buttons may need to be enabled in the Administration portlet.
+ </para>
+ <para>
+ Navigate to <menuchoice><guimenu>Group</guimenu><guimenuitem>Administration</guimenuitem><guimenuitem>Content Presentation</guimenuitem><guimenuitem>Manage View</guimenuitem></menuchoice>, click on the pencil icon corresponding to the appropriate <guilabel>View</guilabel> to edit that view.
+ </para>
+ <para>
+ Choose the tab you would like the required button to appear on (<guilabel>Publication</guilabel>, <guilabel>Collaboration</guilabel>, <guilabel>System</guilabel> or another) and check the check-box which corresponds to the button you wish to enable.
+ </para>
+ <para>
+ If the button has been recently enabled, you may need to refresh the <guilabel>Content Explorer</guilabel> page using the <guilabel>Refresh</guilabel> button.
+ </para>
+ <para>
+ More information about managing views can be found in <xref linkend="sect-User_Guide-Content_Presentation_Manager-Manage_Views"/>
+ </para>
+ </important>
+
+ <!--DOCS NOTE: This section removed as there is another section about adding a catergory at Manage Categories -> Add a category for a node
<section id="sect-User_Guide-Actions-Add_Category">
<title>Add a category</title>
<para>This function enables you to add a category to a node.</para>
@@ -61,13 +81,15 @@
</step>
<step>
<para>
- Click<guilabel>Save</guilabel>to create a new category or
+ Click <guilabel>Save</guilabel>to create a new category or
<guilabel>Cancel</guilabel>
to quit from this form without adding a category.
</para>
</step>
</procedure>
</section>
+ -->
+
<section id="sect-User_Guide-Actions-Add_a_document">
<title>Add a document</title>
<para>
@@ -542,7 +564,7 @@
</tgroup>
</table>
<note>
- <title>Table</title>
+ <title>Legend</title>
<itemizedlist>
<listitem>
<para>
@@ -592,7 +614,7 @@
<phrase>Add Contents</phrase>
</textobject>
</inlinemediaobject>
- button on the Actions bar.
+ button on the <guilabel>Actions</guilabel> tab.
</para>
<mediaobject>
<imageobject role="html">
@@ -607,6 +629,14 @@
<para>
You will be presented with a page to choose a content template .
</para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata fileref="images/templateform.png" format="PNG" align="center"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata fileref="images/templateform.png" format="PNG" align="center" width="XXXmm"/>
+ </imageobject>
+ </mediaobject>
</step>
</procedure>
<!-- DOC NOTE: The procedure below was not in the 2.1.1 .odt. It has been re-included as is it linked to in "Create a new Article" -->
@@ -623,7 +653,7 @@
<phrase>Upload Files</phrase>
</textobject>
</inlinemediaobject>
- button on the Actions bar.
+ button on the <guilabel>Actions</guilabel> tab.
</para>
<note>
<title>Upload Files Button</title>
@@ -635,7 +665,7 @@
<imagedata fileref="images/more_drop_menu.png" format="PNG" align="center"/>
</imageobject>
<imageobject role="fo">
- <imagedata fileref="images/more_drop_menu.png" format="PNG" align="center" width="XXXmm"/>
+ <imagedata fileref="images/more_drop_menu.png" format="PNG" align="center" width="150mm"/>
</imageobject>
</mediaobject>
</note>
@@ -697,20 +727,8 @@
<step>
<para>
Follow the steps in
- <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/>
- to open the
- <guilabel>Add New Document</guilabel>
- form, then select
- <guilabel>File</guilabel>
- from the
- <guilabel>Select Template</guilabel>
- drop-down list.
+ <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/> and click the <guilabel>File</guilabel> template.
</para>
- <para>
- The
- <guilabel>Add New Document</guilabel>
- form will be displayed.
- </para>
</step>
<step>
<para>
@@ -811,9 +829,7 @@
</step>
<step>
<para>
- Fill values in all the fields, including<guilabel>Title</guilabel>,<guilabel>Description</guilabel>,
- <guilabel>Creator</guilabel>
- and<guilabel>Source</guilabel>.
+ Fill values in all the fields, including <guilabel>Title</guilabel>, <guilabel>Description</guilabel>, <guilabel>Creator</guilabel> and <guilabel>Source</guilabel>.
</para>
<para>
Click the plus icon to open more fields.
@@ -856,20 +872,8 @@
<step>
<para>
Follow the steps in
- <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/>
- to open the
- <guilabel>Add New Document</guilabel>
- form. The
- <guilabel>Article</guilabel>
- type should be selected by default. If not, select it from the
- <guilabel>Select Template</guilabel>
- drop-down list.
+ <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/> and click the <guilabel>Article</guilabel> template.
</para>
- <para>
- The
- <guilabel>Add New Document</guilabel>
- form will be displayed.
- </para>
</step>
<step>
<para>
@@ -958,20 +962,8 @@
<step>
<para>
Follow the steps in
- <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/>
- to open the
- <guilabel>Add New Document</guilabel>
- form and select
- <guilabel>Podcast</guilabel>
- from the
- <guilabel>Select Template</guilabel>
- drop-down list.
+ <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/> and click the <guilabel>Podcast</guilabel> template.
</para>
- <para>
- The
- <guilabel>Add New Podcast</guilabel>
- form will be displayed.
- </para>
<table>
<title/>
<tgroup cols="2">
@@ -1109,21 +1101,9 @@
<title>Create a new Sample node</title>
<step>
<para>
- Follow the instructions in
- <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/>
- to open the
- <guilabel>Add New Document</guilabel>
- window and select
- <guilabel>Sample node</guilabel>
- from the
- <guilabel>Select Template</guilabel>
- drop-down list.
+ Follow the steps in
+ <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/> and click the <guilabel>Sample node</guilabel> template.
</para>
- <para>
- The
- <guilabel>Add New Sample Node</guilabel>
- form will appear.
- </para>
</step>
<step>
<para>
@@ -1175,21 +1155,9 @@
<title>Create a new File Plan</title>
<step>
<para>
- Follow the instructions in
- <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/>
- to open the
- <guilabel>Add New Document</guilabel>
- window and select
- <guilabel>File plan</guilabel>
- from the
- <guilabel>Select Template</guilabel>
- drop-down list.
+ Follow the steps in
+ <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/> and click the <guilabel>File Plan</guilabel> template.
</para>
- <para>
- The
- <guilabel>Add File plan</guilabel>
- form will appear.
- </para>
</step>
<step>
<para>
@@ -1550,21 +1518,9 @@
<title>Create a new Kofax</title>
<step>
<para>
- Follow the instructions in
- <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/>
- to open the
- <guilabel>Add New Document</guilabel>
- form and select
- <guilabel>Add New Kofax</guilabel>
- from the
- <guilabel>Select Template</guilabel>
- drop-down list.
+ Follow the steps in
+ <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/> and click the <guilabel>Kofax document</guilabel> template.
</para>
- <para>
- The
- <guilabel>Add New Kofax</guilabel>
- form will appear:
- </para>
<mediaobject>
<imageobject role="html">
<imagedata align="center" fileref="images/addnewkofax.png" format="PNG"/>
@@ -1633,21 +1589,9 @@
<title>Create new Event</title>
<step>
<para>
- Follow the instructions in
- <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/>
- to open the
- <guilabel>Add New Document</guilabel>
- form and select
- <guilabel>Event</guilabel>
- from the
- <guilabel>Select Template</guilabel>
- drop-down list.
+ Follow the steps in
+ <xref linkend="proc-User_Guide-Add_a_document-Add_a_new_document"/> and click the <guilabel>Event</guilabel> template.
</para>
- <para>
- The
- <guilabel>Add New Event</guilabel>
- window will appear:
- </para>
<mediaobject>
<imageobject role="html">
<imagedata align="center" fileref="images/neweventform.png" format="PNG"/>
@@ -1933,7 +1877,7 @@
<para>
Select a document you want to add the translation for. For example, select an
<guilabel>Article</guilabel>
- which is in<emphasis>English</emphasis>:
+ which is in <emphasis>English</emphasis>:
</para>
<mediaobject>
<imageobject role="html">
@@ -2031,6 +1975,7 @@
</step>
</procedure>
</section>
+
<section id="sect-User_Guide-Actions-Add_symlink">
<title>Add Symlink</title>
<para>
@@ -2459,9 +2404,24 @@
<phrase>Import Node</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar . The
- <guilabel>Import Node</guilabel>
- form appears.
+ button which can be found on the <guilabel>System</guilabel> tab of the action bar.
+ </para>
+ <note>
+ <title>The <guilabel>More</guilabel> Menu</title>
+ <para>
+ Depending on your browsing circumstances, the <guilabel>Import Node</guilabel> button may be located under the <guilabel>More</guilabel> drop-down menu.
+ </para>
+ </note>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata fileref="images/import_button.png" format="PNG" align="center"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata fileref="images/import_button.png" format="PNG" align="center" width="150mm"/>
+ </imageobject>
+ </mediaobject>
+ <para>
+ The <guilabel>Import Node</guilabel> form appears.
</para>
<mediaobject>
<imageobject role="html">
@@ -2567,7 +2527,7 @@
<phrase>Manage Actions</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The
@@ -2969,9 +2929,7 @@
<phrase>Manage Auditing</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar. The
- <guilabel>Activate Auditing</guilabel>
- message appears.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<mediaobject>
<imageobject role="html">
@@ -3054,7 +3012,7 @@
<phrase>Manage Categories</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The
@@ -3158,7 +3116,7 @@
<phrase>Manage Categories</phrase>
</textobject>
</inlinemediaobject>
- button.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -3208,7 +3166,7 @@
<phrase>Hide/Show content</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar to hide the node.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
A message box will appear with a confirmation that the node has been hidden.
@@ -3252,7 +3210,7 @@
<phrase>Manage Publications</phrase>
</textobject>
</inlinemediaobject>
- button on the actions bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The
@@ -3345,7 +3303,7 @@
<phrase>Manage Relations</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The
@@ -3417,7 +3375,7 @@
<phrase>Manage Relations</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -3516,7 +3474,7 @@
<phrase>Manage Relations</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The following message box will appear:
@@ -3623,7 +3581,7 @@
<phrase>Manage Versions</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -3688,7 +3646,7 @@
<phrase>Manage Versions</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -3759,7 +3717,7 @@
<phrase>Manage Versions</phrase>
</textobject>
</inlinemediaobject>
- button.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -3824,7 +3782,7 @@
<phrase>Manage Versions</phrase>
</textobject>
</inlinemediaobject>
- button.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<mediaobject>
<imageobject role="html">
@@ -3884,7 +3842,7 @@
<phrase>Manage Versions</phrase>
</textobject>
</inlinemediaobject>
- button.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -3946,9 +3904,7 @@
<phrase>Add/Edit localized contents</phrase>
</textobject>
</inlinemediaobject>
- button on the
- <guilabel>Action</guilabel>
- bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The
@@ -4106,7 +4062,7 @@
<phrase>Overload thumbnail</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The
@@ -4168,7 +4124,7 @@
<para>
Click the
<guilabel>Request Approval</guilabel>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>
The content is displayed at the bottom of the Content Explorer of the people who have the right to
@@ -4274,10 +4230,10 @@
<imagedata fileref="images/showhidedrives.png" format="PNG" width="44mm"/>
</imageobject>
<textobject>
- <phrase>Show/Hide Drives</phrase>
+ <phrase>Show Drives</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
<para>To hide drives, click the
<inlinemediaobject>
@@ -4285,7 +4241,7 @@
<imagedata fileref="images/showhidedrives.png" format="PNG" width="44mm"/>
</imageobject>
<textobject>
- <phrase>Show/Hide Drives</phrase>
+ <phrase>Show Drives</phrase>
</textobject>
</inlinemediaobject>
button again.
@@ -4307,7 +4263,7 @@
<para>
Select the
<guilabel>Info</guilabel>
- tab.
+ tab (if the tab is not visible, it may need to be added, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -4318,10 +4274,10 @@
<imagedata fileref="images/jcrstructure.png" format="PNG" width="46mm"/>
</imageobject>
<textobject>
- <phrase>Show/Hide Like JCR Structure</phrase>
+ <phrase>Show JCR Structure</phrase>
</textobject>
</inlinemediaobject>
- button.
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
</para>
</step>
<step>
@@ -4357,7 +4313,7 @@
<imagedata fileref="images/jcrstructure.png" format="PNG" width="46mm"/>
</imageobject>
<textobject>
- <phrase>Show/Hide Like JCR Structure</phrase>
+ <phrase>Show JCR Structure</phrase>
</textobject>
</inlinemediaobject>
button again.
@@ -4388,10 +4344,13 @@
<imagedata fileref="images/taggingdocument.png" format="PNG" width="51mm"/>
</imageobject>
<textobject>
- <phrase>Tagging this document</phrase>
+ <phrase>Tag document</phrase>
</textobject>
</inlinemediaobject>
- button on the action bar. The
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
+ </para>
+ <para>
+ The
<guilabel>Tag Manager</guilabel>
will be displayed:
</para>
@@ -4493,7 +4452,7 @@
<imagedata fileref="images/taggingdocument.png" format="PNG" width="51mm"/>
</imageobject>
<textobject>
- <phrase>Tagging this document</phrase>
+ <phrase>Tag document</phrase>
</textobject>
</inlinemediaobject>
button on the action bar to open the
@@ -4553,7 +4512,7 @@
<imagedata fileref="images/uploadicon2.png" format="PNG" width="17mm"/>
</imageobject>
<textobject>
- <phrase>Upload</phrase>
+ <phrase>Upload Files</phrase>
</textobject>
</inlinemediaobject>
button on the action bar to open the
@@ -4862,7 +4821,10 @@
<phrase>View Metadatas</phrase>
</textobject>
</inlinemediaobject>
- button. The
+ button (if the button is not visible, it may need to be enabled, refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>).
+ </para>
+ <para>
+ The
<guilabel>View Metadata</guilabel>
form appears:
</para>
@@ -5299,7 +5261,7 @@
</step>
<step>
<para>
- Enter a value for the property in the<guilabel>Value</guilabel>.
+ Enter a value for the property in the <guilabel>Value</guilabel>.
</para>
</step>
<step>
@@ -5512,6 +5474,26 @@
</step>
<step>
<para>
+ Click the <guilabel>Watch/Unwatch Document</guilabel> button. This button's location will depend on how it was enabled (refer to <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/> for details).
+ </para>
+ <note>
+ <title>The <guilabel>More</guilabel> Menu</title>
+ <para>
+ Depending on your browsing environment, the <guilabel>Watch/Unwatch Document</guilabel> button may be located under the <guilabel>More</guilabel> drop-down menu.
+ </para>
+ </note>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata fileref="images/watch_button.png" format="PNG" align="center"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata fileref="images/watch_button.png" format="PNG" align="center" width="150mm"/>
+ </imageobject>
+ </mediaobject>
+
+ </step>
+ <step>
+ <para>
The
<guilabel>Watching Document</guilabel>
form will appear. Click the
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Drives.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Drives.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Drives.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -48,10 +48,10 @@
</listitem>
</itemizedlist>
<para>
- If you click on a content in this drive, the <guilabel>Actions</guilabel> and <guilabel>Collaboration</guilabel> buttons appear.
+ If you click on a content in this drive, the <guilabel>Actions</guilabel> and <guilabel>Collaboration</guilabel> tabs appear.
</para>
<para>
- The <guilabel>Actions</guilabel> offers the same options as the parent drive.
+ The <guilabel>Actions</guilabel> tab offers the same options as the parent drive.
</para>
<mediaobject>
<imageobject role="html">
@@ -150,6 +150,16 @@
</para>
</listitem>
</itemizedlist>
+
+ <note>
+ <title>Available Actions</title>
+ <para>
+ The actions available in these tabs will depend on which actions the site Administrator has set.
+ </para>
+ <para>
+ Instructions on how to enable or disable actions in these tabs is in <xref linkend="impo-User_Guide-Actions-Button_Visibility_in_Views"/>.
+ </para>
+ </note>
</section>
@@ -194,7 +204,7 @@
<imagedata fileref="images/shared_user_space.png" format="PNG" align="center"/>
</imageobject>
<imageobject role="fo">
- <imagedata fileref="images/shared_user_space.png" format="PNG" align="center" width="XXXmm"/>
+ <imagedata fileref="images/shared_user_space.png" format="PNG" align="center" width="150mm"/>
</imageobject>
</mediaobject>
<para>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Basics/SitesExplorer/Folders_and_Documents.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -704,25 +704,11 @@
<para>
Paste the URL into another browser window (or another tab in the same browser window).
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/webdavurl.png" format="PNG" align="center"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/webdavurl.png" format="PNG" align="center" width="150mm"/>
- </imageobject>
- </mediaobject>
+
<para>
You can view the folders of the node or download documents to your device. You also view other nodes by clicking the folder named <guilabel>..</guilabel> to go up to the parent node. See the below illustration:
</para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/webdavurl1.png" format="PNG" align="center"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/webdavurl1.png" format="PNG" align="center" width="150mm"/>
- </imageobject>
- </mediaobject>
+
</step>
</procedure>
</section>
Modified: epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Get_Started/Account.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Get_Started/Account.xml 2011-12-14 02:13:06 UTC (rev 8250)
+++ epp/docs/branches/5.2/Site_Publisher/User_Guide/en-US/modules/Get_Started/Account.xml 2011-12-14 20:52:20 UTC (rev 8251)
@@ -258,7 +258,7 @@
<imagedata align="center" fileref="images/accessbanner.png" format="PNG"/>
</imageobject>
<imageobject role="fo">
- <imagedata align="center" fileref="images/accessbanner.png" format="PNG" width="82mm"/>
+ <imagedata align="center" fileref="images/accessbanner.png" format="PNG" width="100mm"/>
</imageobject>
</mediaobject>
<para>
13 years
gatein SVN: r8250 - in epp/docs/branches/5.2/Site_Publisher/Release_Notes: en-US and 1 other directory.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2011-12-13 21:13:06 -0500 (Tue, 13 Dec 2011)
New Revision: 8250
Modified:
epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Book_Info.xml
epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Revision_History.xml
epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Site_Publisher_5.2.0_Release_Notes.xml
epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/resolved_issues.xml
epp/docs/branches/5.2/Site_Publisher/Release_Notes/publican.cfg
Log:
Final Changes committed for Release Notes 5.2.0 before GA 15th Dec
Modified: epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Book_Info.xml 2011-12-14 01:55:47 UTC (rev 8249)
+++ epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Book_Info.xml 2011-12-14 02:13:06 UTC (rev 8250)
@@ -9,7 +9,7 @@
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
<edition>5.2.0</edition>
- <pubsnumber>8</pubsnumber>
+ <pubsnumber>100</pubsnumber>
<abstract>
<para>
These release notes contain important information related to JBoss Site Publisher that may not be currently available in the Product Manuals.
Modified: epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Revision_History.xml 2011-12-14 01:55:47 UTC (rev 8249)
+++ epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Revision_History.xml 2011-12-14 02:13:06 UTC (rev 8250)
@@ -8,47 +8,19 @@
<simpara>
<revhistory>
<revision>
- <revnumber>5.2.0-8</revnumber>
- <date>Thu Dec 01 2011</date>
+ <revnumber>5.2.0-100</revnumber>
+ <date>Thu Dec 15 2011</date>
<author>
<firstname>Jared</firstname>
<surname>Morgan</surname>
- <email>jmorgan at redhat dot com</email>
+ <email>jmorgan [at] redhat [dot] com</email>
</author>
<revdescription>
<simplelist>
- <member>Second Draft of Enterprise Portal Platform 5.2.0 Release Notes with NEEDINFO issues highlighted.</member>
+ <member>Prepared Release Notes for JBoss Enterprise Portal Platform 5.2.0 GA.</member>
</simplelist>
</revdescription>
</revision>
- <revision>
- <revnumber>5.2.0-7</revnumber>
- <date>Thu Nov 25 2011</date>
- <author>
- <firstname>Jared</firstname>
- <surname>Morgan</surname>
- <email>jmorgan at redhat dot com</email>
- </author>
- <revdescription>
- <simplelist>
- <member>Draft prepared for Enterprise Portal Platform Site Publisher 5.2.0, with some issues still needinfo. Critical and Blocker Resolved eXo Platform JIRAs <emphasis role="italic">are now included for your enjoyment</emphasis>.</member>
- </simplelist>
- </revdescription>
- </revision>
- <revision>
- <revnumber>5.2.0-6</revnumber>
- <date>Thu Nov 24 2011</date>
- <author>
- <firstname>Jared</firstname>
- <surname>Morgan</surname>
- <email>jmorgan at redhat dot com</email>
- </author>
- <revdescription>
- <simplelist>
- <member>Draft prepared for Enterprise Portal Platform Site Publisher 5.2.0, with some issues still needinfo. eXo Platform JIRAs have not yet been triaged.</member>
- </simplelist>
- </revdescription>
- </revision>
</revhistory>
</simpara>
</appendix>
Modified: epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Site_Publisher_5.2.0_Release_Notes.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Site_Publisher_5.2.0_Release_Notes.xml 2011-12-14 01:55:47 UTC (rev 8249)
+++ epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/Site_Publisher_5.2.0_Release_Notes.xml 2011-12-14 02:13:06 UTC (rev 8250)
@@ -109,14 +109,13 @@
<title>New Features</title>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="feature_requests.xml" encoding="XML"/>
</chapter>
- <chapter>
- <title>
- <remark>NEEDINFO</remark>
- </title>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="need_info.xml"/>
- </chapter>
<!--<chapter>
<title>
+ <remark>NEEDINFO</remark>
+ </title>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="need_info.xml"/>
+</chapter>--><!--<chapter>
+ <title>
<remark>Not Yet Documented</remark>
</title>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="not_documented.xml"/>
Modified: epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/resolved_issues.xml
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/resolved_issues.xml 2011-12-14 01:55:47 UTC (rev 8249)
+++ epp/docs/branches/5.2/Site_Publisher/Release_Notes/en-US/resolved_issues.xml 2011-12-14 02:13:06 UTC (rev 8250)
@@ -1,86 +1,53 @@
-<?xml version='1.0'?>
+<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE variablelist PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-
-
<variablelist>
-
- <!-- https://issues.jboss.org/browse/JBEPP-648 -->
- <varlistentry>
- <term><ulink url="https://issues.jboss.org/browse/JBEPP-648">JBEPP-648</ulink></term>
- <listitem>
-
- <remark>This issue is unassigned!</remark>
-
-
- <remark>JIRA is Closed</remark>
-
-
- <warning>
- <title>Not Public Yet - RHT+eXo</title>
- <para>
- A problem with the search filter returned incorrect query results when filter options "Page" and "Document" were selected. Items of both types were returned independently on the options checked. The fix implements searching on SEO page metadata, which corrects the search result issue.
+<!-- https://issues.jboss.org/browse/JBEPP-648 --> <varlistentry>
+ <term>
+ <ulink url="https://issues.jboss.org/browse/JBEPP-648">JBEPP-648</ulink>
+ </term>
+ <listitem>
+ <remark>This issue is unassigned!</remark>
+ <remark>JIRA is Closed</remark>
+ <para>
+ A problem with the search filter returned incorrect query results when filter options "Page" and "Document" were selected. Items of both types were returned independently on the options checked. The fix implements searching on SEO page metadata, which corrects the search result issue.
</para>
- </warning>
-
- </listitem>
- </varlistentry>
-
- <!-- https://issues.jboss.org/browse/JBEPP-716 -->
- <varlistentry>
- <term><ulink url="https://issues.jboss.org/browse/JBEPP-716">JBEPP-716</ulink></term>
- <listitem>
-
- <remark>Assignee is: hfnukal</remark>
-
-
- <remark>JIRA is Closed</remark>
-
-
- <para>
+ </listitem>
+ </varlistentry>
+<!-- https://issues.jboss.org/browse/JBEPP-716 --> <varlistentry>
+ <term>
+ <ulink url="https://issues.jboss.org/browse/JBEPP-716">JBEPP-716</ulink>
+ </term>
+ <listitem>
+ <remark>Assignee is: hfnukal</remark>
+ <remark>JIRA is Closed</remark>
+ <para>
The Add Node button in Navigation Management (Site or Group) always created a new node at the top level, and not as a child of the selected node. This was counter-intuitive behavior and resulted in manual reordering after a node was created. The fix ensures new nodes are created as children of the selected node.
</para>
-
- </listitem>
- </varlistentry>
-
- <!-- https://issues.jboss.org/browse/JBEPP-949 -->
- <varlistentry>
- <term><ulink url="https://issues.jboss.org/browse/JBEPP-949">JBEPP-949</ulink></term>
- <listitem>
-
- <remark>Assignee is: smumford</remark>
-
-
- <remark>JIRA is Closed</remark>
-
-
- <warning>
- <title>Not Public Yet - RHT+eXo</title>
- <para>
+ </listitem>
+ </varlistentry>
+<!-- https://issues.jboss.org/browse/JBEPP-949 --> <varlistentry>
+ <term>
+ <ulink url="https://issues.jboss.org/browse/JBEPP-949">JBEPP-949</ulink>
+ </term>
+ <listitem>
+ <remark>Assignee is: smumford</remark>
+ <remark>JIRA is Closed</remark>
+ <para>
Broken Link Detection was mentioned in the user documentation as a feature. It was discovered that this feature was disabled by eXo Platform in Site Publisher. The information was removed from the documentation to ensure customers did not attempt to use a feature that no longer exists.
</para>
- </warning>
-
- </listitem>
- </varlistentry>
-
- <!-- https://issues.jboss.org/browse/JBEPP-1154 -->
- <varlistentry>
- <term><ulink url="https://issues.jboss.org/browse/JBEPP-1154">JBEPP-1154</ulink></term>
- <listitem>
-
- <remark>Assignee is: mputz</remark>
-
-
- <remark>JIRA is Closed</remark>
-
-
- <para>
+ </listitem>
+ </varlistentry>
+<!-- https://issues.jboss.org/browse/JBEPP-1154 --> <varlistentry>
+ <term>
+ <ulink url="https://issues.jboss.org/browse/JBEPP-1154">JBEPP-1154</ulink>
+ </term>
+ <listitem>
+ <remark>Assignee is: mputz</remark>
+ <remark>JIRA is Closed</remark>
+ <para>
When an AccessControlException occurred, a stacktrace was logged, however there was no useful information to help identify the root cause of the problem. It was not possible to identify the root cause of the problem from the exception. The AccessControlException now contains details about the cause of the problem.
</para>
-
- </listitem>
- </varlistentry>
-
+ </listitem>
+ </varlistentry>
</variablelist>
Modified: epp/docs/branches/5.2/Site_Publisher/Release_Notes/publican.cfg
===================================================================
--- epp/docs/branches/5.2/Site_Publisher/Release_Notes/publican.cfg 2011-12-14 01:55:47 UTC (rev 8249)
+++ epp/docs/branches/5.2/Site_Publisher/Release_Notes/publican.cfg 2011-12-14 02:13:06 UTC (rev 8250)
@@ -4,7 +4,7 @@
xml_lang: en-US
type: Book
brand: JBoss
-show_remarks: 1
+#show_remarks: 1
cvs_branch: DOCS-RHEL-6
cvs_root: :ext:cvs.devel.redhat.com:/cvs/dist
cvs_pkg: JBoss_Enterprise_Portal_Platform-Site_Publisher_5.2.0_Release_Notes-5.2-web-__LANG__
13 years