gatein SVN: r2320 - portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-03-19 13:23:17 -0400 (Fri, 19 Mar 2010)
New Revision: 2320
Modified:
portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java
Log:
GTNPORTAL-896: handle security responses from the portlet container and log the specific errors to the logs.
Modified: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java
===================================================================
--- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java 2010-03-19 17:18:00 UTC (rev 2319)
+++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java 2010-03-19 17:23:17 UTC (rev 2320)
@@ -49,6 +49,8 @@
import org.gatein.pc.api.invocation.response.ErrorResponse;
import org.gatein.pc.api.invocation.response.HTTPRedirectionResponse;
import org.gatein.pc.api.invocation.response.PortletInvocationResponse;
+import org.gatein.pc.api.invocation.response.SecurityErrorResponse;
+import org.gatein.pc.api.invocation.response.SecurityResponse;
import org.gatein.pc.api.invocation.response.UpdateNavigationalStateResponse;
import javax.portlet.PortletMode;
@@ -141,6 +143,10 @@
{
handleErrorResponse((ErrorResponse)portletResponse);
}
+ else if (portletResponse instanceof SecurityResponse)
+ {
+ handleSecurityResponse((SecurityResponse)portletResponse);
+ }
else
{
throw new Exception("Unexpected response type [" + portletResponse + "]. Expected an UpdateNavigationResponse" +
@@ -246,6 +252,19 @@
{
throw (Exception)response.getCause();
}
+
+ private void handleSecurityResponse(SecurityResponse response) throws Exception
+ {
+ if (response instanceof SecurityErrorResponse)
+ {
+ SecurityErrorResponse securityErrorResponse = (SecurityErrorResponse)response;
+ throw new Exception("SecurityErrorResponse Returned while trying to process portlet action. ", securityErrorResponse.getThrowable());
+ }
+ else
+ {
+ throw new Exception("Security Response of type " + response.getClass() + " encountered while trying to process portlet action.");
+ }
+ }
}
/**
14 years, 9 months
gatein SVN: r2319 - in portal/trunk/webui/portal/src/main/java/org/exoplatform/portal: webui/application and 1 other directory.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-03-19 13:18:00 -0400 (Fri, 19 Mar 2010)
New Revision: 2319
Modified:
portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java
portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
Log:
GTNPORTAL-337: handle query string parameters more directly so that we don't need to depend on the uri encoding of the servlet container. This will fix problems like naming tabs with special characters.
Modified: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java
===================================================================
--- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java 2010-03-19 16:35:56 UTC (rev 2318)
+++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java 2010-03-19 17:18:00 UTC (rev 2319)
@@ -19,8 +19,6 @@
package org.exoplatform.portal.application;
-import com.sun.syndication.feed.atom.Link;
-
import org.exoplatform.Constants;
import org.exoplatform.commons.utils.PortalPrinter;
import org.exoplatform.commons.utils.WriterPrinter;
@@ -40,6 +38,7 @@
import org.exoplatform.webui.application.WebuiRequestContext;
import org.exoplatform.webui.core.UIComponent;
import org.exoplatform.webui.core.lifecycle.HtmlValidator;
+import org.gatein.common.http.QueryStringParser;
import org.w3c.dom.Element;
import javax.xml.transform.OutputKeys;
@@ -54,6 +53,7 @@
import java.io.Writer;
import java.net.URLDecoder;
import java.util.ArrayList;
+import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
@@ -115,6 +115,8 @@
private List<Element> extraMarkupHeaders;
private final PortalURLBuilder urlBuilder;
+
+ private Map<String, String[]> parameterMap;
public JavascriptManager getJavascriptManager()
{
@@ -144,6 +146,17 @@
log.error("Encoding not supported", e);
}
+ // Query parameters from the request will be set in the servlet container url encoding and not
+ // necessarly in utf-8 format. So we need to directly parse the parameters from the query string.
+ parameterMap = new HashMap<String, String[]>();
+ parameterMap.putAll(request_.getParameterMap());
+ String queryString = req.getQueryString();
+ if (queryString != null)
+ {
+ Map<String, String[]> queryParams = QueryStringParser.getInstance().parseQueryString(queryString);
+ parameterMap.putAll(queryParams);
+ }
+
ajaxRequest_ = "true".equals(req.getParameter("ajaxRequest"));
String cache = req.getParameter(CACHE_LEVEL);
if (cache != null)
@@ -248,17 +261,24 @@
public String getRequestParameter(String name)
{
- return request_.getParameter(name);
+ if (parameterMap.get(name) != null && parameterMap.get(name).length > 0)
+ {
+ return parameterMap.get(name)[0];
+ }
+ else
+ {
+ return null;
+ }
}
public String[] getRequestParameterValues(String name)
{
- return request_.getParameterValues(name);
+ return parameterMap.get(name);
}
public Map<String, String[]> getPortletParameters()
{
- Map<String, String[]> unsortedParams = getRequest().getParameterMap();
+ Map<String, String[]> unsortedParams = parameterMap;
Map<String, String[]> sortedParams = new HashMap<String, String[]>();
Set<String> keys = unsortedParams.keySet();
for (String key : keys)
Modified: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
===================================================================
--- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java 2010-03-19 16:35:56 UTC (rev 2318)
+++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java 2010-03-19 17:18:00 UTC (rev 2319)
@@ -644,7 +644,7 @@
I invocation;
HttpServletRequest servletRequest = prc.getRequest();
HashMap<String, String[]> allParams = new HashMap<String, String[]>();
- allParams.putAll(servletRequest.getParameterMap());
+ allParams.putAll(prc.getPortletParameters());
allParams.putAll(this.getPublicParameters());
allParams.remove(ExoPortletInvocationContext.NAVIGATIONAL_STATE_PARAM_NAME);
if (type.equals(ActionInvocation.class))
14 years, 9 months
gatein SVN: r2318 - in components/wsrp/trunk: common/src/main/java/org/gatein/wsrp and 1 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-03-19 12:35:56 -0400 (Fri, 19 Mar 2010)
New Revision: 2318
Modified:
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPRewritingConstants.java
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java
components/wsrp/trunk/pom.xml
Log:
- GTNWSRP-11: Faster implementation based on new partial matching in TextTools. This new implementation
doesn't need to scan the markup several times resulting in less memory used and RenderHandlerTestCase
execution time going from 18+ seconds to around 5.2 seconds.
Modified: components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java
===================================================================
--- components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java 2010-03-19 16:26:02 UTC (rev 2317)
+++ components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java 2010-03-19 16:35:56 UTC (rev 2318)
@@ -126,6 +126,11 @@
public static WSRPPortletURL create(String encodedURL, Set<String> customModes, Set<String> customWindowStates)
{
+ return create(encodedURL, customModes, customWindowStates, false);
+ }
+
+ public static WSRPPortletURL create(String encodedURL, Set<String> customModes, Set<String> customWindowStates, boolean noBoundaries)
+ {
if (log.isDebugEnabled())
{
log.debug("Trying to build a WSRPPortletURL from <" + encodedURL + ">");
@@ -140,61 +145,64 @@
boolean extraAfterEnd = false;
String extra = null;
- // URL needs to start wsrp_rewrite? and end with /wsrp_rewrite in strict validation mode
- if (!encodedURL.startsWith(WSRPRewritingConstants.BEGIN_WSRP_REWRITE))
+ if (!noBoundaries)
{
- throw new IllegalArgumentException(encodedURL + " does not start with " + WSRPRewritingConstants.BEGIN_WSRP_REWRITE);
- }
- if (!encodedURL.endsWith(WSRPRewritingConstants.END_WSRP_REWRITE))
- {
- // first remove prefix only (as suffix is not at the end of the string)
- encodedURL = encodedURL.substring(WSRPRewritingConstants.WSRP_REWRITE_PREFIX_LENGTH);
-
- // end token should be marked by the first / in the URL and extract it
- int endTokenIndex = encodedURL.indexOf('/');
- if (endTokenIndex < 0)
+ // URL needs to start wsrp_rewrite? and end with /wsrp_rewrite in strict validation mode
+ if (!encodedURL.startsWith(WSRPRewritingConstants.BEGIN_WSRP_REWRITE))
{
- throw new IllegalArgumentException(originalURL + " does not contain " + WSRPRewritingConstants.END_WSRP_REWRITE);
+ throw new IllegalArgumentException(encodedURL + " does not start with " + WSRPRewritingConstants.BEGIN_WSRP_REWRITE);
}
+ if (!encodedURL.endsWith(WSRPRewritingConstants.END_WSRP_REWRITE))
+ {
+ // first remove prefix only (as suffix is not at the end of the string)
+ encodedURL = encodedURL.substring(WSRPRewritingConstants.WSRP_REWRITE_PREFIX_LENGTH);
- encodedURL = encodedURL.substring(0, endTokenIndex)
- + encodedURL.substring(endTokenIndex + WSRPRewritingConstants.WSRP_REWRITE_SUFFIX_LENGTH);
+ // end token should be marked by the first / in the URL and extract it
+ int endTokenIndex = encodedURL.indexOf('/');
+ if (endTokenIndex < 0)
+ {
+ throw new IllegalArgumentException(originalURL + " does not contain " + WSRPRewritingConstants.END_WSRP_REWRITE);
+ }
- /*
- we need to deal with the case when a WSRP URL is concatenated to a context path using something similar to:
- renderResponse.encodeURL(renderRequest.getContextPath()) in which case, there should be a slash still present.
- How to process further depends on whether we're in strict mode or not...
- */
- int concatenationIndex = encodedURL.indexOf('/');
+ encodedURL = encodedURL.substring(0, endTokenIndex)
+ + encodedURL.substring(endTokenIndex + WSRPRewritingConstants.WSRP_REWRITE_SUFFIX_LENGTH);
- if (strict && concatenationIndex != endTokenIndex)
- {
- // in strict mode, the only character available after the end token is the concatenating slash
- throw new IllegalArgumentException(encodedURL + " does not end with "
- + WSRPRewritingConstants.END_WSRP_REWRITE + " or does not appear to be a valid concatenation of URLs.");
- }
- else
- {
- // deal with extra characters: this should only happen when the URL is concatenated to form a longer one
- // hence, it should be possible to have param-value pairs followed by a slash '/' then characters.
- // Anything after the slash will be kept as is, uninterpreted.
- if (concatenationIndex != -1)
+ /*
+ we need to deal with the case when a WSRP URL is concatenated to a context path using something similar to:
+ renderResponse.encodeURL(renderRequest.getContextPath()) in which case, there should be a slash still present.
+ How to process further depends on whether we're in strict mode or not...
+ */
+ int concatenationIndex = encodedURL.indexOf('/');
+
+ if (strict && concatenationIndex != endTokenIndex)
{
- String tmp = encodedURL;
- encodedURL = encodedURL.substring(0, concatenationIndex);
- extra = tmp.substring(concatenationIndex);
+ // in strict mode, the only character available after the end token is the concatenating slash
+ throw new IllegalArgumentException(encodedURL + " does not end with "
+ + WSRPRewritingConstants.END_WSRP_REWRITE + " or does not appear to be a valid concatenation of URLs.");
}
+ else
+ {
+ // deal with extra characters: this should only happen when the URL is concatenated to form a longer one
+ // hence, it should be possible to have param-value pairs followed by a slash '/' then characters.
+ // Anything after the slash will be kept as is, uninterpreted.
+ if (concatenationIndex != -1)
+ {
+ String tmp = encodedURL;
+ encodedURL = encodedURL.substring(0, concatenationIndex);
+ extra = tmp.substring(concatenationIndex);
+ }
- // remember that we should position the extra params after the end token
- extraAfterEnd = true;
+ // remember that we should position the extra params after the end token
+ extraAfterEnd = true;
+ }
}
+ else
+ {
+ // remove prefix and suffix
+ encodedURL = encodedURL.substring(WSRPRewritingConstants.WSRP_REWRITE_PREFIX_LENGTH,
+ encodedURL.length() - WSRPRewritingConstants.WSRP_REWRITE_SUFFIX_LENGTH);
+ }
}
- else
- {
- // remove prefix and suffix
- encodedURL = encodedURL.substring(WSRPRewritingConstants.WSRP_REWRITE_PREFIX_LENGTH,
- encodedURL.length() - WSRPRewritingConstants.WSRP_REWRITE_SUFFIX_LENGTH);
- }
// next param should be the url type
if (!encodedURL.startsWith(WSRPRewritingConstants.URL_TYPE_NAME + EQUALS))
Modified: components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPRewritingConstants.java
===================================================================
--- components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPRewritingConstants.java 2010-03-19 16:26:02 UTC (rev 2317)
+++ components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPRewritingConstants.java 2010-03-19 16:35:56 UTC (rev 2318)
@@ -33,13 +33,14 @@
public final class WSRPRewritingConstants
{
- private static final String WSRP_REWRITE = "wsrp_rewrite";
+ public static final String WSRP_REWRITE = "wsrp_rewrite";
+ public static final String BEGIN_WSRP_REWRITE_END = "?";
/**
* 10.2.1 <p>All portlet URLs (i.e. those the Consumer needs to rewrite) are demarcated in the markup by a token
* (wsrp_rewrite) both at the start (with a "?" appended to clearly delimit the start of the name/value pairs).</p>
*/
- public static final String BEGIN_WSRP_REWRITE = WSRP_REWRITE + "?";
+ public static final String BEGIN_WSRP_REWRITE = WSRP_REWRITE + BEGIN_WSRP_REWRITE_END;
public static final int WSRP_REWRITE_PREFIX_LENGTH = 13;
@@ -154,6 +155,7 @@
*/
public static final String SECURE_URL = "wsrp-secureURL";
+ public static final String WSRP_REWRITE_TOKEN_END = "_";
/**
* 10.3.1 Consumer Rewriting (Namespace encoding) <p>The Portlet can prefix the token with "wsrp_rewrite_". The
* Consumer will locate such markers and MUST replace them with a prefix that is unique to this instance of this
@@ -162,7 +164,7 @@
* is legal for at least the JavaScript and VBScript scripting languages and CSS class names. This permits the
* independent testing of most generated markup fragments.</p>
*/
- public static final String WSRP_REWRITE_TOKEN = WSRP_REWRITE + "_";
+ public static final String WSRP_REWRITE_TOKEN = WSRP_REWRITE + WSRP_REWRITE_TOKEN_END;
/** Opening token for URL parameters. See 10.2.2. */
public static final String REWRITE_PARAMETER_OPEN = "{";
@@ -177,9 +179,13 @@
static final String ENC_CLOSE = "%7D";
/* Constants for Resource URL processing todo: remove? */
- public static final String FAKE_RESOURCE_START = "GTN_RES_REW=";
- public static final String FAKE_RESOURCE_REQ_REW = "GTN_REQ_REW";
- public static final String FAKE_RESOURCE_URL = FAKE_RESOURCE_START + "{wsrp-url}" + FAKE_RESOURCE_REQ_REW + "{wsrp-requiresRewrite}";
+ public static final String RESOURCE_URL_DELIMITER = "*";
+ public static final String FAKE_RESOURCE_START = WSRP_REWRITE + RESOURCE_URL_DELIMITER;
+ public static final String FAKE_RESOURCE_REQ_REW = RESOURCE_URL_DELIMITER;
+ public static final String WSRP_URL = REWRITE_PARAMETER_OPEN + RESOURCE_URL + REWRITE_PARAMETER_CLOSE;
+ public static final String WSRP_REQUIRES_REWRITE = REWRITE_PARAMETER_OPEN + RESOURCE_REQUIRES_REWRITE + REWRITE_PARAMETER_CLOSE;
+ public static final String FAKE_RESOURCE_URL = FAKE_RESOURCE_START + WSRP_URL + RESOURCE_URL_DELIMITER +
+ WSRP_REQUIRES_REWRITE + END_WSRP_REWRITE;
public static final String GTNRESOURCE = "gtnresource";
private WSRPRewritingConstants()
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java 2010-03-19 16:26:02 UTC (rev 2317)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java 2010-03-19 16:35:56 UTC (rev 2318)
@@ -63,7 +63,6 @@
{
private static final org.gatein.pc.api.cache.CacheControl DEFAULT_CACHE_CONTROL = new org.gatein.pc.api.cache.CacheControl(0, CacheScope.PRIVATE, null);
- public static final ResourceURLRewriter GENERATOR = new ResourceURLRewriter();
protected RenderHandler(WSRPConsumerImpl consumer)
{
@@ -195,24 +194,8 @@
{
// fix-me: how to deal with fragment header? => interceptor?
- // Replace rewrite token by namespace
- markup = TextTools.replace(markup, WSRPRewritingConstants.WSRP_REWRITE_TOKEN, namespace + '_');
-
- markup = URLTools.replaceURLsBy(markup, GENERATOR);
-
- // replace URL marked for rewriting by proper ones
markup = TextTools.replaceBoundedString(
markup,
- WSRPRewritingConstants.BEGIN_WSRP_REWRITE,
- WSRPRewritingConstants.END_WSRP_REWRITE,
- new OldResourceURLStringReplacementGenerator(context, target, format, consumer.getProducerInfo()),
- true,
- false
- );
-
-/*
- markup = TextTools.replaceBoundedString(
- markup,
WSRPRewritingConstants.WSRP_REWRITE,
WSRPRewritingConstants.END_WSRP_REWRITE,
new ResourceURLStringReplacementGenerator(namespace, context, target, format, consumer.getProducerInfo()),
@@ -220,7 +203,6 @@
false,
true
);
-*/
return markup;
}
@@ -261,47 +243,6 @@
return result;
}
- static class OldResourceURLStringReplacementGenerator implements TextTools.StringReplacementGenerator
- {
- private final PortletInvocationContext context;
- private final URLFormat format;
- private final Set<String> supportedCustomModes;
- private final Set<String> supportedCustomWindowStates;
- private final String serverAddress;
- private final String portletApplicationName;
-
- private OldResourceURLStringReplacementGenerator(PortletInvocationContext context, org.gatein.pc.api.PortletContext target, URLFormat format, ProducerInfo info)
- {
- this.context = context;
- this.format = format;
- supportedCustomModes = info.getSupportedCustomModes();
- supportedCustomWindowStates = info.getSupportedCustomWindowStates();
- serverAddress = info.getEndpointConfigurationInfo().getRemoteHostAddress();
- portletApplicationName = target.getApplicationName();
- }
-
- public String getReplacementFor(String match)
- {
- WSRPPortletURL portletURL = WSRPPortletURL.create(match, supportedCustomModes, supportedCustomWindowStates);
- if (portletURL instanceof WSRPResourceURL)
- {
- WSRPResourceURL resource = (WSRPResourceURL)portletURL;
- String replacement = getResourceURL(match, resource);
-
- // if the URL starts with /, prepend the remote host address and the portlet application name so that we
- // can attempt to create a remotely available URL
- if (replacement.startsWith(URLTools.SLASH))
- {
- replacement = WSRPResourceURL.createAbsoluteURLFrom(replacement, serverAddress, portletApplicationName);
- }
-
- return replacement;
- }
- return context.renderURL(portletURL, format);
- }
- }
-
-/*
static class ResourceURLStringReplacementGenerator implements TextTools.StringReplacementGenerator
{
private final PortletInvocationContext context;
@@ -331,7 +272,6 @@
// we have a resource URL coming from a template so extract URL
int index = match.lastIndexOf(WSRPRewritingConstants.RESOURCE_URL_DELIMITER);
- */
/*
// todo: right now, no need to extract value of require rewrite..
String requireRewriteStr = match.substring(index + URL_DELIMITER_LENGTH);
@@ -340,9 +280,8 @@
{
// FIX-ME: do something
log.debug("Required re-writing but this is not yet implemented...");
- }*//*
+ }*/
-
match = match.substring(URL_DELIMITER_LENGTH, index);
return URLTools.decodeXWWWFormURL(match);
}
@@ -370,7 +309,6 @@
return replacement;
- */
/*
todo: use this code to reactivate primitive use of resources
// get the parsed URL and add marker to it so that the consumer can know it needs to be intercepted
@@ -397,7 +335,7 @@
catch (Exception e)
{
throw new IllegalArgumentException("Cannot parse specified Resource as a URI: " + url);
- }*//*
+ }*/
}
@@ -410,37 +348,7 @@
}
}
}
-*/
- static class ResourceURLRewriter extends URLTools.URLReplacementGenerator
- {
- public String getReplacementFor(int currentIndex, URLTools.URLMatch currentMatch)
- {
- String urlAsString = currentMatch.getURLAsString();
- int beginning = urlAsString.indexOf(WSRPRewritingConstants.FAKE_RESOURCE_START);
- if (beginning != -1)
- {
- int index = urlAsString.lastIndexOf(WSRPRewritingConstants.FAKE_RESOURCE_REQ_REW);
-
- /*String requireRewriteStr = urlAsString.substring(
- index + WSRPRewritingConstants.FAKE_RESOURCE_REQ_REW.length(),
- urlAsString.indexOf(WSRPRewritingConstants.END_WSRP_REWRITE)
- );
- boolean requireRewrite = Boolean.valueOf(requireRewriteStr);
- if (requireRewrite)
- {
- // FIX-ME: do something
- log.debug("Required re-writing but this is not yet implemented...");
- }*/
-
- urlAsString = urlAsString.substring(WSRPRewritingConstants.FAKE_RESOURCE_START.length(), index);
- return URLTools.decodeXWWWFormURL(urlAsString);
- }
-
- return urlAsString;
- }
- }
-
private static String getResourceURL(String urlAsString, WSRPResourceURL resource)
{
String resourceURL = resource.getResourceURL().toExternalForm();
Modified: components/wsrp/trunk/pom.xml
===================================================================
--- components/wsrp/trunk/pom.xml 2010-03-19 16:26:02 UTC (rev 2317)
+++ components/wsrp/trunk/pom.xml 2010-03-19 16:35:56 UTC (rev 2318)
@@ -21,7 +21,8 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -47,7 +48,7 @@
<properties>
<version.gatein.pc>2.1.0-GA</version.gatein.pc>
- <version.gatein.common>2.0.0-GA</version.gatein.common>
+ <version.gatein.common>2.0.1-GA-SNAPSHOT</version.gatein.common>
<version.gatein.wci>2.0.0-GA</version.gatein.wci>
<version.jsf>1.2_12</version.jsf>
14 years, 9 months
gatein SVN: r2317 - in components/wsrp/trunk/consumer/src: test/java/org/gatein/wsrp/consumer and 1 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-03-19 12:26:02 -0400 (Fri, 19 Mar 2010)
New Revision: 2317
Added:
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockEndpointConfigurationInfo.java
Modified:
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ActionHandler.java
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/EndpointConfigurationInfo.java
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/InvocationHandler.java
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/RenderHandlerTestCase.java
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/BehaviorBackedServiceFactory.java
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/TestPortletInvocationContext.java
Log:
- GTNWSRP-11: initial work
+ Re-added ResourceURLRewriter with a slightly improved implementation.
+ Re-worked RenderHandler.processMarkup to make more easily testable.
+ Re-wrote RenderHandlerTestCase to add lots of tests.
- Improved test support classes to help with RenderHandlerTestCase:
+ Added MockEndpoingConfigurationInfo that uses BehaviorBackedServiceFactory to provide a remote host address.
+ Updated and improved TestPortletInvocationContext, in particular to provide an implementation of renderURL.
+ Changed BehaviorBackedServiceFactory.DEFAULT_WSDL_URL to be a valid URL (needed when remote host address is computed).
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ActionHandler.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ActionHandler.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ActionHandler.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -1,6 +1,6 @@
/*
* JBoss, a division of Red Hat
- * Copyright 2009, Red Hat Middleware, LLC, and individual
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
* contributors as indicated by the @authors tag. See the
* copyright.txt in the distribution for a full listing of
* individual contributors.
@@ -70,7 +70,7 @@
*/
public class ActionHandler extends InvocationHandler
{
- public ActionHandler(WSRPConsumerImpl consumer)
+ protected ActionHandler(WSRPConsumerImpl consumer)
{
super(consumer);
}
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/EndpointConfigurationInfo.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/EndpointConfigurationInfo.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/EndpointConfigurationInfo.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -54,7 +54,7 @@
serviceFactory = new SOAPServiceFactory();
}
- EndpointConfigurationInfo(ServiceFactory serviceFactory)
+ protected EndpointConfigurationInfo(ServiceFactory serviceFactory)
{
ParameterValidation.throwIllegalArgExceptionIfNull(serviceFactory, "ServiceFactory");
this.serviceFactory = serviceFactory;
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/InvocationHandler.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/InvocationHandler.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/InvocationHandler.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -62,7 +62,7 @@
private static final int MAXIMUM_RETRY_NUMBER = 3;
- public InvocationHandler(WSRPConsumerImpl consumer)
+ protected InvocationHandler(WSRPConsumerImpl consumer)
{
this.consumer = consumer;
}
@@ -146,7 +146,7 @@
return response;
}
- protected String getNamespaceFrom(WindowContext windowContext)
+ static String getNamespaceFrom(WindowContext windowContext)
{
if (windowContext != null)
{
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/RenderHandler.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -63,8 +63,9 @@
{
private static final org.gatein.pc.api.cache.CacheControl DEFAULT_CACHE_CONTROL = new org.gatein.pc.api.cache.CacheControl(0, CacheScope.PRIVATE, null);
+ public static final ResourceURLRewriter GENERATOR = new ResourceURLRewriter();
- public RenderHandler(WSRPConsumerImpl consumer)
+ protected RenderHandler(WSRPConsumerImpl consumer)
{
super(consumer);
}
@@ -115,7 +116,17 @@
if (markup != null && markup.length() > 0)
{
- markup = processMarkup(markup, invocation, Boolean.TRUE.equals(markupContext.isRequiresUrlRewriting()));
+ if (Boolean.TRUE.equals(markupContext.isRequiresUrlRewriting()))
+ {
+ markup = processMarkup(
+ markup,
+ getNamespaceFrom(invocation.getWindowContext()),
+ invocation.getContext(),
+ invocation.getTarget(),
+ new URLFormat(invocation.getSecurityContext().isSecure(), invocation.getSecurityContext().isAuthenticated(), true, true),
+ consumer
+ );
+ }
}
else
{
@@ -180,30 +191,37 @@
throw new IllegalArgumentException("RenderHandler: Request is not a GetMarkup request!");
}
- private String processMarkup(String markup, PortletInvocation invocation, boolean needsRewriting)
+ static String processMarkup(String markup, String namespace, PortletInvocationContext context, org.gatein.pc.api.PortletContext target, URLFormat format, WSRPConsumer consumer)
{
- if (needsRewriting)
- {
- // fix-me: how to deal with fragment header? => interceptor?
+ // fix-me: how to deal with fragment header? => interceptor?
- // Replace rewrite token by namespace
- String prefix = getNamespaceFrom(invocation.getWindowContext());
- markup = TextTools.replace(markup, WSRPRewritingConstants.WSRP_REWRITE_TOKEN, prefix);
+ // Replace rewrite token by namespace
+ markup = TextTools.replace(markup, WSRPRewritingConstants.WSRP_REWRITE_TOKEN, namespace + '_');
- URLFormat format = new URLFormat(invocation.getSecurityContext().isSecure(),
- invocation.getSecurityContext().isAuthenticated(), true, true);
+ markup = URLTools.replaceURLsBy(markup, GENERATOR);
- // replace URL marked for rewriting by proper ones
- markup = TextTools.replaceBoundedString(
- markup,
- WSRPRewritingConstants.BEGIN_WSRP_REWRITE,
- WSRPRewritingConstants.END_WSRP_REWRITE,
- new ResourceURLStringReplacementGenerator(invocation.getContext(), format, consumer, invocation.getTarget()),
- true,
- false
- );
- }
+ // replace URL marked for rewriting by proper ones
+ markup = TextTools.replaceBoundedString(
+ markup,
+ WSRPRewritingConstants.BEGIN_WSRP_REWRITE,
+ WSRPRewritingConstants.END_WSRP_REWRITE,
+ new OldResourceURLStringReplacementGenerator(context, target, format, consumer.getProducerInfo()),
+ true,
+ false
+ );
+/*
+ markup = TextTools.replaceBoundedString(
+ markup,
+ WSRPRewritingConstants.WSRP_REWRITE,
+ WSRPRewritingConstants.END_WSRP_REWRITE,
+ new ResourceURLStringReplacementGenerator(namespace, context, target, format, consumer.getProducerInfo()),
+ true,
+ false,
+ true
+ );
+*/
+
return markup;
}
@@ -243,7 +261,7 @@
return result;
}
- static class ResourceURLStringReplacementGenerator implements TextTools.StringReplacementGenerator
+ static class OldResourceURLStringReplacementGenerator implements TextTools.StringReplacementGenerator
{
private final PortletInvocationContext context;
private final URLFormat format;
@@ -252,11 +270,10 @@
private final String serverAddress;
private final String portletApplicationName;
- private ResourceURLStringReplacementGenerator(PortletInvocationContext context, URLFormat format, WSRPConsumer consumer, org.gatein.pc.api.PortletContext target)
+ private OldResourceURLStringReplacementGenerator(PortletInvocationContext context, org.gatein.pc.api.PortletContext target, URLFormat format, ProducerInfo info)
{
this.context = context;
this.format = format;
- ProducerInfo info = consumer.getProducerInfo();
supportedCustomModes = info.getSupportedCustomModes();
supportedCustomWindowStates = info.getSupportedCustomWindowStates();
serverAddress = info.getEndpointConfigurationInfo().getRemoteHostAddress();
@@ -265,7 +282,6 @@
public String getReplacementFor(String match)
{
-
WSRPPortletURL portletURL = WSRPPortletURL.create(match, supportedCustomModes, supportedCustomWindowStates);
if (portletURL instanceof WSRPResourceURL)
{
@@ -280,45 +296,159 @@
}
return replacement;
+ }
+ return context.renderURL(portletURL, format);
+ }
+ }
- /*
- todo: use this code to reactivate primitive use of resources
- // get the parsed URL and add marker to it so that the consumer can know it needs to be intercepted
- URL url = resource.getResourceURL();
- String query = url.getQuery();
- if (ParameterValidation.isNullOrEmpty(query))
+/*
+ static class ResourceURLStringReplacementGenerator implements TextTools.StringReplacementGenerator
+ {
+ private final PortletInvocationContext context;
+ private final URLFormat format;
+ private final Set<String> supportedCustomModes;
+ private final Set<String> supportedCustomWindowStates;
+ private final String serverAddress;
+ private final String portletApplicationName;
+ private final String namespace;
+ public static final int URL_DELIMITER_LENGTH = WSRPRewritingConstants.RESOURCE_URL_DELIMITER.length();
+
+ private ResourceURLStringReplacementGenerator(String namespace, PortletInvocationContext context, org.gatein.pc.api.PortletContext target, URLFormat format, ProducerInfo info)
+ {
+ this.namespace = namespace;
+ this.context = context;
+ this.format = format;
+ supportedCustomModes = info.getSupportedCustomModes();
+ supportedCustomWindowStates = info.getSupportedCustomWindowStates();
+ serverAddress = info.getEndpointConfigurationInfo().getRemoteHostAddress();
+ portletApplicationName = target.getApplicationName();
+ }
+
+ public String getReplacementFor(String match, String prefix, String suffix)
+ {
+ if (match.startsWith(WSRPRewritingConstants.RESOURCE_URL_DELIMITER))
+ {
+ // we have a resource URL coming from a template so extract URL
+ int index = match.lastIndexOf(WSRPRewritingConstants.RESOURCE_URL_DELIMITER);
+
+ */
+/*
+ // todo: right now, no need to extract value of require rewrite..
+ String requireRewriteStr = match.substring(index + URL_DELIMITER_LENGTH);
+ boolean requireRewrite = Boolean.valueOf(requireRewriteStr);
+ if (requireRewrite)
{
- query = WSRPRewritingConstants.GTNRESOURCE;
- }
- else
+ // FIX-ME: do something
+ log.debug("Required re-writing but this is not yet implemented...");
+ }*//*
+
+
+ match = match.substring(URL_DELIMITER_LENGTH, index);
+ return URLTools.decodeXWWWFormURL(match);
+ }
+ else if (prefix.equals(match))
+ {
+ return namespace;
+ }
+ else if (match.startsWith(WSRPRewritingConstants.BEGIN_WSRP_REWRITE_END))
+ {
+ // remove end of rewrite token
+ match = match.substring(WSRPRewritingConstants.BEGIN_WSRP_REWRITE_END.length());
+
+ WSRPPortletURL portletURL = WSRPPortletURL.create(match, supportedCustomModes, supportedCustomWindowStates, true);
+ if (portletURL instanceof WSRPResourceURL)
{
- query = "+" + WSRPRewritingConstants.GTNRESOURCE;
+ WSRPResourceURL resource = (WSRPResourceURL)portletURL;
+ String replacement = getResourceURL(match, resource);
+
+ // if the URL starts with /, prepend the remote host address and the portlet application name so that we
+ // can attempt to create a remotely available URL
+ if (replacement.startsWith(URLTools.SLASH))
+ {
+ replacement = WSRPResourceURL.createAbsoluteURLFrom(replacement, serverAddress, portletApplicationName);
+ }
+
+ return replacement;
+
+ */
+/*
+ todo: use this code to reactivate primitive use of resources
+ // get the parsed URL and add marker to it so that the consumer can know it needs to be intercepted
+ URL url = resource.getResourceURL();
+ String query = url.getQuery();
+ if (ParameterValidation.isNullOrEmpty(query))
+ {
+ query = WSRPRewritingConstants.GTNRESOURCE;
+ }
+ else
+ {
+ query = "+" + WSRPRewritingConstants.GTNRESOURCE;
+ }
+
+ try
+ {
+ URI uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(), url.getPort(),
+ url.getPath(), query, url.getRef());
+
+ // set the resulting URI as the new resource ID, must be encoded as it will be used in URLs
+ String s = URLTools.encodeXWWWFormURL(uri.toString());
+ resource.setResourceId(s);
+ }
+ catch (Exception e)
+ {
+ throw new IllegalArgumentException("Cannot parse specified Resource as a URI: " + url);
+ }*//*
+
}
- try
- {
- URI uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(), url.getPort(),
- url.getPath(), query, url.getRef());
+ return context.renderURL(portletURL, format);
+ }
+ else
+ {
+ // match is not something we know how to process
+ return match;
+ }
+ }
+ }
+*/
- // set the resulting URI as the new resource ID, must be encoded as it will be used in URLs
- String s = URLTools.encodeXWWWFormURL(uri.toString());
- resource.setResourceId(s);
- }
- catch (Exception e)
+ static class ResourceURLRewriter extends URLTools.URLReplacementGenerator
+ {
+ public String getReplacementFor(int currentIndex, URLTools.URLMatch currentMatch)
+ {
+ String urlAsString = currentMatch.getURLAsString();
+ int beginning = urlAsString.indexOf(WSRPRewritingConstants.FAKE_RESOURCE_START);
+ if (beginning != -1)
+ {
+ int index = urlAsString.lastIndexOf(WSRPRewritingConstants.FAKE_RESOURCE_REQ_REW);
+
+ /*String requireRewriteStr = urlAsString.substring(
+ index + WSRPRewritingConstants.FAKE_RESOURCE_REQ_REW.length(),
+ urlAsString.indexOf(WSRPRewritingConstants.END_WSRP_REWRITE)
+ );
+ boolean requireRewrite = Boolean.valueOf(requireRewriteStr);
+ if (requireRewrite)
{
- throw new IllegalArgumentException("Cannot parse specified Resource as a URI: " + url);
+ // FIX-ME: do something
+ log.debug("Required re-writing but this is not yet implemented...");
}*/
+
+ urlAsString = urlAsString.substring(WSRPRewritingConstants.FAKE_RESOURCE_START.length(), index);
+ return URLTools.decodeXWWWFormURL(urlAsString);
}
- return context.renderURL(portletURL, format);
+ return urlAsString;
}
}
private static String getResourceURL(String urlAsString, WSRPResourceURL resource)
{
String resourceURL = resource.getResourceURL().toExternalForm();
- log.info("URL '" + urlAsString + "' refers to a resource which are not currently well supported. " +
- "Attempting to craft a URL that we might be able to work with: '" + resourceURL + "'");
+ if (log.isDebugEnabled())
+ {
+ log.debug("URL '" + urlAsString + "' refers to a resource which are not currently well supported. " +
+ "Attempting to craft a URL that we might be able to work with: '" + resourceURL + "'");
+ }
// right now the resourceURL should be output as is, because it will be used directly but it really should be encoded
return resourceURL;
Modified: components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/RenderHandlerTestCase.java
===================================================================
--- components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/RenderHandlerTestCase.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/RenderHandlerTestCase.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -24,23 +24,126 @@
package org.gatein.wsrp.consumer;
import junit.framework.TestCase;
+import org.gatein.common.net.URLTools;
+import org.gatein.pc.api.PortletContext;
+import org.gatein.pc.api.URLFormat;
+import org.gatein.wsrp.WSRPRewritingConstants;
+import org.gatein.wsrp.test.support.MockWSRPConsumer;
+import org.gatein.wsrp.test.support.TestPortletInvocationContext;
/**
- * todo: FIX-ME!
- *
* @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
* @version $Revision: 10507 $
* @since 2.6
*/
public class RenderHandlerTestCase extends TestCase
{
- public void testResourceURLRewriterProcessNonResource()
+ public static final String NAMESPACE = "NAMESPACE";
+ public static final String PORTLETID = "PORTLETID";
+ public static final MockWSRPConsumer CONSUMER = new MockWSRPConsumer("foo");
+ public static final PortletContext PORTLET_CONTEXT = PortletContext.createPortletContext(PORTLETID);
+ public static final TestPortletInvocationContext CONTEXT = new TestPortletInvocationContext();
+ public static final URLFormat FORMAT = new URLFormat(false, false, true, true);
+
+ public void testProcessMarkup()
{
- /*String markup = "<a href=\"/portal/portal/default/Test/EXAMPLE/EXAMPLE?action=1d&windowstate=&mode=" +
+ String markup;
+ String expected;
+ markup = "khlaksdhjflkjhsadljkwsrp_rewrite?wsrp-urlType=blockingAction&wsrp-interactionState=JBPNS_/wsrp_rewrite" +
+ "fadsfadswsrp_rewrite?wsrp-urlType=render&wsrp-navigationalState=JBPNS_/wsrp_rewritefajdshfkjdshgfgrept";
+ expected = "khlaksdhjflkjhsadljkAction is=JBPNS_ ns=null ws=null m=null" +
+ "fadsfadsRender ns=JBPNS_ ws=null m=nullfajdshfkjdshgfgrept";
+ processMarkupAndCheck(markup, expected);
+
+ markup = "<form method='post' action='wsrp_rewrite?wsrp-urlType=blockingAction&wsrp" +
+ "-interactionState=JBPNS_/wsrp_rewrite' id='wsrp_rewrite_portfolioManager'><table><tr><td>Stock symbol</t" +
+ "d><td><input name='symbol'/></td></tr><tr><td><input type='submit' value='Submit'></td></tr></table></form>";
+ expected = "<form method='post' action='Action is=JBPNS_ ns=null ws=null m=null' id='" + NAMESPACE
+ + "_portfolioManager'><table><tr><td>Stock symbol</t" +
+ "d><td><input name='symbol'/></td></tr><tr><td><input type='submit' value='Submit'></td></tr></table></form>";
+ processMarkupAndCheck(markup, expected);
+ }
+
+ public void testResourceURLs()
+ {
+ String markup;
+ String expected;
+ markup = "<img src='wsrp_rewrite?wsrp-urlType=resource&wsrp-url=http%3A%2F%2Flocalhost%3A8080%2Ftest-resource-portlet%2Fgif%2Flogo.gif&wsrp-requiresRewrite=true/wsrp_rewrite'/>";
+ expected = "<img src='http://localhost:8080/test-resource-portlet/gif/logo.gif'/>";
+ processMarkupAndCheck(markup, expected);
+
+ markup = "<img src='http://localhost:8080/test-resourcenoencodeurl-portlet/gif/logo.gif'/>";
+ processMarkupAndCheck(markup, markup);
+
+ markup = "wsrp_rewrite?wsrp-urlType=resource&wsrp-url=http%3A%2F%2Flocalhost%3A8080%2Fhelloworld&wsrp-requiresRewrite=true/wsrp_rewrite/helloworld.jar";
+ processMarkupAndCheck(markup, "http://localhost:8080/helloworld/helloworld.jar");
+
+ markup = "wsrp_rewrite?wsrp-urlType=resource&wsrp-url=http%3A%2F%2Flocalhost%3A8080%2Fhelloworld&wsrp-requiresRewrite=true/wsrp_rewrite&foo=bar/helloworld.jar";
+ processMarkupAndCheck(markup, "http://localhost:8080/helloworld&foo=bar/helloworld.jar");
+ }
+
+ public void testRegularURLIsNotAffected()
+ {
+ String markup;
+ markup = "<a href=\"/portal/portal/default/Test/EXAMPLE/EXAMPLE?action=1d&windowstate=&mode=" +
"&ns=_next%3D%2Fdk%2Fskat%2Fportal%2Ffront%2Fportlets%2Fexample%2Findex.jsp" +
"&is=_action%3D%252Fdk%252Fskat%252Fportal%252Ffront%252Fportlets%252Fexample%252FprocessLink" +
"%26jbpns_2fdefault_2fTest_2fEXAMPLE_2fEXAMPLEsnpbjname%3DChris\">Press to use default name.</a>";
- String result = URLTools.replaceURLsBy(markup, new RenderHandler.WSRPURLRewriter());
- assertEquals(markup, result);*/
+ processMarkupAndCheck(markup, markup);
}
+
+ public void testProcessMarkupResourceFromTemplate()
+ {
+ String url = "http%3a%2f%2fwsrp.netunitysoftware.com%2fWSRPTestService%2fWSRPTestService.asmx%3ftimeout%3d30000%2fgetResource%3fportletHandle%3d781F3EE5-22DF-4ef9-9664-F5FC759065DB%26Function%3dResource%26Name%3dNetUnity%26Type%3dGIF";
+ String markup = "<table cellpadding=\"2\" cellspacing=\"0\" border=\"0\" width=\"100%\">\n" +
+ "\t<tr class=\"portlet-table-header\">\n" +
+ "\t\t<td>Symbol</td>\n" +
+ "\t\t<td>Name</td>\n" +
+ "\t\t<td align=\"right\">Price</td>\n" +
+ "\t\t<td></td>\n" +
+ "\t\t<td align=\"right\">Change</td>\n" +
+ "\t\t<td align=\"right\">% Chg</td>\n" +
+ "\t</tr>\n" +
+ "</table>\n" +
+ "<A HREF=\"http://www.netunitysoftware.com\" TITLE=\"NetUnity WSRP .NET Framework\" >" +
+ "<img src=\"" + getResourceURL(url, false) + "\" border=\"0\" /></A>";
+
+ String expected = "<table cellpadding=\"2\" cellspacing=\"0\" border=\"0\" width=\"100%\">\n" +
+ "\t<tr class=\"portlet-table-header\">\n" +
+ "\t\t<td>Symbol</td>\n" +
+ "\t\t<td>Name</td>\n" +
+ "\t\t<td align=\"right\">Price</td>\n" +
+ "\t\t<td></td>\n" +
+ "\t\t<td align=\"right\">Change</td>\n" +
+ "\t\t<td align=\"right\">% Chg</td>\n" +
+ "\t</tr>\n" +
+ "</table>\n" +
+ "<A HREF=\"http://www.netunitysoftware.com\" TITLE=\"NetUnity WSRP .NET Framework\" >" +
+ "<img src=\"" + URLTools.decodeXWWWFormURL(url) + "\" border=\"0\" /></A>";
+ processMarkupAndCheck(markup, expected);
+ }
+
+ private void processMarkupAndCheck(String markup, String expected)
+ {
+ String result = null;
+ for (int i = 0; i < 100000; i++)
+ {
+ result = RenderHandler.processMarkup(
+ markup,
+ NAMESPACE,
+ CONTEXT,
+ PORTLET_CONTEXT,
+ FORMAT,
+ CONSUMER
+ );
+ }
+ assertEquals(expected, result);
+ }
+
+ private String getResourceURL(String encodedURL, boolean requiresRewrite)
+ {
+ String result = WSRPRewritingConstants.FAKE_RESOURCE_URL.replace(WSRPRewritingConstants.WSRP_URL, encodedURL);
+ result = result.replace(WSRPRewritingConstants.WSRP_REQUIRES_REWRITE, Boolean.toString(requiresRewrite));
+ return result;
+ }
}
Modified: components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/BehaviorBackedServiceFactory.java
===================================================================
--- components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/BehaviorBackedServiceFactory.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/BehaviorBackedServiceFactory.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -1,25 +1,25 @@
-/******************************************************************************
- * JBoss, a division of Red Hat *
- * Copyright 2007, Red Hat Middleware, LLC, and individual *
- * contributors as indicated by the @authors tag. See the *
- * copyright.txt in the distribution for a full listing of *
- * individual contributors. *
- * *
- * This is free software; you can redistribute it and/or modify it *
- * under the terms of the GNU Lesser General Public License as *
- * published by the Free Software Foundation; either version 2.1 of *
- * the License, or (at your option) any later version. *
- * *
- * This software is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
- * Lesser General Public License for more details. *
- * *
- * You should have received a copy of the GNU Lesser General Public *
- * License along with this software; if not, write to the Free *
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
- ******************************************************************************/
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.gatein.wsrp.test.support;
@@ -63,7 +63,7 @@
private final static String R_URL = "r";
private boolean initialized = false;
private String wsdl = DEFAULT_WSDL_URL;
- public static final String DEFAULT_WSDL_URL = "http://example.com?wsdl";
+ public static final String DEFAULT_WSDL_URL = "http://example.com/producer?wsdl";
private int timeout;
Added: components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockEndpointConfigurationInfo.java
===================================================================
--- components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockEndpointConfigurationInfo.java (rev 0)
+++ components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockEndpointConfigurationInfo.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -0,0 +1,38 @@
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.gatein.wsrp.test.support;
+
+import org.gatein.wsrp.consumer.EndpointConfigurationInfo;
+
+/**
+ * @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
+ * @version $Revision$
+ */
+public class MockEndpointConfigurationInfo extends EndpointConfigurationInfo
+{
+ public MockEndpointConfigurationInfo()
+ {
+ super(new BehaviorBackedServiceFactory());
+ }
+}
Modified: components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java
===================================================================
--- components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -1,25 +1,25 @@
-/******************************************************************************
- * JBoss, a division of Red Hat *
- * Copyright 2007, Red Hat Middleware, LLC, and individual *
- * contributors as indicated by the @authors tag. See the *
- * copyright.txt in the distribution for a full listing of *
- * individual contributors. *
- * *
- * This is free software; you can redistribute it and/or modify it *
- * under the terms of the GNU Lesser General Public License as *
- * published by the Free Software Foundation; either version 2.1 of *
- * the License, or (at your option) any later version. *
- * *
- * This software is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
- * Lesser General Public License for more details. *
- * *
- * You should have received a copy of the GNU Lesser General Public *
- * License along with this software; if not, write to the Free *
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
- ******************************************************************************/
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.gatein.wsrp.test.support;
@@ -36,7 +36,6 @@
import org.gatein.wsrp.consumer.ProducerInfo;
import org.gatein.wsrp.consumer.ProducerSessionInformation;
import org.gatein.wsrp.consumer.RefreshResult;
-import org.gatein.wsrp.services.ServiceFactory;
import javax.servlet.http.HttpSession;
import java.util.List;
@@ -55,6 +54,7 @@
{
producerInfo = new ProducerInfo();
producerInfo.setId(id);
+ producerInfo.setEndpointConfigurationInfo(new MockEndpointConfigurationInfo());
}
public String getProducerId()
@@ -62,10 +62,6 @@
return producerInfo.getId();
}
- public void setServiceFactory(ServiceFactory serviceFactory)
- {
- }
-
public ProducerSessionInformation getProducerSessionInformationFrom(PortletInvocation invocation)
{
return null;
Modified: components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/TestPortletInvocationContext.java
===================================================================
--- components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/TestPortletInvocationContext.java 2010-03-19 16:03:50 UTC (rev 2316)
+++ components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/TestPortletInvocationContext.java 2010-03-19 16:26:02 UTC (rev 2317)
@@ -1,32 +1,34 @@
-/******************************************************************************
- * JBoss, a division of Red Hat *
- * Copyright 2006, Red Hat Middleware, LLC, and individual *
- * contributors as indicated by the @authors tag. See the *
- * copyright.txt in the distribution for a full listing of *
- * individual contributors. *
- * *
- * This is free software; you can redistribute it and/or modify it *
- * under the terms of the GNU Lesser General Public License as *
- * published by the Free Software Foundation; either version 2.1 of *
- * the License, or (at your option) any later version. *
- * *
- * This software is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
- * Lesser General Public License for more details. *
- * *
- * You should have received a copy of the GNU Lesser General Public *
- * License along with this software; if not, write to the Free *
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
- ******************************************************************************/
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.gatein.wsrp.test.support;
import org.gatein.common.net.media.MediaType;
import org.gatein.common.util.MarkupInfo;
-import org.gatein.common.util.ParameterMap;
+import org.gatein.pc.api.ActionURL;
import org.gatein.pc.api.ContainerURL;
+import org.gatein.pc.api.RenderURL;
+import org.gatein.pc.api.ResourceURL;
import org.gatein.pc.api.StateString;
import org.gatein.pc.api.URLFormat;
import org.gatein.pc.api.spi.PortletInvocationContext;
@@ -34,9 +36,6 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.InputStream;
/**
* @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
@@ -92,41 +91,25 @@
public String renderURL(ContainerURL containerURL, URLFormat urlFormat)
{
- return null;
- }
+ String result;
+ if (containerURL instanceof ActionURL)
+ {
+ ActionURL actionURL = (ActionURL)containerURL;
+ result = "Action is=" + actionURL.getInteractionState().getStringValue();
+ }
+ else if (containerURL instanceof RenderURL)
+ {
+ result = "Render";
+ }
+ else
+ {
+ result = "Resource id=" + ((ResourceURL)containerURL).getResourceId();
+ }
- public String getCharacterEncoding()
- {
- return null;
- }
+ StateString ns = containerURL.getNavigationalState();
+ result += " ns=" + (ns != null ? ns.getStringValue() : null) + " ws=" + containerURL.getWindowState() + " m="
+ + containerURL.getMode();
- public int getContentLength()
- {
- return 0;
+ return result;
}
-
- public BufferedReader getReader() throws IOException
- {
- return null;
- }
-
- public InputStream getInputStream() throws IOException
- {
- return null;
- }
-
- public String getContentType()
- {
- return null;
- }
-
- public StateString getInteractionState()
- {
- return null;
- }
-
- public ParameterMap getForm()
- {
- return null;
- }
}
14 years, 9 months
gatein SVN: r2316 - portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US.
by do-not-reply@jboss.org
Author: luc.texier(a)jboss.com
Date: 2010-03-19 12:03:50 -0400 (Fri, 19 Mar 2010)
New Revision: 2316
Modified:
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml
Log:
JBEPP-185 fixed install and run section
Modified: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml 2010-03-19 15:53:10 UTC (rev 2315)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml 2010-03-19 16:03:50 UTC (rev 2316)
@@ -376,7 +376,7 @@
</section>
<section id="sect-Release_Notes-Installation_Notes">
- <title>Installation Notes</title>
+ <title>Installing and Running</title>
<para>
You must have adequate disk space to install JDK and &PRODUCT; while also allowing enough space for your applications. You must have a working installation of JDK 1.6.
</para>
@@ -417,35 +417,101 @@
[usr]$ jar -xvf jboss-epp-5.0.0-Beta.zip
</programlisting>
<para>
- You should now have a directory called jboss-epp-5.0. The <varname>JBOSS_HOME</varname> environment variable will now need to be set:
+ You should now have a directory called <varname>jboss-epp-5.0</varname>. The <varname>JBOSS_HOME</varname> environment variable will now need to be set:
</para>
- <formalpara id="form-Release_Notes-Installation_Notes-On_a_Linux_Platform">
+ <formalpara id="form-Release_Notes-Install-On_a_Linux_Platform">
<title>On a Linux Platform</title>
<para>
- Create an environment variable that points to the installation directory (for example, <filename>/jboss/jboss-epp-5.0/jboss-as/</filename>) and name it <varname>JBOSS_HOME</varname>.
+ Create an environment variable that points to the installation directory called <varname>jboss-as</varname> and name it <varname>JBOSS_HOME</varname>.
</para>
</formalpara>
- <para>
+<!--
+<para>
Add <varname>$JBOSS_HOME/bin</varname> to the system path to be able to run the server from the command line. You can do this by adding the following lines to the <filename>.bashrc</filename> file in your home directory.
</para>
-
+-->
<screen>
# In this example /jboss/jboss-epp-5.0/jboss-as/ is the install directory
-export JBOSS_HOME=/jboss/jboss-epp-5.0/jboss-as/
-export PATH=$PATH:$JBOSS_HOME/bin
+JBOSS_HOME=/jboss/jboss-epp-5.0/jboss-as/
+export JBOSS_HOME
</screen>
<para>
Set this variable for the user accounts that will run the server.
</para>
- <formalpara id="form-Release_Notes-Installation_Notes-On_Microsoft_Windows">
+ <formalpara id="form-Release_Notes-Install-On_Microsoft_Windows">
<title>On Microsoft Windows</title>
<para>
- Create an environment variable that points to the installation directory (for example, <filename>C:\Program Files\jboss\jboss-epp-5.0\jboss-as\</filename>) and name it <varname>JBOSS_HOME</varname>.
+ Create an environment variable that points to the installation directory (for example, <filename>C:\jboss\jboss-epp-5.0\jboss-as\</filename>) and name it <varname>JBOSS_HOME</varname>.
</para>
</formalpara>
+<!--
<para>
Add <filename>bin</filename> to the path to be able to run the server from the command line (for example, <filename>C:\Program Files\jboss\jboss-epp-5.0\jboss-as\bin</filename>). To do this, open the <guimenu>Control Panel</guimenu> from the <guimenu>Start Menu</guimenu>, switch to <guimenuitem>Classic View</guimenuitem> if necessary, open the <guimenuitem>System Control Panel</guimenuitem> applet, select the <guimenuitem>Advanced</guimenuitem> Tab, and click on the <guibutton>Environment Variables</guibutton> button.
</para>
+-->
+
+ <para>
+ To start &PRODUCT; run the following commands depending on your environment:
+ </para>
+
+
+ <formalpara id="form-Release_Notes-run-On_a_Linux_Platform">
+ <title>On a Linux Platform</title>
+ <para>
+<screen>
+[usr]:/$ cd $JBOSS_HOME/bin/
+[usr]:~/jboss/jboss-epp-5.0/jboss-as/bin$ ./run.sh
+
+</screen>
+ </para>
+ </formalpara>
+
+
+ <formalpara id="form-Release_Notes-run-On_Microsoft_Windows">
+ <title>On Microsoft Windows</title>
+ <para>
+<screen>
+c:\>cd %JBOSS_HOME%/bin
+c:\jboss\jboss-epp-5.0\jboss-as\bin$ run.bat
+</screen>
+ </para>
+ </formalpara>
+
+
+ <para>
+ The bootstrap sequence should appear as follows:
+ </para>
+
+<screen>
+=========================================================================
+
+ JBoss Bootstrap Environment
+
+ JBOSS_HOME: /jboss/jboss-epp-5.0/jboss-as
+
+ JAVA: /usr/java/jdk1.6.0_18/bin/java
+
+ JAVA_OPTS: -Dprogram.name=run.sh -server -Xms1303m -Xmx1303m -XX:MaxPermSize=256m -Dorg.jboss.resolver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dsun.lang.ClassLoader.allowArraySyntax=true -Djava.net.preferIPv4Stack=true
+
+ CLASSPATH: /jboss/jboss-epp-5.0/jboss-as/bin/run.jar:/usr/java/jdk1.6.0_18/lib/tools.jar
+
+=========================================================================
+
+16:11:21,373 INFO [ServerImpl] Starting JBoss (Microcontainer)...
+16:11:21,374 INFO [ServerImpl] Release ID: JBoss [EAP] 5.0.0.GA (build: SVNTag=JBPAPP_5_0_0_GA date=200910202128)
+...
+[lots of logs here]
+...
+16:13:29,023 INFO [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
+16:13:29,043 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBPAPP_5_0_0_GA date=200910202128)] Started in 0m:24s:396ms
+</screen>
+
+
+
+ <para>
+ You may now point a web browser at <ulink url="http://localhost:8080/portal">http://localhost:8080/portal</ulink>. Enjoy!
+ </para>
+
</section>
<!-- <section id="upgrade">
14 years, 9 months
gatein SVN: r2315 - portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-03-19 11:53:10 -0400 (Fri, 19 Mar 2010)
New Revision: 2315
Modified:
portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java
Log:
GTNPORTAL-596: get the pathInfo from getRequestURI and process the pathInfo from that directly. This will allow us to use UTF-8 encoding instead of relying on what the web container is setup to use.
Modified: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java
===================================================================
--- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java 2010-03-19 15:50:46 UTC (rev 2314)
+++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/application/PortalRequestContext.java 2010-03-19 15:53:10 UTC (rev 2315)
@@ -131,7 +131,7 @@
//The encoding needs to be set before reading any of the parameters since the parameters's encoding
- //is set at the first acces.
+ //is set at the first access.
//TODO use the encoding from the locale-config.xml file
response_.setContentType("text/html; charset=UTF-8");
@@ -152,8 +152,15 @@
}
requestURI_ = URLDecoder.decode(req.getRequestURI(), "UTF-8");
- String pathInfo = req.getPathInfo();
- if (pathInfo == null)
+
+ // req.getPathInfo will already have the encoding set from the server.
+ // We need to use the UTF-8 value since this is how we store the portal name.
+ // Reconstructing the getPathInfo from the non server decoded values.
+ String servletPath = URLDecoder.decode(req.getServletPath(), "UTF-8");
+ String contextPath = URLDecoder.decode(req.getContextPath(), "UTF-8");
+ String pathInfo = requestURI_.substring((servletPath + contextPath).length());
+
+ if (pathInfo == null || pathInfo.isEmpty())
{
pathInfo = "/";
}
14 years, 9 months
gatein SVN: r2314 - in components/common/trunk/common/src: test/java/org/gatein/common and 1 other directory.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-03-19 11:50:46 -0400 (Fri, 19 Mar 2010)
New Revision: 2314
Modified:
components/common/trunk/common/src/main/java/org/gatein/common/text/TextTools.java
components/common/trunk/common/src/test/java/org/gatein/common/StringTestCase.java
Log:
- Rewrote TextTools.replaceBoundedString implementation so that we can also do partial matching in case the suffix is specified as optional.
- Added test cases.
Modified: components/common/trunk/common/src/main/java/org/gatein/common/text/TextTools.java
===================================================================
--- components/common/trunk/common/src/main/java/org/gatein/common/text/TextTools.java 2010-03-19 15:23:35 UTC (rev 2313)
+++ components/common/trunk/common/src/main/java/org/gatein/common/text/TextTools.java 2010-03-19 15:50:46 UTC (rev 2314)
@@ -100,25 +100,45 @@
*/
public static String replaceAllInstancesOfBoundedString(String initial, String prefix, String suffix, String replacement)
{
- return replaceBoundedString(initial, prefix, suffix, replacement, true, false);
+ return replaceBoundedString(initial, prefix, suffix, replacement, true, false, false);
}
+ public static String replaceAllInstancesOfBoundedString(String initial, String prefix, String suffix, StringReplacementGenerator generator)
+ {
+ return replaceBoundedString(initial, prefix, suffix, generator, true, false, false);
+ }
+
public static String replaceBoundedString(String initial, String prefix, String suffix, String replacement,
boolean replaceIfBoundedStringEmpty, boolean keepBoundaries)
{
ParameterValidation.throwIllegalArgExceptionIfNull(replacement, "replacement");
return replaceBoundedString(initial, prefix, suffix, new ConstantStringReplacementGenerator(replacement),
- replaceIfBoundedStringEmpty, keepBoundaries);
+ replaceIfBoundedStringEmpty, keepBoundaries, false);
}
+ public static String replaceBoundedString(String initial, String prefix, String suffix, String replacement,
+ boolean replaceIfBoundedStringEmpty, boolean keepBoundaries, boolean suffixIsOptional)
+ {
+ ParameterValidation.throwIllegalArgExceptionIfNull(replacement, "replacement");
+ return replaceBoundedString(initial, prefix, suffix, new ConstantStringReplacementGenerator(replacement),
+ replaceIfBoundedStringEmpty, keepBoundaries, suffixIsOptional);
+ }
+
+ public static String replaceBoundedString(String initial, String prefix, String suffix, StringReplacementGenerator generator,
+ boolean replaceIfBoundedStringEmpty, boolean keepBoundaries)
+ {
+ return replaceBoundedString(initial, prefix, suffix, generator, replaceIfBoundedStringEmpty, keepBoundaries, false);
+ }
+
/**
* Replace instances of Strings delimited by the given prefix and suffix (hence, bounded) by a replacement String
* computed by the specified StringReplacementGenerator based on the current bounded String match. It is possible to
* specify whether the substitution will happen only if the delimited String is non-empty by setting
* <code>replaceIfBoundedStringEmpty</code> to <code>false</code>. It is also possible to keep the boundaries (prefix
- * and suffix) after the substitution by setting <code>keepBoundaries</code> to <code>true</code>.
- * <p/>
- * See org.gatein.common.StringTestCase.testReplaceBoundedString() for usage details.
+ * and suffix) after the substitution by setting <code>keepBoundaries</code> to <code>true</code>. <br/> Note that it
+ * is possible to specify that the suffix is optional, in which case, the prefix will be passed on to the specified
+ * StringReplacementGenerator and be replaced. <br/> See org.gatein.common.StringTestCase.testReplaceBoundedString()
+ * for usage details.
*
* @param initial the String in which we want to replace bounded Strings
* @param prefix the prefix used identify the beginning of the String targeted for replacement
@@ -129,10 +149,11 @@
* of the replacement String between the prefix and suffix)
* @param keepBoundaries <code>true</code> to keep the prefix and suffix markers in the resulting
* String
+ * @param suffixIsOptional whether or not the suffix is optional
* @return a String where the Strings marked by prefix and suffix have been replaced by replacement
*/
- public static String replaceBoundedString(String initial, String prefix, String suffix, StringReplacementGenerator generator,
- boolean replaceIfBoundedStringEmpty, boolean keepBoundaries)
+ public static String replaceBoundedString(final String initial, final String prefix, final String suffix, final StringReplacementGenerator generator,
+ final boolean replaceIfBoundedStringEmpty, final boolean keepBoundaries, final boolean suffixIsOptional)
{
if (ParameterValidation.isNullOrEmpty(initial))
{
@@ -142,39 +163,110 @@
ParameterValidation.throwIllegalArgExceptionIfNull(generator, "StringReplacementGenerator");
ParameterValidation.throwIllegalArgExceptionIfNullOrEmpty(prefix, "prefix", "Tools.replaceBoundedString");
- ParameterValidation.throwIllegalArgExceptionIfNullOrEmpty(suffix, "suffix", "Tools.replaceBoundedString");
- StringBuffer tmp = new StringBuffer(initial);
+ StringBuilder tmp = new StringBuilder(initial);
int prefixIndex = tmp.indexOf(prefix);
- int suffixLength = suffix.length();
- int prefixLength = prefix.length();
+ final int prefixLength = prefix.length();
+ boolean suffixAbsent = suffix == null;
+ // nothing to do if didn't ask for an optional suffix and we have one and it's not present in our string
+ if (!suffixIsOptional && suffix != null && tmp.indexOf(suffix) == -1)
+ {
+ return initial;
+ }
+
+ // loop as long as we can find an instance of prefix in the String
while (prefixIndex != -1)
{
- int suffixIndex = tmp.indexOf(suffix, prefixIndex);
+ int suffixIndex;
+ if (suffixAbsent)
+ {
+ // replace prefix with replacement
+ if (keepBoundaries)
+ {
+ // just insert replacement for prefix
+ tmp.insert(prefixIndex + prefixLength, generator.getReplacementFor(prefix, prefix, suffix));
+ }
+ else
+ {
+ // delete prefix then insert remplacement instead
+ tmp.delete(prefixIndex, prefixIndex + prefixLength);
+ tmp.insert(prefixIndex, generator.getReplacementFor(prefix, prefix, suffix));
+ }
- if (suffixIndex != -1)
+ // new lookup starting position
+ prefixIndex = tmp.indexOf(prefix, prefixIndex + prefixLength);
+ }
+ else
{
- // we don't care about empty bounded strings or prefix and suffix don't delimit an empty String => replace!
- if (replaceIfBoundedStringEmpty || suffixIndex != prefixIndex + prefixLength)
+ // look for suffix
+ suffixIndex = tmp.indexOf(suffix, prefixIndex);
+
+ if (suffixIndex == -1)
{
- String match;
- if (keepBoundaries)
+ // we haven't found suffix in the rest of the String so don't look for it again
+ suffixAbsent = true;
+ continue;
+ }
+ else
+ {
+ if (suffixIsOptional)
{
- match = tmp.substring(prefixIndex + prefixLength, suffixIndex);
- tmp.delete(prefixIndex + prefixLength, suffixIndex);
- tmp.insert(prefixIndex + prefixLength, generator.getReplacementFor(match));
+ // if suffix is optional, look for potential next prefix instance that we'd need to replace
+ int nextPrefixIndex = tmp.indexOf(prefix, prefixIndex + prefixLength);
+
+ if (nextPrefixIndex != -1 && nextPrefixIndex <= suffixIndex)
+ {
+ // we've found an in-between prefix, use it as the suffix for the current match
+ // delete prefix then insert remplacement instead
+ tmp.delete(prefixIndex, prefixIndex + prefixLength);
+ String replacement = generator.getReplacementFor(prefix, prefix, suffix);
+ tmp.insert(prefixIndex, replacement);
+
+ prefixIndex = nextPrefixIndex - prefixLength + replacement.length();
+ continue;
+ }
}
- else
+
+ // we don't care about empty bounded strings or prefix and suffix don't delimit an empty String => replace!
+ if (replaceIfBoundedStringEmpty || suffixIndex != prefixIndex + prefixLength)
{
- match = tmp.substring(prefixIndex, suffixIndex + suffixLength);
- tmp.delete(prefixIndex, suffixIndex + suffixLength);
- tmp.insert(prefixIndex, generator.getReplacementFor(match));
+ String match = tmp.substring(prefixIndex + prefixLength, suffixIndex);
+ if (keepBoundaries)
+ {
+ if (suffix != null)
+ {
+ // delete only match
+ tmp.delete(prefixIndex + prefixLength, suffixIndex);
+ }
+ else
+ {
+ // delete nothing
+ }
+ tmp.insert(prefixIndex + prefixLength, generator.getReplacementFor(match, prefix, suffix));
+ }
+ else
+ {
+ int suffixLength = suffix != null ? suffix.length() : 0;
+
+ if (suffix != null)
+ {
+ // if we have a suffix, delete everything between start of prefix and end of suffix
+ tmp.delete(prefixIndex, suffixIndex + suffixLength);
+ }
+ else
+ {
+ // only delete prefix
+ tmp.delete(prefixIndex, prefixIndex + prefixLength);
+ }
+ tmp.insert(prefixIndex, generator.getReplacementFor(match, prefix, suffix));
+ }
}
}
+
+ prefixIndex = tmp.indexOf(prefix, prefixIndex + prefixLength);
+
}
-
- prefixIndex = tmp.indexOf(prefix, prefixIndex + prefixLength);
}
return tmp.toString();
@@ -182,7 +274,7 @@
public static interface StringReplacementGenerator
{
- String getReplacementFor(String match);
+ String getReplacementFor(String match, String prefix, String suffix);
}
public static class ConstantStringReplacementGenerator implements StringReplacementGenerator
@@ -194,7 +286,7 @@
this.replacement = replacement;
}
- public String getReplacementFor(String match)
+ public String getReplacementFor(String match, String prefix, String suffix)
{
return replacement;
}
Modified: components/common/trunk/common/src/test/java/org/gatein/common/StringTestCase.java
===================================================================
--- components/common/trunk/common/src/test/java/org/gatein/common/StringTestCase.java 2010-03-19 15:23:35 UTC (rev 2313)
+++ components/common/trunk/common/src/test/java/org/gatein/common/StringTestCase.java 2010-03-19 15:50:46 UTC (rev 2314)
@@ -31,6 +31,10 @@
*/
public class StringTestCase extends TestCase
{
+ private static final String REPLACEMENT = "REPLACEMENT";
+ private static final String PREFIX = "PREFIX";
+ private static final String SUFFIX = "SUF";
+ private static final TestStringReplacementGenerator DEF_GEN = new TestStringReplacementGenerator(REPLACEMENT);
public StringTestCase(String name)
{
@@ -46,15 +50,102 @@
assertEquals("_defg_defg_", TextTools.replace("_abc_abc_", "abc", "defg"));
}
- public void testReplaceBoundedString()
+ public void testReplaceAllInstancesOfBoundedString()
{
- assertEquals("", TextTools.replaceAllInstancesOfBoundedString("", "PREFIX", "SUFFIX", "REPLACEMENT"));
- assertEquals("REPLACEMENT", TextTools.replaceAllInstancesOfBoundedString("PREFIXSUFFIX", "PREFIX", "SUFFIX", "REPLACEMENT"));
- assertEquals("PREFIXSUFFIX", TextTools.replaceBoundedString("PREFIXSUFFIX", "PREFIX", "SUFFIX", "REPLACEMENT", false, true));
- assertEquals("PREFIXSUFFIX", TextTools.replaceBoundedString("PREFIXSUFFIX", "PREFIX", "SUFFIX", "REPLACEMENT", false, false));
- assertEquals("aaaaREPLACEMENTccccc", TextTools.replaceAllInstancesOfBoundedString("aaaaPREFIXbbbbbSUFFIXccccc", "PREFIX", "SUFFIX", "REPLACEMENT"));
- assertEquals("aaaPREFIXbbbbSUFF", TextTools.replaceAllInstancesOfBoundedString("aaaPREFIXbbbbSUFF", "PREFIX", "SUFFIX", "REPLACEMENT"));
+ assertEquals("", TextTools.replaceAllInstancesOfBoundedString("", PREFIX, SUFFIX, REPLACEMENT));
+ assertEquals("", TextTools.replaceAllInstancesOfBoundedString("", PREFIX, "", REPLACEMENT));
+ assertEquals("", TextTools.replaceAllInstancesOfBoundedString("", "", "", REPLACEMENT));
+
+ DEF_GEN.setExpectedMatch("");
+ assertEquals(REPLACEMENT, TextTools.replaceAllInstancesOfBoundedString("PREFIXSUF", PREFIX, SUFFIX, DEF_GEN));
+
+ DEF_GEN.setExpectedMatch("bbbbb");
+ assertEquals("aaaaREPLACEMENTccccc", TextTools.replaceAllInstancesOfBoundedString("aaaaPREFIXbbbbbSUFccccc", PREFIX, SUFFIX, DEF_GEN));
+
+ DEF_GEN.setExpectedMatch(null);
+ assertEquals("aaaPREFIXbbbbSUFF", TextTools.replaceAllInstancesOfBoundedString("aaaPREFIXbbbbSUFF", PREFIX, "SUFFI", DEF_GEN));
assertEquals("aRcccReeeR", TextTools.replaceAllInstancesOfBoundedString("aPbbScccPdSeeePS", "P", "S", "R"));
- assertEquals("PSaPScccReeePS", TextTools.replaceBoundedString("PSaPScccPdSeeePS", "P", "S", "R", false, false));
}
+
+ public void testReplaceBoundedString()
+ {
+ replaceBoundedString(false);
+ replaceBoundedString(true);
+ }
+
+ private void replaceBoundedString(boolean suffixIsOptional)
+ {
+ buildTestWithDefaults(PREFIX + SUFFIX, PREFIX + SUFFIX, false, true, suffixIsOptional, "");
+ buildTestWithDefaults(PREFIX + SUFFIX, PREFIX + SUFFIX, false, false, suffixIsOptional, "");
+ buildTestWithDefaults(REPLACEMENT, PREFIX + SUFFIX, true, false, suffixIsOptional, "");
+ buildTestWithDefaults(PREFIX + REPLACEMENT + SUFFIX, PREFIX + SUFFIX, true, true, suffixIsOptional, "");
+ buildTest(PREFIX + SUFFIX, PREFIX + SUFFIX, "", PREFIX, SUFFIX, false, false, suffixIsOptional, "");
+ buildTest("PSaPScccReeePS", "PSaPScccPdSeeePS", "R", "P", "S", false, false, suffixIsOptional, "d");
+ }
+
+ private void buildTestWithDefaults(String expected, String initial, boolean replaceIfBoundedStringEmpty, boolean keepBoundaries, boolean suffixIsOptional, String... expectedMatches)
+ {
+ buildTest(expected, initial, null, PREFIX, SUFFIX, replaceIfBoundedStringEmpty, keepBoundaries, suffixIsOptional, expectedMatches);
+ }
+
+ private void buildTest(String expected, String initial, String replacement, String prefix, String suffix, boolean replaceIfBoundedStringEmpty, boolean keepBoundaries, boolean suffixIsOptional, String... expectedMatches)
+ {
+ if (replacement == null)
+ {
+ replacement = REPLACEMENT;
+ }
+ TestStringReplacementGenerator gen = new TestStringReplacementGenerator(replacement);
+ gen.setExpectedMatch(expectedMatches);
+
+ assertEquals(expected, TextTools.replaceBoundedString(initial, prefix, suffix, gen, replaceIfBoundedStringEmpty, keepBoundaries, suffixIsOptional));
+ }
+
+ public void testReplaceStringsWithNullSuffix()
+ {
+ replaceStringsWithOptionalSuffix(false, null);
+ replaceStringsWithOptionalSuffix(true, null);
+ }
+
+ private void replaceStringsWithOptionalSuffix(boolean suffixIsOptional, String suffix)
+ {
+ buildTest(REPLACEMENT + "blah", PREFIX + "blah", REPLACEMENT, PREFIX, suffix, false, false, suffixIsOptional, PREFIX);
+ buildTest(PREFIX + REPLACEMENT + "blah", PREFIX + "blah", REPLACEMENT, PREFIX, suffix, false, true, suffixIsOptional, PREFIX);
+ buildTest(REPLACEMENT + "blah", PREFIX + "blah", REPLACEMENT, PREFIX, suffix, true, false, suffixIsOptional, PREFIX);
+ buildTest(REPLACEMENT, PREFIX, REPLACEMENT, PREFIX, suffix, true, false, suffixIsOptional, PREFIX);
+ }
+
+ public void testReplaceStringsWithOptionalSuffix()
+ {
+ replaceStringsWithOptionalSuffix(true, SUFFIX);
+ buildTest(REPLACEMENT + "blah" + REPLACEMENT + "foo", PREFIX + "blah" + PREFIX + "replaced" + SUFFIX + "foo", REPLACEMENT, PREFIX, SUFFIX, false, false, true, PREFIX, "replaced");
+ buildTest(REPLACEMENT + "blah" + PREFIX + REPLACEMENT + SUFFIX + "foo", PREFIX + "blah" + PREFIX + "replaced" + SUFFIX + "foo", REPLACEMENT, PREFIX, SUFFIX, false, true, true, PREFIX, "replaced");
+ }
+
+ static class TestStringReplacementGenerator implements TextTools.StringReplacementGenerator
+ {
+ private String replacement;
+ private String[] expectedMatch;
+ private int invocationCount;
+
+ TestStringReplacementGenerator(String replacement)
+ {
+ this.replacement = replacement;
+ }
+
+ public void setExpectedMatch(String... expectedMatch)
+ {
+ this.expectedMatch = expectedMatch;
+ this.invocationCount = 0;
+ }
+
+ public String getReplacementFor(String match, String prefix, String suffix)
+ {
+ if (expectedMatch == null)
+ {
+ fail("getReplacementFor shouldn't have been called");
+ }
+ assertEquals("'" + expectedMatch[invocationCount++] + "'", "'" + match + "'");
+ return replacement;
+ }
+ }
}
14 years, 9 months
gatein SVN: r2313 - portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/configuration.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-03-19 11:23:35 -0400 (Fri, 19 Mar 2010)
New Revision: 2313
Modified:
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/configuration/Database_Configuration.xml
Log:
Modifiying Database configuration process for EPP
Modified: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/configuration/Database_Configuration.xml
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/configuration/Database_Configuration.xml 2010-03-19 15:10:25 UTC (rev 2312)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Reference_Guide/en-US/modules/configuration/Database_Configuration.xml 2010-03-19 15:23:35 UTC (rev 2313)
@@ -31,54 +31,48 @@
<title>Configuring the database for JCR</title>
<para>To configure the database used by JCR you will need to edit the
- file:<programlisting>$JBOSS_HOME/server/default/conf/gatein/configuration.properties</programlisting></para>
+ datasource descriptor located at
+ $JBOSS_HOME/server/default/deploy/gatein-ds.xml:<programlisting><no-tx-datasource>
+ <jndi-name>gatein-jcr</jndi-name>
+ <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}gatein${/}hypersonic${/}gatein-jcr-localDB</connection-url>
+ <driver-class>org.hsqldb.jdbcDriver</driver-class>
+ <user-name>sa</user-name>
+ <password></password>
- <para>For Tomcat, the file is located at <programlisting>$TOMCAT_HOME/gatein/conf/configuration.properties</programlisting></para>
+ <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></programlisting></para>
- <para>And edit the values of driver, url, username and password with the
- values for your JDBC connection (Please refer to your database JDBC driver
- documentation).</para>
+ <para>And edit the values of driver-class, connection-url, usern-ame and
+ password with the values for your database (Please refer to your database
+ JDBC driver documentation).</para>
- <programlisting role="XML">gatein.jcr.datasource.driver=org.hsqldb.jdbcDriver
-gatein.jcr.datasource.url=jdbc:hsqldb:file:${gatein.db.data.dir}/data/jdbcjcr_${name}
-gatein.jcr.datasource.username=sa
-gatein.jcr.datasource.password=
-</programlisting>
-
- <para>In that case, the name of the database is "jdbcjcr_${name}", ${name}
- should be part of the database name, as it is dynamically replaced by the
- name of the portal container extension (for instance
- gatein-sample-portal.ear defines "sample-portal" as container name and the
- default portal defines "portal" as container name).</para>
-
<para>In the case of HSQL the databases are created automatically, for any
- other database you will need to create a database named jdbcjcr_portal
- (and "jdbcjcr_sample-portal" if you kept gatein-sample-portal.ear in
- $JBOSS_HOME/server/default/deploy. Note that some database wont accept '-'
- in a database name and you will have to delete
- $JBOSS_HOME/server/default/deploy/gatein-sample-portal.ear)</para>
+ other database you will need to create a database.</para>
- <para>Make sure the user has rights to create tables on jdbcjcr_portal and
+ <para>Make sure the user has rights to create tables on the database and
to update them as during the first startup they will be automatically
created.</para>
<para>Also add the JDBC driver into the classpath, for instance in
- $JBOSS_HOME/server/default/lib (or $TOMCAT_HOME/lib if you are running on
- Tomcat)</para>
+ $JBOSS_HOME/server/default/lib</para>
<para>MySQL example:</para>
<para>Let's configure our JCR to store data in MySQL, let's pretend we
have a user named "gateinuser" with a password "gateinpassword". We would
- create a database "mygateindb_portal" (Remember that _portal is required)
- and assign him the rights to create tables.</para>
+ create a database "mygateindb" and assign him the rights to create
+ tables.</para>
<para>Then we need to add the MySQL JDBC connector in the classpath and
- finally edit gatein.ear/02portal.war/WEB-INF/conf/jcr/jcr-configuration
- with:<programlisting>gatein.jcr.datasource.driver=com.mysql.jdbc.Driver
-gatein.jcr.datasource.url=jdbc:mysql://localhost:3306/mygateindb${container.name.suffix}
-gatein.jcr.datasource.username=gateinuser
-gatein.jcr.datasource.password=gateinpassword
+ finally edit
+ $JBOSS_HOME/server/default/deploy/gatein-ds.xml:<programlisting><jndi-name>gatein-jcr</jndi-name>
+<connection-url>jdbc:mysql://localhost:3306/mygateindb${container.name.suffix}</connection-url>
+<driver-class>com.mysql.jdbc.Driver</driver-class>
+<user-name>gateinuser</user-name>
+<password>gateinpassword</password>
</programlisting></para>
</section>
@@ -88,13 +82,25 @@
<para>By default users are stored in database. To change the database to
store users, you will need to edit the file:</para>
- <para><programlisting>$JBOSS_HOME/server/default/conf/gatein/configuration.properties</programlisting>For
- Tomcat, the file is located at <programlisting>$TOMCAT_HOME/gatein/conf/configuration.properties</programlisting></para>
+ <para><programlisting>$JBOSS_HOME/server/default/deploy/gatein-ds.xml</programlisting></para>
- <para>You will find the same configuration as in
- jcr-configuration.xml:<programlisting>gatein.idm.datasource.driver=org.hsqldb.jdbcDriver
-gatein.idm.datasource.url=jdbc:hsqldb:file:${gatein.db.data.dir}/data/jdbcidm_${name}
-gatein.idm.datasource.username=sa
-gatein.idm.datasource.password</programlisting></para>
+ <para>You will find the same kind of configuration as For JCR:</para>
+
+ <para><programlisting> <no-tx-datasource>
+ <jndi-name>gatein-jcr</jndi-name>
+ <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}gatein${/}hypersonic${/}gatein-jcr-localDB</connection-url>
+ <driver-class>org.hsqldb.jdbcDriver</driver-class>
+ <user-name>sa</user-name>
+ <password></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>
+</programlisting></para>
+
+ <para>More information about setting up datasources can be found in the
+ Enterprise Application Platform documentation.</para>
</section>
</section>
14 years, 9 months
gatein SVN: r2312 - in portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes: en-US and 3 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-03-19 11:10:25 -0400 (Fri, 19 Mar 2010)
New Revision: 2312
Added:
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Conventions.xml
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Legal_Notice.xml
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/css/
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/css/overrides.css
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/1.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/1.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/10.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/10.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/11.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/11.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/12.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/12.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/13.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/13.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/14.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/14.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/15.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/15.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/16.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/16.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/17.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/17.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/18.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/18.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/19.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/19.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/2.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/2.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/20.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/20.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/21.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/21.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/22.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/22.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/23.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/23.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/3.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/3.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/4.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/4.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/5.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/5.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/6.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/6.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/7.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/7.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/8.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/8.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/9.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/9.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/bkgrnd_greydots.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/bullet_arrowblue.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/documentation.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/dot.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/dot2.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/h1-bg.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/image_left.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/image_right.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/important.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/important.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/jboss-logo.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/note.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/note.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/redhat-logo.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/rhlogo.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/shade.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-back.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-forward.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-up.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-home.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/title_logo.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/title_logo.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/warning.png
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/warning.svg
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/pom.xml
Log:
Adding Files so that we can build with Maven (For testing only)
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Conventions.xml
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Conventions.xml (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Conventions.xml 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,168 @@
+<?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" [
+]>
+<section id="sect-User_Guide-Document_Conventions">
+ <title>Document Conventions</title>
+ <para>
+ This manual uses several conventions to highlight certain words and phrases and draw attention to specific pieces of information.
+ </para>
+ <para>
+ In PDF and paper editions, this manual uses typefaces drawn from the <ulink url="https://fedorahosted.org/liberation-fonts/">Liberation Fonts</ulink> set. The Liberation Fonts set is also used in HTML editions if the set is installed on your system. If not, alternative but equivalent typefaces are displayed. Note: Red Hat Enterprise Linux 5 and later includes the Liberation Fonts set by default.
+ </para>
+ <section id="sect-User_Guide-Document_Conventions-Typographic_Conventions">
+ <title>Typographic Conventions</title>
+ <para>
+ Four typographic conventions are used to call attention to specific words and phrases. These conventions, and the circumstances they apply to, are as follows.
+ </para>
+ <para>
+ <literal>Mono-spaced Bold</literal>
+ </para>
+ <para>
+ Used to highlight system input, including shell commands, file names and paths. Also used to highlight keycaps and key combinations. For example:
+ </para>
+ <blockquote>
+ <para>
+ To see the contents of the file <filename>my_next_bestselling_novel</filename> in your current working directory, enter the <command>cat my_next_bestselling_novel</command> command at the shell prompt and press <keycap>Enter</keycap> to execute the command.
+ </para>
+ </blockquote>
+ <para>
+ The above includes a file name, a shell command and a keycap, all presented in mono-spaced bold and all distinguishable thanks to context.
+ </para>
+ <para>
+ Key combinations can be distinguished from keycaps by the hyphen connecting each part of a key combination. For example:
+ </para>
+ <blockquote>
+ <para>
+ Press <keycap>Enter</keycap> to execute the command.
+ </para>
+ <para>
+ Press <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>F1</keycap></keycombo> to switch to the first virtual terminal. Press <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>F7</keycap></keycombo> to return to your X-Windows session.
+ </para>
+ </blockquote>
+ <para>
+ The first paragraph highlights the particular keycap to press. The second highlights two key combinations (each a set of three keycaps with each set pressed simultaneously).
+ </para>
+ <para>
+ If source code is discussed, class names, methods, functions, variable names and returned values mentioned within a paragraph will be presented as above, in <literal>mono-spaced bold</literal>. For example:
+ </para>
+ <blockquote>
+ <para>
+ File-related classes include <classname>filesystem</classname> for file systems, <classname>file</classname> for files, and <classname>dir</classname> for directories. Each class has its own associated set of permissions.
+ </para>
+ </blockquote>
+ <para>
+ <application>Proportional Bold</application>
+ </para>
+ <para>
+ This denotes words or phrases encountered on a system, including application names; dialog box text; labeled buttons; check-box and radio button labels; menu titles and sub-menu titles. For example:
+ </para>
+ <blockquote>
+ <para>
+ Choose <guimenu>System > Preferences > Mouse</guimenu> from the main menu bar to launch <application>Mouse Preferences</application>. In the <guilabel>Buttons</guilabel> tab, click the <guilabel>Left-handed mouse</guilabel> check box and click <guibutton>Close</guibutton> to switch the primary mouse button from the left to the right (making the mouse suitable for use in the left hand).
+ </para>
+ <para>
+ To insert a special character into a <application>gedit</application> file, choose <guimenu>Applications > Accessories > Character Map</guimenu> from the main menu bar. Next, choose <guimenu>Search > Find…</guimenu> from the <application>Character Map</application> menu bar, type the name of the character in the <guilabel>Search</guilabel> field and click <guibutton>Next</guibutton>. The character you sought will be highlighted in the <guilabel>Character Table</guilabel>. Double-click this highlighted character to place it in the <guilabel>Text to copy</guilabel> field and then click the <guibutton>Copy</guibutton> button. Now switch back to your document and choose <guimenu>Edit > Paste</guimenu> from the <application>gedit</application> menu bar.
+ </para>
+ </blockquote>
+ <para>
+ The above text includes application names; system-wide menu names and items; application-specific menu names; and buttons and text found within a GUI interface, all presented in proportional bold and all distinguishable by context.
+ </para>
+ <para>
+ Note the <guimenu>></guimenu> shorthand used to indicate traversal through a menu and its sub-menus. This avoids difficult-to-follow phrasing such as 'Select <guimenuitem>Mouse</guimenuitem> from the <guimenu>Preferences</guimenu> sub-menu in the <guimenu>System</guimenu> menu of the main menu bar'.
+ </para>
+ <para>
+ <command><replaceable>Mono-spaced Bold Italic</replaceable></command> or <application><replaceable>Proportional Bold Italic</replaceable></application>
+ </para>
+ <para>
+ Whether mono-spaced bold or proportional bold, the addition of italics indicates replaceable or variable text. Italics denotes text you do not input literally or displayed text that changes depending on circumstance. For example:
+ </para>
+ <blockquote>
+ <para>
+ To connect to a remote machine using ssh, type <command>ssh <replaceable>username</replaceable>@<replaceable>domain.name</replaceable></command> at a shell prompt. If the remote machine is <filename>example.com</filename> and your username on that machine is john, type <command>ssh john(a)example.com</command>.
+ </para>
+ <para>
+ The <command>mount -o remount <replaceable>file-system</replaceable></command> command remounts the named file system. For example, to remount the <filename>/home</filename> file system, the command is <command>mount -o remount /home</command>.
+ </para>
+ <para>
+ To see the version of a currently installed package, use the <command>rpm -q <replaceable>package</replaceable></command> command. It will return a result as follows: <command><replaceable>package-version-release</replaceable></command>.
+ </para>
+ </blockquote>
+ <para>
+ Note the words in bold italics above — username, domain.name, file-system, package, version and release. Each word is a placeholder, either for text you enter when issuing a command or for text displayed by the system.
+ </para>
+ <para>
+ Aside from standard usage for presenting the title of a work, italics denotes the first use of a new and important term. For example:
+ </para>
+ <blockquote>
+ <para>
+ When the Apache HTTP Server accepts requests, it dispatches child processes or threads to handle them. This group of child processes or threads is known as a <firstterm>server-pool</firstterm>. Under Apache HTTP Server 2.0, the responsibility for creating and maintaining these server-pools has been abstracted to a group of modules called <firstterm>Multi-Processing Modules</firstterm> (<firstterm>MPMs</firstterm>). Unlike other modules, only one module from the MPM group can be loaded by the Apache HTTP Server.
+ </para>
+ </blockquote>
+ </section>
+
+ <section id="sect-User_Guide-Document_Conventions-Pull_quote_Conventions">
+ <title>Pull-quote Conventions</title>
+ <para>
+ Terminal output and source code listings are set off visually from the surrounding text.
+ </para>
+ <para>
+ Output sent to a terminal is set in <computeroutput>mono-spaced roman</computeroutput> and presented thus:
+ </para>
+
+<screen>books Desktop documentation drafts mss photos stuff svn
+books_tests Desktop1 downloads images notes scripts svgs
+</screen>
+ <para>
+ Source-code listings are also set in <computeroutput>mono-spaced roman</computeroutput> but add syntax highlighting as follows:
+ </para>
+
+<programlisting language="Java">package org.jboss.book.jca.ex1;
+
+import javax.naming.InitialContext;
+
+public class ExClient
+{
+ public static void main(String args[])
+ throws Exception
+ {
+ InitialContext iniCtx = new InitialContext();
+ Object ref = iniCtx.lookup("EchoBean");
+ EchoHome home = (EchoHome) ref;
+ Echo echo = home.create();
+
+ System.out.println("Created Echo");
+
+ System.out.println("Echo.echo('Hello') = " + echo.echo("Hello"));
+ }
+}
+</programlisting>
+ </section>
+
+ <section id="sect-User_Guide-Document_Conventions-Notes_and_Warnings">
+ <title>Notes and Warnings</title>
+ <para>
+ Finally, we use three visual styles to draw attention to information that might otherwise be overlooked.
+ </para>
+ <note>
+ <title>Note</title>
+ <para>
+ Notes are tips, shortcuts or alternative approaches to the task at hand. Ignoring a note should have no negative consequences, but you might miss out on a trick that makes your life easier.
+ </para>
+ </note>
+ <important>
+ <title>Important</title>
+ <para>
+ Important boxes detail things that are easily missed: configuration changes that only apply to the current session, or services that need restarting before an update will apply. Ignoring a box labeled 'Important' won't cause data loss but may cause irritation and frustration.
+ </para>
+ </important>
+ <warning>
+ <title>Warning</title>
+ <para>
+ Warnings should not be ignored. Ignoring warnings will most likely cause data loss.
+ </para>
+ </warning>
+ </section>
+
+</section>
+
+
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Legal_Notice.xml
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Legal_Notice.xml (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/Legal_Notice.xml 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,28 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE legalnotice PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+<legalnotice>
+ <para>
+ Copyright <trademark class="copyright"></trademark> &YEAR; &HOLDER;. This material may only be distributed subject to the terms and conditions set forth in the Open Publication License, V1.0, (the latest version is presently available at <ulink url="http://www.opencontent.org/openpub/">http://www.opencontent.org/openpub/</ulink>).
+ </para>
+ <para>
+ Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, MetaMatrix, Fedora, the Infinity Logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries.
+ </para>
+ <para>
+ <trademark class="registered">Linux</trademark> is the registered trademark of Linus Torvalds in the United States and other countries.
+ </para>
+ <para>
+ All other trademarks are the property of their respective owners.
+ </para>
+ <para>
+ <address>
+ <street>1801 Varsity Drive</street>
+ <city>Raleigh</city>, <state>NC</state> <postcode>27606-2072</postcode> <country>USA</country>
+ <phone>Phone: +1 919 754 3700</phone>
+ <phone>Phone: 888 733 4281</phone>
+ <fax>Fax: +1 919 754 3701</fax>
+ <pob>PO Box 13588</pob> <city>Research Triangle Park</city>, <state>NC</state> <postcode>27709</postcode> <country>USA</country>
+ </address>
+ </para>
+</legalnotice>
+
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/css/overrides.css
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/css/overrides.css (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/css/overrides.css 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,56 @@
+a:link {
+ color:#0066cc;
+}
+
+a:visited {
+ color:#6699cc;
+}
+
+h1 {
+ color:#a70000;
+}
+
+.producttitle {
+ background: #800 url(../images/h1-bg.png) top left repeat;
+}
+
+.section h1.title {
+ color:#a70000;
+}
+
+
+h2,h3,h4,h5,h6 {
+ color:#a70000;
+}
+
+table {
+ border:1px solid #aaa;
+}
+
+table th {
+ background-color:#900;
+}
+
+table tr.even td {
+ background-color:#f5f5f5;
+}
+
+#title a {
+ height:54px;
+}
+
+.term{
+ color:#a70000;
+}
+
+.revhistory table th {
+ color:#a70000;
+}
+
+.edition {
+ color: #a70000;
+}
+
+span.remark{
+ background-color: #ffff00;
+}
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/1.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/1.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/1.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/1.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 17.993,22.013004 L 17.993,10.113004 L 15.239,10.113004 C 14.899001,11.218003 14.286999,11.643004 12.757,11.728004 L 12.757,13.819004 L 14.763,13.819004 L 14.763,22.013004 L 17.993,22.013004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/10.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/10.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/10.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/10.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/10.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.252562,22 L 12.252562,10.1 L 9.4985624,10.1 C 9.1585628,11.204999 8.5465609,11.63 7.0165624,11.715 L 7.0165624,13.806 L 9.0225624,13.806 L 9.0225624,22 L 12.252562,22 M 24.983438,16.033 C 24.983438,12.072004 22.705435,9.913 19.611438,9.913 C 16.517441,9.913 14.205438,12.106004 14.205438,16.067 C 14.205438,20.027996 16.483441,22.187 19.577438,22.187 C 22.671435,22.187 24.983438,19.993996 24.983438,16.033 M 21.600438,16.067 C 21.600438,18.242998 20.886437,19.348 19.611438,19.348 C 18.336439,19.348 17.588438,18.208998 17.588438,16.033 C 17.588438,13.857002 18.302439,12.752 19.577438,12.752 C 20.852437,12.752 21.600438,13.891002 21.600438,16.067"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/11.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/11.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/11.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/11.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/11.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 14.623052,22 L 14.623052,10.1 L 11.869052,10.1 C 11.529053,11.204999 10.917051,11.63 9.3870527,11.715 L 9.3870527,13.806 L 11.393052,13.806 L 11.393052,22 L 14.623052,22 M 21.794928,22 L 21.794928,10.1 L 19.040928,10.1 C 18.700928,11.204999 18.088926,11.63 16.558928,11.715 L 16.558928,13.806 L 18.564928,13.806 L 18.564928,22 L 21.794928,22"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/12.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/12.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/12.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/12.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/12.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.677562,22 L 12.677562,10.1 L 9.9235624,10.1 C 9.5835628,11.204999 8.9715609,11.63 7.4415624,11.715 L 7.4415624,13.806 L 9.4475624,13.806 L 9.4475624,22 L 12.677562,22 M 24.558438,22 L 24.558438,19.314 L 18.353438,19.314 C 18.608438,18.600001 19.27144,17.936999 21.651438,16.832 C 23.929436,15.778001 24.473438,14.825998 24.473438,13.262 C 24.473438,11.103002 22.926435,9.913 19.968438,9.913 C 17.92844,9.913 16.381436,10.491001 14.868438,11.46 L 16.381438,13.891 C 17.571437,13.092001 18.727439,12.684 19.917438,12.684 C 20.869437,12.684 21.243438,12.973001 21.243438,13.5 C 21.243438,13.976 21.056437,14.163001 19.798438,14.724 C 16.823441,16.049999 14.936438,17.988004 14.834438,22 L 24.558438,22"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/13.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/13.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/13.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/13.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/13.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.550062,22 L 12.550062,10.1 L 9.7960624,10.1 C 9.4560628,11.204999 8.8440609,11.63 7.3140624,11.715 L 7.3140624,13.806 L 9.3200624,13.806 L 9.3200624,22 L 12.550062,22 M 24.685938,18.226 C 24.685938,16.713002 23.716937,15.914 22.611938,15.659 C 23.427937,15.268 24.192938,14.638999 24.192938,13.33 C 24.192938,10.814003 22.288935,9.913 19.432938,9.913 C 17.35894,9.913 15.930937,10.610001 14.825938,11.46 L 16.389938,13.602 C 17.307937,12.939001 18.191939,12.582 19.347938,12.582 C 20.520937,12.582 20.996938,12.922001 20.996938,13.551 C 20.996938,14.332999 20.656937,14.554 19.619938,14.554 L 18.089938,14.554 L 18.089938,17.121 L 19.806938,17.121 C 21.013937,17.121 21.489938,17.427001 21.489938,18.26 C 21.489938,19.075999 20.911937,19.467 19.534938,19.467 C 18.225939,19.467 17.120937,18.973999 16.151938,18.226 L 14.451938,20.368 C 15.726937,21.489999 17.44394,22.187 19.466938,22.187 C 22.696935,22.187 24.685938,20.979997 24.685938,18.226"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/14.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/14.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/14.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/14.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/14.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.040062,22 L 12.040062,10.1 L 9.2860624,10.1 C 8.9460628,11.204999 8.3340609,11.63 6.8040624,11.715 L 6.8040624,13.806 L 8.8100624,13.806 L 8.8100624,22 L 12.040062,22 M 25.195938,19.96 L 25.195938,17.172 L 23.665938,17.172 L 23.665938,10.1 L 20.401938,10.1 L 13.992938,17.461 L 13.992938,19.875 L 20.707938,19.875 L 20.707938,22 L 23.665938,22 L 23.665938,19.96 L 25.195938,19.96 M 20.758938,13.432 C 20.724938,13.992999 20.707938,15.302001 20.707938,15.999 L 20.707938,17.172 L 19.823938,17.172 C 19.007939,17.172 18.191937,17.189 17.596938,17.223 C 18.038938,16.798 18.531939,16.253999 19.160938,15.489 L 19.330938,15.285 C 20.112937,14.350001 20.435938,13.925 20.758938,13.432"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/15.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/15.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/15.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/15.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/15.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.388562,22 L 12.388562,10.1 L 9.6345624,10.1 C 9.2945628,11.204999 8.6825609,11.63 7.1525624,11.715 L 7.1525624,13.806 L 9.1585624,13.806 L 9.1585624,22 L 12.388562,22 M 24.847438,17.852 C 24.847438,15.200003 23.164435,13.908 20.597438,13.908 C 19.407439,13.908 18.693437,14.112 18.030438,14.435 L 18.132438,12.786 L 24.133438,12.786 L 24.133438,10.1 L 15.463438,10.1 L 15.055438,16.271 L 17.877438,17.223 C 18.472437,16.798 19.067439,16.543 20.070438,16.543 C 21.090437,16.543 21.668438,17.019001 21.668438,17.937 C 21.668438,18.888999 21.107436,19.45 19.577438,19.45 C 18.302439,19.45 16.891437,18.956999 15.752438,18.277 L 14.409438,20.742 C 15.871436,21.625999 17.43544,22.187 19.492438,22.187 C 22.875435,22.187 24.847438,20.622997 24.847438,17.852"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/16.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/16.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/16.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/16.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/16.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.405562,22 L 12.405562,10.1 L 9.6515624,10.1 C 9.3115628,11.204999 8.6995609,11.63 7.1695624,11.715 L 7.1695624,13.806 L 9.1755624,13.806 L 9.1755624,22 L 12.405562,22 M 24.830438,17.903 C 24.830438,15.387003 23.096435,14.214 20.631438,14.214 C 19.203439,14.214 18.336437,14.486 17.571438,14.911 C 18.472437,13.534001 20.104441,12.616 23.215438,12.616 L 23.215438,9.913 C 16.415445,9.913 14.341438,14.112003 14.341438,17.257 C 14.341438,20.537997 16.415441,22.187 19.407438,22.187 C 22.773435,22.187 24.830438,20.588997 24.830438,17.903 M 21.651438,18.124 C 21.651438,19.075999 20.818437,19.586 19.577438,19.586 C 18.132439,19.586 17.486438,18.990999 17.486438,18.141 C 17.486438,17.206001 18.183439,16.645 19.645438,16.645 C 20.903437,16.645 21.651438,17.206001 21.651438,18.124"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/17.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/17.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/17.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/17.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/17.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.652062,22 L 12.652062,10.1 L 9.8980624,10.1 C 9.5580628,11.204999 8.9460609,11.63 7.4160624,11.715 L 7.4160624,13.806 L 9.4220624,13.806 L 9.4220624,22 L 12.652062,22 M 24.583938,12.48 L 24.583938,10.1 L 14.740938,10.1 L 14.740938,12.786 L 20.656938,12.786 C 18.36194,15.131998 17.239938,17.920004 17.205938,22 L 20.435938,22 C 20.435938,18.141004 21.098941,15.675997 24.583938,12.48"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/18.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/18.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/18.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/18.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/18.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.176062,22 L 12.176062,10.1 L 9.4220624,10.1 C 9.0820628,11.204999 8.4700609,11.63 6.9400624,11.715 L 6.9400624,13.806 L 8.9460624,13.806 L 8.9460624,22 L 12.176062,22 M 25.059938,18.294 C 25.059938,16.764002 23.971937,15.948 23.206938,15.642 C 23.954937,15.166 24.549938,14.519999 24.549938,13.449 C 24.549938,11.171002 22.526935,9.913 19.653938,9.913 C 16.780941,9.913 14.723938,11.171002 14.723938,13.449 C 14.723938,14.519999 15.352939,15.251 16.066938,15.676 C 15.301939,15.982 14.213938,16.764002 14.213938,18.294 C 14.213938,20.707998 16.287941,22.187 19.619938,22.187 C 22.951935,22.187 25.059938,20.707998 25.059938,18.294 M 21.387938,13.5 C 21.387938,14.094999 20.945937,14.639 19.653938,14.639 C 18.361939,14.639 17.885938,14.094999 17.885938,13.5 C 17.885938,12.905001 18.327939,12.31 19.619938,12.31 C 20.911937,12.31 21.387938,12.905001 21.387938,13.5 M 21.897938,18.26 C 21.897938,19.075999 21.149936,19.688 19.653938,19.688 C 18.157939,19.688 17.375938,19.0759!
99 17.375938,18.26 C 17.375938,17.444001 18.106939,16.849 19.619938,16.849 C 21.115936,16.849 21.897938,17.444001 21.897938,18.26"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/19.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/19.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/19.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/19.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/19.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.414062,22 L 12.414062,10.1 L 9.6600624,10.1 C 9.3200628,11.204999 8.7080609,11.63 7.1780624,11.715 L 7.1780624,13.806 L 9.1840624,13.806 L 9.1840624,22 L 12.414062,22 M 24.821938,14.843 C 24.821938,11.562003 22.747935,9.913 19.755938,9.913 C 16.389941,9.913 14.332938,11.511003 14.332938,14.197 C 14.332938,16.712997 16.06694,17.886 18.531938,17.886 C 19.959937,17.886 20.826939,17.614 21.591938,17.189 C 20.690939,18.565999 19.058935,19.484 15.947938,19.484 L 15.947938,22.187 C 22.747931,22.187 24.821938,17.987997 24.821938,14.843 M 21.676938,13.959 C 21.676938,14.893999 20.979936,15.455 19.517938,15.455 C 18.259939,15.455 17.511938,14.893999 17.511938,13.976 C 17.511938,13.024001 18.344939,12.514 19.585938,12.514 C 21.030936,12.514 21.676938,13.109001 21.676938,13.959"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/2.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/2.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/2.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/2.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 20.862,22.013004 L 20.862,19.327004 L 14.657,19.327004 C 14.912,18.613005 15.575003,17.950003 17.955,16.845004 C 20.232998,15.791005 20.777,14.839003 20.777,13.275004 C 20.777,11.116006 19.229997,9.9260043 16.272,9.9260043 C 14.232002,9.9260043 12.684999,10.504005 11.172,11.473004 L 12.685,13.904004 C 13.874999,13.105005 15.031001,12.697004 16.221,12.697004 C 17.172999,12.697004 17.547,12.986005 17.547,13.513004 C 17.547,13.989004 17.359999,14.176005 16.102,14.737004 C 13.127003,16.063003 11.24,18.001008 11.138,22.013004 L 20.862,22.013004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/20.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/20.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/20.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/20.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/20.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 14.685,22 L 14.685,19.314 L 8.4799999,19.314 C 8.7349997,18.600001 9.3980023,17.936999 11.778,16.832 C 14.055998,15.778001 14.6,14.825998 14.6,13.262 C 14.6,11.103002 13.052997,9.913 10.095,9.913 C 8.055002,9.913 6.5079984,10.491001 4.9949999,11.46 L 6.5079999,13.891 C 7.6979988,13.092001 8.8540011,12.684 10.044,12.684 C 10.995999,12.684 11.37,12.973001 11.37,13.5 C 11.37,13.976 11.182999,14.163001 9.9249999,14.724 C 6.9500029,16.049999 5.0629998,17.988004 4.9609999,22 L 14.685,22 M 27.421719,16.033 C 27.421719,12.072004 25.143716,9.913 22.049719,9.913 C 18.955722,9.913 16.643719,12.106004 16.643719,16.067 C 16.643719,20.027996 18.921722,22.187 22.015719,22.187 C 25.109716,22.187 27.421719,19.993996 27.421719,16.033 M 24.038719,16.067 C 24.038719,18.242998 23.324717,19.348 22.049719,19.348 C 20.77472,19.348 20.026719,18.208998 20.026719,16.033 C 20.026719,13.857002 20.74072,12.752 22.015719,12.752 C 23.290717,12.752 24.038719,13.891002 24.038719,16.067"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/21.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/21.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/21.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/21.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/21.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 16.648141,22 L 16.648141,19.314 L 10.44314,19.314 C 10.69814,18.600001 11.361143,17.936999 13.741141,16.832 C 16.019139,15.778001 16.563141,14.825998 16.563141,13.262 C 16.563141,11.103002 15.016138,9.913 12.058141,9.913 C 10.018143,9.913 8.471139,10.491001 6.9581405,11.46 L 8.4711405,13.891 C 9.661139,13.092001 10.817142,12.684 12.007141,12.684 C 12.95914,12.684 13.333141,12.973001 13.333141,13.5 C 13.333141,13.976 13.14614,14.163001 11.88814,14.724 C 8.9131435,16.049999 7.0261404,17.988004 6.9241405,22 L 16.648141,22 M 23.82586,22 L 23.82586,10.1 L 21.07186,10.1 C 20.73186,11.204999 20.119858,11.63 18.58986,11.715 L 18.58986,13.806 L 20.59586,13.806 L 20.59586,22 L 23.82586,22"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/22.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/22.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/22.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/22.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/22.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 14.685,22 L 14.685,19.314 L 8.4799999,19.314 C 8.7349997,18.600001 9.3980023,17.936999 11.778,16.832 C 14.055998,15.778001 14.6,14.825998 14.6,13.262 C 14.6,11.103002 13.052997,9.913 10.095,9.913 C 8.055002,9.913 6.5079984,10.491001 4.9949999,11.46 L 6.5079999,13.891 C 7.6979988,13.092001 8.8540011,12.684 10.044,12.684 C 10.995999,12.684 11.37,12.973001 11.37,13.5 C 11.37,13.976 11.182999,14.163001 9.9249999,14.724 C 6.9500029,16.049999 5.0629998,17.988004 4.9609999,22 L 14.685,22 M 26.571719,22 L 26.571719,19.314 L 20.366719,19.314 C 20.621718,18.600001 21.284721,17.936999 23.664719,16.832 C 25.942716,15.778001 26.486719,14.825998 26.486719,13.262 C 26.486719,11.103002 24.939716,9.913 21.981719,9.913 C 19.941721,9.913 18.394717,10.491001 16.881719,11.46 L 18.394719,13.891 C 19.584718,13.092001 20.74072,12.684 21.930719,12.684 C 22.882718,12.684 23.256719,12.973001 23.256719,13.5 C 23.256719,13.976 23.069717,14.163001 21.811719,14.724 C 18.836722,16.049999 16.9497!
19,17.988004 16.847719,22 L 26.571719,22"
+ id="number"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/23.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/23.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/23.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/23.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/23.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 15.32239,22.013004 L 15.32239,19.327004 L 9.1173907,19.327004 C 9.3723904,18.613005 10.035393,17.950003 12.41539,16.845004 C 14.693388,15.791005 15.23739,14.839003 15.23739,13.275004 C 15.23739,11.116006 13.690387,9.9260043 10.73239,9.9260043 C 8.6923927,9.9260043 7.1453891,10.504005 5.6323906,11.473004 L 7.1453906,13.904004 C 8.3353896,13.105005 9.4913919,12.697004 10.68139,12.697004 C 11.633389,12.697004 12.00739,12.986005 12.00739,13.513004 C 12.00739,13.989004 11.820389,14.176005 10.56239,14.737004 C 7.5873937,16.063003 5.7003905,18.001008 5.5983906,22.013004 L 15.32239,22.013004 M 26.401609,18.239004 C 26.401609,16.726006 25.432608,15.927004 24.327609,15.672004 C 25.143608,15.281005 25.908609,14.652003 25.908609,13.343004 C 25.908609,10.827007 24.004606,9.9260043 21.148609,9.9260043 C 19.074611,9.9260043 17.646608,10.623005 16.541609,11.473004 L 18.105609,13.615004 C 19.023608,12.952005 19.90761,12.595004 21.063609,12.595004 C 22.236608,12.595004 22.712609,12!
.935005 22.712609,13.564004 C 22.712609,14.346004 22.372608,14.567004 21.335609,14.567004 L 19.805609,14.567004 L 19.805609,17.134004 L 21.522609,17.134004 C 22.729608,17.134004 23.205609,17.440005 23.205609,18.273004 C 23.205609,19.089003 22.627608,19.480004 21.250609,19.480004 C 19.94161,19.480004 18.836608,18.987004 17.867609,18.239004 L 16.167609,20.381004 C 17.442608,21.503003 19.159611,22.200004 21.182609,22.200004 C 24.412606,22.200004 26.401609,20.993002 26.401609,18.239004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/3.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/3.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/3.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/3.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.117,18.239004 C 21.117,16.726006 20.147999,15.927004 19.043,15.672004 C 19.858999,15.281005 20.624,14.652003 20.624,13.343004 C 20.624,10.827007 18.719997,9.9260043 15.864,9.9260043 C 13.790002,9.9260043 12.361999,10.623005 11.257,11.473004 L 12.821,13.615004 C 13.738999,12.952005 14.623001,12.595004 15.779,12.595004 C 16.951999,12.595004 17.428,12.935005 17.428,13.564004 C 17.428,14.346004 17.087999,14.567004 16.051,14.567004 L 14.521,14.567004 L 14.521,17.134004 L 16.238,17.134004 C 17.444999,17.134004 17.921,17.440005 17.921,18.273004 C 17.921,19.089003 17.342999,19.480004 15.966,19.480004 C 14.657002,19.480004 13.551999,18.987004 12.583,18.239004 L 10.883,20.381004 C 12.157999,21.503003 13.875002,22.200004 15.898,22.200004 C 19.127997,22.200004 21.117,20.993002 21.117,18.239004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/4.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/4.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/4.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/4.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 20.573772,19.96 L 20.573772,17.172 L 19.043772,17.172 L 19.043772,10.1 L 15.779772,10.1 L 9.3707718,17.461 L 9.3707718,19.875 L 16.085772,19.875 L 16.085772,22 L 19.043772,22 L 19.043772,19.96 L 20.573772,19.96 M 16.136772,13.432 C 16.102772,13.992999 16.085772,15.302001 16.085772,15.999 L 16.085772,17.172 L 15.201772,17.172 C 14.385773,17.172 13.569771,17.189 12.974772,17.223 C 13.416772,16.798 13.909773,16.253999 14.538772,15.489 L 14.708772,15.285 C 15.490771,14.350001 15.813772,13.925 16.136772,13.432"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/5.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/5.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/5.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/5.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/5.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.219,17.852 C 21.219,15.200003 19.535997,13.908 16.969,13.908 C 15.779001,13.908 15.064999,14.112 14.402,14.435 L 14.504,12.786 L 20.505,12.786 L 20.505,10.1 L 11.835,10.1 L 11.427,16.271 L 14.249,17.223 C 14.843999,16.798 15.439001,16.543 16.442,16.543 C 17.461999,16.543 18.04,17.019001 18.04,17.937 C 18.04,18.888999 17.478998,19.45 15.949,19.45 C 14.674001,19.45 13.262999,18.956999 12.124,18.277 L 10.781,20.742 C 12.242999,21.625999 13.807002,22.187 15.864,22.187 C 19.246997,22.187 21.219,20.622997 21.219,17.852"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/6.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/6.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/6.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/6.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/6.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.2445,17.903 C 21.2445,15.387003 19.510497,14.214 17.0455,14.214 C 15.617501,14.214 14.750499,14.486 13.9855,14.911 C 14.886499,13.534001 16.518503,12.616 19.6295,12.616 L 19.6295,9.913 C 12.829507,9.913 10.7555,14.112003 10.7555,17.257 C 10.7555,20.537997 12.829503,22.187 15.8215,22.187 C 19.187497,22.187 21.2445,20.588997 21.2445,17.903 M 18.0655,18.124 C 18.0655,19.075999 17.232499,19.586 15.9915,19.586 C 14.546501,19.586 13.9005,18.990999 13.9005,18.141 C 13.9005,17.206001 14.597501,16.645 16.0595,16.645 C 17.317499,16.645 18.0655,17.206001 18.0655,18.124"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/7.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/7.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/7.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/7.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/7.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 20.9215,12.48 L 20.9215,10.1 L 11.0785,10.1 L 11.0785,12.786 L 16.9945,12.786 C 14.699502,15.131998 13.5775,17.920004 13.5435,22 L 16.7735,22 C 16.7735,18.141004 17.436503,15.675997 20.9215,12.48"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/8.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/8.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/8.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/8.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/8.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.423,18.294 C 21.423,16.764002 20.334999,15.948 19.57,15.642 C 20.317999,15.166 20.913,14.519999 20.913,13.449 C 20.913,11.171002 18.889997,9.913 16.017,9.913 C 13.144003,9.913 11.087,11.171002 11.087,13.449 C 11.087,14.519999 11.716001,15.251 12.43,15.676 C 11.665001,15.982 10.577,16.764002 10.577,18.294 C 10.577,20.707998 12.651003,22.187 15.983,22.187 C 19.314997,22.187 21.423,20.707998 21.423,18.294 M 17.751,13.5 C 17.751,14.094999 17.308999,14.639 16.017,14.639 C 14.725001,14.639 14.249,14.094999 14.249,13.5 C 14.249,12.905001 14.691001,12.31 15.983,12.31 C 17.274999,12.31 17.751,12.905001 17.751,13.5 M 18.261,18.26 C 18.261,19.075999 17.512998,19.688 16.017,19.688 C 14.521001,19.688 13.739,19.075999 13.739,18.26 C 13.739,17.444001 14.470002,16.849 15.983,16.849 C 17.478998,16.849 18.261,17.444001 18.261,18.26"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/9.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/9.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/9.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/9.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/9.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 22.128383,14.843 C 22.128383,11.562003 20.05438,9.913 17.062383,9.913 C 13.696386,9.913 11.639383,11.511003 11.639383,14.197 C 11.639383,16.712997 13.373385,17.886 15.838383,17.886 C 17.266382,17.886 18.133384,17.614 18.898383,17.189 C 17.997384,18.565999 16.36538,19.484 13.254383,19.484 L 13.254383,22.187 C 20.054376,22.187 22.128383,17.987997 22.128383,14.843 M 18.983383,13.959 C 18.983383,14.893999 18.286381,15.455 16.824383,15.455 C 15.566384,15.455 14.818383,14.893999 14.818383,13.976 C 14.818383,13.024001 15.651384,12.514 16.892383,12.514 C 18.337381,12.514 18.983383,13.109001 18.983383,13.959"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/bkgrnd_greydots.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/bkgrnd_greydots.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/bullet_arrowblue.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/bullet_arrowblue.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/documentation.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/documentation.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/dot.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/dot.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/dot2.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/dot2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/h1-bg.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/h1-bg.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/image_left.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/image_left.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/image_right.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/image_right.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/important.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/important.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/important.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/important.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/important.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="48"
+ height="48"
+ id="svg2">
+ <defs
+ id="defs5" />
+ <path
+ d="M 255.25,-411.29002 L 261.86798,-400.85887 L 273.83367,-397.7882 L 265.95811,-388.27072 L 266.73534,-375.94179 L 255.25,-380.49082 L 243.76466,-375.94179 L 244.54189,-388.27072 L 236.66633,-397.7882 L 248.63202,-400.85887 L 255.25,-411.29002 z "
+ transform="matrix(1.1071323,0,0,1.1071323,-258.4137,459.98052)"
+ style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:4.25880718;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4450" />
+ <path
+ d="M 255.25,-411.29002 L 261.86798,-400.85887 L 273.83367,-397.7882 L 265.95811,-388.27072 L 266.73534,-375.94179 L 255.25,-380.49082 L 243.76466,-375.94179 L 244.54189,-388.27072 L 236.66633,-397.7882 L 248.63202,-400.85887 L 255.25,-411.29002 z "
+ transform="matrix(1.1071323,0,0,1.1071323,-258.4137,459.98052)"
+ style="fill:#fac521;fill-opacity:1;stroke-width:3.4070456;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4452" />
+ <path
+ d="M 24.175987,4.476098 L 16.980534,16.087712 L 3.9317841,19.443104 L 16.980534,20.076901 L 24.175987,10.383543 L 31.408721,20.076901 L 44.457471,19.443104 L 31.468862,16.027571 L 24.175987,4.476098 z "
+ style="fill:#feeaab;fill-opacity:1;stroke-width:3.4070456;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4531" />
+ <path
+ d="M 12.456856,24.055852 C 11.65845,24.299685 14.436112,29.177769 14.436112,32.041127 C 14.436112,37.343117 13.010825,39.831516 15.971742,37.364645 C 18.711008,35.08244 21.184735,34.873512 24.195894,34.873512 C 27.207053,34.873512 29.646656,35.08244 32.38592,37.364645 C 35.346837,39.831516 33.921551,37.343117 33.92155,32.041127 C 33.92155,28.223316 38.868232,20.827013 33.682674,25.591482 C 31.458295,27.635233 27.413886,29.481744 24.195894,29.481744 C 20.977903,29.481744 16.933493,27.635233 14.709113,25.591482 C 13.412724,24.400365 12.722992,23.974574 12.456856,24.055852 z "
+ style="fill:#fcd867;fill-opacity:1;stroke-width:3.4070456;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path2185" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/jboss-logo.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/jboss-logo.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/jboss-logo.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,233 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="139.51801"
+ height="79.202713"
+ id="svg2898"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ sodipodi:docname="jboss-logo.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <metadata
+ id="metadata16">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="" />
+ <dc:title />
+ <dc:date />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:creator>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:rights>
+ <dc:publisher>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:publisher>
+ <dc:identifier />
+ <dc:source />
+ <dc:relation />
+ <dc:language />
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:coverage />
+ <dc:description />
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ <cc:license
+ rdf:resource="" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ inkscape:window-height="692"
+ inkscape:window-width="640"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ guidetolerance="10.0"
+ gridtolerance="10.0"
+ objecttolerance="10.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base"
+ showgrid="false"
+ inkscape:zoom="1"
+ inkscape:cx="95.81665"
+ inkscape:cy="41.7868"
+ inkscape:window-x="846"
+ inkscape:window-y="127"
+ inkscape:current-layer="svg2898" />
+ <defs
+ id="defs21">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective18" />
+ <inkscape:perspective
+ id="perspective2683"
+ inkscape:persp3d-origin="107.759 : 40.782333 : 1"
+ inkscape:vp_z="215.51801 : 61.1735 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 61.1735 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <g
+ id="g2622"
+ transform="scale(0.6473613,0.6473613)">
+ <g
+ id="g2624">
+ <path
+ id="path2626"
+ d="M 140.253,110.221 L 143.198,116.112 L 140.706,116.112 L 137.843,110.407 L 134.588,110.407 L 134.588,116.112 L 132.467,116.112 L 132.467,101.693 L 138.79,101.693 C 141.304,101.693 143.425,103.032 143.425,105.999 C 143.425,108.305 142.21,109.727 140.253,110.221 z M 138.79,103.732 L 134.588,103.732 L 134.588,108.367 L 138.79,108.367 C 140.232,108.367 141.241,107.626 141.241,106.06 C 141.241,104.556 140.253,103.732 138.79,103.732 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2628"
+ d="M 155.164,111.458 L 148.016,111.458 C 148.243,113.538 149.417,114.424 150.736,114.424 C 151.642,114.424 152.363,114.095 153.084,113.559 L 154.341,114.918 C 153.394,115.824 152.261,116.339 150.612,116.339 C 148.079,116.339 145.936,114.3 145.936,110.716 C 145.936,107.049 147.873,105.071 150.673,105.071 C 153.742,105.071 155.226,107.563 155.226,110.489 C 155.226,110.879 155.185,111.231 155.164,111.458 z M 150.529,106.987 C 149.107,106.987 148.242,107.975 148.056,109.706 L 153.082,109.706 C 152.98,108.223 152.28,106.987 150.529,106.987 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2630"
+ d="M 164.37,116.112 L 164.37,115.083 C 163.587,115.804 162.681,116.339 161.548,116.339 C 159.22,116.339 157.387,114.651 157.387,110.53 C 157.387,106.822 159.406,105.071 161.651,105.071 C 162.743,105.071 163.773,105.648 164.371,106.307 L 164.371,102.187 L 166.472,101.095 L 166.472,116.112 L 164.37,116.112 z M 164.391,108.45 C 163.917,107.811 162.928,107.028 161.857,107.028 C 160.333,107.028 159.509,108.182 159.509,110.468 C 159.509,113.187 160.374,114.381 161.94,114.381 C 162.949,114.381 163.835,113.701 164.391,113.002 L 164.391,108.45 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2632"
+ d="M 184.266,116.112 L 184.266,109.644 L 177.632,109.644 L 177.632,116.112 L 175.47,116.112 L 175.47,101.693 L 177.632,101.693 L 177.632,107.522 L 184.266,107.522 L 184.266,101.693 L 186.428,101.693 L 186.428,116.112 L 184.266,116.112 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2634"
+ d="M 196.065,116.112 L 196.065,115.042 C 195.324,115.783 194.273,116.339 193.099,116.339 C 191.348,116.339 189.35,115.351 189.35,112.693 C 189.35,110.283 191.204,109.191 193.655,109.191 C 194.665,109.191 195.468,109.335 196.065,109.603 L 196.065,108.799 C 196.065,107.625 195.344,106.966 194.026,106.966 C 192.914,106.966 192.048,107.172 191.204,107.646 L 190.38,106.04 C 191.41,105.401 192.564,105.071 194.088,105.071 C 196.498,105.071 198.147,106.245 198.147,108.697 L 198.147,116.112 L 196.065,116.112 L 196.065,116.112 z M 196.065,111.499 C 195.489,111.21 194.747,111.024 193.593,111.024 C 192.234,111.024 191.368,111.642 191.368,112.631 C 191.368,113.701 192.048,114.423 193.448,114.423 C 194.582,114.423 195.57,113.723 196.064,113.043 L 196.064,111.499 L 196.065,111.499 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2636"
+ d="M 206.363,115.844 C 205.847,116.133 205.127,116.338 204.282,116.338 C 202.778,116.338 201.851,115.412 201.851,113.475 L 201.851,107.234 L 200.306,107.234 L 200.306,105.297 L 201.851,105.297 L 201.851,102.207 L 203.932,101.095 L 203.932,105.297 L 206.61,105.297 L 206.61,107.234 L 203.932,107.234 L 203.932,113.105 C 203.932,114.114 204.261,114.403 205.044,114.403 C 205.6,114.403 206.218,114.197 206.609,113.97 L 206.363,115.844 z"
+ style="fill:#cc0000" />
+
+ </g>
+
+ <g
+ id="g2638">
+ <path
+ id="path2640"
+ d="M 106.389,51.025 C 109.959,49.238 112.389,45.924 112.389,41.844 C 112.389,32.335 103.775,30.289 95.924,30.423 L 74.738,30.423 L 74.617,30.423 L 62.871,30.423 L 62.871,60.785 C 62.871,65.194 61.334,66.721 58.597,66.721 C 55.656,66.721 54.002,65.067 54.002,62.063 L 54.002,57.858 L 42.832,57.858 L 42.832,59.827 C 42.832,69.981 46.724,76.926 58.784,76.926 C 68.621,76.926 73.822,72.57 74.617,63.968 L 74.617,75.972 L 96.496,75.972 C 106.257,75.972 114.233,72.657 114.233,61.811 C 114.233,56.646 111.242,52.435 106.389,51.025 z M 86.487,39.605 L 95.668,39.605 C 98.161,39.605 100.52,40.697 100.52,44.01 C 100.52,47.263 97.714,48.348 95.668,48.348 L 86.487,48.348 L 86.487,39.605 z M 95.989,66.469 L 86.487,66.469 L 86.487,56 L 95.989,56 C 99.565,56 102.373,57.345 102.373,61.355 C 102.373,65.125 99.756,66.469 95.989,66.469 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2642"
+ d="M 90.067,108.399 C 90.067,100.704 83.822,94.452 76.123,94.452 C 68.409,94.452 62.168,100.704 62.168,108.399 C 62.168,116.108 68.409,122.347 76.123,122.347 C 83.822,122.347 90.067,116.108 90.067,108.399 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2644"
+ d="M 53.012,103.999 C 53.012,97.181 47.479,91.65 40.655,91.65 C 33.832,91.65 28.303,97.18 28.303,103.999 C 28.303,110.823 33.831,116.356 40.655,116.356 C 47.479,116.356 53.012,110.823 53.012,103.999 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2646"
+ d="M 25.097,81.68 C 25.097,75.523 20.113,70.529 13.947,70.529 C 7.779,70.529 2.787,75.523 2.787,81.68 C 2.787,87.854 7.779,92.848 13.947,92.848 C 20.112,92.848 25.097,87.854 25.097,81.68 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2648"
+ d="M 19.918,50.615 C 19.918,45.109 15.463,40.659 9.963,40.659 C 4.464,40.659 0,45.108 0,50.615 C 0,56.115 4.464,60.579 9.963,60.579 C 15.463,60.579 19.918,56.114 19.918,50.615 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2650"
+ d="M 33.88,22.719 C 33.88,18.1 30.124,14.353 25.508,14.353 C 20.889,14.353 17.139,18.1 17.139,22.719 C 17.139,27.342 20.889,31.086 25.508,31.086 C 30.124,31.086 33.88,27.342 33.88,22.719 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2652"
+ d="M 57.78,10.364 C 57.78,6.184 54.395,2.793 50.214,2.793 C 46.034,2.793 42.643,6.184 42.643,10.364 C 42.643,14.551 46.035,17.942 50.214,17.942 C 54.396,17.942 57.78,14.551 57.78,10.364 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2654"
+ d="M 82.891,6.377 C 82.891,2.855 80.042,0 76.517,0 C 73.001,0 70.14,2.855 70.14,6.377 C 70.14,9.903 73.001,12.757 76.517,12.757 C 80.042,12.757 82.891,9.903 82.891,6.377 z"
+ style="fill:#cc0000" />
+
+ </g>
+
+ <g
+ id="g2656">
+ <g
+ id="g2658">
+ <path
+ id="path2660"
+ d="M 161.415,62.895 C 156.077,61.543 149.709,61.118 147.172,56.742 C 147.293,57.624 147.376,58.522 147.376,59.448 C 147.376,61.433 147.077,63.315 146.536,65.067 L 155.794,65.067 C 155.794,66.721 156.504,67.933 157.582,68.762 C 158.604,69.532 160.076,69.904 161.604,69.904 C 163.701,69.904 166.706,69.02 166.706,66.4 C 166.706,63.855 163.321,63.336 161.415,62.895 z"
+ style="fill:none" />
+
+ <path
+ id="path2662"
+ d="M 129.896,50.193 C 124.851,50.193 123.318,55.244 123.318,59.448 C 123.318,63.665 124.851,68.635 129.896,68.635 C 134.935,68.635 136.529,63.665 136.529,59.448 C 136.528,55.244 134.935,50.193 129.896,50.193 z"
+ style="fill:none" />
+
+ <path
+ id="path2664"
+ d="M 192.015,62.895 C 185.337,61.204 176.724,60.97 176.338,52.616 L 166.718,52.616 C 166.718,51.22 166.206,50.326 165.322,49.75 C 164.419,49.181 163.215,48.923 161.875,48.923 C 160.094,48.923 156.883,49.111 156.883,51.41 C 156.883,54.542 164.156,55.115 169.13,56.197 C 175.779,57.532 177.529,62.315 177.553,65.066 L 186.395,65.066 C 186.395,66.72 187.105,67.932 188.183,68.761 C 189.206,69.531 190.677,69.903 192.204,69.903 C 194.301,69.903 197.307,69.019 197.307,66.399 C 197.306,63.855 193.922,63.336 192.015,62.895 z"
+ style="fill:none" />
+
+ <path
+ id="path2666"
+ d="M 199.729,56.198 C 194.754,55.116 187.148,54.544 187.148,51.411 C 187.148,49.111 190.027,48.924 191.808,48.924 C 193.147,48.924 194.352,49.182 195.255,49.751 C 196.139,50.327 196.651,51.221 196.651,52.617 L 206.67,52.617 C 206.285,44.011 198.69,41.903 191.431,41.903 C 185.383,41.903 177.526,43.785 176.439,50.443 C 174.954,43.662 168.095,41.903 161.496,41.903 C 154.986,41.903 146.035,44.075 146.035,52.049 C 146.035,52.19 146.056,52.31 146.059,52.447 C 143.534,46.151 137.569,41.903 129.896,41.903 C 121.597,41.903 115.392,46.75 113.294,53.899 C 114.898,56.057 115.742,58.872 115.742,61.811 C 115.742,64.224 115.358,66.36 114.631,68.23 C 117.484,73.503 122.974,76.926 129.896,76.926 C 137.25,76.926 143.019,73.054 145.711,67.207 C 147.125,74.716 154.473,76.926 161.668,76.926 C 167.855,76.926 174.688,74.899 176.847,69.154 C 179.082,75.103 185.737,76.926 192.268,76.926 C 199.73,76.926 208.154,73.995 208.154,65.125 C 208.153,62.383 206.423,57.542 199.729,56.198 z M 129.896,68.63!
5 C 124.851,68.635 123.318,63.665 123.318,59.448 C 123.318,55.243 124.851,50.193 129.896,50.193 C 134.935,50.193 136.529,55.244 136.529,59.448 C 136.528,63.666 134.935,68.635 129.896,68.635 z M 161.604,69.904 C 160.076,69.904 158.604,69.532 157.582,68.762 C 156.504,67.933 155.794,66.721 155.794,65.067 L 146.536,65.067 C 147.077,63.315 147.376,61.433 147.376,59.448 C 147.376,58.522 147.293,57.624 147.172,56.742 C 149.709,61.117 156.077,61.543 161.415,62.895 C 163.321,63.336 166.706,63.855 166.706,66.4 C 166.706,69.02 163.701,69.904 161.604,69.904 z M 192.203,69.904 C 190.676,69.904 189.205,69.532 188.182,68.762 C 187.104,67.933 186.394,66.721 186.394,65.067 L 177.552,65.067 C 177.529,62.316 175.779,57.533 169.129,56.198 C 164.155,55.116 156.882,54.544 156.882,51.411 C 156.882,49.111 160.093,48.924 161.874,48.924 C 163.214,48.924 164.418,49.182 165.321,49.751 C 166.206,50.327 166.717,51.221 166.717,52.617 L 176.337,52.617 C 176.723,60.971 185.336,61.204 192.014,62.896 C 193.9!
21,63.337 197.305,63.856 197.305,66.401 C 197.306,69.02 194.3,!
69.904 1
92.203,69.904 z"
+ style="fill:#60605b" />
+
+ </g>
+
+ <path
+ id="path2668"
+ d="M 209.127,36.16 L 210.092,36.16 L 211.544,38.546 L 212.485,38.546 L 210.914,36.116 C 211.721,36.014 212.334,35.586 212.334,34.607 C 212.334,33.508 211.696,33.034 210.396,33.034 L 208.294,33.034 L 208.294,38.546 L 209.127,38.546 L 209.127,36.16 z M 209.127,35.446 L 209.127,33.735 L 210.27,33.735 C 210.837,33.735 211.47,33.867 211.47,34.55 C 211.47,35.397 210.837,35.446 210.131,35.446 L 209.127,35.446 z"
+ style="fill:#60605b" />
+
+ <path
+ id="path2670"
+ d="M 215.518,35.8 C 215.518,38.78 213.098,41.192 210.119,41.192 C 207.133,41.192 204.713,38.78 204.713,35.8 C 204.713,32.813 207.133,30.395 210.119,30.395 C 213.098,30.396 215.518,32.813 215.518,35.8 z M 210.118,31.356 C 207.654,31.356 205.666,33.338 205.666,35.8 C 205.666,38.251 207.654,40.232 210.118,40.232 C 212.568,40.232 214.556,38.251 214.556,35.8 C 214.557,33.338 212.568,31.356 210.118,31.356 z"
+ style="fill:#60605b" />
+
+ </g>
+
+ <g
+ id="g2672">
+ <path
+ id="path2674"
+ d="M 108.227,116.338 C 107.135,116.338 106.105,115.762 105.508,115.103 L 105.508,116.112 L 103.406,116.112 L 103.406,102.187 L 105.508,101.095 L 105.508,106.327 C 106.29,105.605 107.196,105.07 108.33,105.07 C 110.657,105.07 112.49,106.759 112.49,110.879 C 112.49,114.588 110.472,116.338 108.227,116.338 z M 107.938,107.028 C 106.928,107.028 106.042,107.708 105.487,108.409 L 105.487,112.961 C 105.961,113.6 106.949,114.382 108.02,114.382 C 109.544,114.382 110.369,113.23 110.369,110.943 C 110.369,108.223 109.504,107.028 107.938,107.028 z"
+ style="fill:#60605b" />
+
+ <path
+ id="path2676"
+ d="M 118.915,119.923 L 116.67,119.923 L 118.235,115.906 L 114.259,105.297 L 116.587,105.297 L 118.358,110.592 C 118.687,111.539 119.182,113.146 119.305,113.742 C 119.491,113.104 119.944,111.559 120.273,110.633 L 122.107,105.297 L 124.352,105.297 L 118.915,119.923 z"
+ style="fill:#60605b" />
+
+ </g>
+
+</g>
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/note.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/note.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/note.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/note.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/note.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="48"
+ height="48"
+ id="svg2">
+ <defs
+ id="defs5" />
+ <path
+ d="M 30.27396,4.1232594 L 18.765811,4.1232594 C 11.476786,4.1232594 5.5574109,10.546411 5.5574109,19.960741 C 5.5574109,24.746615 7.0844878,29.075948 9.5403943,32.177328 C 9.4616811,32.681104 9.414455,33.200619 9.414455,33.720144 C 9.414455,39.308917 13.554865,43.591015 18.891751,44.267966 C 17.506371,42.693663 16.656245,40.914707 16.656245,38.616218 C 16.656245,38.01799 16.719219,37.419752 16.82942,36.837262 C 17.459135,36.963202 18.104599,37.026176 18.750063,37.026176 L 30.258211,37.026176 C 37.547237,37.026176 43.466612,29.39081 43.466612,19.960741 C 43.466612,10.530672 37.578724,4.1232594 30.27396,4.1232594 z "
+ style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:4.7150631;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path4317" />
+ <path
+ d="M 30.27396,4.1232594 L 18.765811,4.1232594 C 11.476786,4.1232594 5.5574109,10.546411 5.5574109,19.960741 C 5.5574109,24.746615 7.0844878,29.075948 9.5403943,32.177328 C 9.4616811,32.681104 9.414455,33.200619 9.414455,33.720144 C 9.414455,39.308917 13.554865,43.591015 18.891751,44.267966 C 17.506371,42.693663 16.656245,40.914707 16.656245,38.616218 C 16.656245,38.01799 16.719219,37.419752 16.82942,36.837262 C 17.459135,36.963202 18.104599,37.026176 18.750063,37.026176 L 30.258211,37.026176 C 37.547237,37.026176 43.466612,29.39081 43.466612,19.960741 C 43.466612,10.530672 37.578724,4.1232594 30.27396,4.1232594 z "
+ style="fill:#bfdce8;fill-opacity:1"
+ id="path142" />
+ <path
+ d="M 19.200879,5.5648899 C 12.490241,5.5648899 7.0622987,11.295775 7.0622987,19.690323 C 7.0622987,22.890926 7.8418023,25.879852 9.1910836,28.332288 C 8.6113289,26.599889 8.2852163,24.667826 8.2852163,22.673336 C 8.2852163,14.629768 13.495502,9.1620492 19.925575,9.1620492 L 30.071259,9.1620492 C 36.515213,9.1620492 41.711609,14.616311 41.711609,22.673336 C 41.864688,21.709218 41.983366,20.710908 41.983366,19.690323 C 41.983366,11.281743 36.524624,5.5648899 29.799492,5.5648899 L 19.200879,5.5648899 z "
+ style="fill:#ffffff"
+ id="path2358" />
+ <path
+ d="M 28.241965,33.725087 L 20.792252,33.725087 C 16.073756,33.725087 12.241894,32.944782 12.241894,26.850486 C 12.241894,25.10387 12.368512,23.572125 15.515722,23.567487 L 33.508301,23.540969 C 36.182481,23.537028 36.782127,24.950794 36.782127,26.850486 C 36.782127,32.95497 32.970649,33.725087 28.241965,33.725087 z "
+ style="fill:#d0ecf9;fill-opacity:1"
+ id="path2173" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/redhat-logo.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/redhat-logo.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/redhat-logo.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,243 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="139.51801"
+ height="79.202713"
+ id="svg2898"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ sodipodi:docname="redhat-logo.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <metadata
+ id="metadata16">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="" />
+ <dc:title />
+ <dc:date />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:creator>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:rights>
+ <dc:publisher>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:publisher>
+ <dc:identifier />
+ <dc:source />
+ <dc:relation />
+ <dc:language />
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:coverage />
+ <dc:description />
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ <cc:license
+ rdf:resource="" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ inkscape:window-height="692"
+ inkscape:window-width="640"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ guidetolerance="10.0"
+ gridtolerance="10.0"
+ objecttolerance="10.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base"
+ showgrid="false"
+ inkscape:zoom="1"
+ inkscape:cx="95.81665"
+ inkscape:cy="121.7868"
+ inkscape:window-x="1091"
+ inkscape:window-y="85"
+ inkscape:current-layer="svg2898" />
+ <defs
+ id="defs21">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective18" />
+ <inkscape:perspective
+ id="perspective2683"
+ inkscape:persp3d-origin="107.759 : 40.782333 : 1"
+ inkscape:vp_z="215.51801 : 61.1735 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 61.1735 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2733"
+ inkscape:persp3d-origin="150 : 46.666667 : 1"
+ inkscape:vp_z="300 : 70 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 70 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <g
+ id="g2622"
+ transform="scale(0.6473613,0.6473613)"
+ inkscape:export-filename="/home/rlerch/Source/SVN/publican/trunk/publican-jboss/en-US/images/image_left.png"
+ inkscape:export-xdpi="61.361534"
+ inkscape:export-ydpi="61.361534">
+ <g
+ id="g2624">
+ <path
+ id="path2626"
+ d="M 140.253,110.221 L 143.198,116.112 L 140.706,116.112 L 137.843,110.407 L 134.588,110.407 L 134.588,116.112 L 132.467,116.112 L 132.467,101.693 L 138.79,101.693 C 141.304,101.693 143.425,103.032 143.425,105.999 C 143.425,108.305 142.21,109.727 140.253,110.221 z M 138.79,103.732 L 134.588,103.732 L 134.588,108.367 L 138.79,108.367 C 140.232,108.367 141.241,107.626 141.241,106.06 C 141.241,104.556 140.253,103.732 138.79,103.732 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2628"
+ d="M 155.164,111.458 L 148.016,111.458 C 148.243,113.538 149.417,114.424 150.736,114.424 C 151.642,114.424 152.363,114.095 153.084,113.559 L 154.341,114.918 C 153.394,115.824 152.261,116.339 150.612,116.339 C 148.079,116.339 145.936,114.3 145.936,110.716 C 145.936,107.049 147.873,105.071 150.673,105.071 C 153.742,105.071 155.226,107.563 155.226,110.489 C 155.226,110.879 155.185,111.231 155.164,111.458 z M 150.529,106.987 C 149.107,106.987 148.242,107.975 148.056,109.706 L 153.082,109.706 C 152.98,108.223 152.28,106.987 150.529,106.987 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2630"
+ d="M 164.37,116.112 L 164.37,115.083 C 163.587,115.804 162.681,116.339 161.548,116.339 C 159.22,116.339 157.387,114.651 157.387,110.53 C 157.387,106.822 159.406,105.071 161.651,105.071 C 162.743,105.071 163.773,105.648 164.371,106.307 L 164.371,102.187 L 166.472,101.095 L 166.472,116.112 L 164.37,116.112 z M 164.391,108.45 C 163.917,107.811 162.928,107.028 161.857,107.028 C 160.333,107.028 159.509,108.182 159.509,110.468 C 159.509,113.187 160.374,114.381 161.94,114.381 C 162.949,114.381 163.835,113.701 164.391,113.002 L 164.391,108.45 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2632"
+ d="M 184.266,116.112 L 184.266,109.644 L 177.632,109.644 L 177.632,116.112 L 175.47,116.112 L 175.47,101.693 L 177.632,101.693 L 177.632,107.522 L 184.266,107.522 L 184.266,101.693 L 186.428,101.693 L 186.428,116.112 L 184.266,116.112 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2634"
+ d="M 196.065,116.112 L 196.065,115.042 C 195.324,115.783 194.273,116.339 193.099,116.339 C 191.348,116.339 189.35,115.351 189.35,112.693 C 189.35,110.283 191.204,109.191 193.655,109.191 C 194.665,109.191 195.468,109.335 196.065,109.603 L 196.065,108.799 C 196.065,107.625 195.344,106.966 194.026,106.966 C 192.914,106.966 192.048,107.172 191.204,107.646 L 190.38,106.04 C 191.41,105.401 192.564,105.071 194.088,105.071 C 196.498,105.071 198.147,106.245 198.147,108.697 L 198.147,116.112 L 196.065,116.112 L 196.065,116.112 z M 196.065,111.499 C 195.489,111.21 194.747,111.024 193.593,111.024 C 192.234,111.024 191.368,111.642 191.368,112.631 C 191.368,113.701 192.048,114.423 193.448,114.423 C 194.582,114.423 195.57,113.723 196.064,113.043 L 196.064,111.499 L 196.065,111.499 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2636"
+ d="M 206.363,115.844 C 205.847,116.133 205.127,116.338 204.282,116.338 C 202.778,116.338 201.851,115.412 201.851,113.475 L 201.851,107.234 L 200.306,107.234 L 200.306,105.297 L 201.851,105.297 L 201.851,102.207 L 203.932,101.095 L 203.932,105.297 L 206.61,105.297 L 206.61,107.234 L 203.932,107.234 L 203.932,113.105 C 203.932,114.114 204.261,114.403 205.044,114.403 C 205.6,114.403 206.218,114.197 206.609,113.97 L 206.363,115.844 z"
+ style="fill:#cc0000" />
+
+ </g>
+
+ <g
+ id="g2638">
+ <path
+ id="path2640"
+ d="M 106.389,51.025 C 109.959,49.238 112.389,45.924 112.389,41.844 C 112.389,32.335 103.775,30.289 95.924,30.423 L 74.738,30.423 L 74.617,30.423 L 62.871,30.423 L 62.871,60.785 C 62.871,65.194 61.334,66.721 58.597,66.721 C 55.656,66.721 54.002,65.067 54.002,62.063 L 54.002,57.858 L 42.832,57.858 L 42.832,59.827 C 42.832,69.981 46.724,76.926 58.784,76.926 C 68.621,76.926 73.822,72.57 74.617,63.968 L 74.617,75.972 L 96.496,75.972 C 106.257,75.972 114.233,72.657 114.233,61.811 C 114.233,56.646 111.242,52.435 106.389,51.025 z M 86.487,39.605 L 95.668,39.605 C 98.161,39.605 100.52,40.697 100.52,44.01 C 100.52,47.263 97.714,48.348 95.668,48.348 L 86.487,48.348 L 86.487,39.605 z M 95.989,66.469 L 86.487,66.469 L 86.487,56 L 95.989,56 C 99.565,56 102.373,57.345 102.373,61.355 C 102.373,65.125 99.756,66.469 95.989,66.469 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2642"
+ d="M 90.067,108.399 C 90.067,100.704 83.822,94.452 76.123,94.452 C 68.409,94.452 62.168,100.704 62.168,108.399 C 62.168,116.108 68.409,122.347 76.123,122.347 C 83.822,122.347 90.067,116.108 90.067,108.399 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2644"
+ d="M 53.012,103.999 C 53.012,97.181 47.479,91.65 40.655,91.65 C 33.832,91.65 28.303,97.18 28.303,103.999 C 28.303,110.823 33.831,116.356 40.655,116.356 C 47.479,116.356 53.012,110.823 53.012,103.999 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2646"
+ d="M 25.097,81.68 C 25.097,75.523 20.113,70.529 13.947,70.529 C 7.779,70.529 2.787,75.523 2.787,81.68 C 2.787,87.854 7.779,92.848 13.947,92.848 C 20.112,92.848 25.097,87.854 25.097,81.68 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2648"
+ d="M 19.918,50.615 C 19.918,45.109 15.463,40.659 9.963,40.659 C 4.464,40.659 0,45.108 0,50.615 C 0,56.115 4.464,60.579 9.963,60.579 C 15.463,60.579 19.918,56.114 19.918,50.615 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2650"
+ d="M 33.88,22.719 C 33.88,18.1 30.124,14.353 25.508,14.353 C 20.889,14.353 17.139,18.1 17.139,22.719 C 17.139,27.342 20.889,31.086 25.508,31.086 C 30.124,31.086 33.88,27.342 33.88,22.719 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2652"
+ d="M 57.78,10.364 C 57.78,6.184 54.395,2.793 50.214,2.793 C 46.034,2.793 42.643,6.184 42.643,10.364 C 42.643,14.551 46.035,17.942 50.214,17.942 C 54.396,17.942 57.78,14.551 57.78,10.364 z"
+ style="fill:#cc0000" />
+
+ <path
+ id="path2654"
+ d="M 82.891,6.377 C 82.891,2.855 80.042,0 76.517,0 C 73.001,0 70.14,2.855 70.14,6.377 C 70.14,9.903 73.001,12.757 76.517,12.757 C 80.042,12.757 82.891,9.903 82.891,6.377 z"
+ style="fill:#cc0000" />
+
+ </g>
+
+ <g
+ id="g2656">
+ <g
+ id="g2658">
+ <path
+ id="path2660"
+ d="M 161.415,62.895 C 156.077,61.543 149.709,61.118 147.172,56.742 C 147.293,57.624 147.376,58.522 147.376,59.448 C 147.376,61.433 147.077,63.315 146.536,65.067 L 155.794,65.067 C 155.794,66.721 156.504,67.933 157.582,68.762 C 158.604,69.532 160.076,69.904 161.604,69.904 C 163.701,69.904 166.706,69.02 166.706,66.4 C 166.706,63.855 163.321,63.336 161.415,62.895 z"
+ style="fill:none" />
+
+ <path
+ id="path2662"
+ d="M 129.896,50.193 C 124.851,50.193 123.318,55.244 123.318,59.448 C 123.318,63.665 124.851,68.635 129.896,68.635 C 134.935,68.635 136.529,63.665 136.529,59.448 C 136.528,55.244 134.935,50.193 129.896,50.193 z"
+ style="fill:none" />
+
+ <path
+ id="path2664"
+ d="M 192.015,62.895 C 185.337,61.204 176.724,60.97 176.338,52.616 L 166.718,52.616 C 166.718,51.22 166.206,50.326 165.322,49.75 C 164.419,49.181 163.215,48.923 161.875,48.923 C 160.094,48.923 156.883,49.111 156.883,51.41 C 156.883,54.542 164.156,55.115 169.13,56.197 C 175.779,57.532 177.529,62.315 177.553,65.066 L 186.395,65.066 C 186.395,66.72 187.105,67.932 188.183,68.761 C 189.206,69.531 190.677,69.903 192.204,69.903 C 194.301,69.903 197.307,69.019 197.307,66.399 C 197.306,63.855 193.922,63.336 192.015,62.895 z"
+ style="fill:none" />
+
+ <path
+ id="path2666"
+ d="M 199.729,56.198 C 194.754,55.116 187.148,54.544 187.148,51.411 C 187.148,49.111 190.027,48.924 191.808,48.924 C 193.147,48.924 194.352,49.182 195.255,49.751 C 196.139,50.327 196.651,51.221 196.651,52.617 L 206.67,52.617 C 206.285,44.011 198.69,41.903 191.431,41.903 C 185.383,41.903 177.526,43.785 176.439,50.443 C 174.954,43.662 168.095,41.903 161.496,41.903 C 154.986,41.903 146.035,44.075 146.035,52.049 C 146.035,52.19 146.056,52.31 146.059,52.447 C 143.534,46.151 137.569,41.903 129.896,41.903 C 121.597,41.903 115.392,46.75 113.294,53.899 C 114.898,56.057 115.742,58.872 115.742,61.811 C 115.742,64.224 115.358,66.36 114.631,68.23 C 117.484,73.503 122.974,76.926 129.896,76.926 C 137.25,76.926 143.019,73.054 145.711,67.207 C 147.125,74.716 154.473,76.926 161.668,76.926 C 167.855,76.926 174.688,74.899 176.847,69.154 C 179.082,75.103 185.737,76.926 192.268,76.926 C 199.73,76.926 208.154,73.995 208.154,65.125 C 208.153,62.383 206.423,57.542 199.729,56.198 z M 129.896,68.63!
5 C 124.851,68.635 123.318,63.665 123.318,59.448 C 123.318,55.243 124.851,50.193 129.896,50.193 C 134.935,50.193 136.529,55.244 136.529,59.448 C 136.528,63.666 134.935,68.635 129.896,68.635 z M 161.604,69.904 C 160.076,69.904 158.604,69.532 157.582,68.762 C 156.504,67.933 155.794,66.721 155.794,65.067 L 146.536,65.067 C 147.077,63.315 147.376,61.433 147.376,59.448 C 147.376,58.522 147.293,57.624 147.172,56.742 C 149.709,61.117 156.077,61.543 161.415,62.895 C 163.321,63.336 166.706,63.855 166.706,66.4 C 166.706,69.02 163.701,69.904 161.604,69.904 z M 192.203,69.904 C 190.676,69.904 189.205,69.532 188.182,68.762 C 187.104,67.933 186.394,66.721 186.394,65.067 L 177.552,65.067 C 177.529,62.316 175.779,57.533 169.129,56.198 C 164.155,55.116 156.882,54.544 156.882,51.411 C 156.882,49.111 160.093,48.924 161.874,48.924 C 163.214,48.924 164.418,49.182 165.321,49.751 C 166.206,50.327 166.717,51.221 166.717,52.617 L 176.337,52.617 C 176.723,60.971 185.336,61.204 192.014,62.896 C 193.9!
21,63.337 197.305,63.856 197.305,66.401 C 197.306,69.02 194.3,!
69.904 1
92.203,69.904 z"
+ style="fill:#60605b" />
+
+ </g>
+
+ <path
+ id="path2668"
+ d="M 209.127,36.16 L 210.092,36.16 L 211.544,38.546 L 212.485,38.546 L 210.914,36.116 C 211.721,36.014 212.334,35.586 212.334,34.607 C 212.334,33.508 211.696,33.034 210.396,33.034 L 208.294,33.034 L 208.294,38.546 L 209.127,38.546 L 209.127,36.16 z M 209.127,35.446 L 209.127,33.735 L 210.27,33.735 C 210.837,33.735 211.47,33.867 211.47,34.55 C 211.47,35.397 210.837,35.446 210.131,35.446 L 209.127,35.446 z"
+ style="fill:#60605b" />
+
+ <path
+ id="path2670"
+ d="M 215.518,35.8 C 215.518,38.78 213.098,41.192 210.119,41.192 C 207.133,41.192 204.713,38.78 204.713,35.8 C 204.713,32.813 207.133,30.395 210.119,30.395 C 213.098,30.396 215.518,32.813 215.518,35.8 z M 210.118,31.356 C 207.654,31.356 205.666,33.338 205.666,35.8 C 205.666,38.251 207.654,40.232 210.118,40.232 C 212.568,40.232 214.556,38.251 214.556,35.8 C 214.557,33.338 212.568,31.356 210.118,31.356 z"
+ style="fill:#60605b" />
+
+ </g>
+
+ <g
+ id="g2672">
+ <path
+ id="path2674"
+ d="M 108.227,116.338 C 107.135,116.338 106.105,115.762 105.508,115.103 L 105.508,116.112 L 103.406,116.112 L 103.406,102.187 L 105.508,101.095 L 105.508,106.327 C 106.29,105.605 107.196,105.07 108.33,105.07 C 110.657,105.07 112.49,106.759 112.49,110.879 C 112.49,114.588 110.472,116.338 108.227,116.338 z M 107.938,107.028 C 106.928,107.028 106.042,107.708 105.487,108.409 L 105.487,112.961 C 105.961,113.6 106.949,114.382 108.02,114.382 C 109.544,114.382 110.369,113.23 110.369,110.943 C 110.369,108.223 109.504,107.028 107.938,107.028 z"
+ style="fill:#60605b" />
+
+ <path
+ id="path2676"
+ d="M 118.915,119.923 L 116.67,119.923 L 118.235,115.906 L 114.259,105.297 L 116.587,105.297 L 118.358,110.592 C 118.687,111.539 119.182,113.146 119.305,113.742 C 119.491,113.104 119.944,111.559 120.273,110.633 L 122.107,105.297 L 124.352,105.297 L 118.915,119.923 z"
+ style="fill:#60605b" />
+
+ </g>
+
+</g>
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/rhlogo.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/rhlogo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/shade.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/shade.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-back.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-back.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-forward.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-forward.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-up.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-go-up.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-home.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/stock-home.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/title_logo.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/title_logo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/title_logo.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/title_logo.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/title_logo.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,228 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="265"
+ height="151"
+ id="svg2898"
+ sodipodi:version="0.32"
+ inkscape:version="0.46+devel"
+ sodipodi:docname="title_logo.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/home/rlerch/Source/SVN/publican/trunk/publican-jboss/en-US/images/title_logo.png"
+ inkscape:export-xdpi="20.840239"
+ inkscape:export-ydpi="20.840239">
+ <metadata
+ id="metadata16">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="" />
+ <dc:title />
+ <dc:date />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:creator>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:rights>
+ <dc:publisher>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:publisher>
+ <dc:identifier />
+ <dc:source />
+ <dc:relation />
+ <dc:language />
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:coverage />
+ <dc:description />
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ <cc:license
+ rdf:resource="" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ inkscape:window-height="692"
+ inkscape:window-width="640"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ guidetolerance="10.0"
+ gridtolerance="10.0"
+ objecttolerance="10.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base"
+ showgrid="false"
+ inkscape:zoom="1"
+ inkscape:cx="170.83251"
+ inkscape:cy="121.7868"
+ inkscape:window-x="1936"
+ inkscape:window-y="174"
+ inkscape:current-layer="svg2898"
+ units="px" />
+ <defs
+ id="defs21">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective18" />
+ <inkscape:perspective
+ id="perspective2683"
+ inkscape:persp3d-origin="107.759 : 40.782333 : 1"
+ inkscape:vp_z="215.51801 : 61.1735 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 61.1735 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2733"
+ inkscape:persp3d-origin="150 : 46.666667 : 1"
+ inkscape:vp_z="300 : 70 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 70 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2787"
+ inkscape:persp3d-origin="150 : 46.666667 : 1"
+ inkscape:vp_z="300 : 70 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 70 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <g
+ id="g2622"
+ transform="scale(1.2286387,1.2286387)"
+ inkscape:export-filename="/home/rlerch/Source/SVN/publican/trunk/publican-jboss/en-US/images/rhlogo.png"
+ inkscape:export-xdpi="61.361534"
+ inkscape:export-ydpi="61.361534">
+ <g
+ id="g2624">
+ <path
+ id="path2626"
+ d="m 140.253,110.221 2.945,5.891 -2.492,0 -2.863,-5.705 -3.255,0 0,5.705 -2.121,0 0,-14.419 6.323,0 c 2.514,0 4.635,1.339 4.635,4.306 0,2.306 -1.215,3.728 -3.172,4.222 z m -1.463,-6.489 -4.202,0 0,4.635 4.202,0 c 1.442,0 2.451,-0.741 2.451,-2.307 0,-1.504 -0.988,-2.328 -2.451,-2.328 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2628"
+ d="m 155.164,111.458 -7.148,0 c 0.227,2.08 1.401,2.966 2.72,2.966 0.906,0 1.627,-0.329 2.348,-0.865 l 1.257,1.359 c -0.947,0.906 -2.08,1.421 -3.729,1.421 -2.533,0 -4.676,-2.039 -4.676,-5.623 0,-3.667 1.937,-5.645 4.737,-5.645 3.069,0 4.553,2.492 4.553,5.418 0,0.39 -0.041,0.742 -0.062,0.969 z m -4.635,-4.471 c -1.422,0 -2.287,0.988 -2.473,2.719 l 5.026,0 c -0.102,-1.483 -0.802,-2.719 -2.553,-2.719 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2630"
+ d="m 164.37,116.112 0,-1.029 c -0.783,0.721 -1.689,1.256 -2.822,1.256 -2.328,0 -4.161,-1.688 -4.161,-5.809 0,-3.708 2.019,-5.459 4.264,-5.459 1.092,0 2.122,0.577 2.72,1.236 l 0,-4.12 2.101,-1.092 0,15.017 -2.102,0 z m 0.021,-7.662 c -0.474,-0.639 -1.463,-1.422 -2.534,-1.422 -1.524,0 -2.348,1.154 -2.348,3.44 0,2.719 0.865,3.913 2.431,3.913 1.009,0 1.895,-0.68 2.451,-1.379 l 0,-4.552 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2632"
+ d="m 184.266,116.112 0,-6.468 -6.634,0 0,6.468 -2.162,0 0,-14.419 2.162,0 0,5.829 6.634,0 0,-5.829 2.162,0 0,14.419 -2.162,0 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2634"
+ d="m 196.065,116.112 0,-1.07 c -0.741,0.741 -1.792,1.297 -2.966,1.297 -1.751,0 -3.749,-0.988 -3.749,-3.646 0,-2.41 1.854,-3.502 4.305,-3.502 1.01,0 1.813,0.144 2.41,0.412 l 0,-0.804 c 0,-1.174 -0.721,-1.833 -2.039,-1.833 -1.112,0 -1.978,0.206 -2.822,0.68 l -0.824,-1.606 c 1.03,-0.639 2.184,-0.969 3.708,-0.969 2.41,0 4.059,1.174 4.059,3.626 l 0,7.415 -2.082,0 0,0 z m 0,-4.613 c -0.576,-0.289 -1.318,-0.475 -2.472,-0.475 -1.359,0 -2.225,0.618 -2.225,1.607 0,1.07 0.68,1.792 2.08,1.792 1.134,0 2.122,-0.7 2.616,-1.38 l 0,-1.544 0.001,0 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2636"
+ d="m 206.363,115.844 c -0.516,0.289 -1.236,0.494 -2.081,0.494 -1.504,0 -2.431,-0.926 -2.431,-2.863 l 0,-6.241 -1.545,0 0,-1.937 1.545,0 0,-3.09 2.081,-1.112 0,4.202 2.678,0 0,1.937 -2.678,0 0,5.871 c 0,1.009 0.329,1.298 1.112,1.298 0.556,0 1.174,-0.206 1.565,-0.433 l -0.246,1.874 z"
+ style="fill:#cc0000" />
+ </g>
+ <g
+ id="g2638">
+ <path
+ id="path2640"
+ d="m 106.389,51.025 c 3.57,-1.787 6,-5.101 6,-9.181 0,-9.509 -8.614,-11.555 -16.465,-11.421 l -21.186,0 -0.121,0 -11.746,0 0,30.362 c 0,4.409 -1.537,5.936 -4.274,5.936 -2.941,0 -4.595,-1.654 -4.595,-4.658 l 0,-4.205 -11.17,0 0,1.969 c 0,10.154 3.892,17.099 15.952,17.099 9.837,0 15.038,-4.356 15.833,-12.958 l 0,12.004 21.879,0 c 9.761,0 17.737,-3.315 17.737,-14.161 0,-5.165 -2.991,-9.376 -7.844,-10.786 z m -19.902,-11.42 9.181,0 c 2.493,0 4.852,1.092 4.852,4.405 0,3.253 -2.806,4.338 -4.852,4.338 l -9.181,0 0,-8.743 z m 9.502,26.864 -9.502,0 0,-10.469 9.502,0 c 3.576,0 6.384,1.345 6.384,5.355 0,3.77 -2.617,5.114 -6.384,5.114 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2642"
+ d="m 90.067,108.399 c 0,-7.695 -6.245,-13.947 -13.944,-13.947 -7.714,0 -13.955,6.252 -13.955,13.947 0,7.709 6.241,13.948 13.955,13.948 7.699,0 13.944,-6.239 13.944,-13.948 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2644"
+ d="m 53.012,103.999 c 0,-6.818 -5.533,-12.349 -12.357,-12.349 -6.823,0 -12.352,5.53 -12.352,12.349 0,6.824 5.528,12.357 12.352,12.357 6.824,0 12.357,-5.533 12.357,-12.357 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2646"
+ d="m 25.097,81.68 c 0,-6.157 -4.984,-11.151 -11.15,-11.151 -6.168,0 -11.16,4.994 -11.16,11.151 0,6.174 4.992,11.168 11.16,11.168 6.165,0 11.15,-4.994 11.15,-11.168 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2648"
+ d="m 19.918,50.615 c 0,-5.506 -4.455,-9.956 -9.955,-9.956 -5.499,0 -9.963,4.449 -9.963,9.956 0,5.5 4.464,9.964 9.963,9.964 5.5,0 9.955,-4.465 9.955,-9.964 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2650"
+ d="m 33.88,22.719 c 0,-4.619 -3.756,-8.366 -8.372,-8.366 -4.619,0 -8.369,3.747 -8.369,8.366 0,4.623 3.75,8.367 8.369,8.367 4.616,0 8.372,-3.744 8.372,-8.367 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2652"
+ d="m 57.78,10.364 c 0,-4.18 -3.385,-7.571 -7.566,-7.571 -4.18,0 -7.571,3.391 -7.571,7.571 0,4.187 3.392,7.578 7.571,7.578 4.182,0 7.566,-3.391 7.566,-7.578 z"
+ style="fill:#cc0000" />
+ <path
+ id="path2654"
+ d="M 82.891,6.377 C 82.891,2.855 80.042,0 76.517,0 73.001,0 70.14,2.855 70.14,6.377 c 0,3.526 2.861,6.38 6.377,6.38 3.525,0 6.374,-2.854 6.374,-6.38 z"
+ style="fill:#cc0000" />
+ </g>
+ <g
+ id="g2656">
+ <g
+ id="g2658">
+ <path
+ id="path2660"
+ d="m 161.415,62.895 c -5.338,-1.352 -11.706,-1.777 -14.243,-6.153 0.121,0.882 0.204,1.78 0.204,2.706 0,1.985 -0.299,3.867 -0.84,5.619 l 9.258,0 c 0,1.654 0.71,2.866 1.788,3.695 1.022,0.77 2.494,1.142 4.022,1.142 2.097,0 5.102,-0.884 5.102,-3.504 0,-2.545 -3.385,-3.064 -5.291,-3.505 z"
+ style="fill:none" />
+ <path
+ id="path2662"
+ d="m 129.896,50.193 c -5.045,0 -6.578,5.051 -6.578,9.255 0,4.217 1.533,9.187 6.578,9.187 5.039,0 6.633,-4.97 6.633,-9.187 -0.001,-4.204 -1.594,-9.255 -6.633,-9.255 z"
+ style="fill:none" />
+ <path
+ id="path2664"
+ d="M 192.015,62.895 C 185.337,61.204 176.724,60.97 176.338,52.616 l -9.62,0 c 0,-1.396 -0.512,-2.29 -1.396,-2.866 -0.903,-0.569 -2.107,-0.827 -3.447,-0.827 -1.781,0 -4.992,0.188 -4.992,2.487 0,3.132 7.273,3.705 12.247,4.787 6.649,1.335 8.399,6.118 8.423,8.869 l 8.842,0 c 0,1.654 0.71,2.866 1.788,3.695 1.023,0.77 2.494,1.142 4.021,1.142 2.097,0 5.103,-0.884 5.103,-3.504 -10e-4,-2.544 -3.385,-3.063 -5.292,-3.504 z"
+ style="fill:none" />
+ <path
+ id="path2666"
+ d="m 199.729,56.198 c -4.975,-1.082 -12.581,-1.654 -12.581,-4.787 0,-2.3 2.879,-2.487 4.66,-2.487 1.339,0 2.544,0.258 3.447,0.827 0.884,0.576 1.396,1.47 1.396,2.866 l 10.019,0 c -0.385,-8.606 -7.98,-10.714 -15.239,-10.714 -6.048,0 -13.905,1.882 -14.992,8.54 -1.485,-6.781 -8.344,-8.54 -14.943,-8.54 -6.51,0 -15.461,2.172 -15.461,10.146 0,0.141 0.021,0.261 0.024,0.398 -2.525,-6.296 -8.49,-10.544 -16.163,-10.544 -8.299,0 -14.504,4.847 -16.602,11.996 1.604,2.158 2.448,4.973 2.448,7.912 0,2.413 -0.384,4.549 -1.111,6.419 2.853,5.273 8.343,8.696 15.265,8.696 7.354,0 13.123,-3.872 15.815,-9.719 1.414,7.509 8.762,9.719 15.957,9.719 6.187,0 13.02,-2.027 15.179,-7.772 2.235,5.949 8.89,7.772 15.421,7.772 7.462,0 15.886,-2.931 15.886,-11.801 -0.001,-2.742 -1.731,-7.583 -8.425,-8.927 z m -69.833,12.437 c -5.045,0 -6.578,-4.97 -6.578,-9.187 0,-4.205 1.533,-9.255 6.578,-9.255 5.039,0 6.633,5.051 6.633,9.255 -0.001,4.218 -1.594,9.187 -6.633,9.187 z m 31.708,1.269 c -1.528,0 -3,-0.!
372 -4.022,-1.142 -1.078,-0.829 -1.788,-2.041 -1.788,-3.695 l -9.258,0 c 0.541,-1.752 0.84,-3.634 0.84,-5.619 0,-0.926 -0.083,-1.824 -0.204,-2.706 2.537,4.375 8.905,4.801 14.243,6.153 1.906,0.441 5.291,0.96 5.291,3.505 0,2.62 -3.005,3.504 -5.102,3.504 z m 30.599,0 c -1.527,0 -2.998,-0.372 -4.021,-1.142 -1.078,-0.829 -1.788,-2.041 -1.788,-3.695 l -8.842,0 c -0.023,-2.751 -1.773,-7.534 -8.423,-8.869 -4.974,-1.082 -12.247,-1.654 -12.247,-4.787 0,-2.3 3.211,-2.487 4.992,-2.487 1.34,0 2.544,0.258 3.447,0.827 0.885,0.576 1.396,1.47 1.396,2.866 l 9.62,0 c 0.386,8.354 8.999,8.587 15.677,10.279 1.907,0.441 5.291,0.96 5.291,3.505 0.001,2.619 -3.005,3.503 -5.102,3.503 z"
+ style="fill:#60605b" />
+ </g>
+ <path
+ id="path2668"
+ d="m 209.127,36.16 0.965,0 1.452,2.386 0.941,0 -1.571,-2.43 c 0.807,-0.102 1.42,-0.53 1.42,-1.509 0,-1.099 -0.638,-1.573 -1.938,-1.573 l -2.102,0 0,5.512 0.833,0 0,-2.386 z m 0,-0.714 0,-1.711 1.143,0 c 0.567,0 1.2,0.132 1.2,0.815 0,0.847 -0.633,0.896 -1.339,0.896 l -1.004,0 z"
+ style="fill:#60605b" />
+ <path
+ id="path2670"
+ d="m 215.518,35.8 c 0,2.98 -2.42,5.392 -5.399,5.392 -2.986,0 -5.406,-2.412 -5.406,-5.392 0,-2.987 2.42,-5.405 5.406,-5.405 2.979,0.001 5.399,2.418 5.399,5.405 z m -5.4,-4.444 c -2.464,0 -4.452,1.982 -4.452,4.444 0,2.451 1.988,4.432 4.452,4.432 2.45,0 4.438,-1.981 4.438,-4.432 10e-4,-2.462 -1.988,-4.444 -4.438,-4.444 z"
+ style="fill:#60605b" />
+ </g>
+ <g
+ id="g2672">
+ <path
+ id="path2674"
+ d="m 108.227,116.338 c -1.092,0 -2.122,-0.576 -2.719,-1.235 l 0,1.009 -2.102,0 0,-13.925 2.102,-1.092 0,5.232 c 0.782,-0.722 1.688,-1.257 2.822,-1.257 2.327,0 4.16,1.689 4.16,5.809 0,3.709 -2.018,5.459 -4.263,5.459 z m -0.289,-9.31 c -1.01,0 -1.896,0.68 -2.451,1.381 l 0,4.552 c 0.474,0.639 1.462,1.421 2.533,1.421 1.524,0 2.349,-1.152 2.349,-3.439 0,-2.72 -0.865,-3.915 -2.431,-3.915 z"
+ style="fill:#60605b" />
+ <path
+ id="path2676"
+ d="m 118.915,119.923 -2.245,0 1.565,-4.017 -3.976,-10.609 2.328,0 1.771,5.295 c 0.329,0.947 0.824,2.554 0.947,3.15 0.186,-0.638 0.639,-2.183 0.968,-3.109 l 1.834,-5.336 2.245,0 -5.437,14.626 z"
+ style="fill:#60605b" />
+ </g>
+ </g>
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/warning.png
===================================================================
(Binary files differ)
Property changes on: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/warning.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/warning.svg
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/warning.svg (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Common_Content/images/warning.svg 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="48"
+ height="48"
+ id="svg2">
+ <defs
+ id="defs5" />
+ <path
+ d="M 26.553837,7.3026447 C 25.283816,5.0882437 23.199663,5.0882437 21.945919,7.3026447 L 3.9376032,38.711367 C 2.6675727,40.925778 3.7259346,42.749404 6.2822626,42.749404 L 42.217493,42.749404 C 44.77383,42.749404 45.832183,40.925778 44.545876,38.711367 L 26.553837,7.3026447 z "
+ style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:4.7150631;stroke-miterlimit:4;stroke-dasharray:none"
+ id="use2812" />
+ <path
+ d="M 26.553837,7.3026447 C 25.283816,5.0882437 23.199663,5.0882437 21.945919,7.3026447 L 3.9376032,38.711367 C 2.6675727,40.925778 3.7259346,42.749404 6.2822626,42.749404 L 42.217493,42.749404 C 44.77383,42.749404 45.832183,40.925778 44.545876,38.711367 L 26.553837,7.3026447 z "
+ style="fill:#fde8a6;fill-opacity:1;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path4309" />
+ <path
+ d="M 26.220057,12.491166 C 25.133792,10.597163 23.351196,10.597163 22.278859,12.491166 L 6.8761436,39.355379 C 5.789878,41.249382 6.6951041,42.809153 8.8815542,42.809153 L 39.617353,42.809153 C 41.803812,42.809153 42.709038,41.249382 41.608844,39.355379 L 26.220057,12.491166 z "
+ style="fill:#fac521;fill-opacity:1"
+ id="path2991" />
+ <path
+ d="M 28.470282,37.445157 C 28.470282,38.878008 27.2491,39.952646 25.392902,39.952646 L 25.36034,39.952646 C 23.520438,39.952646 22.282969,38.878008 22.282969,37.445157 C 22.282969,35.947181 23.553,34.921391 25.392902,34.921391 C 27.216538,34.921391 28.437711,35.947181 28.470282,37.445157 z M 28.144632,33.146613 L 29.21927,19.990446 L 21.517696,19.990446 L 22.592334,33.146613 L 28.144632,33.146613 z "
+ style="fill:#fef2cb;fill-opacity:1;stroke:#fef2cb;stroke-width:0.9430126;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+ id="path4468" />
+ <path
+ d="M 27.089325,36.371084 C 27.089325,37.803935 25.868143,38.878574 24.011955,38.878574 L 23.979392,38.878574 C 22.139481,38.878574 20.902022,37.803935 20.902022,36.371084 C 20.902022,34.873109 22.172043,33.847319 24.011955,33.847319 C 25.835581,33.847319 27.056763,34.873109 27.089325,36.371084 z M 26.763675,32.072531 L 27.838313,18.916364 L 20.136748,18.916364 L 21.211386,32.072531 L 26.763675,32.072531 z "
+ style="fill:#2e3436"
+ id="path4470" />
+</svg>
Added: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/pom.xml
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/pom.xml (rev 0)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/pom.xml 2010-03-19 15:10:25 UTC (rev 2312)
@@ -0,0 +1,216 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.project</groupId>
+ <artifactId>${docname}-${translation}</artifactId>
+ <version>1.0</version>
+ <packaging>jdocbook</packaging>
+ <name>${bookname}-(${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ <docname>Release_Notes</docname>
+ <bookname>Relese Notes</bookname>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+
+ <profiles>
+
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.2.1</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.2.1</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.2.1</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.2.0</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ </profiles>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.2.0</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-docbook-xslt</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.0</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDocumentName>${docname}.xml</sourceDocumentName>
+ <sourceDirectory>.</sourceDirectory>
+ <imageResource>
+ <directory>${translation}</directory>
+ <includes>
+ <include>images/*</include>
+ </includes>
+ </imageResource>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+ <!-- could also locate the docbook dependency and inspect its version... -->
+ <docbookVersion>1.72.0</docbookVersion>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
+</project>
14 years, 9 months
gatein SVN: r2311 - portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US.
by do-not-reply@jboss.org
Author: luc.texier(a)jboss.com
Date: 2010-03-19 10:59:33 -0400 (Fri, 19 Mar 2010)
New Revision: 2311
Modified:
portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml
Log:
JBEPP-185 fixed EPP 5 architecture section
Modified: portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml
===================================================================
--- portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml 2010-03-19 14:58:00 UTC (rev 2310)
+++ portal/branches/EPP_5_0_0_ER04_Branch_Docs/Enterprise_Portal_Platform_Release_Notes/en-US/Release_Notes.xml 2010-03-19 14:59:33 UTC (rev 2311)
@@ -37,13 +37,13 @@
This is beta software and the final component manifest and exact component versions are subject to change prior to General Availability.
</para>
<figure id="figu-Release_Notes-Features_in_PRODUCT_VERSION-Placeholder_Image">
- <title>Placeholder Image</title>
+ <title>EPP 5 Architecture</title>
<mediaobject>
<imageobject role="html">
- <imagedata align="center" fileref="images/components.png" format="PNG" scale="90" width="444" />
+ <imagedata align="center" fileref="images/epp5_architecture.png" format="PNG" scale="90" width="444" />
</imageobject>
<imageobject role="fo">
- <imagedata align="center" contentwidth="150mm" fileref="images/components.png" format="PNG" width="444" />
+ <imagedata align="center" contentwidth="150mm" fileref="images/epp5_architecture.png" format="PNG" width="444" />
</imageobject>
</mediaobject>
</figure>
14 years, 9 months