gatein SVN: r395 - in portal/trunk: component/dashboard/src/main/resources/groovy/dashboard/webui/component and 5 other directories.
by do-not-reply@jboss.org
Author: tan_pham_dinh
Date: 2009-10-22 02:55:41 -0400 (Thu, 22 Oct 2009)
New Revision: 395
Removed:
portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardMask.java
portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardMask.gtmpl
Modified:
portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboard.java
portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java
portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboard.gtmpl
portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardContainer.gtmpl
portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardPortlet.java
portal/trunk/portlet/dashboard/src/main/webapp/groovy/dashboard/webui/component/UIDashboardPortlet.gtmpl
portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/Browser.js
portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/gadget/UIGadget.js
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard/Stylesheet.css
Log:
GTNPORTAL-49: Re-organize ui components in Dashboard portlet
Modified: portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboard.java
===================================================================
--- portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboard.java 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboard.java 2009-10-22 06:55:41 UTC (rev 395)
@@ -19,6 +19,8 @@
package org.exoplatform.dashboard.webui.component;
+import org.exoplatform.portal.webui.application.UIGadget;
+import org.exoplatform.webui.application.WebuiRequestContext;
import org.exoplatform.webui.application.portlet.PortletRequestContext;
import org.exoplatform.webui.config.annotation.ComponentConfig;
import org.exoplatform.webui.config.annotation.ComponentConfigs;
@@ -32,7 +34,9 @@
@EventConfig(listeners = UIDashboardContainer.MoveGadgetActionListener.class),
@EventConfig(listeners = UIDashboardContainer.AddNewGadgetActionListener.class),
@EventConfig(listeners = UIDashboard.SetShowSelectContainerActionListener.class),
- @EventConfig(listeners = UIDashboardContainer.DeleteGadgetActionListener.class)})})
+ @EventConfig(listeners = UIDashboardContainer.DeleteGadgetActionListener.class),
+ @EventConfig(listeners = UIDashboard.MinimizeGadgetActionListener.class),
+ @EventConfig(listeners = UIDashboard.MaximizeGadgetActionListener.class)})})
public class UIDashboard extends UIContainer
{
@@ -42,6 +46,8 @@
private String aggregatorId;
+ private UIGadget maximizedGadget;
+
public UIDashboard() throws Exception
{
UIPopupWindow popup = addChild(UIPopupWindow.class, null, GADGET_POPUP_ID);
@@ -86,10 +92,19 @@
this.aggregatorId = aggregatorId;
}
- public static class SetShowSelectContainerActionListener extends
- EventListener<org.exoplatform.webui.core.UIContainer>
+ public UIGadget getMaximizedGadget()
{
- public final void execute(final Event<org.exoplatform.webui.core.UIContainer> event) throws Exception
+ return maximizedGadget;
+ }
+
+ public void setMaximizedGadget(UIGadget gadget)
+ {
+ maximizedGadget = gadget;
+ }
+
+ public static class SetShowSelectContainerActionListener extends EventListener<UIDashboard>
+ {
+ public final void execute(final Event<UIDashboard> event) throws Exception
{
UIDashboard uiDashboard = (UIDashboard)event.getSource();
if (!uiDashboard.canEdit())
@@ -106,4 +121,43 @@
}
}
}
+
+ public static class MinimizeGadgetActionListener extends EventListener<UIDashboard>
+ {
+ public final void execute(final Event<UIDashboard> event) throws Exception
+ {
+ WebuiRequestContext context = event.getRequestContext();
+ UIDashboard uiDashboard = event.getSource();
+ String objectId = context.getRequestParameter(OBJECTID);
+ String minimized = context.getRequestParameter("minimized");
+
+ UIGadget uiGadget = uiDashboard.getChild(UIDashboardContainer.class).getUIGadget(objectId);
+ uiGadget.getProperties().setProperty("minimized", minimized);
+ uiDashboard.getChild(UIDashboardContainer.class).save();
+ context.addUIComponentToUpdateByAjax(uiGadget);
+ }
+ }
+
+ public static class MaximizeGadgetActionListener extends EventListener<UIDashboard>
+ {
+ public final void execute(final Event<UIDashboard> event) throws Exception
+ {
+ WebuiRequestContext context = event.getRequestContext();
+ UIDashboard uiDashboard = event.getSource();
+ String objectId = context.getRequestParameter(OBJECTID);
+ String maximize = context.getRequestParameter("maximize");
+ UIDashboardContainer uiDashboardCont = uiDashboard.getChild(UIDashboardContainer.class);
+ UIGadget uiGadget = uiDashboardCont.getUIGadget(objectId);
+ if (maximize.equals("maximize"))
+ {
+ uiGadget.setView(UIGadget.CANVAS_VIEW);
+ uiDashboard.setMaximizedGadget(uiGadget);
+ }
+ else
+ {
+ uiGadget.setView(UIGadget.HOME_VIEW);
+ uiDashboard.setMaximizedGadget(null);
+ }
+ }
+ }
}
Modified: portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java
===================================================================
--- portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java 2009-10-22 06:55:41 UTC (rev 395)
@@ -30,6 +30,7 @@
import org.exoplatform.portal.webui.application.UIPortlet;
import org.exoplatform.portal.webui.container.UIContainer;
import org.exoplatform.portal.webui.util.PortalDataMapper;
+import org.exoplatform.web.application.RequestContext;
import org.exoplatform.webui.application.WebuiRequestContext;
import org.exoplatform.webui.application.portlet.PortletRequestContext;
import org.exoplatform.webui.config.InitParams;
@@ -107,7 +108,7 @@
{
return;
}
- WebuiRequestContext context = WebuiRequestContext.getCurrentInstance();
+ WebuiRequestContext context = RequestContext.getCurrentInstance();
windowId = ((PortletRequestContext)context).getRequest().getWindowID();
Param param = initParams.getParam("ContainerConfigs");
@@ -120,6 +121,7 @@
addChild(UIContainer.class, null, null);
}
+ @Override
public void processRender(WebuiRequestContext context) throws Exception
{
DataStorage service = getApplicationComponent(DataStorage.class);
@@ -288,13 +290,8 @@
*/
public boolean hasUIGadget()
{
- boolean flag = false;
UIGadget gadget = findFirstComponentOfType(UIGadget.class);
- if (gadget != null)
- {
- flag = true;
- }
- return flag;
+ return (gadget != null);
}
/**
@@ -462,13 +459,14 @@
service.execute(new DashboardTask.Save(dashboard));
}
- public static class AddNewGadgetActionListener extends EventListener<org.exoplatform.webui.core.UIContainer>
+ public static class AddNewGadgetActionListener extends EventListener<UIDashboard>
{
- public final void execute(final Event<org.exoplatform.webui.core.UIContainer> event) throws Exception
+ @Override
+ public final void execute(final Event<UIDashboard> event) throws Exception
{
WebuiRequestContext context = event.getRequestContext();
- org.exoplatform.webui.core.UIContainer uiDashboard = event.getSource();
- if (!((UIDashboard)uiDashboard).canEdit())
+ UIDashboard uiDashboard = event.getSource();
+ if (!uiDashboard.canEdit())
return;
int col = Integer.parseInt(context.getRequestParameter(COLINDEX));
int row = Integer.parseInt(context.getRequestParameter(ROWINDEX));
@@ -489,13 +487,14 @@
}
}
- public static class MoveGadgetActionListener extends EventListener<org.exoplatform.webui.core.UIContainer>
+ public static class MoveGadgetActionListener extends EventListener<UIDashboard>
{
- public final void execute(final Event<org.exoplatform.webui.core.UIContainer> event) throws Exception
+ @Override
+ public final void execute(final Event<UIDashboard> event) throws Exception
{
WebuiRequestContext context = event.getRequestContext();
- org.exoplatform.webui.core.UIContainer uiDashboard = event.getSource();
- if (!((UIDashboard)uiDashboard).canEdit())
+ UIDashboard uiDashboard = event.getSource();
+ if (!uiDashboard.canEdit())
return;
UIDashboardContainer uiDashboardContainer = uiDashboard.getChild(UIDashboardContainer.class);
int col = Integer.parseInt(context.getRequestParameter(COLINDEX));
@@ -508,21 +507,28 @@
}
}
- public static class DeleteGadgetActionListener extends EventListener<org.exoplatform.webui.core.UIContainer>
+ public static class DeleteGadgetActionListener extends EventListener<UIDashboard>
{
- public final void execute(final Event<org.exoplatform.webui.core.UIContainer> event) throws Exception
+ @Override
+ public final void execute(final Event<UIDashboard> event) throws Exception
{
- WebuiRequestContext context = event.getRequestContext();
- org.exoplatform.webui.core.UIContainer uiDashboard = event.getSource();
- if (!((UIDashboard)uiDashboard).canEdit())
+ UIDashboard uiDashboard = event.getSource();
+ if (!uiDashboard.canEdit())
return;
+ WebuiRequestContext context = event.getRequestContext();
String objectId = context.getRequestParameter(OBJECTID);
UIDashboardContainer uiDashboardContainer = uiDashboard.getChild(UIDashboardContainer.class);
uiDashboardContainer.removeUIGadget(objectId);
+ boolean isMaximized = false;
+ if (uiDashboard.getMaximizedGadget() != null && uiDashboard.getMaximizedGadget().getId().equals(objectId))
+ {
+ uiDashboard.setMaximizedGadget(null);
+ isMaximized = true;
+ }
uiDashboardContainer.save();
-// context.addUIComponentToUpdateByAjax(uiDashboardContainer);
- context.setResponseComplete(true);
+ if (!isMaximized)
+ context.setResponseComplete(true);
}
}
Deleted: portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardMask.java
===================================================================
--- portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardMask.java 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardMask.java 2009-10-22 06:55:41 UTC (rev 395)
@@ -1,32 +0,0 @@
-/**
- * Copyright (C) 2009 eXo Platform SAS.
- *
- * 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.exoplatform.dashboard.webui.component;
-
-import org.exoplatform.webui.config.annotation.ComponentConfig;
-import org.exoplatform.webui.core.UIComponentDecorator;
-
-@ComponentConfig(template = "classpath:groovy/dashboard/webui/component/UIDashboardMask.gtmpl")
-public class UIDashboardMask extends UIComponentDecorator
-{
-
- public UIDashboardMask() throws Exception
- {
- }
-}
Modified: portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboard.gtmpl
===================================================================
--- portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboard.gtmpl 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboard.gtmpl 2009-10-22 06:55:41 UTC (rev 395)
@@ -1,6 +1,13 @@
+<% def maxiGadget = uicomponent.getMaximizedGadget(); %>
<div id="$uicomponent.id" class="UIDashboard">
- <div class="DashboardContainer">
- <% uicomponent.renderChildren(); %>
- <div class="ClearLeft"><span></span></div>
+ <div class="DashboardContainer <%=maxiGadget == null ? "" : "Maximized"%>">
+ <%
+ if(maxiGadget == null) {
+ uicomponent.renderChildren();
+ %>
+ <div class="ClearLeft"><span></span></div>
+ <%} else {
+ uicomponent.renderUIComponent(maxiGadget);
+ }%>
</div>
</div>
Modified: portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardContainer.gtmpl
===================================================================
--- portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardContainer.gtmpl 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardContainer.gtmpl 2009-10-22 06:55:41 UTC (rev 395)
@@ -26,15 +26,8 @@
</div>
</div>
</div>
- <%
- }
- if (uicomponent.findFirstComponentOfType(UIGadget.class) == null) {
- %>
- <div class="NoGadget"><%= _ctx.appRes("UIDashboard.msg.addGadget"); %></div>
- <%
- }
- uicomponent.renderChildren() ;
- %>
-
+ <%}%>
+ <div class="NoGadget" style="display: <%=uicomponent.hasUIGadget() ? "none" : "block"%>"><%= _ctx.appRes("UIDashboard.msg.addGadget"); %></div>
+ <% uicomponent.renderChildren() ;%>
</div>
</div>
Deleted: portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardMask.gtmpl
===================================================================
--- portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardMask.gtmpl 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/component/dashboard/src/main/resources/groovy/dashboard/webui/component/UIDashboardMask.gtmpl 2009-10-22 06:55:41 UTC (rev 395)
@@ -1,3 +0,0 @@
-<div id="$uicomponent.id" class="UIDashboardMask">
- <%uicomponent.renderChildren();%>
-</div>
\ No newline at end of file
Modified: portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardPortlet.java
===================================================================
--- portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardPortlet.java 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardPortlet.java 2009-10-22 06:55:41 UTC (rev 395)
@@ -19,16 +19,12 @@
package org.exoplatform.dashboard.webui.component;
-import org.exoplatform.portal.webui.application.UIGadget;
import org.exoplatform.portal.webui.container.UIContainer;
import org.exoplatform.webui.application.WebuiRequestContext;
import org.exoplatform.webui.application.portlet.PortletRequestContext;
import org.exoplatform.webui.config.annotation.ComponentConfig;
-import org.exoplatform.webui.config.annotation.EventConfig;
import org.exoplatform.webui.core.UIPortletApplication;
import org.exoplatform.webui.core.lifecycle.UIApplicationLifecycle;
-import org.exoplatform.webui.event.Event;
-import org.exoplatform.webui.event.EventListener;
import javax.portlet.PortletPreferences;
@@ -38,9 +34,7 @@
/**
* @author exo
*/
-@ComponentConfig(lifecycle = UIApplicationLifecycle.class, template = "app:/groovy/dashboard/webui/component/UIDashboardPortlet.gtmpl", events = {
- @EventConfig(listeners = UIDashboardPortlet.MinimizeGadgetActionListener.class),
- @EventConfig(listeners = UIDashboardPortlet.MaximizeGadgetActionListener.class)})
+@ComponentConfig(lifecycle = UIApplicationLifecycle.class, template = "app:/groovy/dashboard/webui/component/UIDashboardPortlet.gtmpl", events = {})
/**
* Dashboard portlet that display google gadgets
*/
@@ -55,7 +49,6 @@
PortletRequestContext context = (PortletRequestContext)WebuiRequestContext.getCurrentInstance();
UIDashboard dashboard = addChild(UIDashboard.class, null, null);
- addChild(UIDashboardMask.class, null, null).setRendered(false);
addChild(UIDashboardEditForm.class, null, null);
PortletPreferences pref = context.getRequest().getPreferences();
@@ -103,50 +96,4 @@
return owner;
}
- public static class MinimizeGadgetActionListener extends EventListener<UIDashboardPortlet>
- {
- public final void execute(final Event<UIDashboardPortlet> event) throws Exception
- {
- WebuiRequestContext context = event.getRequestContext();
- UIDashboardPortlet uiPortlet = event.getSource();
- String objectId = context.getRequestParameter(OBJECTID);
- String minimized = context.getRequestParameter("minimized");
-
- UIDashboard uiDashboard = uiPortlet.getChild(UIDashboard.class);
- UIGadget uiGadget = uiDashboard.getChild(UIDashboardContainer.class).getUIGadget(objectId);
- uiGadget.getProperties().setProperty("minimized", minimized);
- uiDashboard.getChild(UIDashboardContainer.class).save();
- context.addUIComponentToUpdateByAjax(uiGadget);
- }
- }
-
- public static class MaximizeGadgetActionListener extends EventListener<UIDashboardPortlet>
- {
- public final void execute(final Event<UIDashboardPortlet> event) throws Exception
- {
- WebuiRequestContext context = event.getRequestContext();
- UIDashboardPortlet uiPortlet = event.getSource();
- String objectId = context.getRequestParameter(OBJECTID);
- String maximize = context.getRequestParameter("maximize");
- UIDashboard uiDashboard = uiPortlet.getChild(UIDashboard.class);
- UIDashboardContainer uiDashboardContainer = uiDashboard.getChild(UIDashboardContainer.class);
- UIDashboardMask uiDashboardMask = uiPortlet.getChild(UIDashboardMask.class);
- UIGadget uiGadget = uiDashboardContainer.getUIGadget(objectId);
- if (maximize.equals("maximize"))
- {
- uiGadget.setView(UIGadget.CANVAS_VIEW);
- uiDashboardMask.setUIComponent(uiGadget);
- uiDashboardMask.setRendered(true);
- uiDashboard.setRendered(false);
- }
- else
- {
- uiGadget.setView(UIGadget.HOME_VIEW);
- uiDashboardMask.setUIComponent(null);
- uiDashboardMask.setRendered(false);
- uiDashboard.setRendered(true);
- }
- //context.addUIComponentToUpdateByAjax(uiPortlet) ;
- }
- }
}
Modified: portal/trunk/portlet/dashboard/src/main/webapp/groovy/dashboard/webui/component/UIDashboardPortlet.gtmpl
===================================================================
--- portal/trunk/portlet/dashboard/src/main/webapp/groovy/dashboard/webui/component/UIDashboardPortlet.gtmpl 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/portlet/dashboard/src/main/webapp/groovy/dashboard/webui/component/UIDashboardPortlet.gtmpl 2009-10-22 06:55:41 UTC (rev 395)
@@ -2,7 +2,6 @@
import javax.portlet.PortletMode ;
import org.exoplatform.dashboard.webui.component.DashboardParent ;
import org.exoplatform.dashboard.webui.component.UIDashboard;
- import org.exoplatform.dashboard.webui.component.UIDashboardMask;
import org.exoplatform.dashboard.webui.component.UIDashboardEditForm;
def rcontext = _ctx.getRequestContext() ;
@@ -11,7 +10,6 @@
<div id="$uicomponent.id" class="UIDashboardPortlet">
<% if(rcontext.getApplicationMode() == PortletMode.VIEW) {
uicomponent.renderChild(UIDashboard.class);
- uicomponent.renderChild(UIDashboardMask.class);
} else {
UIDashboardEditForm uiEditForm = uicomponent.getChild(UIDashboardEditForm.class);
uiEditForm.getUIStringInput(UIDashboardEditForm.TOTAL_COLUMNS).setValue(uicomponent.getNumberOfCols() + "");
Modified: portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/Browser.js
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/Browser.js 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/Browser.js 2009-10-22 06:55:41 UTC (rev 395)
@@ -459,7 +459,6 @@
Browser.prototype.findMouseRelativeX = function(object, e) {
var posx = -1 ;
var posXObject = eXo.core.Browser.findPosX(object) ;
- document.title = "test" + posXObject;
/*
* posXObject is added more 3px on IE6
Modified: portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/gadget/UIGadget.js
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/gadget/UIGadget.js 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/gadget/UIGadget.js 2009-10-22 06:55:41 UTC (rev 395)
@@ -204,9 +204,9 @@
}
var compId = portletFrag.parentNode.id;
- var uicomp = DOMUtil.getChildrenByTagName(portletFrag, "div")[0].className ;
+ var uicomp = DOMUtil.findAncestorByClass(uiGadget, "UIDashboard") ;
var href = eXo.env.server.portalBaseURL + "?portal:componentId=" + compId ;
- href += "&portal:type=action&uicomponent=" + uicomp;
+ href += "&portal:type=action&uicomponent=" + uicomp.id;
href += "&op=MinimizeGadget";
href += "&minimized=" + minimized;
href += "&objectId=" + uiGadget.id + "&ajaxRequest=true";
@@ -219,11 +219,10 @@
var uiGadget = DOMUtil.findAncestorByClass(selectedElement, "UIGadget") ;
var portletFrag = DOMUtil.findAncestorByClass(uiGadget, "PORTLET-FRAGMENT") ;
if (!portletFrag) return;
- var maximize = "maximize";
var compId = portletFrag.parentNode.id;
- var uicomp = DOMUtil.getChildrenByTagName(portletFrag, "div")[0];
- var compDisplay = DOMUtil.findFirstChildByClass(uicomp,"div","UIDashboardMask");
- if(compDisplay != null) maximize = "unmaximize"
+ var uicomp = DOMUtil.findAncestorByClass(uiGadget, "UIDashboard");
+ var compDisplay = DOMUtil.findAncestorByClass(uiGadget, "UIDashboardContainer");
+ var maximize = compDisplay ? "maximize" : "unmaximize";
var href = eXo.env.server.portalBaseURL + "?portal:componentId=" + compId ;
href += "&portal:type=action&uicomponent=" + uicomp.id;
href += "&op=MaximizeGadget";
@@ -242,19 +241,28 @@
if (portletFragment != null) {
var compId = portletFragment.parentNode.id;
- var uicomp = "";
- if (DOMUtil.findChildrenByClass(portletFragment, "div", "UIDashboard")) {
- uicomp = "UIDashboard";
- }
- else
- uicomp = DOMUtil.getChildrenByTagName(portletFragment, "div")[0].className;
+ var uicomp = DOMUtil.findAncestorByClass(uiGadget, "UIDashboard").id;
+// if (DOMUtil.findChildrenByClass(portletFragment, "div", "UIDashboard"))
+// uicomp = "UIDashboard";
+// else
+// uicomp = DOMUtil.getChildrenByTagName(portletFragment, "div")[0].className;
if (confirm(this.confirmDeleteGadget)) {
var href = eXo.env.server.portalBaseURL + "?portal:componentId=" + compId;
href += "&portal:type=action&uicomponent=" + uicomp;
href += "&op=DeleteGadget";
href += "&objectId=" + uiGadget.id + "&ajaxRequest=true";
- DOMUtil.removeElement(uiGadget);
- ajaxAsyncGetRequest(href);
+
+ var uiDashboardCont = DOMUtil.findAncestorByClass(uiGadget, "UIDashboardContainer");
+ if(uiDashboardCont) {
+ ajaxAsyncGetRequest(href);
+ DOMUtil.removeElement(uiGadget);
+ if(!DOMUtil.findFirstDescendantByClass(uiDashboardCont, "div", "UIGadget")) {
+ DOMUtil.findFirstDescendantByClass(uiDashboardCont, "div", "NoGadget").style.display = "block";
+ }
+ }else {
+// Case: delete gadget in dashboard when maximized gadget
+ ajaxGet(href);
+ }
}
} else {
Modified: portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard/Stylesheet.css
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard/Stylesheet.css 2009-10-21 22:42:44 UTC (rev 394)
+++ portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard/Stylesheet.css 2009-10-22 06:55:41 UTC (rev 395)
@@ -35,7 +35,6 @@
.UIDashboard {
height: 100%;
- background: url('background/BgRepeat.gif') repeat-y left bottom;
}
.UIDashboard .DashboardContainer {
@@ -514,30 +513,30 @@
#UIAddGadgetPopup .PopupTitle {
margin-left: 22px;
}
-/*----------------------UIDashboardMask-------------------*/
+/*----------------------Maximized-------------------*/
-.UIDashboardMask .UIGadget {
+.Maximized .UIGadget {
padding: 5px;
margin: 0px;
}
-.UIDashboardMask .UIGadget .GadgetControl {
+.Maximized .UIGadget .GadgetControl {
float: none;
padding: 0px;
height: auto; width: auto;
}
-.UIDashboardMask .UIGadget .GadgetControl .LeftControlBar {
+.Maximized .UIGadget .GadgetControl .LeftControlBar {
background: none;
padding: 0px;
}
-.UIDashboardMask .UIGadget .GadgetControl .RightControlBar {
+.Maximized .UIGadget .GadgetControl .RightControlBar {
background: none;
padding: 0px;
}
-.UIDashboardMask .UIGadget .GadgetControl .CenterControlBar {
+.Maximized .UIGadget .GadgetControl .CenterControlBar {
background: url('background/BgTitleGadget.gif') repeat-x left top;
height: 23px;
line-height: 23px;
@@ -546,31 +545,31 @@
border-top: none;
}
-.UIDashboardMask .UIGadget .GadgetControl .GadgetDragHandleArea {
+.Maximized .UIGadget .GadgetControl .GadgetDragHandleArea {
display: none;
}
-.UIDashboardMask .UIGadget .TLGadget {
+.Maximized .UIGadget .TLGadget {
display: none;
}
-.UIDashboardMask .UIGadget .MLGadget {
+.Maximized .UIGadget .MLGadget {
background: #f2f2f3;
border: 1px solid #c3c3c3;
border-top: none;
padding: 3px;
}
-.UIDashboardMask .UIGadget .MRGadget {
+.Maximized .UIGadget .MRGadget {
background: white;
padding: 0 0 1px;
}
-.UIDashboardMask .UIGadget .BLGadget {
+.Maximized .UIGadget .BLGadget {
display: none;
}
-.UIDashboardMask .GadgetTitle {
+.Maximized .GadgetTitle {
float: left; /* orientation=lt */
float: right; /* orientation=rt */
padding: 0px 5px;
@@ -581,6 +580,6 @@
white-space: nowrap;
}
-.UIDashboardMask iframe {
+.Maximized iframe {
width: 100%;
}
\ No newline at end of file
15 years, 2 months
gatein SVN: r394 - portal/trunk/packaging.
by do-not-reply@jboss.org
Author: dbaeli
Date: 2009-10-21 18:42:44 -0400 (Wed, 21 Oct 2009)
New Revision: 394
Removed:
portal/trunk/packaging/key.txt
Log:
GTNPORTAL-48: Release GateIn 3.0.0-Beta02 with source code from JBoss.org
* key.txt is not part of the source code
Deleted: portal/trunk/packaging/key.txt
===================================================================
--- portal/trunk/packaging/key.txt 2009-10-21 21:04:15 UTC (rev 393)
+++ portal/trunk/packaging/key.txt 2009-10-21 22:42:44 UTC (rev 394)
@@ -1 +0,0 @@
-rR992qPYCDQYG9SZml36Tb1n+trO+DXEB9CwXAzgfOE=
15 years, 2 months
gatein SVN: r393 - in portal/branches/performance: component and 57 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2009-10-21 17:04:15 -0400 (Wed, 21 Oct 2009)
New Revision: 393
Removed:
portal/branches/performance/component/application-registry/exo.portal.component.application-registry.iml
Modified:
portal/branches/performance/README.txt
portal/branches/performance/Release Notes.txt
portal/branches/performance/component/application-registry/pom.xml
portal/branches/performance/component/common/pom.xml
portal/branches/performance/component/dashboard/pom.xml
portal/branches/performance/component/identity/pom.xml
portal/branches/performance/component/pc/pom.xml
portal/branches/performance/component/pom.xml
portal/branches/performance/component/portal/pom.xml
portal/branches/performance/component/resources/pom.xml
portal/branches/performance/component/scripting/pom.xml
portal/branches/performance/component/web/pom.xml
portal/branches/performance/component/wsrp/pom.xml
portal/branches/performance/component/xml-parser/pom.xml
portal/branches/performance/docs/pom.xml
portal/branches/performance/docs/user-guide/pom.xml
portal/branches/performance/gadgets/core/pom.xml
portal/branches/performance/gadgets/eXoGadgets/pom.xml
portal/branches/performance/gadgets/pom.xml
portal/branches/performance/gadgets/server/pom.xml
portal/branches/performance/packaging/
portal/branches/performance/packaging/module/pom.xml
portal/branches/performance/packaging/pkg/pom.xml
portal/branches/performance/packaging/pom.xml
portal/branches/performance/packaging/product/pom.xml
portal/branches/performance/packaging/reports/pom.xml
portal/branches/performance/pom.xml
portal/branches/performance/portlet/dashboard/pom.xml
portal/branches/performance/portlet/exoadmin/pom.xml
portal/branches/performance/portlet/pom.xml
portal/branches/performance/portlet/web/pom.xml
portal/branches/performance/sample/extension/config/pom.xml
portal/branches/performance/sample/extension/ear/pom.xml
portal/branches/performance/sample/extension/jar/pom.xml
portal/branches/performance/sample/extension/pom.xml
portal/branches/performance/sample/extension/war/pom.xml
portal/branches/performance/sample/pom.xml
portal/branches/performance/sample/portal/config/pom.xml
portal/branches/performance/sample/portal/ear/pom.xml
portal/branches/performance/sample/portal/jar/pom.xml
portal/branches/performance/sample/portal/pom.xml
portal/branches/performance/sample/portal/rest-war/pom.xml
portal/branches/performance/sample/portal/war/pom.xml
portal/branches/performance/server/jboss/patch-ear/pom.xml
portal/branches/performance/server/jboss/patch/pom.xml
portal/branches/performance/server/jboss/plugin/pom.xml
portal/branches/performance/server/jboss/pom.xml
portal/branches/performance/server/pom.xml
portal/branches/performance/server/tomcat/patch/pom.xml
portal/branches/performance/server/tomcat/plugin/pom.xml
portal/branches/performance/server/tomcat/pom.xml
portal/branches/performance/starter/ear/pom.xml
portal/branches/performance/starter/pom.xml
portal/branches/performance/starter/war/pom.xml
portal/branches/performance/web/eXoResources/pom.xml
portal/branches/performance/web/pom.xml
portal/branches/performance/web/portal/pom.xml
portal/branches/performance/web/rest/pom.xml
portal/branches/performance/webui/core/pom.xml
portal/branches/performance/webui/eXo/pom.xml
portal/branches/performance/webui/pom.xml
portal/branches/performance/webui/portal/pom.xml
Log:
merge up to revision 392
Modified: portal/branches/performance/README.txt
===================================================================
--- portal/branches/performance/README.txt 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/README.txt 2009-10-21 21:04:15 UTC (rev 393)
@@ -1,22 +1,3 @@
-====
- Copyright (C) 2009 eXo Platform SAS.
-
- 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.
-====
-
Welcome to gatein codebase:
===========================
@@ -32,7 +13,7 @@
* MAVEN CONFIGURATION:
**********************
-* edit ${basedir}/profiles.xml and replace the values mentionned so that:
+* edit packaging/profiles.xml and replace the values mentioned so that:
* ${exo.projects.directory.dependencies} directory contains :
** ${exo.projects.app.tomcat.version}/ a clean Tomcat installation, to be used as packaging template
** ${exo.projects.app.jboss.version}/ a clean JBoss installation, to be used as packaging template
@@ -45,18 +26,20 @@
*****************
* PACKAGING:
*****************
-
+
* mvn install -Ppkg-tomcat
-** Create a Tomcat delivery in pkg/target/tomcat/ and archives are stored in target
+** Creates a Tomcat delivery in packaging/pkg/target/tomcat/
+** Creates compressed archives in packaging/pkg/target/target
* mvn install -Ppkg-jbossas
-** Create a JBossAS delivery in pkg/target/jboss/ and archives are stored in target
+** Creates a JBossAS delivery in packaging/pkg/target/jboss/
+** Creates compressed archives in packaging/pkg/target/target
*****************
* STARTING:
*****************
* On Tomcat: go to the tomcat directory (or unzip the archive in your favorite location) and execute 'bin/gatein.sh start' ('bin/gatein.bat start' on Windows)
-* On JBoss: go to the jboss directory (or unzip the archive in your favorite location) and execute 'bin/run.sh start' ('bin/grun.bat start' on Windows)
+* On JBoss: go to the jboss directory (or unzip the archive in your favorite location) and execute 'bin/run.sh start' ('bin/run.bat start' on Windows)
* Go to http://localhost:8080/portal to see the homepage of the portal. That's it.
Modified: portal/branches/performance/Release Notes.txt
===================================================================
--- portal/branches/performance/Release Notes.txt 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/Release Notes.txt 2009-10-21 21:04:15 UTC (rev 393)
@@ -1,27 +1,8 @@
-====
- Copyright (C) 2009 eXo Platform SAS.
-
- 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.
-====
+Release Notes will start from GateIn CR1
Release Notes - GateIn
- Other resources and links
- Company site http://www.exoplatform.com
- Community JIRA http://jira.exoplatform.org
- Comminity site http://www.exoplatform.org
- Developers wiki http://wiki.exoplatform.org
- Documentation http://docs.exoplatform.org
+ Community site http://www.gatein.org
+ Community JIRA https://jira.jboss.org/jira/secure/Dashboard.jspa
+ Community Forum http://www.jboss.org/index.html?module=bb&op=viewforum&f=335
Deleted: portal/branches/performance/component/application-registry/exo.portal.component.application-registry.iml
===================================================================
--- portal/branches/performance/component/application-registry/exo.portal.component.application-registry.iml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/application-registry/exo.portal.component.application-registry.iml 2009-10-21 21:04:15 UTC (rev 393)
@@ -1,248 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module relativePaths="true" org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
- <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false">
- <output url="file://$MODULE_DIR$/target/classes" />
- <output-test url="file://$MODULE_DIR$/target/test-classes" />
- <content url="file://$MODULE_DIR$">
- <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
- <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
- <excludeFolder url="file://$MODULE_DIR$/target" />
- </content>
- <orderEntry type="inheritedJdk" />
- <orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.jcr:exo.jcr.component.ext:1.12.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.jcr:exo.jcr.component.core:1.12.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.jcr:jcr:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.container:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.commons:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-lang:commons-lang:2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xpp3:xpp3:1.1.3.4.O" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-logging:commons-logging:1.0.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.slf4j:slf4j-api:1.5.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.slf4j:slf4j-log4j12:1.5.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: log4j:log4j:1.2.14" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.tool:exo.tool.framework.junit:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: junit:junit:3.8.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.portlet:portlet-api:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.faces:jsf-api:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.servlet:servlet-api:2.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: picocontainer:picocontainer:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jmock:jmock:1.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xstream:xstream:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-beanutils:commons-beanutils:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-collections:commons-collections:3.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-run:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-bind:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: bcel:bcel:5.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-extras:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.command:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.common:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.activation:activation:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jotm:jotm:2.0.10" level="project" />
- <orderEntry type="library" exported="" name="Maven: jotm:jotm_jrmp_stubs:2.0.10" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.transaction:jta:1.0.1B" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.objectweb.carol:carol:2.0.5" level="project" />
- <orderEntry type="library" exported="" name="Maven: howl:howl-logger:0.1.11" level="project" />
- <orderEntry type="library" exported="" name="Maven: quartz:quartz:1.5.0-RC2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.mail:mail:1.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-chain:commons-chain:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-digester:commons-digester:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.cache:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.remote:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: jgroups:jgroups:2.6.10.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.organization.api:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.security.core:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ejb:ejb:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet-hibernate-module:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet-xdoclet-module:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xjavadoc:1.0.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.document:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: pdfbox:pdfbox:0.7.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.fontbox:fontbox:0.1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jempbox:jempbox:0.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: bouncycastle:bcmail-jdk14:136" level="project" />
- <orderEntry type="library" exported="" name="Maven: bouncycastle:bcprov-jdk14:136" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.lowagie:itext:2.1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.htmlparser:htmlparser:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.poi:poi:3.0.2-FINAL" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.poi:poi-scratchpad:3.0.2-FINAL" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-core:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-spellchecker:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-memory:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.xml.stream:stax-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.sun.xml.stream:sjsxp:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-dbcp:commons-dbcp:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-pool:commons-pool:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.resource:connector-api:1.5" level="project" />
- <orderEntry type="library" exported="" name="Maven: concurrent:concurrent:1.3.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-codec:commons-codec:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ws.commons:ws-commons-util:1.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.script.groovy:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.groovy:groovy-all:1.5.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-launcher:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: jline:jline:0.9.94" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.rest.core:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.xml-processing:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: jtidy:jtidy:4aug2000r7-dev" level="project" />
- <orderEntry type="library" exported="" name="Maven: xml-resolver:xml-resolver:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.frameworks.json:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.xml.bind:jaxb-api:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.sun.xml.bind:jaxb-impl:2.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ws.rs:jsr311-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-fileupload:commons-fileupload:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-io:commons-io:1.3.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.rest.ext:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.commons:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: stax:stax-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.annotation:jsr250-api:1.0" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.portal" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.organization.jdbc:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.database:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" scope="RUNTIME" name="Maven: hsqldb:hsqldb:1.8.0.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.experlog:xapool:1.5.0" level="project" />
- <orderEntry type="library" exported="" scope="RUNTIME" name="Maven: c3p0:c3p0:0.9.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-core:3.3.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: antlr:antlr:2.7.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: dom4j:dom4j:1.6.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javassist:javassist:3.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-annotations:3.4.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:ejb3-persistence:1.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-commons-annotations:3.1.0.GA" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.web" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.common" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-api:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.common:common-common:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-log4j:log4j:1.2.14" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-j2ee:4.2.3.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-vfs:2.1.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-common-core:2.2.9.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.logging:jboss-logging-spi:2.0.5.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-jmx:4.2.3.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-httpclient:commons-httpclient:3.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-junit:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-uberjar:0.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-nodeps:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.wci:wci-wci:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:catalina:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:juli:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:annotations-api:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:jetty:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:jetty-util:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:servlet-api-2.5:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.remoting:jboss-remoting:2.5.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />
- <orderEntry type="library" exported="" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-ant:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-discovery:commons-discovery:0.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-generic:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-container:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-module:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-util:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jdom:jdom:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-j2ee-deployment_1.1_spec:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-geronimo:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jboss:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jetty:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jo:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jonas:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-ejb_2.1_spec:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.ow2.jonas.tools.configurator:configurator:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.ow2.jonas.tools.configurator:api:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xerces:xercesImpl:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jrun:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-orion:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-resin:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-tomcat:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-weblogic:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: sun-jaxb:jaxb-api:2.1.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-portlet:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.servlet.jsp:jsp-api:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ccpp:ccpp:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-controller:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:resolver:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:xercesImpl:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:xml-apis:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-portal:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.common:common-mc:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.microcontainer:jboss-kernel:2.0.6.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.microcontainer:jboss-dependency:2.0.6.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jbossxb:2.0.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-reflect:2.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: wutka-dtdparser:dtdparser121:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-mdr:2.0.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.man:jboss-managed:2.0.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.man:jboss-metatype:2.0.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-mc:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.unit:jboss-unit:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-jdk:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-spi:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-core:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-httpclient:commons-httpclient:2.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: oswego-concurrent:concurrent:1.3.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-slide:webdavlib:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-log4j:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-taglibs:jstl:1.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-taglibs:standard:1.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-federation:2.1.0-Beta01" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.scripting" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.xml-parser" exported="" />
- <orderEntry type="library" exported="" name="Maven: rhino:js:1.6R5" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.shindig:shindig-gadgets:SNAPSHOT-r790473" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.shindig:shindig-common:SNAPSHOT-r790473" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.google.code.guice:guice:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: aopalliance:aopalliance:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.google.collections:google-collections:1.0-rc2" level="project" />
- <orderEntry type="library" exported="" name="Maven: joda-time:joda-time:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.json:json:20070829" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.json-lib:json-lib:jdk15:2.2.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.ezmorph:ezmorph:1.0.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-betwixt:commons-betwixt:0.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-beanutils:commons-beanutils-core:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.thoughtworks.xstream:xstream:1.3.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xpp3:xpp3_min:1.1.4c" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.ehcache:ehcache:1.6.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: de.odysseus.juel:juel-impl:2.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: de.odysseus.juel:juel-api:2.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: caja:caja:r3375" level="project" />
- <orderEntry type="library" exported="" name="Maven: nu.validator.htmlparser:htmlparser:1.0.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: caja:json_simple:r1" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth-consumer:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth-httpclient3:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: rome:rome:0.9" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.ibm.icu:icu4j:3.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sourceforge.nekohtml:nekohtml:1.9.12" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.sanselan:sanselan:0.97-incubator" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.pc" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.resources" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.identity" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-core:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-common:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-api:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-spi:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-hibernate:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-cglib-repack:2.1_3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.cache:jbosscache-core:3.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-ldap:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-cache:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-api:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-spi:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-core:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.api:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.core:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.spi:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.common:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.api:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.core:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.spi:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.jlr:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.apt:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.apt:1.0.0-beta3" level="project" />
- <orderEntry type="library" scope="TEST" name="Maven: org.slf4j:slf4j-simple:1.5.6" level="project" />
- </component>
-</module>
-
Modified: portal/branches/performance/component/application-registry/pom.xml
===================================================================
--- portal/branches/performance/component/application-registry/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/application-registry/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -47,7 +47,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/performance/component/common/pom.xml
===================================================================
--- portal/branches/performance/component/common/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/common/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: portal/branches/performance/component/dashboard/pom.xml
===================================================================
--- portal/branches/performance/component/dashboard/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/dashboard/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/performance/component/identity/pom.xml
===================================================================
--- portal/branches/performance/component/identity/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/identity/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/component/pc/pom.xml
===================================================================
--- portal/branches/performance/component/pc/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/pc/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.pc</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<name>GateIn Portal Component PC integration</name>
<dependencies>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/branches/performance/component/pom.xml
===================================================================
--- portal/branches/performance/component/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: portal/branches/performance/component/portal/pom.xml
===================================================================
--- portal/branches/performance/component/portal/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/portal/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -48,19 +48,19 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/performance/component/resources/pom.xml
===================================================================
--- portal/branches/performance/component/resources/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/resources/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -84,7 +84,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/performance/component/scripting/pom.xml
===================================================================
--- portal/branches/performance/component/scripting/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/scripting/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -41,13 +41,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/performance/component/web/pom.xml
===================================================================
--- portal/branches/performance/component/web/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/web/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -47,7 +47,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
@@ -123,7 +123,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/performance/component/wsrp/pom.xml
===================================================================
--- portal/branches/performance/component/wsrp/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/wsrp/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.wsrp</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<name>GateIn Portal Component WSRP integration</name>
<dependencies>
Modified: portal/branches/performance/component/xml-parser/pom.xml
===================================================================
--- portal/branches/performance/component/xml-parser/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/component/xml-parser/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/docs/pom.xml
===================================================================
--- portal/branches/performance/docs/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/docs/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -27,7 +27,7 @@
<artifactId>docs-aggregator</artifactId>
<packaging>pom</packaging>
<name>GateIn - Portal (docs-aggregator)</name>
- <version>3.0.0-Beta02-SNAPSHOT</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<modules>
<module>user-guide</module>
Modified: portal/branches/performance/docs/user-guide/pom.xml
===================================================================
--- portal/branches/performance/docs/user-guide/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/docs/user-guide/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -34,7 +34,7 @@
<groupId>org.gatein.doc</groupId>
<artifactId>gatein-user-guide-en</artifactId>
- <version>3.0.0-Beta02-SNAPSHOT</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>GateIn User Guide en</name>
Modified: portal/branches/performance/gadgets/core/pom.xml
===================================================================
--- portal/branches/performance/gadgets/core/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/gadgets/core/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
@@ -82,7 +82,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/branches/performance/gadgets/eXoGadgets/pom.xml
===================================================================
--- portal/branches/performance/gadgets/eXoGadgets/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/gadgets/eXoGadgets/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -39,14 +39,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/branches/performance/gadgets/pom.xml
===================================================================
--- portal/branches/performance/gadgets/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/gadgets/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: portal/branches/performance/gadgets/server/pom.xml
===================================================================
--- portal/branches/performance/gadgets/server/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/gadgets/server/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Property changes on: portal/branches/performance/packaging
___________________________________________________________________
Name: svn:ignore
+ profiles.xml
Modified: portal/branches/performance/packaging/module/pom.xml
===================================================================
--- portal/branches/performance/packaging/module/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/packaging/module/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/packaging/pkg/pom.xml
===================================================================
--- portal/branches/performance/packaging/pkg/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/packaging/pkg/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>js</type>
</dependency>
</dependencies>
Modified: portal/branches/performance/packaging/pom.xml
===================================================================
--- portal/branches/performance/packaging/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/packaging/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/packaging/product/pom.xml
===================================================================
--- portal/branches/performance/packaging/product/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/packaging/product/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/packaging/reports/pom.xml
===================================================================
--- portal/branches/performance/packaging/reports/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/packaging/reports/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/pom.xml
===================================================================
--- portal/branches/performance/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn Portal</name>
@@ -65,9 +65,9 @@
</properties>
<scm>
- <connection>scm:svn:http://svn.exoplatform.org/projects/gatein/portal/trunk</connection>
- <developerConnection>scm:svn:http://svn.exoplatform.org/projects/gatein/portal/trunk</developerConnection>
- <url>http://fisheye.exoplatform.org/browse/projects/gatein/portal/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/trunk</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/portal/trunk</url>
</scm>
<modules>
@@ -219,6 +219,16 @@
<!-- To be removed and replaced by settings in user config -->
<repositories>
<repository>
+ <id>repository.jboss.org</id>
+ <url>http://repository.jboss.org/maven2</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
<id>exo-int</id>
<url>http://maven2.exoplatform.org/rest/maven2</url>
<releases>
Modified: portal/branches/performance/portlet/dashboard/pom.xml
===================================================================
--- portal/branches/performance/portlet/dashboard/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/portlet/dashboard/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,20 +35,20 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/performance/portlet/exoadmin/pom.xml
===================================================================
--- portal/branches/performance/portlet/exoadmin/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/portlet/exoadmin/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/performance/portlet/pom.xml
===================================================================
--- portal/branches/performance/portlet/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/portlet/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: portal/branches/performance/portlet/web/pom.xml
===================================================================
--- portal/branches/performance/portlet/web/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/portlet/web/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/performance/sample/extension/config/pom.xml
===================================================================
--- portal/branches/performance/sample/extension/config/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/extension/config/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/sample/extension/ear/pom.xml
===================================================================
--- portal/branches/performance/sample/extension/ear/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/extension/ear/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/performance/sample/extension/jar/pom.xml
===================================================================
--- portal/branches/performance/sample/extension/jar/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/extension/jar/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/performance/sample/extension/pom.xml
===================================================================
--- portal/branches/performance/sample/extension/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/extension/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: portal/branches/performance/sample/extension/war/pom.xml
===================================================================
--- portal/branches/performance/sample/extension/war/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/extension/war/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/sample/pom.xml
===================================================================
--- portal/branches/performance/sample/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: portal/branches/performance/sample/portal/config/pom.xml
===================================================================
--- portal/branches/performance/sample/portal/config/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/portal/config/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/sample/portal/ear/pom.xml
===================================================================
--- portal/branches/performance/sample/portal/ear/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/portal/ear/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/performance/sample/portal/jar/pom.xml
===================================================================
--- portal/branches/performance/sample/portal/jar/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/portal/jar/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/performance/sample/portal/pom.xml
===================================================================
--- portal/branches/performance/sample/portal/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/portal/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: portal/branches/performance/sample/portal/rest-war/pom.xml
===================================================================
--- portal/branches/performance/sample/portal/rest-war/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/portal/rest-war/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/sample/portal/war/pom.xml
===================================================================
--- portal/branches/performance/sample/portal/war/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/sample/portal/war/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/server/jboss/patch/pom.xml
===================================================================
--- portal/branches/performance/server/jboss/patch/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/jboss/patch/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/server/jboss/patch-ear/pom.xml
===================================================================
--- portal/branches/performance/server/jboss/patch-ear/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/jboss/patch-ear/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/server/jboss/plugin/pom.xml
===================================================================
--- portal/branches/performance/server/jboss/plugin/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/jboss/plugin/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/server/jboss/pom.xml
===================================================================
--- portal/branches/performance/server/jboss/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/jboss/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: portal/branches/performance/server/pom.xml
===================================================================
--- portal/branches/performance/server/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: portal/branches/performance/server/tomcat/patch/pom.xml
===================================================================
--- portal/branches/performance/server/tomcat/patch/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/tomcat/patch/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/server/tomcat/plugin/pom.xml
===================================================================
--- portal/branches/performance/server/tomcat/plugin/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/tomcat/plugin/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/server/tomcat/pom.xml
===================================================================
--- portal/branches/performance/server/tomcat/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/server/tomcat/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: portal/branches/performance/starter/ear/pom.xml
===================================================================
--- portal/branches/performance/starter/ear/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/starter/ear/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/performance/starter/pom.xml
===================================================================
--- portal/branches/performance/starter/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/starter/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: portal/branches/performance/starter/war/pom.xml
===================================================================
--- portal/branches/performance/starter/war/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/starter/war/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/web/eXoResources/pom.xml
===================================================================
--- portal/branches/performance/web/eXoResources/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/web/eXoResources/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/web/pom.xml
===================================================================
--- portal/branches/performance/web/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/web/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: portal/branches/performance/web/portal/pom.xml
===================================================================
--- portal/branches/performance/web/portal/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/web/portal/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/web/rest/pom.xml
===================================================================
--- portal/branches/performance/web/rest/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/web/rest/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/performance/webui/core/pom.xml
===================================================================
--- portal/branches/performance/webui/core/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/webui/core/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/branches/performance/webui/eXo/pom.xml
===================================================================
--- portal/branches/performance/webui/eXo/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/webui/eXo/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/performance/webui/pom.xml
===================================================================
--- portal/branches/performance/webui/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/webui/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: portal/branches/performance/webui/portal/pom.xml
===================================================================
--- portal/branches/performance/webui/portal/pom.xml 2009-10-21 16:49:22 UTC (rev 392)
+++ portal/branches/performance/webui/portal/pom.xml 2009-10-21 21:04:15 UTC (rev 393)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -47,37 +47,37 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
@@ -94,7 +94,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.0.0-Beta02</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
15 years, 2 months
gatein SVN: r392 - portal/branches.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2009-10-21 12:49:22 -0400 (Wed, 21 Oct 2009)
New Revision: 392
Added:
portal/branches/performance/
Log:
create the performance branche from the trunk with revision number 380
Copied: portal/branches/performance (from rev 380, portal/trunk)
15 years, 2 months
gatein SVN: r391 - in portal/branches/wsrp-integration: component/portal and 18 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-10-21 12:12:10 -0400 (Wed, 21 Oct 2009)
New Revision: 391
Modified:
portal/branches/wsrp-integration/component/pc/
portal/branches/wsrp-integration/component/portal/
portal/branches/wsrp-integration/component/scripting/
portal/branches/wsrp-integration/packaging/module/
portal/branches/wsrp-integration/packaging/pkg/
portal/branches/wsrp-integration/packaging/product/
portal/branches/wsrp-integration/portlet/dashboard/
portal/branches/wsrp-integration/portlet/exoadmin/
portal/branches/wsrp-integration/portlet/web/
portal/branches/wsrp-integration/sample/extension/config/
portal/branches/wsrp-integration/sample/extension/ear/
portal/branches/wsrp-integration/sample/extension/jar/
portal/branches/wsrp-integration/sample/extension/war/
portal/branches/wsrp-integration/sample/portal/config/
portal/branches/wsrp-integration/sample/portal/ear/
portal/branches/wsrp-integration/sample/portal/jar/
portal/branches/wsrp-integration/sample/portal/rest-war/
portal/branches/wsrp-integration/sample/portal/war/
portal/branches/wsrp-integration/starter/ear/
portal/branches/wsrp-integration/starter/war/
Log:
- Re-add target in svn:ignore.
Property changes on: portal/branches/wsrp-integration/component/pc
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/module
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/pkg
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/product
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/config
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/ear
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/config
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/ear
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/rest-war
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/ear
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/war
___________________________________________________________________
Name: svn:ignore
- *.iml
.idea
+ target
*.iml
.idea
15 years, 2 months
gatein SVN: r390 - in portal/branches/wsrp-integration: component and 1271 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-10-21 11:51:47 -0400 (Wed, 21 Oct 2009)
New Revision: 390
Added:
portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/content-nodetypes.xml
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRP.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPPortletStateType.java
portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/content-nodetypes.xml
portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config/WSRPTest.java
Modified:
portal/branches/wsrp-integration/
portal/branches/wsrp-integration/component/
portal/branches/wsrp-integration/component/application-registry/
portal/branches/wsrp-integration/component/application-registry/src/
portal/branches/wsrp-integration/component/application-registry/src/main/
portal/branches/wsrp-integration/component/application-registry/src/main/java/
portal/branches/wsrp-integration/component/application-registry/src/main/java/conf/
portal/branches/wsrp-integration/component/application-registry/src/main/java/conf/portal/
portal/branches/wsrp-integration/component/application-registry/src/main/java/org/
portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/
portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/gadget/
portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/gadget/jcr/
portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/registry/
portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/registry/jcr/
portal/branches/wsrp-integration/component/application-registry/src/test/
portal/branches/wsrp-integration/component/application-registry/src/test/java/
portal/branches/wsrp-integration/component/application-registry/src/test/java/conf/
portal/branches/wsrp-integration/component/application-registry/src/test/java/conf/portal/
portal/branches/wsrp-integration/component/application-registry/src/test/java/org/
portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform/application/
portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform/application/gadget/
portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform/application/registry/
portal/branches/wsrp-integration/component/common/
portal/branches/wsrp-integration/component/common/src/
portal/branches/wsrp-integration/component/common/src/main/
portal/branches/wsrp-integration/component/common/src/main/java/
portal/branches/wsrp-integration/component/common/src/main/java/org/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/commons/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/commons/utils/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/config/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/resources/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/resources/impl/
portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/resources/impl/hibernate/
portal/branches/wsrp-integration/component/common/src/main/resources/
portal/branches/wsrp-integration/component/common/src/test/
portal/branches/wsrp-integration/component/common/src/test/java/
portal/branches/wsrp-integration/component/common/src/test/java/org/
portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/commons/
portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/commons/utils/
portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/services/resources/
portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/services/resources/impl/
portal/branches/wsrp-integration/component/common/src/test/resources/
portal/branches/wsrp-integration/component/common/src/test/resources/locale/
portal/branches/wsrp-integration/component/common/src/test/resources/locale/test/
portal/branches/wsrp-integration/component/common/src/test/resources/resources/
portal/branches/wsrp-integration/component/dashboard/
portal/branches/wsrp-integration/component/dashboard/src/
portal/branches/wsrp-integration/component/dashboard/src/main/
portal/branches/wsrp-integration/component/dashboard/src/main/java/
portal/branches/wsrp-integration/component/dashboard/src/main/java/org/
portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform/dashboard/
portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/
portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf/dashboard/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf/dashboard/webui/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf/dashboard/webui/container/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy/dashboard/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy/dashboard/webui/
portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy/dashboard/webui/component/
portal/branches/wsrp-integration/component/identity/
portal/branches/wsrp-integration/component/identity/src/
portal/branches/wsrp-integration/component/identity/src/main/
portal/branches/wsrp-integration/component/identity/src/main/java/
portal/branches/wsrp-integration/component/identity/src/main/java/conf/
portal/branches/wsrp-integration/component/identity/src/main/java/conf/portal/
portal/branches/wsrp-integration/component/identity/src/main/java/org/
portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform/services/organization/
portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform/services/organization/jbidm/
portal/branches/wsrp-integration/component/identity/src/test/
portal/branches/wsrp-integration/component/identity/src/test/java/
portal/branches/wsrp-integration/component/identity/src/test/java/conf/
portal/branches/wsrp-integration/component/identity/src/test/java/conf/portal/
portal/branches/wsrp-integration/component/identity/src/test/java/org/
portal/branches/wsrp-integration/component/identity/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/identity/src/test/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/identity/src/test/java/org/exoplatform/services/organization/
portal/branches/wsrp-integration/component/pc/
portal/branches/wsrp-integration/component/pc/src/
portal/branches/wsrp-integration/component/pc/src/main/
portal/branches/wsrp-integration/component/pc/src/main/java/
portal/branches/wsrp-integration/component/pc/src/main/java/org/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal/pc/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal/pc/ExoKernelIntegration.java
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer/bundle/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer/impl/
portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer/impl/servlet/
portal/branches/wsrp-integration/component/pc/src/main/resources/
portal/branches/wsrp-integration/component/pc/src/test/
portal/branches/wsrp-integration/component/pc/src/test/java/
portal/branches/wsrp-integration/component/pc/src/test/resources/
portal/branches/wsrp-integration/component/portal/
portal/branches/wsrp-integration/component/portal/src/
portal/branches/wsrp-integration/component/portal/src/main/
portal/branches/wsrp-integration/component/portal/src/main/java/
portal/branches/wsrp-integration/component/portal/src/main/java/conf/
portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/
portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/model-nodetypes.xml
portal/branches/wsrp-integration/component/portal/src/main/java/org/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/application/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/ApplicationType.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/Mapper.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/TransientApplicationState.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/gadget/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/portlet/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/wsrp/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/wsrp/WSRPApplication.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/serialize/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config/tasks/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/HelpableContentProvider.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetContentProvider.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetState.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletContentProvider.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletPreferencesState.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPContentProvider.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPState.java
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/portlet/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin/config/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin/config/tasks/
portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin/config/xml/
portal/branches/wsrp-integration/component/portal/src/main/resources/
portal/branches/wsrp-integration/component/portal/src/test/
portal/branches/wsrp-integration/component/portal/src/test/java/
portal/branches/wsrp-integration/component/portal/src/test/java/conf/
portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/
portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/jcr-configuration.xml
portal/branches/wsrp-integration/component/portal/src/test/java/org/
portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/
portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config/
portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config/security/
portal/branches/wsrp-integration/component/portal/src/test/resources/
portal/branches/wsrp-integration/component/portal/src/test/resources/jibx/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/organization/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/organization/management/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/organization/management/executive-board/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/administrators/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/guests/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/test/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/test/legacy/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/test/normalized/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/users/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/classic/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/template/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/template/classic/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/template/test/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/test/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/four-columns/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/one-column/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/three-columns/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/two-columns/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/dashboard/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/empty/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/one-row-two-columns/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-columns/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-rows-two-columns/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-rows/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-tabs/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-columns-one-row/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-columns/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-rows/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-tabs/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/demo/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/john/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/mary/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/overwritelayout/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/root/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/template/
portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/template/user/
portal/branches/wsrp-integration/component/resources/
portal/branches/wsrp-integration/component/resources/src/
portal/branches/wsrp-integration/component/resources/src/main/
portal/branches/wsrp-integration/component/resources/src/main/java/
portal/branches/wsrp-integration/component/resources/src/main/java/conf/
portal/branches/wsrp-integration/component/resources/src/main/java/conf/portal/
portal/branches/wsrp-integration/component/resources/src/main/java/org/
portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform/services/resources/
portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform/services/resources/jcr/
portal/branches/wsrp-integration/component/resources/src/test/
portal/branches/wsrp-integration/component/resources/src/test/java/
portal/branches/wsrp-integration/component/resources/src/test/java/conf/
portal/branches/wsrp-integration/component/resources/src/test/java/conf/portal/
portal/branches/wsrp-integration/component/resources/src/test/java/conf/portal/testjcr/
portal/branches/wsrp-integration/component/resources/src/test/java/locale/
portal/branches/wsrp-integration/component/resources/src/test/java/locale/test/
portal/branches/wsrp-integration/component/resources/src/test/java/locale/test/resources/
portal/branches/wsrp-integration/component/resources/src/test/java/org/
portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform/services/resources/
portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform/services/resources/test/
portal/branches/wsrp-integration/component/scripting/
portal/branches/wsrp-integration/component/scripting/src/
portal/branches/wsrp-integration/component/scripting/src/main/
portal/branches/wsrp-integration/component/scripting/src/main/java/
portal/branches/wsrp-integration/component/scripting/src/main/java/conf/
portal/branches/wsrp-integration/component/scripting/src/main/java/conf/portal/
portal/branches/wsrp-integration/component/scripting/src/main/java/org/
portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/commons/
portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/commons/utils/
portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/groovyscript/
portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/groovyscript/text/
portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/resolver/
portal/branches/wsrp-integration/component/scripting/src/test/
portal/branches/wsrp-integration/component/scripting/src/test/java/
portal/branches/wsrp-integration/component/scripting/src/test/java/org/
portal/branches/wsrp-integration/component/scripting/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/scripting/src/test/java/org/exoplatform/commons/
portal/branches/wsrp-integration/component/scripting/src/test/java/org/exoplatform/commons/utils/
portal/branches/wsrp-integration/component/web/
portal/branches/wsrp-integration/component/web/src/
portal/branches/wsrp-integration/component/web/src/main/
portal/branches/wsrp-integration/component/web/src/main/java/
portal/branches/wsrp-integration/component/web/src/main/java/conf/
portal/branches/wsrp-integration/component/web/src/main/java/conf/portal/
portal/branches/wsrp-integration/component/web/src/main/java/org/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/download/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/json/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/upload/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/util/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/annotation/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/gadget/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/javascript/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/mvc/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/command/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/filter/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/login/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/security/
portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/security/security/
portal/branches/wsrp-integration/component/web/src/test/
portal/branches/wsrp-integration/component/web/src/test/java/
portal/branches/wsrp-integration/component/web/src/test/java/conf/
portal/branches/wsrp-integration/component/web/src/test/java/conf/portal/
portal/branches/wsrp-integration/component/web/src/test/java/org/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/download/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/download/test/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/json/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/json/test/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/web/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/web/command/
portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/web/filter/
portal/branches/wsrp-integration/component/web/src/test/resources/
portal/branches/wsrp-integration/component/wsrp/
portal/branches/wsrp-integration/component/wsrp/src/
portal/branches/wsrp-integration/component/wsrp/src/main/
portal/branches/wsrp-integration/component/wsrp/src/main/java/
portal/branches/wsrp-integration/component/wsrp/src/main/java/conf/
portal/branches/wsrp-integration/component/wsrp/src/main/java/org/
portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/
portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal/
portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal/wsrp/
portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal/wsrp/ExoKernelIntegration.java
portal/branches/wsrp-integration/component/xml-parser/
portal/branches/wsrp-integration/component/xml-parser/src/
portal/branches/wsrp-integration/component/xml-parser/src/main/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/conf/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/conf/portal/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/chars/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/chars/chardet/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/common/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/common/util/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/parser/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/path/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/refs/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/tidy/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/util/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/rss/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/rss/parser/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/text/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/text/unicode/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/token/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/token/attribute/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml/parser/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml/serialize/
portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml/util/
portal/branches/wsrp-integration/component/xml-parser/src/test/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/conf/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/conf/portal/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/html/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/html/test/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/rss/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/rss/test/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/test/
portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/test/crawler/
portal/branches/wsrp-integration/component/xml-parser/src/test/resources/
portal/branches/wsrp-integration/docs/
portal/branches/wsrp-integration/docs/user-guide/
portal/branches/wsrp-integration/docs/user-guide/en/
portal/branches/wsrp-integration/docs/user-guide/en/images/
portal/branches/wsrp-integration/docs/user-guide/en/modules/
portal/branches/wsrp-integration/docs/user-guide/en/modules/_archive/
portal/branches/wsrp-integration/docs/user-guide/en/modules/_archive/integration/
portal/branches/wsrp-integration/docs/user-guide/en/modules/_orphans/
portal/branches/wsrp-integration/docs/user-guide/en/modules/account/
portal/branches/wsrp-integration/docs/user-guide/en/modules/configuration/
portal/branches/wsrp-integration/docs/user-guide/en/modules/development/
portal/branches/wsrp-integration/docs/user-guide/en/modules/gadgets/
portal/branches/wsrp-integration/docs/user-guide/en/modules/gadgetsAdmin/
portal/branches/wsrp-integration/docs/user-guide/en/modules/language/
portal/branches/wsrp-integration/docs/user-guide/en/modules/portal/
portal/branches/wsrp-integration/docs/user-guide/en/modules/portlets/
portal/branches/wsrp-integration/docs/user-guide/en/modules/portletsUser/
portal/branches/wsrp-integration/docs/user-guide/en/modules/security/
portal/branches/wsrp-integration/docs/user-guide/en/modules/terms/
portal/branches/wsrp-integration/gadgets/
portal/branches/wsrp-integration/gadgets/core/
portal/branches/wsrp-integration/gadgets/core/src/
portal/branches/wsrp-integration/gadgets/core/src/main/
portal/branches/wsrp-integration/gadgets/core/src/main/java/
portal/branches/wsrp-integration/gadgets/core/src/main/java/conf/
portal/branches/wsrp-integration/gadgets/core/src/main/java/conf/portal/
portal/branches/wsrp-integration/gadgets/core/src/main/java/config/
portal/branches/wsrp-integration/gadgets/core/src/main/java/containers/
portal/branches/wsrp-integration/gadgets/core/src/main/java/containers/default/
portal/branches/wsrp-integration/gadgets/core/src/main/java/org/
portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform/portal/
portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform/portal/gadget/
portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform/portal/gadget/core/
portal/branches/wsrp-integration/gadgets/eXoGadgets/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/java/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/resources/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/resources/tomcat/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/Calculator/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/Calendar/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/locale/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/locale/Todo/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin/DefaultSkin/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin/DefaultSkin/portletIcons/
portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin/image/
portal/branches/wsrp-integration/gadgets/server/
portal/branches/wsrp-integration/gadgets/server/src/
portal/branches/wsrp-integration/gadgets/server/src/main/
portal/branches/wsrp-integration/gadgets/server/src/main/webapp/
portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes/
portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes/config/
portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes/containers/
portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes/containers/default/
portal/branches/wsrp-integration/packaging/
portal/branches/wsrp-integration/packaging/module/
portal/branches/wsrp-integration/packaging/module/src/
portal/branches/wsrp-integration/packaging/module/src/main/
portal/branches/wsrp-integration/packaging/module/src/main/javascript/
portal/branches/wsrp-integration/packaging/pkg/
portal/branches/wsrp-integration/packaging/pkg/src/
portal/branches/wsrp-integration/packaging/pkg/src/main/
portal/branches/wsrp-integration/packaging/pkg/src/main/assembly/
portal/branches/wsrp-integration/packaging/product/
portal/branches/wsrp-integration/packaging/product/src/
portal/branches/wsrp-integration/packaging/product/src/main/
portal/branches/wsrp-integration/packaging/product/src/main/javascript/
portal/branches/wsrp-integration/packaging/reports/
portal/branches/wsrp-integration/patch/
portal/branches/wsrp-integration/portlet/
portal/branches/wsrp-integration/portlet/dashboard/
portal/branches/wsrp-integration/portlet/dashboard/src/
portal/branches/wsrp-integration/portlet/dashboard/src/main/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/dashboard/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/gadget/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/gadget/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/gadget/webui/component/
portal/branches/wsrp-integration/portlet/dashboard/src/main/resources/
portal/branches/wsrp-integration/portlet/dashboard/src/main/resources/tomcat/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/DashboardPortlet/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/DashboardPortlet/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/TabbedDashboardPortlet/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/TabbedDashboardPortlet/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/gadget/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/gadget/GadgetPortlet/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/gadget/GadgetPortlet/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/script/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/script/groovy/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/dashboard/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/dashboard/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/dashboard/webui/component/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/gadget/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/gadget/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/gadget/webui/component/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget/webui/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget/webui/component/
portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget/webui/component/UIGadgetPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/
portal/branches/wsrp-integration/portlet/exoadmin/src/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/model/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/i18n/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/i18n/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/i18n/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/navigation/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/organization/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/resources/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/resources/tomcat/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AccountPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AccountPortlet/help/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AccountPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AdminToolbarPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AdminToolbarPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/ApplicationRegistryPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/ApplicationRegistryPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/GroupNavigationPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/GroupNavigationPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/I18nPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/I18nPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/OrganizationPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/OrganizationPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PageManagementPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PageManagementPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PortalNavigationPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PortalNavigationPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/StarToolbarPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/StarToolbarPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserInfoPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserInfoPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarDashboardPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarDashboardPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarGroupPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarGroupPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarPortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarSitePortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarSitePortlet/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/script/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/script/groovy/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account/webui/component/model/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/applicationregistry/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/applicationregistry/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/account/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/account/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/account/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/navigation/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/navigation/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/navigation/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/organization/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/organization/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/organization/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/resources/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/resources/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/resources/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/DefaultSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/DefaultSkin/portletIcons/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/DefaultSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/MacSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/MacSkin/background/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/VistaSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/VistaSkin/background/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet/DefaultSkin/icons/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component/UIApplicationRegistryPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component/UIApplicationRegistryPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component/UIApplicationRegistryPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n/webui/component/UII18nPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation/webui/component/background/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/web/
portal/branches/wsrp-integration/portlet/web/src/
portal/branches/wsrp-integration/portlet/web/src/main/
portal/branches/wsrp-integration/portlet/web/src/main/java/
portal/branches/wsrp-integration/portlet/web/src/main/java/org/
portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform/portal/
portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform/portal/webui/
portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform/portal/webui/component/
portal/branches/wsrp-integration/portlet/web/src/main/resources/
portal/branches/wsrp-integration/portlet/web/src/main/resources/tomcat/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BannerPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BannerPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BreadcumbsPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BreadcumbsPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FCKEditorPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FCKEditorPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FooterPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FooterPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/HomePagePortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/HomePagePortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/IFramePortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/IFramePortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LoginPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LoginPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LogoPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LogoPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/NavigationPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/NavigationPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/PortalNavigationPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/PortalNavigationPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/SitemapPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/SitemapPortlet/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/script/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/script/groovy/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/webui/component/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/groovy/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/groovy/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/groovy/webui/component/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/portal/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/portal/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/portal/webui/component/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/DefaultSkin/portletIcons/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/icons/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/icons/16x16/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/icons/24x24/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIFooterPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIFooterPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIFooterPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIIFramePortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UILogoPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UILogoPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIPortalNavigationPortlet/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIPortalNavigationPortlet/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIPortalNavigationPortlet/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UISiteMap/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UISiteMap/DefaultSkin/
portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UISiteMap/DefaultSkin/background/
portal/branches/wsrp-integration/portlet/web/src/test/
portal/branches/wsrp-integration/sample/
portal/branches/wsrp-integration/sample/extension/
portal/branches/wsrp-integration/sample/extension/config/
portal/branches/wsrp-integration/sample/extension/config/src/
portal/branches/wsrp-integration/sample/extension/config/src/main/
portal/branches/wsrp-integration/sample/extension/config/src/main/java/
portal/branches/wsrp-integration/sample/extension/config/src/main/java/conf/
portal/branches/wsrp-integration/sample/extension/ear/
portal/branches/wsrp-integration/sample/extension/jar/
portal/branches/wsrp-integration/sample/extension/jar/src/
portal/branches/wsrp-integration/sample/extension/jar/src/main/
portal/branches/wsrp-integration/sample/extension/jar/src/main/java/
portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/
portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform/sample/
portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform/sample/ext/
portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform/sample/ext/web/
portal/branches/wsrp-integration/sample/extension/war/
portal/branches/wsrp-integration/sample/extension/war/src/
portal/branches/wsrp-integration/sample/extension/war/src/main/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation/group/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation/portal/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/portal/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/common/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/jcr/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform/users/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/portal/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/portal/classic/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user/root/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/web/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/script/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/script/groovy/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/login/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/login/jsp/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/groovy/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/groovy/webui/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/groovy/webui/component/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/
portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background/
portal/branches/wsrp-integration/sample/portal/
portal/branches/wsrp-integration/sample/portal/config/
portal/branches/wsrp-integration/sample/portal/config/src/
portal/branches/wsrp-integration/sample/portal/config/src/main/
portal/branches/wsrp-integration/sample/portal/config/src/main/java/
portal/branches/wsrp-integration/sample/portal/config/src/main/java/conf/
portal/branches/wsrp-integration/sample/portal/ear/
portal/branches/wsrp-integration/sample/portal/jar/
portal/branches/wsrp-integration/sample/portal/jar/src/
portal/branches/wsrp-integration/sample/portal/jar/src/main/
portal/branches/wsrp-integration/sample/portal/jar/src/main/java/
portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/
portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform/sample/
portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform/sample/portal/
portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform/sample/portal/web/
portal/branches/wsrp-integration/sample/portal/rest-war/
portal/branches/wsrp-integration/sample/portal/rest-war/src/
portal/branches/wsrp-integration/sample/portal/rest-war/src/main/
portal/branches/wsrp-integration/sample/portal/rest-war/src/main/webapp/
portal/branches/wsrp-integration/sample/portal/rest-war/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/sample/portal/war/
portal/branches/wsrp-integration/sample/portal/war/src/
portal/branches/wsrp-integration/sample/portal/war/src/main/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation/group/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation/portal/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/portal/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/common/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/jcr/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform/users/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/portal/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/portal/classic/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user/root/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/web/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/script/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/script/groovy/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login/jsp/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login/skin/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login/skin/images/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/groovy/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/groovy/webui/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/groovy/webui/component/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/
portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background/
portal/branches/wsrp-integration/server/
portal/branches/wsrp-integration/server/jboss/
portal/branches/wsrp-integration/server/jboss/patch-ear/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/conf/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/META-INF/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/WEB-INF/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deployers/
portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deployers/jbossweb.deployer/
portal/branches/wsrp-integration/server/jboss/patch/
portal/branches/wsrp-integration/server/jboss/patch/src/
portal/branches/wsrp-integration/server/jboss/patch/src/main/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/conf/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy/exoplatform.sar/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy/exoplatform.sar/META-INF/
portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy/jboss-web.deployer/
portal/branches/wsrp-integration/server/jboss/plugin/
portal/branches/wsrp-integration/server/jboss/plugin/src/
portal/branches/wsrp-integration/server/jboss/plugin/src/main/
portal/branches/wsrp-integration/server/jboss/plugin/src/main/java/
portal/branches/wsrp-integration/server/jboss/plugin/src/main/java/conf/
portal/branches/wsrp-integration/server/jboss/plugin/src/main/java/conf/portal/
portal/branches/wsrp-integration/server/tomcat/
portal/branches/wsrp-integration/server/tomcat/patch/
portal/branches/wsrp-integration/server/tomcat/patch/src/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/bin/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/conf/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/conf/Catalina/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/conf/Catalina/localhost/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps/integration/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps/integration/META-INF/
portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps/integration/WEB-INF/
portal/branches/wsrp-integration/server/tomcat/plugin/
portal/branches/wsrp-integration/server/tomcat/plugin/src/
portal/branches/wsrp-integration/server/tomcat/plugin/src/main/
portal/branches/wsrp-integration/server/tomcat/plugin/src/main/java/
portal/branches/wsrp-integration/server/tomcat/plugin/src/main/java/conf/
portal/branches/wsrp-integration/server/tomcat/plugin/src/main/java/conf/portal/
portal/branches/wsrp-integration/starter/
portal/branches/wsrp-integration/starter/ear/
portal/branches/wsrp-integration/starter/war/
portal/branches/wsrp-integration/starter/war/src/
portal/branches/wsrp-integration/starter/war/src/main/
portal/branches/wsrp-integration/starter/war/src/main/webapp/
portal/branches/wsrp-integration/starter/war/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/web/
portal/branches/wsrp-integration/web/eXoResources/
portal/branches/wsrp-integration/web/eXoResources/src/
portal/branches/wsrp-integration/web/eXoResources/src/main/
portal/branches/wsrp-integration/web/eXoResources/src/main/resources/
portal/branches/wsrp-integration/web/eXoResources/src/main/resources/tomcat/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/conf/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/conf/script/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/conf/script/groovy/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/lib/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/core/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/core/html/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/core/text/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/gadget/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/i18n/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/portal/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/webui/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/keyboard/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui/UINotification/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui/UINotification/css/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui/UINotification/images/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIExoStart/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIExoStart/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIExoStart/icons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UINotification/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIWorkspace/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIWorkspace/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIAccountSettingForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIAccountSettingForm/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeLanguageForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeLanguageForm/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangePortalForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeSkinForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeSkinForm/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIContainerList/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIContainerList/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIDescription/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageBrowser/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalBrowser/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalSettingForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalSettingForm/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalToolPanel/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalToolPanel/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortletForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIGadget/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIGadget/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPage/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPage/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPortalComponent/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPortalComponent/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UITabContainer/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/icons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIWidgets/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIWidgets/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UILoginForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UILoginForm/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIUserSpace/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIWelcomeComponent/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIWidgetContainerManagement/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIWidgetContainerManagement/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/MiscIcons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/NavigationIcons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/OfficeIcons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/ToolIcons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/UserIcons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/24x24/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/24x24/icons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/32x32/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/32x32/icons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/48x48/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/48x48/icons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIAction/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIAction/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBarStyle/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBarStyle/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBoxDecorator/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBoxDecorator/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIDecorator/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIDecorator/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIInfoBar/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIInfoBar/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBreadcumbs/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBreadcumbs/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UICalendar/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UICalendar/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIColorPicker/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UICombobox/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIDescription/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIDropDownControl/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIDropDownControl/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIForm/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormInputDecoratorSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormTabPane/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGrid/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGrid/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGroupInfoContainer/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGroupInfoContainer/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMaskWorkspace/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMaskWorkspace/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMouseActionBackground/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMouseActionBackground/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UINotification/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UINotification/images/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPageIterator/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPageIterator/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupCategory/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupCategory/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupMenu/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupMessage/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupMessage/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupWindow/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupWindow/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIRightClickPopupMenu/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIWindow/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIQuickHelp/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIQuickHelp/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISearch/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIFormInputThemeSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIFormInputThemeSelector/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIGroupMembershipSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIGroupMembershipSelector/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIItemSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIItemSelector/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UINodeIconSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UINodeIconSelector/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIPermissionSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIPermissionSelector/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIUserSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabPane/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabSelector/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabSelector/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabs/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabs/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UIVerticalSlideTabs/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UIVerticalSlideTabs/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITree/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITree/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIUpload/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIUpload/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIWizard/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIWizard/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/PortletThemes/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/PortletThemes/background/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/PortletThemes/icons/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/sharedImages/
portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/sharedImages/Icon80x80/
portal/branches/wsrp-integration/web/portal/
portal/branches/wsrp-integration/web/portal/src/
portal/branches/wsrp-integration/web/portal/src/main/
portal/branches/wsrp-integration/web/portal/src/main/resources/
portal/branches/wsrp-integration/web/portal/src/main/resources/tomcat/
portal/branches/wsrp-integration/web/portal/src/main/webapp/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/common/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/configuration.xml
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/database/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.tmpl.xml
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/mail/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/organization/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/organization/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/organization/management/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/organization/management/executive-board/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/administrators/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/guests/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/users/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/template/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/template/group/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal/classic/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal/template/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal/template/classic/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/four-columns/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/one-column/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/three-columns/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/two-columns/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/dashboard/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/empty/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/one-row-two-columns/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-columns/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-rows-two-columns/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-rows/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-tabs/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-columns-one-row/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-columns/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-rows/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-tabs/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/demo/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/john/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/marry/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/root/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template/user/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/script/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/script/groovy/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/container/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/page/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/workspace/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/webui/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/webui/component/
portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/lib/
portal/branches/wsrp-integration/web/portal/src/main/webapp/error/
portal/branches/wsrp-integration/web/portal/src/main/webapp/error/jsp/
portal/branches/wsrp-integration/web/portal/src/main/webapp/error/skin/
portal/branches/wsrp-integration/web/portal/src/main/webapp/error/skin/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source/classes/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source/commandclasses/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source/internals/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/css/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/css/behaviors/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/css/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/common/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/common/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_about/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_about/sponsors/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_docprops/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_flash/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_image/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_link/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_select/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_spellerpages/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_template/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_template/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dtd/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/images/icons/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/images/icons/32/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/js/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/asp/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/aspx/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/cfm/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/lasso/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/perl/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/php/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/py/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/images/smiley/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/images/smiley/msn/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/js/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/lang/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/autogrow/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/bbcode/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/bbcode/_sample/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/dragresizetable/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/placeholder/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/placeholder/lang/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/simplecommands/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/tablecommands/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/default/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/default/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/office2003/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/office2003/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/silver/
portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/silver/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/organization/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/organization/webui/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/organization/webui/component/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/application/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/container/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/navigation/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/page/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/portal/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/workspace/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/core/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/form/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/form/ext/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/organization/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/organization/account/
portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/organization/i18n/
portal/branches/wsrp-integration/web/portal/src/main/webapp/login/
portal/branches/wsrp-integration/web/portal/src/main/webapp/login/jsp/
portal/branches/wsrp-integration/web/portal/src/main/webapp/login/skin/
portal/branches/wsrp-integration/web/portal/src/main/webapp/login/skin/images/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/groovy/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/groovy/webui/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/groovy/webui/component/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/
portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background/
portal/branches/wsrp-integration/web/rest/
portal/branches/wsrp-integration/web/rest/src/
portal/branches/wsrp-integration/web/rest/src/main/
portal/branches/wsrp-integration/web/rest/src/main/webapp/
portal/branches/wsrp-integration/web/rest/src/main/webapp/WEB-INF/
portal/branches/wsrp-integration/webui/
portal/branches/wsrp-integration/webui/core/
portal/branches/wsrp-integration/webui/core/src/
portal/branches/wsrp-integration/webui/core/src/main/
portal/branches/wsrp-integration/webui/core/src/main/java/
portal/branches/wsrp-integration/webui/core/src/main/java/org/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/web/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/application/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/application/mock/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/application/portlet/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/bean/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/config/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/config/annotation/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/core/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/core/model/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/event/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/exception/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form/ext/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form/validator/
portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form/wysiwyg/
portal/branches/wsrp-integration/webui/core/src/main/resources/
portal/branches/wsrp-integration/webui/core/src/test/
portal/branches/wsrp-integration/webui/core/src/test/java/
portal/branches/wsrp-integration/webui/core/src/test/java/conf/
portal/branches/wsrp-integration/webui/core/src/test/java/conf/portal/
portal/branches/wsrp-integration/webui/core/src/test/java/org/
portal/branches/wsrp-integration/webui/core/src/test/java/org/exoplatform/
portal/branches/wsrp-integration/webui/core/src/test/java/org/exoplatform/webui/
portal/branches/wsrp-integration/webui/core/src/test/java/org/exoplatform/webui/test/
portal/branches/wsrp-integration/webui/eXo/
portal/branches/wsrp-integration/webui/eXo/src/
portal/branches/wsrp-integration/webui/eXo/src/main/
portal/branches/wsrp-integration/webui/eXo/src/main/java/
portal/branches/wsrp-integration/webui/eXo/src/main/java/conf/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/web/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/web/command/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/web/command/handler/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/webui/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/webui/organization/
portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/webui/organization/account/
portal/branches/wsrp-integration/webui/eXo/src/test/
portal/branches/wsrp-integration/webui/portal/
portal/branches/wsrp-integration/webui/portal/src/
portal/branches/wsrp-integration/webui/portal/src/main/
portal/branches/wsrp-integration/webui/portal/src/main/java/
portal/branches/wsrp-integration/webui/portal/src/main/java/conf/
portal/branches/wsrp-integration/webui/portal/src/main/java/conf/portal/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/account/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/application/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/application/util/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/ModelAdapter.java
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIAddNewApplication.java
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/container/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/javascript/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/login/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/page/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/util/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/
portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/pool/
Log:
- WSRP integration: now able to invoke actions on remote portlets from self producer.
+ Switched WSRP state handling from simple byte[] to proper WSRPState object.
+ Properly deal with AccessMode in the WSRP case: requesting READ_WRITE directly as was the case by default was failing.
+ Properly detect cloned instances and update
+ Use own producer portlet invoker but share container portlet invoker.
+ Added MOP mapping for WSRP state, configured in content-nodetypes.xml files.
+ Introduced new WSRPState class to map WSRP state in MOP, renamed previous WSRPState class to WSRP.
+ Rewrote ModelAdapter.WSRP to account for state management changes.
+ Properly registered WSRPState in POMSessionManager.
+ Added WSRPPortletStateType class to properly deal with WSRP state.
+ WSRPState also records whether the associated state is for a cloned instance.
- Set svn:ignore to ignore .iml and .idea files.
- Use constant for node name in MOP state mapping objects.
Property changes on: portal/branches/wsrp-integration
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/gadget/jcr
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/registry
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/main/java/org/exoplatform/application/registry/jcr
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform/application/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/application-registry/src/test/java/org/exoplatform/application/registry
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/commons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/commons/utils
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/resources/impl
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/java/org/exoplatform/services/resources/impl/hibernate
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/commons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/commons/utils
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/services/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/java/org/exoplatform/services/resources/impl
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/resources/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/resources/locale/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/common/src/test/resources/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform/dashboard/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf/dashboard/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/conf/uiconf/dashboard/webui/container
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy/dashboard/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/dashboard/src/main/resources/groovy/dashboard/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform/services/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/main/java/org/exoplatform/services/organization/jbidm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/identity/src/test/java/org/exoplatform/services/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal/pc
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal/pc/ExoKernelIntegration.java
===================================================================
--- portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal/pc/ExoKernelIntegration.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/portal/pc/ExoKernelIntegration.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -54,14 +54,12 @@
protected PortletApplicationDeployer portletApplicationRegistry;
- /**
- * Exo Context
- */
+ /** Exo Context */
private final ExoContainer container;
/**
- * We enforce the dependency with the ResourceBundleService since it must be stared before
- * the <code>portletApplicationRegistry</code>
+ * We enforce the dependency with the ResourceBundleService since it must be stared before the
+ * <code>portletApplicationRegistry</code>
*/
public ExoKernelIntegration(ExoContainerContext context, ResourceBundleService resourceBundleService)
{
@@ -102,6 +100,9 @@
// The portlet container invoker continued
containerPortletInvoker.setNext(valveInterceptor);
+ // register container invoker so that WSRP can use it, WSRP uses its own ProducerPortletInvoker
+ container.registerComponentInstance(ContainerPortletInvoker.class, containerPortletInvoker);
+
// The producer persistence manager
PortletStatePersistenceManagerService producerPersistenceManager = new PortletStatePersistenceManagerService();
@@ -119,9 +120,6 @@
producerPortletInvoker.setStateManagementPolicy(producerStateManagementPolicy);
producerPortletInvoker.setStateConverter(producerStateConverter);
- // register producer portlet invoker so that WSRP can use it
- container.registerComponentInstance(ProducerPortletInvoker.class, producerPortletInvoker);
-
// The consumer portlet invoker
PortletCustomizationInterceptor portletCustomizationInterceptor = new PortletCustomizationInterceptor();
portletCustomizationInterceptor.setNext(producerPortletInvoker);
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer/bundle
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer/impl
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/java/org/exoplatform/services/portletcontainer/impl/servlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/pc/src/test/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Added: portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/content-nodetypes.xml
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/content-nodetypes.xml (rev 0)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/content-nodetypes.xml 2009-10-21 15:51:47 UTC (rev 390)
@@ -0,0 +1,45 @@
+<!--
+
+ Copyright (C) 2009 eXo Platform SAS.
+
+ 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.
+
+-->
+
+<nodeTypes xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0"
+ xmlns:jcr="http://www.jcp.org/jcr/1.0">
+
+ <nodeType name="mop:wsrpState" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
+ <supertypes>
+ <supertype>mop:customizationstate</supertype>
+ </supertypes>
+ <propertyDefinitions>
+ <propertyDefinition name="portletId" requiredType="String" autoCreated="false" mandatory="false"
+ onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ <propertyDefinition name="state" requiredType="Binary" autoCreated="false" mandatory="false"
+ onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ <propertyDefinition name="cloned" requiredType="Boolean" autoCreated="false" mandatory="false"
+ onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ </propertyDefinitions>
+ </nodeType>
+
+</nodeTypes>
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/model-nodetypes.xml
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/model-nodetypes.xml 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/conf/portal/model-nodetypes.xml 2009-10-21 15:51:47 UTC (rev 390)
@@ -20,17 +20,17 @@
-->
<nodeTypes xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0"
- xmlns:jcr="http://www.jcp.org/jcr/1.0">
+ xmlns:jcr="http://www.jcp.org/jcr/1.0">
- <nodeType name="exo:gadget" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
- <supertypes>
- <supertype>nt:unstructured</supertype>
- </supertypes>
- <propertyDefinitions>
- <!--propertyDefinition name="data" requiredType="Binary" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="false">
- <valueConstraints/>
- </propertyDefinition-->
- </propertyDefinitions>
- </nodeType>
-
+ <nodeType name="exo:gadget" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
+ <supertypes>
+ <supertype>nt:unstructured</supertype>
+ </supertypes>
+ <propertyDefinitions>
+ <!--propertyDefinition name="data" requiredType="Binary" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition-->
+ </propertyDefinitions>
+ </nodeType>
+
</nodeTypes>
\ No newline at end of file
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/ApplicationType.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/ApplicationType.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/ApplicationType.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -24,7 +24,7 @@
import org.exoplatform.portal.config.model.wsrp.WSRPId;
import org.exoplatform.portal.pom.spi.gadget.Gadget;
import org.exoplatform.portal.pom.spi.portlet.Preferences;
-import org.exoplatform.portal.pom.spi.wsrp.WSRPState;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
import org.gatein.mop.api.content.ContentType;
/**
@@ -47,8 +47,7 @@
new ApplicationType<Gadget, GadgetId>(Gadget.CONTENT_TYPE, "gadget");
/** . */
- public static final ApplicationType<WSRPState, WSRPId> WSRP_PORTLET =
- new ApplicationType<WSRPState, WSRPId>(WSRPState.CONTENT_TYPE, "wsrp");
+ public static final ApplicationType<WSRP, WSRPId> WSRP_PORTLET = new ApplicationType<WSRP, WSRPId>(WSRP.CONTENT_TYPE, "wsrp");
/** . */
private final ContentType<S> contentType;
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/Mapper.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/Mapper.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/Mapper.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -19,18 +19,17 @@
package org.exoplatform.portal.config.model;
-import static org.exoplatform.portal.pom.config.Utils.join;
-import static org.exoplatform.portal.pom.config.Utils.split;
-
import org.exoplatform.portal.config.model.gadget.GadgetApplication;
import org.exoplatform.portal.config.model.portlet.PortletApplication;
import org.exoplatform.portal.config.model.portlet.PortletId;
import org.exoplatform.portal.config.model.wsrp.WSRPApplication;
import org.exoplatform.portal.config.model.wsrp.WSRPId;
import org.exoplatform.portal.pom.config.POMSession;
+import static org.exoplatform.portal.pom.config.Utils.join;
+import static org.exoplatform.portal.pom.config.Utils.split;
import org.exoplatform.portal.pom.spi.gadget.Gadget;
import org.exoplatform.portal.pom.spi.portlet.Preferences;
-import org.exoplatform.portal.pom.spi.wsrp.WSRPState;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
import org.gatein.mop.api.Attributes;
import org.gatein.mop.api.content.ContentType;
import org.gatein.mop.api.content.Customization;
@@ -67,19 +66,19 @@
{
/** . */
- private static final Set<String> portalPropertiesBlackList =
- new HashSet<String>(Arrays.asList("jcr:uuid", "jcr:primaryType", MappedAttributes.LOCALE.getName(),
- MappedAttributes.ACCESS_PERMISSIONS.getName(), MappedAttributes.EDIT_PERMISSION.getName(),
- MappedAttributes.SKIN.getName(), MappedAttributes.TITLE.getName(), MappedAttributes.CREATOR.getName(),
- MappedAttributes.MODIFIER.getName()));
+ private static final Set<String> portalPropertiesBlackList = new HashSet<String>(Arrays.asList(
+ "jcr:uuid", "jcr:primaryType",
+ MappedAttributes.LOCALE.getName(), MappedAttributes.ACCESS_PERMISSIONS.getName(), MappedAttributes.EDIT_PERMISSION.getName(), MappedAttributes.SKIN.getName(),
+ MappedAttributes.TITLE.getName(), MappedAttributes.CREATOR.getName(), MappedAttributes.MODIFIER.getName()
+ ));
/** . */
- private static final Set<String> windowPropertiesBlackList =
- new HashSet<String>(Arrays.asList("jcr:uuid", "jcr:primaryType", MappedAttributes.TYPE.getName(),
- MappedAttributes.THEME.getName(), MappedAttributes.TITLE.getName(), MappedAttributes.ACCESS_PERMISSIONS
- .getName(), MappedAttributes.SHOW_INFO_BAR.getName(), MappedAttributes.SHOW_STATE.getName(),
- MappedAttributes.SHOW_MODE.getName(), MappedAttributes.DESCRIPTION.getName(), MappedAttributes.ICON.getName(),
- MappedAttributes.WIDTH.getName(), MappedAttributes.HEIGHT.getName()));
+ private static final Set<String> windowPropertiesBlackList = new HashSet<String>(Arrays.asList(
+ "jcr:uuid", "jcr:primaryType",
+ MappedAttributes.TYPE.getName(), MappedAttributes.THEME.getName(), MappedAttributes.TITLE.getName(), MappedAttributes.ACCESS_PERMISSIONS.getName(), MappedAttributes.SHOW_INFO_BAR.getName(),
+ MappedAttributes.SHOW_STATE.getName(), MappedAttributes.SHOW_MODE.getName(), MappedAttributes.DESCRIPTION.getName(),
+ MappedAttributes.ICON.getName(), MappedAttributes.WIDTH.getName(), MappedAttributes.HEIGHT.getName()
+ ));
/** . */
private final POMSession session;
@@ -287,12 +286,12 @@
{
if (src.getStorageId() != null && !src.getStorageId().equals(dst.getObjectId()))
{
- String msg =
- "Attempt to save a site " + src.getType() + "/" + src.getName() + " on the wrong target site "
- + dst.getObjectType() + "/" + dst.getName();
+ String msg = "Attempt to save a site " + src.getType() + "/" + src.getName() + " on the wrong target site " +
+ dst.getObjectType() + "/" + dst.getName();
throw new IllegalArgumentException(msg);
}
+
//
Attributes attrs = dst.getAttributes();
attrs.setValue(MappedAttributes.LOCALE, src.getLocale());
@@ -432,8 +431,7 @@
Site owner = src.getPage().getSite();
state.setOwnerType(getOwnerType(owner.getObjectType()));
state.setOwnerId(owner.getName());
- PortletApplication dashboardApp =
- new PortletApplication(srcContainer.getObjectId(), "dashboard", "DashboardPortlet");
+ PortletApplication dashboardApp = new PortletApplication(srcContainer.getObjectId(), "dashboard", "DashboardPortlet");
dashboardApp.setStorageName(component.getName());
dashboardApp.setState(state);
dashboardApp.setShowInfoBar(false);
@@ -488,8 +486,7 @@
dstAttrs.setValue(MappedAttributes.NAME, src.getName());
}
- private void save(ModelObject src, WorkspaceObject dst, LinkedList<ModelChange> changes,
- Map<String, String> hierarchyRelationships)
+ private void save(ModelObject src, WorkspaceObject dst, LinkedList<ModelChange> changes, Map<String, String> hierarchyRelationships)
{
if (src instanceof Container)
{
@@ -555,8 +552,7 @@
}
}
- private void saveChildren(final Container src, UIContainer dst, LinkedList<ModelChange> changes,
- Map<String, String> hierarchyRelationships)
+ private void saveChildren(final Container src, UIContainer dst, LinkedList<ModelChange> changes, Map<String, String> hierarchyRelationships)
{
final List<String> orders = new ArrayList<String>();
final Map<String, ModelObject> modelObjectMap = new HashMap<String, ModelObject>();
@@ -610,12 +606,12 @@
}
// julien : this can fail due to a bug in chromattic not implementing equals method properly
// and is replaced with the foreach below
- /*
- if (!dst.contains(dstChild)) {
- throw new IllegalArgumentException("Attempt for updating a ui component " + session.pathOf(dstChild) +
- "that is not present in the target ui container " + session.pathOf(dst));
- }
- */
+/*
+ if (!dst.contains(dstChild)) {
+ throw new IllegalArgumentException("Attempt for updating a ui component " + session.pathOf(dstChild) +
+ "that is not present in the target ui container " + session.pathOf(dst));
+ }
+*/
boolean found = false;
for (UIComponent child : dst)
{
@@ -634,8 +630,8 @@
}
else
{
- throw new IllegalArgumentException("Attempt for updating a ui component " + session.pathOf(dstChild)
- + "that is not present in the target ui container " + session.pathOf(dst));
+ throw new IllegalArgumentException("Attempt for updating a ui component " + session.pathOf(dstChild) +
+ "that is not present in the target ui container " + session.pathOf(dst));
}
}
@@ -752,22 +748,17 @@
int pos = contentId.indexOf('/');
String applicationName = contentId.substring(0, pos);
String portletName = contentId.substring(pos + 1);
- @SuppressWarnings("unchecked")
- Application<S, I> application =
- (Application<S, I>)new PortletApplication(src.getObjectId(), applicationName, portletName);
+ @SuppressWarnings("unchecked") Application<S, I> application = (Application<S, I>)new PortletApplication(src.getObjectId(), applicationName, portletName);
dst = application;
}
else if (contentType == Gadget.CONTENT_TYPE)
{
- @SuppressWarnings("unchecked")
- Application<S, I> application = (Application<S, I>)new GadgetApplication(src.getObjectId(), contentId);
+ @SuppressWarnings("unchecked") Application<S, I> application = (Application<S, I>)new GadgetApplication(src.getObjectId(), contentId);
dst = application;
}
- else if (contentType == WSRPState.CONTENT_TYPE)
+ else if (contentType == WSRP.CONTENT_TYPE)
{
- @SuppressWarnings("unchecked")
- Application<S, I> application =
- (Application<S, I>)new WSRPApplication(src.getObjectId(), new WSRPId(contentId));
+ @SuppressWarnings("unchecked") Application<S, I> application = (Application<S, I>)new WSRPApplication(src.getObjectId(), new WSRPId(contentId));
dst = application;
}
else
@@ -855,7 +846,7 @@
GadgetApplication gadgetApp = (GadgetApplication)src;
contentId = gadgetApp.getRef().getGadgetName();
}
- else if (contentType == WSRPState.CONTENT_TYPE)
+ else if (contentType == WSRP.CONTENT_TYPE)
{
WSRPApplication wsrpApp = (WSRPApplication)src;
contentId = wsrpApp.getRef().getUri();
@@ -932,13 +923,11 @@
// If the existing customization is not null and matches the content id
Customization<S> dstCustomization;
- if (customization != null && customization.getType().equals(contentType)
- && customization.getContentId().equals(contentId))
+ if (customization != null && customization.getType().equals(contentType) && customization.getContentId().equals(contentId))
{
// Cast is ok as content type matches
- @SuppressWarnings("unchecked")
- Customization<S> bilto = (Customization<S>)customization;
+ @SuppressWarnings("unchecked") Customization<S> bilto = (Customization<S>)customization;
// If it's a customization of the current site we extend it
if (bilto.getContext() == currentSite)
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/TransientApplicationState.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/TransientApplicationState.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/TransientApplicationState.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -42,8 +42,7 @@
public TransientApplicationState(String uniqueId)
{
- this.contentState = null;
- this.uniqueId = uniqueId;
+ this(null, uniqueId);
}
public TransientApplicationState(S contentState, String uniqueId)
@@ -54,8 +53,7 @@
public TransientApplicationState(S contentState)
{
- this.contentState = contentState;
- this.uniqueId = null;
+ this(contentState, null);
}
public TransientApplicationState()
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/wsrp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/wsrp/WSRPApplication.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/wsrp/WSRPApplication.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/model/wsrp/WSRPApplication.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -21,13 +21,13 @@
import org.exoplatform.portal.config.model.Application;
import org.exoplatform.portal.config.model.ApplicationType;
-import org.exoplatform.portal.pom.spi.wsrp.WSRPState;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
/**
* @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
* @version $Revision$
*/
-public class WSRPApplication extends Application<WSRPState, WSRPId>
+public class WSRPApplication extends Application<WSRP, WSRPId>
{
public WSRPApplication(String storageId, WSRPId id)
@@ -41,7 +41,7 @@
}
@Override
- public ApplicationType<WSRPState, WSRPId> getType()
+ public ApplicationType<WSRP, WSRPId> getType()
{
return ApplicationType.WSRP_PORTLET;
}
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/config/serialize
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -28,6 +28,7 @@
import org.exoplatform.portal.pom.spi.portlet.PortletPreferenceState;
import org.exoplatform.portal.pom.spi.portlet.PortletPreferencesState;
import org.exoplatform.portal.pom.spi.portlet.Preferences;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
import org.exoplatform.portal.pom.spi.wsrp.WSRPContentProvider;
import org.exoplatform.portal.pom.spi.wsrp.WSRPState;
import org.exoplatform.services.jcr.RepositoryService;
@@ -59,14 +60,13 @@
import org.gatein.mop.core.api.workspace.content.WorkspaceClone;
import org.gatein.mop.core.api.workspace.content.WorkspaceSpecialization;
-import java.lang.reflect.Field;
-import java.lang.reflect.UndeclaredThrowableException;
-import java.util.Set;
-
import javax.jcr.Credentials;
import javax.jcr.Repository;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
+import java.lang.reflect.Field;
+import java.lang.reflect.UndeclaredThrowableException;
+import java.util.Set;
/**
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
@@ -186,16 +186,15 @@
builder.add(PortletPreferencesState.class);
builder.add(PortletPreferenceState.class);
builder.add(GadgetState.class);
+ builder.add(WSRPState.class);
- //
- CustomizationContextProviderRegistry customizationContextResolvers =
- new CustomizationContextProviderRegistry();
+ CustomizationContextProviderRegistry customizationContextResolvers = new CustomizationContextProviderRegistry();
//
ContentManagerRegistry contentManagerRegistry = new ContentManagerRegistry();
contentManagerRegistry.register(Preferences.CONTENT_TYPE, new PortletContentProvider());
contentManagerRegistry.register(Gadget.CONTENT_TYPE, new GadgetContentProvider());
- contentManagerRegistry.register(WSRPState.CONTENT_TYPE, new WSRPContentProvider());
+ contentManagerRegistry.register(WSRP.CONTENT_TYPE, new WSRPContentProvider());
//
chromeField.set(pomService, builder.build());
@@ -224,8 +223,8 @@
}
/**
- * <p>Open and returns a session to the model. When the current thread is already associated with a previously
- * opened session the method will throw an <tt>IllegalStateException</tt>.</p>
+ * <p>Open and returns a session to the model. When the current thread is already associated with a previously opened
+ * session the method will throw an <tt>IllegalStateException</tt>.</p>
*
* @return a session to the model.
*/
@@ -256,8 +255,8 @@
}
/**
- * <p>Closes the current session and optionally saves its content. If no session is associated
- * then this method has no effects and returns false.</p>
+ * <p>Closes the current session and optionally saves its content. If no session is associated then this method has
+ * no effects and returns false.</p>
*
* @param save if the session must be saved
* @return a boolean indicating if the session was closed
@@ -289,8 +288,8 @@
}
/**
- * <p>Execute the task with a session. The method attempts first to get a current session and if no such session
- * is found then a session will be created for the scope of the method.</p>
+ * <p>Execute the task with a session. The method attempts first to get a current session and if no such session is
+ * found then a session will be created for the scope of the method.</p>
*
* @param task the task to execute
* @throws Exception any exception thrown by the task
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/config/tasks
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/HelpableContentProvider.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/HelpableContentProvider.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/HelpableContentProvider.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -27,7 +27,7 @@
{
String getNodeName();
- void setInternalState(InternalState internalState, State state);
+ void setInternalState(InternalState persistedState, State updatedState);
State getState(InternalState internalState);
}
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetContentProvider.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetContentProvider.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetContentProvider.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -61,7 +61,7 @@
public String getNodeName()
{
- return "mop:gadget";
+ return GadgetState.MOP_NODE_NAME;
}
public void setInternalState(GadgetState gadgetState, Gadget gadget)
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetState.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetState.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/gadget/GadgetState.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -26,9 +26,10 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-@NodeMapping(name = "mop:gadget")
+@NodeMapping(name = GadgetState.MOP_NODE_NAME)
public abstract class GadgetState
{
+ static final String MOP_NODE_NAME = "mop:gadget";
@Property(name = "prefs")
public abstract String getUserPrefs();
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletContentProvider.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletContentProvider.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletContentProvider.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -84,7 +84,7 @@
public String getNodeName()
{
- return "mop:portletpreferences";
+ return PortletPreferencesState.MOP_NODE_NAME;
}
public void setInternalState(PortletPreferencesState portletPreferencesState, Preferences preferences)
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletPreferencesState.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletPreferencesState.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/portlet/PortletPreferencesState.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -32,12 +32,13 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-@NodeMapping(name = "mop:portletpreferences")
+@NodeMapping(name = PortletPreferencesState.MOP_NODE_NAME)
public abstract class PortletPreferencesState
{
/** . */
private Preferences payload;
+ static final String MOP_NODE_NAME = "mop:portletpreferences";
@OneToMany
public abstract Map<String, PortletPreferenceState> getChildren();
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Added: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRP.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRP.java (rev 0)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRP.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -0,0 +1,107 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2008, 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.exoplatform.portal.pom.spi.wsrp;
+
+import org.gatein.mop.api.content.ContentType;
+
+import java.io.Serializable;
+import java.util.Arrays;
+
+/**
+ * @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
+ * @version $Revision$
+ */
+public class WSRP implements Serializable
+{
+ public static final ContentType<WSRP> CONTENT_TYPE = new ContentType<WSRP>("application/wsrp", WSRP.class);
+
+ private byte[] state;
+ private String portletId;
+ private boolean isCloned;
+
+ public byte[] getState()
+ {
+ return state;
+ }
+
+ public void setState(byte[] state)
+ {
+ this.state = state;
+ }
+
+ public String getPortletId()
+ {
+ return portletId;
+ }
+
+ public void setPortletId(String portletId)
+ {
+ this.portletId = portletId;
+ }
+
+ public boolean isCloned()
+ {
+ return isCloned;
+ }
+
+ public void setCloned(boolean cloned)
+ {
+ isCloned = cloned;
+ }
+
+ @Override
+ public boolean equals(Object o)
+ {
+ if (this == o)
+ {
+ return true;
+ }
+ if (!(o instanceof WSRP))
+ {
+ return false;
+ }
+
+ WSRP wsrp = (WSRP)o;
+
+ if (portletId != null ? !portletId.equals(wsrp.portletId) : wsrp.portletId != null)
+ {
+ return false;
+ }
+ return Arrays.equals(state, wsrp.state);
+
+ }
+
+ @Override
+ public int hashCode()
+ {
+ int result = state != null ? Arrays.hashCode(state) : 0;
+ result = 31 * result + (portletId != null ? portletId.hashCode() : 0);
+ return result;
+ }
+
+ @Override
+ public String toString()
+ {
+ return "WSRP[portletId='" + portletId + "', state=" + state + ']';
+ }
+}
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPContentProvider.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPContentProvider.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPContentProvider.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -21,57 +21,93 @@
import org.exoplatform.portal.pom.spi.ContentProviderHelper;
import org.exoplatform.portal.pom.spi.HelpableContentProvider;
+import org.gatein.common.io.IOTools;
import org.gatein.mop.spi.content.ContentProvider;
import org.gatein.mop.spi.content.GetState;
import org.gatein.mop.spi.content.StateContainer;
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.io.InputStream;
import java.util.List;
/**
* @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
* @version $Revision$
*/
-public class WSRPContentProvider implements ContentProvider<WSRPState>, HelpableContentProvider<byte[], WSRPState>
+public class WSRPContentProvider implements ContentProvider<WSRP>, HelpableContentProvider<WSRPState, WSRP>
{
- public GetState<WSRPState> getState(String s)
+
+ public GetState<WSRP> getState(String s)
{
throw new UnsupportedOperationException("todo");
}
- public WSRPState combine(List<WSRPState> wsrpStates)
+ public WSRP combine(List<WSRP> wsrpStates)
{
throw new UnsupportedOperationException("todo");
}
- public void setState(StateContainer stateContainer, WSRPState wsrpState)
+ public void setState(StateContainer stateContainer, WSRP wsrpState)
{
ContentProviderHelper.setState(stateContainer, wsrpState, this);
}
- public WSRPState getState(StateContainer stateContainer)
+ public WSRP getState(StateContainer stateContainer)
{
return ContentProviderHelper.getState(stateContainer, this);
}
- public Class<WSRPState> getStateType()
+ public Class<WSRP> getStateType()
{
- return WSRPState.class;
+ return WSRP.class;
}
public String getNodeName()
{
- return "mop:wsrpState";
+ return WSRPState.MOP_NODE_NAME;
}
- public void setInternalState(byte[] bytes, WSRPState wsrpState)
+ public void setInternalState(WSRPState persistedState, WSRP updatedState)
{
- wsrpState.setState(bytes);
+ byte[] bytes = updatedState.getState();
+ if (bytes != null && bytes.length > 0)
+ {
+ ByteArrayInputStream is = new ByteArrayInputStream(bytes);
+ persistedState.setState(is);
+ }
+ persistedState.setPortletId(updatedState.getPortletId());
+ persistedState.setCloned(updatedState.isCloned());
}
- public WSRPState getState(byte[] bytes)
+ private byte[] getBytes(InputStream is)
{
- WSRPState wsrpState = new WSRPState();
- wsrpState.setState(bytes);
- return wsrpState;
+ byte[] bytes;
+
+ if (is == null)
+ {
+ return null;
+ }
+
+ try
+ {
+ bytes = IOTools.getBytes(is);
+ }
+ catch (IOException e)
+ {
+ throw new RuntimeException("Couldn't get bytes from WSRPState", e); // todo: log instead?
+ }
+ IOTools.safeClose(is);
+ return bytes;
}
+
+ public WSRP getState(WSRPState state)
+ {
+ WSRP wsrp = new WSRP();
+ byte[] bytes = getBytes(state.getState());
+ wsrp.setState(bytes);
+ wsrp.setPortletId(state.getPortletId());
+ wsrp.setCloned(state.getCloned());
+ return wsrp;
+ }
}
Added: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPPortletStateType.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPPortletStateType.java (rev 0)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPPortletStateType.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -0,0 +1,58 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2008, 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.exoplatform.portal.pom.spi.wsrp;
+
+import org.gatein.pc.api.PortletStateType;
+
+/**
+ * @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
+ * @version $Revision$
+ */
+public class WSRPPortletStateType extends PortletStateType<WSRP>
+{
+ public static final WSRPPortletStateType instance = new WSRPPortletStateType();
+
+ @Override
+ public Class<WSRP> getJavaType()
+ {
+ return WSRP.class;
+ }
+
+ @Override
+ public boolean equals(WSRP state1, WSRP state2)
+ {
+ return state1.equals(state2);
+ }
+
+ @Override
+ public int hashCode(WSRP state)
+ {
+ return state.hashCode();
+ }
+
+ @Override
+ public String toString(WSRP state)
+ {
+ return state.toString();
+ }
+}
Modified: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPState.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPState.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/pom/spi/wsrp/WSRPState.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,46 +1,53 @@
-/**
- * Copyright (C) 2009 eXo Platform SAS.
- *
- * 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 2008, 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.exoplatform.portal.pom.spi.wsrp;
-import org.gatein.mop.api.content.ContentType;
+import org.chromattic.api.annotations.NodeMapping;
+import org.chromattic.api.annotations.Property;
-import java.io.Serializable;
+import java.io.InputStream;
/**
* @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
* @version $Revision$
*/
-public class WSRPState implements Serializable
+@NodeMapping(name = WSRPState.MOP_NODE_NAME)
+public abstract class WSRPState
{
- public static final ContentType<WSRPState> CONTENT_TYPE =
- new ContentType<WSRPState>("application/wsrp", WSRPState.class);
+ static final String MOP_NODE_NAME = "mop:wsrpState";
- private byte[] state;
+ @Property(name = "portletId")
+ public abstract String getPortletId();
- public byte[] getState()
- {
- return state;
- }
+ public abstract void setPortletId(String portletHandle);
- public void setState(byte[] state)
- {
- this.state = state;
- }
+ @Property(name = "state")
+ public abstract InputStream getState();
+
+ public abstract void setState(InputStream state);
+
+ @Property(name = "cloned")
+ public abstract boolean getCloned();
+
+ public abstract void setCloned(boolean cloned);
}
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin/config/tasks
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/java/org/exoplatform/portal/skin/config/xml
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Added: portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/content-nodetypes.xml
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/content-nodetypes.xml (rev 0)
+++ portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/content-nodetypes.xml 2009-10-21 15:51:47 UTC (rev 390)
@@ -0,0 +1,45 @@
+<!--
+
+ Copyright (C) 2009 eXo Platform SAS.
+
+ 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.
+
+-->
+
+<nodeTypes xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0"
+ xmlns:jcr="http://www.jcp.org/jcr/1.0">
+
+ <nodeType name="mop:wsrpState" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
+ <supertypes>
+ <supertype>mop:customizationstate</supertype>
+ </supertypes>
+ <propertyDefinitions>
+ <propertyDefinition name="portletId" requiredType="String" autoCreated="false" mandatory="false"
+ onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ <propertyDefinition name="state" requiredType="Binary" autoCreated="false" mandatory="false"
+ onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ <propertyDefinition name="cloned" requiredType="Boolean" autoCreated="false" mandatory="false"
+ onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ </propertyDefinitions>
+ </nodeType>
+
+</nodeTypes>
Modified: portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/jcr-configuration.xml
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/jcr-configuration.xml 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/portal/src/test/java/conf/portal/jcr-configuration.xml 2009-10-21 15:51:47 UTC (rev 390)
@@ -24,65 +24,67 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd http://www.exoplaform.org/xml/ns/kernel_1_0.xsd"
xmlns="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd">
- <component>
- <key>org.exoplatform.services.jcr.config.RepositoryServiceConfiguration</key>
- <type>org.exoplatform.services.jcr.impl.config.RepositoryServiceConfigurationImpl</type>
- <init-params>
- <value-param>
- <name>conf-path</name>
- <description>JCR configuration file</description>
- <value>jar:/conf/portal/repository-configuration.xml</value>
- </value-param>
- <properties-param>
- <name>working-conf</name>
- <description>working-conf</description>
- <property name="persister-class-name" value="org.exoplatform.services.jcr.impl.config.JDBCConfigurationPersister"/>
- <property name="source-name" value="jdbcexo"/>
- <property name="dialect" value="hsqldb"/>
- </properties-param>
- </init-params>
- </component>
-
- <component>
- <key>org.exoplatform.services.jcr.RepositoryService</key>
- <type>org.exoplatform.services.jcr.impl.RepositoryServiceImpl</type>
- </component>
-
- <component>
- <type>org.exoplatform.services.jcr.ext.registry.RegistryService</type>
- <init-params>
- <properties-param>
- <name>locations</name>
- <property name="repository" value="system"/>
- </properties-param>
- </init-params>
- </component>
+ <component>
+ <key>org.exoplatform.services.jcr.config.RepositoryServiceConfiguration</key>
+ <type>org.exoplatform.services.jcr.impl.config.RepositoryServiceConfigurationImpl</type>
+ <init-params>
+ <value-param>
+ <name>conf-path</name>
+ <description>JCR configuration file</description>
+ <value>jar:/conf/portal/repository-configuration.xml</value>
+ </value-param>
+ <properties-param>
+ <name>working-conf</name>
+ <description>working-conf</description>
+ <property name="persister-class-name"
+ value="org.exoplatform.services.jcr.impl.config.JDBCConfigurationPersister"/>
+ <property name="source-name" value="jdbcexo"/>
+ <property name="dialect" value="hsqldb"/>
+ </properties-param>
+ </init-params>
+ </component>
- <external-component-plugins>
- <target-component>org.exoplatform.services.jcr.RepositoryService</target-component>
- <component-plugin>
- <name>add.namespaces</name>
- <set-method>addPlugin</set-method>
- <type>org.exoplatform.services.jcr.impl.AddNamespacesPlugin</type>
- <init-params>
- <properties-param>
- <name>namespaces</name>
- <property name="mop" value="http://www.gatein.org/jcr/mop/1.0/"/>
- </properties-param>
- </init-params>
- </component-plugin>
- <component-plugin>
- <name>add.nodeType</name>
- <set-method>addPlugin</set-method>
- <type>org.exoplatform.services.jcr.impl.AddNodeTypePlugin</type>
- <init-params>
- <values-param>
- <name>autoCreatedInNewRepository</name>
- <description>Node types configuration file</description>
- <value>jar:/conf/standalone/nodetypes.xml</value>
- </values-param>
- </init-params>
- </component-plugin>
- </external-component-plugins>
+ <component>
+ <key>org.exoplatform.services.jcr.RepositoryService</key>
+ <type>org.exoplatform.services.jcr.impl.RepositoryServiceImpl</type>
+ </component>
-</configuration>
\ No newline at end of file
+ <component>
+ <type>org.exoplatform.services.jcr.ext.registry.RegistryService</type>
+ <init-params>
+ <properties-param>
+ <name>locations</name>
+ <property name="repository" value="system"/>
+ </properties-param>
+ </init-params>
+ </component>
+
+ <external-component-plugins>
+ <target-component>org.exoplatform.services.jcr.RepositoryService</target-component>
+ <component-plugin>
+ <name>add.namespaces</name>
+ <set-method>addPlugin</set-method>
+ <type>org.exoplatform.services.jcr.impl.AddNamespacesPlugin</type>
+ <init-params>
+ <properties-param>
+ <name>namespaces</name>
+ <property name="mop" value="http://www.gatein.org/jcr/mop/1.0/"/>
+ </properties-param>
+ </init-params>
+ </component-plugin>
+ <component-plugin>
+ <name>add.nodeType</name>
+ <set-method>addPlugin</set-method>
+ <type>org.exoplatform.services.jcr.impl.AddNodeTypePlugin</type>
+ <init-params>
+ <values-param>
+ <name>autoCreatedInNewRepository</name>
+ <description>Node types configuration file</description>
+ <value>jar:/conf/standalone/nodetypes.xml</value>
+ <value>jar:/conf/portal/content-nodetypes.xml</value>
+ </values-param>
+ </init-params>
+ </component-plugin>
+ </external-component-plugins>
+
+</configuration>
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Added: portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config/WSRPTest.java
===================================================================
--- portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config/WSRPTest.java (rev 0)
+++ portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config/WSRPTest.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -0,0 +1,91 @@
+/**
+ * Copyright (C) 2009 eXo Platform SAS.
+ *
+ * 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.exoplatform.portal.config;
+
+import org.exoplatform.container.PortalContainer;
+import org.exoplatform.portal.config.model.Page;
+import org.exoplatform.portal.config.model.TransientApplicationState;
+import org.exoplatform.portal.config.model.wsrp.WSRPApplication;
+import org.exoplatform.portal.config.model.wsrp.WSRPId;
+import org.exoplatform.portal.pom.config.POMSession;
+import org.exoplatform.portal.pom.config.POMSessionManager;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
+import org.exoplatform.test.BasicTestCase;
+
+/**
+ * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
+ * @version $Revision$
+ */
+public class WSRPTest extends BasicTestCase
+{
+
+ /** . */
+ private DataStorage storage_;
+
+ /** . */
+ private POMSessionManager mgr;
+
+ /** . */
+ private POMSession session;
+
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ if (storage_ != null)
+ {
+ return;
+ }
+ PortalContainer container = PortalContainer.getInstance();
+ storage_ = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
+ mgr = (POMSessionManager)container.getComponentInstanceOfType(POMSessionManager.class);
+ session = mgr.openSession();
+ }
+
+ protected void tearDown() throws Exception
+ {
+ mgr.closeSession(false);
+ }
+
+ public void testBilto() throws Exception
+ {
+
+ TransientApplicationState<WSRP> state = new TransientApplicationState<WSRP>();
+ WSRP wsrp = new WSRP();
+ String id = "portlet id";
+ wsrp.setPortletId(id);
+ state.setContentState(wsrp);
+ WSRPApplication wsrpApplication = new WSRPApplication(new WSRPId("test"));
+ wsrpApplication.setState(state);
+
+ Page container = new Page();
+ String pageId = "portal::test::wsrp_page";
+ container.setPageId(pageId);
+ container.getChildren().add(wsrpApplication);
+
+ storage_.create(container);
+
+ container = storage_.getPage(pageId);
+ wsrpApplication = (WSRPApplication)container.getChildren().get(0);
+
+ wsrp = storage_.load(wsrpApplication.getState());
+ assertNotNull(wsrp);
+ assertEquals(id, wsrp.getPortletId());
+ }
+}
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/java/org/exoplatform/portal/config/security
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/jibx
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/organization/management
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/organization/management/executive-board
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/administrators
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/guests
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/test/legacy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/test/normalized
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/group/platform/users
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/classic
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/template/classic
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/template/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/portal/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/four-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/one-column
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/three-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/containers/two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/empty
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/one-row-two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-rows
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-rows-two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/three-tabs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-columns-one-row
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-rows
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/template/pages/two-tabs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/demo
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/john
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/mary
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/overwritelayout
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/root
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/portal/src/test/resources/portal/user/template/user
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform/services/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/main/java/org/exoplatform/services/resources/jcr
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/conf/portal/testjcr
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/locale/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/locale/test/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform/services/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/resources/src/test/java/org/exoplatform/services/resources/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/commons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/commons/utils
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/groovyscript
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/groovyscript/text
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/main/java/org/exoplatform/resolver
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/test/java/org/exoplatform/commons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/scripting/src/test/java/org/exoplatform/commons/utils
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/download
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/json
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/upload
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/util
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/annotation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/javascript
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/application/mvc
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/command
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/filter
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/login
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/security
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/main/java/org/exoplatform/web/security/security
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/download
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/download/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/json
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/json/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/web/command
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/java/org/exoplatform/web/filter
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/web/src/test/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal/wsrp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal/wsrp/ExoKernelIntegration.java
===================================================================
--- portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal/wsrp/ExoKernelIntegration.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/component/wsrp/src/main/java/org/gatein/portal/wsrp/ExoKernelIntegration.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -25,11 +25,18 @@
import org.exoplatform.container.xml.InitParams;
import org.gatein.pc.api.PortletInvoker;
import org.gatein.pc.federation.FederatingPortletInvoker;
+import org.gatein.pc.portlet.container.ContainerPortletInvoker;
+import org.gatein.pc.portlet.impl.state.StateConverterV0;
+import org.gatein.pc.portlet.impl.state.StateManagementPolicyService;
+import org.gatein.pc.portlet.impl.state.producer.PortletStatePersistenceManagerService;
+import org.gatein.pc.portlet.state.StateConverter;
import org.gatein.pc.portlet.state.producer.ProducerPortletInvoker;
import org.gatein.registration.RegistrationManager;
import org.gatein.registration.RegistrationPersistenceManager;
import org.gatein.registration.impl.RegistrationManagerImpl;
import org.gatein.registration.impl.RegistrationPersistenceManagerImpl;
+import org.gatein.registration.policies.DefaultRegistrationPolicy;
+import org.gatein.registration.policies.DefaultRegistrationPropertyValidator;
import org.gatein.wsrp.api.SessionEvent;
import org.gatein.wsrp.api.SessionEventBroadcaster;
import org.gatein.wsrp.api.SessionEventListener;
@@ -64,7 +71,7 @@
private ConsumerRegistry consumerRegistry;
public ExoKernelIntegration(InitParams params, ConfigurationManager configurationManager,
- org.exoplatform.portal.pc.ExoKernelIntegration pc) throws Exception
+ org.exoplatform.portal.pc.ExoKernelIntegration pc) throws Exception
{
if (params != null)
{
@@ -103,10 +110,32 @@
RegistrationManager registrationManager = new RegistrationManagerImpl();
registrationManager.setPersistenceManager(registrationPersistenceManager);
- // retrieve producer portlet invoker from container
- ProducerPortletInvoker producerPortletInvoker =
- (ProducerPortletInvoker)container.getComponentInstanceOfType(ProducerPortletInvoker.class);
+ // todo: this should be done at the producer configuration level but somehow this isn't currently done :(
+ DefaultRegistrationPolicy registrationPolicy = new DefaultRegistrationPolicy();
+ registrationPolicy.setValidator(new DefaultRegistrationPropertyValidator());
+ registrationManager.setPolicy(registrationPolicy);
+ // retrieve container portlet invoker from eXo kernel
+ ContainerPortletInvoker containerPortletInvoker =
+ (ContainerPortletInvoker)container.getComponentInstanceOfType(ContainerPortletInvoker.class);
+
+ // The producer persistence manager
+ PortletStatePersistenceManagerService producerPersistenceManager = new PortletStatePersistenceManagerService();
+
+ // The producer state management policy
+ StateManagementPolicyService producerStateManagementPolicy = new StateManagementPolicyService();
+ producerStateManagementPolicy.setPersistLocally(true);
+
+ // The producer state converter
+ StateConverter producerStateConverter = new StateConverterV0();
+
+ // The producer portlet invoker
+ ProducerPortletInvoker producerPortletInvoker = new ProducerPortletInvoker();
+ producerPortletInvoker.setNext(containerPortletInvoker);
+ producerPortletInvoker.setPersistenceManager(producerPersistenceManager);
+ producerPortletInvoker.setStateManagementPolicy(producerStateManagementPolicy);
+ producerPortletInvoker.setStateConverter(producerStateConverter);
+
// create and wire WSRP producer
producer = ProducerHolder.getProducer(true);
producer.setPortletInvoker(producerPortletInvoker);
Property changes on: portal/branches/wsrp-integration/component/xml-parser
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/chars
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/chars/chardet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/common
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/common/util
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/parser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/path
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/refs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/tidy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/html/util
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/rss
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/rss/parser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/text
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/text/unicode
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/token
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/token/attribute
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml/parser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml/serialize
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/main/java/org/exoplatform/services/xml/util
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/html
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/html/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/rss
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/services/parser/rss/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/java/org/exoplatform/test/crawler
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/component/xml-parser/src/test/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/_archive
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/_archive/integration
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/_orphans
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/configuration
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/development
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/gadgets
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/gadgetsAdmin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/language
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/portlets
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/portletsUser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/security
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/docs/user-guide/en/modules/terms
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/containers
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/containers/default
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform/portal/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/core/src/main/java/org/exoplatform/portal/gadget/core
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/resources/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/Calculator
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/Calendar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/locale/Todo
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin/DefaultSkin/portletIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/eXoGadgets/src/main/webapp/skin/image
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes/containers
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/gadgets/server/src/main/webapp/WEB-INF/classes/containers/default
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging
___________________________________________________________________
Name: svn:ignore
- profiles.xml
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/module
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/module/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/module/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/module/src/main/javascript
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/pkg
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/pkg/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/pkg/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/pkg/src/main/assembly
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/product
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/product/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/product/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/product/src/main/javascript
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/packaging/reports
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/patch
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/gadget/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/java/org/exoplatform/gadget/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/resources/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/DashboardPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/DashboardPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/TabbedDashboardPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/dashboard/TabbedDashboardPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/gadget/GadgetPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/portlet/gadget/GadgetPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/script
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/WEB-INF/conf/script/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/dashboard/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/dashboard/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/gadget/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/groovy/gadget/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/dashboard/src/main/webapp/skin/gadget/webui/component/UIGadgetPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/model
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/i18n
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/i18n/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/i18n/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/toolbar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/resources/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AccountPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AccountPortlet/help
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AccountPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AdminToolbarPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/AdminToolbarPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/ApplicationRegistryPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/ApplicationRegistryPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/GroupNavigationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/GroupNavigationPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/I18nPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/I18nPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/OrganizationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/OrganizationPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PageManagementPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PageManagementPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PortalNavigationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/PortalNavigationPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/StarToolbarPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/StarToolbarPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserInfoPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserInfoPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarDashboardPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarDashboardPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarGroupPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarGroupPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarSitePortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/portlet/exoadmin/UserToolbarSitePortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/script
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/script/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/account/webui/component/model
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/applicationregistry
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/WEB-INF/conf/uiconf/applicationregistry/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/account/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/account/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/admintoolbar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/applicationregistry
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/navigation/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/navigation/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/organization/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/organization/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/resources/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/groovy/resources/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/DefaultSkin/portletIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/MacSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/MacSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/VistaSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/account/webui/component/UIAccountPortlet/UILoginForm/VistaSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/admintoolbar/webui/component/UIAdminToolbarPortlet/DefaultSkin/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component/UIApplicationRegistryPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component/UIApplicationRegistryPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/applicationregistry/webui/component/UIApplicationRegistryPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/i18n/webui/component/UII18nPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/navigation/webui/component/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform/portal/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/java/org/exoplatform/portal/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/resources/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BannerPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BannerPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BreadcumbsPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/BreadcumbsPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FCKEditorPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FCKEditorPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FooterPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/FooterPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/HomePagePortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/HomePagePortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/IFramePortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/IFramePortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LoginPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LoginPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LogoPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/LogoPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/NavigationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/NavigationPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/PortalNavigationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/PortalNavigationPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/SitemapPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/portlet/web/SitemapPortlet/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/script
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/script/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/WEB-INF/conf/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/groovy/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/groovy/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/portal/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/groovy/portal/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/DefaultSkin/portletIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/icons/16x16
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIBrowserPortlet/DefaultSkin/icons/24x24
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIFooterPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIFooterPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIFooterPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIIFramePortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UILogoPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UILogoPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIPortalNavigationPortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIPortalNavigationPortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UIPortalNavigationPortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UISiteMap
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UISiteMap/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/main/webapp/skin/portal/webui/component/UISiteMap/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/portlet/web/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/config
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/config/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/config/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/config/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/config/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/ear
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform/sample
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform/sample/ext
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/jar/src/main/java/org/exoplatform/sample/ext/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/navigation/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/classes/locale/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/common
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/jcr
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform/users
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/portal/classic
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user/root
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/script
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/WEB-INF/conf/script/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/login
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/login/jsp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/groovy/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/groovy/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/extension/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/config
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/config/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/config/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/config/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/config/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/ear
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform/sample
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform/sample/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/jar/src/main/java/org/exoplatform/sample/portal/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/rest-war
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/rest-war/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/rest-war/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/rest-war/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/rest-war/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/navigation/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/classes/locale/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/common
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/jcr
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform/users
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/portal/classic
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user/root
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/script
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/WEB-INF/conf/script/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login/jsp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/login/skin/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/groovy/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/groovy/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/sample/portal/war/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy/exoplatform.sar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy/exoplatform.sar/META-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch/src/main/jboss/server/default/deploy/jboss-web.deployer
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/META-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deployers
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/patch-ear/src/main/jboss/server/default/deployers/jbossweb.deployer
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/plugin
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/plugin/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/plugin/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/plugin/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/plugin/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/jboss/plugin/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/bin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/conf/Catalina
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/conf/Catalina/localhost
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps/integration
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps/integration/META-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/patch/src/main/tomcat/webapps/integration/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/plugin
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/plugin/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/plugin/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/plugin/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/plugin/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/server/tomcat/plugin/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/ear
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/war
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/war/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/war/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/war/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/starter/war/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/resources/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/conf/script
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/conf/script/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/WEB-INF/lib
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/core
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/core/html
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/core/text
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/gadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/i18n
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/eXo/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/keyboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui/UINotification
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui/UINotification/css
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/javascript/html/webui/UINotification/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIExoStart
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIExoStart/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIExoStart/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UINotification
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIWorkspace
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/control/UIWorkspace/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIAccountSettingForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIAccountSettingForm/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeLanguageForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeLanguageForm/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangePortalForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeSkinForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIChangeSkinForm/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIContainerList
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIContainerList/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIDescription
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageBrowser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalBrowser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalSettingForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalSettingForm/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalToolPanel
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortalToolPanel/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPortletForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIDashboard/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIGadget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIGadget/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPage
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPage/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPortalComponent
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIPortalComponent/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UITabContainer
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIWidgets
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIWidgets/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UILoginForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UILoginForm/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIUserSpace
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIWelcomeComponent
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIWidgetContainerManagement
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/widget/UIWidgetContainerManagement/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/MiscIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/NavigationIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/OfficeIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/ToolIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/16x16/icons/UserIcons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/24x24
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/24x24/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/32x32
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/32x32/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/48x48
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/skinIcons/48x48/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIAction
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIAction/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBarStyle
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBarStyle/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBoxDecorator
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIBoxDecorator/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIDecorator
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIDecorator/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIInfoBar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBarDecorator/UIInfoBar/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBreadcumbs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIBreadcumbs/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UICalendar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UICalendar/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIColorPicker
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UICombobox
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIDescription
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIDropDownControl
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIDropDownControl/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIForm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormInputDecoratorSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormTabPane
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGrid
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGrid/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGroupInfoContainer
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIGroupInfoContainer/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMaskWorkspace
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMaskWorkspace/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMouseActionBackground
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIMouseActionBackground/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UINotification
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UINotification/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPageIterator
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPageIterator/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupCategory
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupCategory/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupMenu
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupMessage
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupMessage/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupWindow
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIPopupWindow/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIRightClickPopupMenu
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIPopup/UIWindow
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIQuickHelp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIQuickHelp/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISearch
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIFormInputThemeSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIFormInputThemeSelector/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIGroupMembershipSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIGroupMembershipSelector/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIItemSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIItemSelector/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UINodeIconSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UINodeIconSelector/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIPermissionSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIPermissionSelector/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UISelector/UIUserSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabPane
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabSelector
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabSelector/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UITabs/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UIVerticalSlideTabs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITabSystem/UIVerticalSlideTabs/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITree
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UITree/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIUpload
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIUpload/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIWizard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIWizard/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/PortletThemes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/PortletThemes/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/PortletThemes/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/sharedImages
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/eXoResources/src/main/webapp/skin/sharedImages/Icon80x80
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/resources/tomcat
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/classes/locale/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/common
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/configuration.xml
===================================================================
--- portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/configuration.xml 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/configuration.xml 2009-10-21 15:51:47 UTC (rev 390)
@@ -26,7 +26,7 @@
xmlns="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd">
<import>war:/conf/common/common-configuration.xml</import>
<import>war:/conf/common/portlet-container-configuration.xml</import>
- <!--import>war:/conf/common/wsrp-configuration.xml</import-->
+ <import>war:/conf/common/wsrp-configuration.xml</import>
<import>war:/conf/common/logs-configuration.xml</import>
<import>war:/conf/database/database-configuration.xml</import>
<import>war:/conf/jcr/jcr-configuration.xml</import>
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/database
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.tmpl.xml
===================================================================
--- portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.tmpl.xml 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.tmpl.xml 2009-10-21 15:51:47 UTC (rev 390)
@@ -24,105 +24,107 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd http://www.exoplaform.org/xml/ns/kernel_1_0.xsd"
xmlns="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd">
- <component>
- <key>org.exoplatform.services.jcr.config.RepositoryServiceConfiguration</key>
- <type>org.exoplatform.services.jcr.impl.config.RepositoryServiceConfigurationImpl</type>
- <init-params>
- <value-param>
- <name>conf-path</name>
- <description>JCR configuration file</description>
- <value>war:/conf/jcr/repository-configuration.xml</value>
- </value-param>
- <properties-param>
- <name>working-conf</name>
- <description>working-conf</description>
- <property name="persister-class-name" value="org.exoplatform.services.jcr.impl.config.JDBCConfigurationPersister"/>
- <property name="source-name" value="jdbcexo${container.name.suffix}"/>
- <property name="dialect" value="${dialect}"/>
- </properties-param>
- </init-params>
- </component>
-
- <component>
- <key>org.exoplatform.services.jcr.RepositoryService</key>
- <type>org.exoplatform.services.jcr.impl.RepositoryServiceImpl</type>
- </component>
-
- <component>
- <type>org.exoplatform.services.jcr.ext.registry.RegistryService</type>
- <init-params>
- <properties-param>
- <name>locations</name>
- <property name="repository" value="portal-system"/>
- </properties-param>
- </init-params>
- </component>
-
- <component>
- <key>org.exoplatform.services.jcr.ext.hierarchy.NodeHierarchyCreator</key>
- <type>org.exoplatform.services.jcr.ext.hierarchy.impl.NodeHierarchyCreatorImpl</type>
- </component>
-
- <component>
- <key>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</key>
- <type>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</type>
- <init-params>
-
- <value-param>
- <name>auto-mix-lockable</name>
- <value>false</value>
- </value-param>
-
- <value-param>
- <name>def-folder-node-type</name>
- <value>nt:folder</value>
- </value-param>
-
- <value-param>
- <name>def-file-node-type</name>
- <value>nt:file</value>
- </value-param>
-
- <value-param>
- <name>def-file-mimetype</name>
- <value>text/plain</value>
- </value-param>
-
- <value-param>
- <name>update-policy</name>
- <value>create-version</value>
- </value-param>
- </init-params>
- </component>
-
- <external-component-plugins>
- <target-component>org.exoplatform.services.jcr.RepositoryService</target-component>
- <component-plugin>
- <name>add.namespaces</name>
- <set-method>addPlugin</set-method>
- <type>org.exoplatform.services.jcr.impl.AddNamespacesPlugin</type>
- <init-params>
- <properties-param>
- <name>namespaces</name>
- <property name="dc" value="http://purl.org/dc/elements/1.1/"/>
- <property name="mop" value="http://www.gatein.org/jcr/mop/1.0/"/>
- </properties-param>
- </init-params>
- </component-plugin>
- <component-plugin>
- <name>add.nodeType</name>
- <set-method>addPlugin</set-method>
- <type>org.exoplatform.services.jcr.impl.AddNodeTypePlugin</type>
- <init-params>
- <values-param>
- <name>autoCreatedInNewRepository</name>
- <description>Node types configuration file</description>
- <value>jar:/conf/ext-nodetypes-config.xml</value>
- <value>jar:/conf/organization-nodetypes.xml</value>
- <value>jar:/conf/standalone/nodetypes.xml</value>
- </values-param>
- </init-params>
- </component-plugin>
- </external-component-plugins>
-
+ <component>
+ <key>org.exoplatform.services.jcr.config.RepositoryServiceConfiguration</key>
+ <type>org.exoplatform.services.jcr.impl.config.RepositoryServiceConfigurationImpl</type>
+ <init-params>
+ <value-param>
+ <name>conf-path</name>
+ <description>JCR configuration file</description>
+ <value>war:/conf/jcr/repository-configuration.xml</value>
+ </value-param>
+ <properties-param>
+ <name>working-conf</name>
+ <description>working-conf</description>
+ <property name="persister-class-name"
+ value="org.exoplatform.services.jcr.impl.config.JDBCConfigurationPersister"/>
+ <property name="source-name" value="jdbcexo${container.name.suffix}"/>
+ <property name="dialect" value="${dialect}"/>
+ </properties-param>
+ </init-params>
+ </component>
+
+ <component>
+ <key>org.exoplatform.services.jcr.RepositoryService</key>
+ <type>org.exoplatform.services.jcr.impl.RepositoryServiceImpl</type>
+ </component>
+
+ <component>
+ <type>org.exoplatform.services.jcr.ext.registry.RegistryService</type>
+ <init-params>
+ <properties-param>
+ <name>locations</name>
+ <property name="repository" value="portal-system"/>
+ </properties-param>
+ </init-params>
+ </component>
+
+ <component>
+ <key>org.exoplatform.services.jcr.ext.hierarchy.NodeHierarchyCreator</key>
+ <type>org.exoplatform.services.jcr.ext.hierarchy.impl.NodeHierarchyCreatorImpl</type>
+ </component>
+
+ <component>
+ <key>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</key>
+ <type>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</type>
+ <init-params>
+
+ <value-param>
+ <name>auto-mix-lockable</name>
+ <value>false</value>
+ </value-param>
+
+ <value-param>
+ <name>def-folder-node-type</name>
+ <value>nt:folder</value>
+ </value-param>
+
+ <value-param>
+ <name>def-file-node-type</name>
+ <value>nt:file</value>
+ </value-param>
+
+ <value-param>
+ <name>def-file-mimetype</name>
+ <value>text/plain</value>
+ </value-param>
+
+ <value-param>
+ <name>update-policy</name>
+ <value>create-version</value>
+ </value-param>
+ </init-params>
+ </component>
+
+ <external-component-plugins>
+ <target-component>org.exoplatform.services.jcr.RepositoryService</target-component>
+ <component-plugin>
+ <name>add.namespaces</name>
+ <set-method>addPlugin</set-method>
+ <type>org.exoplatform.services.jcr.impl.AddNamespacesPlugin</type>
+ <init-params>
+ <properties-param>
+ <name>namespaces</name>
+ <property name="dc" value="http://purl.org/dc/elements/1.1/"/>
+ <property name="mop" value="http://www.gatein.org/jcr/mop/1.0/"/>
+ </properties-param>
+ </init-params>
+ </component-plugin>
+ <component-plugin>
+ <name>add.nodeType</name>
+ <set-method>addPlugin</set-method>
+ <type>org.exoplatform.services.jcr.impl.AddNodeTypePlugin</type>
+ <init-params>
+ <values-param>
+ <name>autoCreatedInNewRepository</name>
+ <description>Node types configuration file</description>
+ <value>jar:/conf/ext-nodetypes-config.xml</value>
+ <value>jar:/conf/organization-nodetypes.xml</value>
+ <value>jar:/conf/standalone/nodetypes.xml</value>
+ <value>jar:/conf/portal/content-nodetypes.xml</value>
+ </values-param>
+ </init-params>
+ </component-plugin>
+ </external-component-plugins>
+
</configuration>
Modified: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml
===================================================================
--- portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml 2009-10-21 15:51:47 UTC (rev 390)
@@ -24,104 +24,106 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd http://www.exoplaform.org/xml/ns/kernel_1_0.xsd"
xmlns="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd">
- <component>
- <key>org.exoplatform.services.jcr.config.RepositoryServiceConfiguration</key>
- <type>org.exoplatform.services.jcr.impl.config.RepositoryServiceConfigurationImpl</type>
- <init-params>
- <value-param>
- <name>conf-path</name>
- <description>JCR configuration file</description>
- <value>war:/conf/jcr/repository-configuration.xml</value>
- </value-param>
- <properties-param>
- <name>working-conf</name>
- <description>working-conf</description>
- <property name="persister-class-name" value="org.exoplatform.services.jcr.impl.config.JDBCConfigurationPersister"/>
- <property name="source-name" value="jdbcexo${container.name.suffix}"/>
- <property name="dialect" value="hsqldb"/>
- </properties-param>
- </init-params>
- </component>
-
- <component>
- <key>org.exoplatform.services.jcr.RepositoryService</key>
- <type>org.exoplatform.services.jcr.impl.RepositoryServiceImpl</type>
- </component>
-
- <component>
- <type>org.exoplatform.services.jcr.ext.registry.RegistryService</type>
- <init-params>
- <properties-param>
- <name>locations</name>
- <property name="repository" value="portal-system"/>
- </properties-param>
- </init-params>
- </component>
-
- <component>
- <key>org.exoplatform.services.jcr.ext.hierarchy.NodeHierarchyCreator</key>
- <type>org.exoplatform.services.jcr.ext.hierarchy.impl.NodeHierarchyCreatorImpl</type>
- </component>
-
- <component>
- <key>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</key>
- <type>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</type>
- <init-params>
-
- <value-param>
- <name>auto-mix-lockable</name>
- <value>false</value>
- </value-param>
-
- <value-param>
- <name>def-folder-node-type</name>
- <value>nt:folder</value>
- </value-param>
-
- <value-param>
- <name>def-file-node-type</name>
- <value>nt:file</value>
- </value-param>
-
- <value-param>
- <name>def-file-mimetype</name>
- <value>text/plain</value>
- </value-param>
-
- <value-param>
- <name>update-policy</name>
- <value>create-version</value>
- </value-param>
- </init-params>
- </component>
-
- <external-component-plugins>
- <target-component>org.exoplatform.services.jcr.RepositoryService</target-component>
- <component-plugin>
- <name>add.namespaces</name>
- <set-method>addPlugin</set-method>
- <type>org.exoplatform.services.jcr.impl.AddNamespacesPlugin</type>
- <init-params>
- <properties-param>
- <name>namespaces</name>
- <property name="dc" value="http://purl.org/dc/elements/1.1/"/>
- <property name="mop" value="http://www.gatein.org/jcr/mop/1.0/"/>
- </properties-param>
- </init-params>
- </component-plugin>
- <component-plugin>
- <name>add.nodeType</name>
- <set-method>addPlugin</set-method>
- <type>org.exoplatform.services.jcr.impl.AddNodeTypePlugin</type>
- <init-params>
- <values-param>
- <name>autoCreatedInNewRepository</name>
- <description>Node types configuration file</description>
- <value>jar:/conf/ext-nodetypes-config.xml</value>
- <value>jar:/conf/organization-nodetypes.xml</value>
- <value>jar:/conf/standalone/nodetypes.xml</value>
- </values-param>
- </init-params>
- </component-plugin>
- </external-component-plugins>
+ <component>
+ <key>org.exoplatform.services.jcr.config.RepositoryServiceConfiguration</key>
+ <type>org.exoplatform.services.jcr.impl.config.RepositoryServiceConfigurationImpl</type>
+ <init-params>
+ <value-param>
+ <name>conf-path</name>
+ <description>JCR configuration file</description>
+ <value>war:/conf/jcr/repository-configuration.xml</value>
+ </value-param>
+ <properties-param>
+ <name>working-conf</name>
+ <description>working-conf</description>
+ <property name="persister-class-name"
+ value="org.exoplatform.services.jcr.impl.config.JDBCConfigurationPersister"/>
+ <property name="source-name" value="jdbcexo${container.name.suffix}"/>
+ <property name="dialect" value="hsqldb"/>
+ </properties-param>
+ </init-params>
+ </component>
+
+ <component>
+ <key>org.exoplatform.services.jcr.RepositoryService</key>
+ <type>org.exoplatform.services.jcr.impl.RepositoryServiceImpl</type>
+ </component>
+
+ <component>
+ <type>org.exoplatform.services.jcr.ext.registry.RegistryService</type>
+ <init-params>
+ <properties-param>
+ <name>locations</name>
+ <property name="repository" value="portal-system"/>
+ </properties-param>
+ </init-params>
+ </component>
+
+ <component>
+ <key>org.exoplatform.services.jcr.ext.hierarchy.NodeHierarchyCreator</key>
+ <type>org.exoplatform.services.jcr.ext.hierarchy.impl.NodeHierarchyCreatorImpl</type>
+ </component>
+
+ <component>
+ <key>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</key>
+ <type>org.exoplatform.services.jcr.webdav.WebDavServiceImpl</type>
+ <init-params>
+
+ <value-param>
+ <name>auto-mix-lockable</name>
+ <value>false</value>
+ </value-param>
+
+ <value-param>
+ <name>def-folder-node-type</name>
+ <value>nt:folder</value>
+ </value-param>
+
+ <value-param>
+ <name>def-file-node-type</name>
+ <value>nt:file</value>
+ </value-param>
+
+ <value-param>
+ <name>def-file-mimetype</name>
+ <value>text/plain</value>
+ </value-param>
+
+ <value-param>
+ <name>update-policy</name>
+ <value>create-version</value>
+ </value-param>
+ </init-params>
+ </component>
+
+ <external-component-plugins>
+ <target-component>org.exoplatform.services.jcr.RepositoryService</target-component>
+ <component-plugin>
+ <name>add.namespaces</name>
+ <set-method>addPlugin</set-method>
+ <type>org.exoplatform.services.jcr.impl.AddNamespacesPlugin</type>
+ <init-params>
+ <properties-param>
+ <name>namespaces</name>
+ <property name="dc" value="http://purl.org/dc/elements/1.1/"/>
+ <property name="mop" value="http://www.gatein.org/jcr/mop/1.0/"/>
+ </properties-param>
+ </init-params>
+ </component-plugin>
+ <component-plugin>
+ <name>add.nodeType</name>
+ <set-method>addPlugin</set-method>
+ <type>org.exoplatform.services.jcr.impl.AddNodeTypePlugin</type>
+ <init-params>
+ <values-param>
+ <name>autoCreatedInNewRepository</name>
+ <description>Node types configuration file</description>
+ <value>jar:/conf/ext-nodetypes-config.xml</value>
+ <value>jar:/conf/organization-nodetypes.xml</value>
+ <value>jar:/conf/standalone/nodetypes.xml</value>
+ <value>jar:/conf/portal/content-nodetypes.xml</value>
+ </values-param>
+ </init-params>
+ </component-plugin>
+ </external-component-plugins>
</configuration>
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/mail
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/organization/management
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/organization/management/executive-board
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/administrators
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/guests
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/users
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/group/template/group
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal/classic
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal/template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/portal/template/classic
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/four-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/one-column
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/three-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/containers/two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/dashboard
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/empty
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/one-row-two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-rows
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-rows-two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/three-tabs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-columns
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-columns-one-row
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-rows
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/template/pages/two-tabs
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/demo
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/john
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/marry
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/root
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template/user
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/script
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/script/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/container
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/page
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/portal/webui/workspace
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/conf/uiconf/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/WEB-INF/lib
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/error
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/error/jsp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/error/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/error/skin/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source/classes
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source/commandclasses
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/_source/internals
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/css
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/css/behaviors
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/css/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/common
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/common/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_about
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_about/sponsors
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_docprops
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_flash
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_image
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_link
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_select
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_spellerpages
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_spellerpages/spellerpages
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_template
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dialog/fck_template/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/dtd
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/images/icons
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/images/icons/32
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/browser/default/js
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/asp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/aspx
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/cfm
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/lasso
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/perl
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/php
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/filemanager/connectors/py
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/images/smiley
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/images/smiley/msn
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/js
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/lang
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/autogrow
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/bbcode
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/bbcode/_sample
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/dragresizetable
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/placeholder
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/placeholder/lang
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/simplecommands
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/plugins/tablecommands
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/default
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/default/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/office2003
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/office2003/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/silver
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/fckeditor/editor/skins/silver/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/organization/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/organization/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/container
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/page
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/portal/webui/workspace
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/core
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/form
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/form/ext
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/organization/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/groovy/webui/organization/i18n
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/login
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/login/jsp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/login/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/login/skin/images
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/groovy
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/groovy/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/groovy/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/rest
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/rest/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/rest/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/rest/src/main/webapp
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/web/rest/src/main/webapp/WEB-INF
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/application/mock
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/application/portlet
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/bean
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/config
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/config/annotation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/core
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/core/model
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/event
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/exception
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form/ext
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form/validator
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/java/org/exoplatform/webui/form/wysiwyg
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test/java/org/exoplatform/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/core/src/test/java/org/exoplatform/webui/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/web
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/web/command
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/web/command/handler
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/webui/organization
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/main/java/org/exoplatform/webui/organization/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/eXo/src/test
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal
___________________________________________________________________
Name: svn:ignore
- target
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/conf
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/conf/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/account
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/application/util
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Modified: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/ModelAdapter.java
===================================================================
--- portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/ModelAdapter.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/ModelAdapter.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -35,11 +35,11 @@
import org.exoplatform.portal.pom.spi.portlet.Preference;
import org.exoplatform.portal.pom.spi.portlet.Preferences;
import org.exoplatform.portal.pom.spi.portlet.PreferencesBuilder;
-import org.exoplatform.portal.pom.spi.wsrp.WSRPState;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
+import org.exoplatform.portal.pom.spi.wsrp.WSRPPortletStateType;
import org.exoplatform.web.application.gadget.GadgetApplication;
import org.gatein.pc.api.PortletContext;
import org.gatein.pc.api.PortletInvoker;
-import org.gatein.pc.api.PortletStateType;
import org.gatein.pc.api.StatefulPortletContext;
import java.io.Serializable;
@@ -58,20 +58,17 @@
{
if (type == ApplicationType.PORTLET)
{
- @SuppressWarnings("unchecked")
- ModelAdapter<S, C, I> adapter = (ModelAdapter<S, C, I>)PORTLET;
+ @SuppressWarnings("unchecked") ModelAdapter<S, C, I> adapter = (ModelAdapter<S, C, I>)PORTLET;
return adapter;
}
else if (type == ApplicationType.GADGET)
{
- @SuppressWarnings("unchecked")
- ModelAdapter<S, C, I> adapter = (ModelAdapter<S, C, I>)GADGET;
+ @SuppressWarnings("unchecked") ModelAdapter<S, C, I> adapter = (ModelAdapter<S, C, I>)GADGET;
return adapter;
}
else if (type == ApplicationType.WSRP_PORTLET)
{
- @SuppressWarnings("unchecked")
- ModelAdapter<S, C, I> adapter = (ModelAdapter<S, C, I>)WSRP;
+ @SuppressWarnings("unchecked") ModelAdapter<S, C, I> adapter = (ModelAdapter<S, C, I>)WSRP;
return adapter;
}
else
@@ -81,184 +78,172 @@
}
/** . */
- private static final ModelAdapter<Preferences, ExoPortletState, PortletId> PORTLET =
- new ModelAdapter<Preferences, ExoPortletState, PortletId>()
- {
+ private static final ModelAdapter<Preferences, ExoPortletState, PortletId> PORTLET = new ModelAdapter<Preferences, ExoPortletState, PortletId>()
+ {
- @Override
- public StatefulPortletContext<ExoPortletState> getPortletContext(ExoContainer container,
- PortletId applicationId, ApplicationState<Preferences> applicationState) throws Exception
+ @Override
+ public StatefulPortletContext<ExoPortletState> getPortletContext(ExoContainer container, PortletId applicationId, ApplicationState<Preferences> applicationState) throws Exception
+ {
+ DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
+ Preferences preferences = dataStorage.load(applicationState);
+ PortletContext producerOfferedPortletContext = getProducerOfferedPortletContext(applicationId);
+ ExoPortletState map = new ExoPortletState(producerOfferedPortletContext.getId());
+ if (preferences != null)
{
- DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
- Preferences preferences = dataStorage.load(applicationState);
- PortletContext producerOfferedPortletContext = getProducerOfferedPortletContext(applicationId);
- ExoPortletState map = new ExoPortletState(producerOfferedPortletContext.getId());
- if (preferences != null)
+ for (Preference pref : preferences)
{
- for (Preference pref : preferences)
- {
- map.getState().put(pref.getName(), pref.getValues());
- }
+ map.getState().put(pref.getName(), pref.getValues());
}
- return StatefulPortletContext.create("local._dumbvalue", ExoPortletStateType.getInstance(), map);
}
+ return StatefulPortletContext.create("local._dumbvalue", ExoPortletStateType.getInstance(), map);
+ }
- @Override
- public ApplicationState<Preferences> update(ExoContainer container, ExoPortletState updateState,
- ApplicationState<Preferences> applicationState) throws Exception
+ @Override
+ public ApplicationState<Preferences> update(ExoContainer container, ExoPortletState updateState, ApplicationState<Preferences> applicationState) throws Exception
+ {
+ // Compute new preferences
+ PreferencesBuilder builder = new PreferencesBuilder();
+ for (Map.Entry<String, List<String>> entry : updateState.getState().entrySet())
{
- if (applicationState instanceof TransientApplicationState)
- {
- TransientApplicationState<Preferences> transientState =
- (TransientApplicationState<Preferences>)applicationState;
- PreferencesBuilder builder = new PreferencesBuilder();
- for (Map.Entry<String, List<String>> entry : updateState.getState().entrySet())
- {
- builder.add(entry.getKey(), entry.getValue());
- }
- transientState.setContentState(builder.build());
- return transientState;
- }
- else
- {
- PersistentApplicationState<Preferences> persistentState =
- (PersistentApplicationState<Preferences>)applicationState;
-
- // Compute new preferences
- PreferencesBuilder builder = new PreferencesBuilder();
- for (Map.Entry<String, List<String>> entry : updateState.getState().entrySet())
- {
- builder.add(entry.getKey(), entry.getValue());
- }
-
- //
- DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
- return dataStorage.save(persistentState, builder.build());
- }
+ builder.add(entry.getKey(), entry.getValue());
}
- @Override
- public PortletContext getProducerOfferedPortletContext(PortletId applicationState)
+ if (applicationState instanceof TransientApplicationState)
{
- String appName = applicationState.getApplicationName();
- String portletName = applicationState.getPortletName();
- return PortletContext.createPortletContext(PortletInvoker.LOCAL_PORTLET_INVOKER_ID + "./" + appName + "."
- + portletName);
+ TransientApplicationState<Preferences> transientState = (TransientApplicationState<Preferences>)applicationState;
+ transientState.setContentState(builder.build());
+ return transientState;
}
-
- @Override
- public Preferences getState(ExoContainer container, ApplicationState<Preferences> applicationState)
- throws Exception
+ else
{
- if (applicationState instanceof TransientApplicationState)
- {
- TransientApplicationState<Preferences> transientState =
- (TransientApplicationState<Preferences>)applicationState;
- return transientState.getContentState();
- }
- else
- {
- PersistentApplicationState<Preferences> persistentState =
- (PersistentApplicationState<Preferences>)applicationState;
- DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
- return dataStorage.load(persistentState);
- }
+ PersistentApplicationState<Preferences> persistentState = (PersistentApplicationState<Preferences>)applicationState;
+ DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
+ return dataStorage.save(persistentState, builder.build());
}
- };
+ }
- private static final ModelAdapter<Gadget, ExoPortletState, GadgetId> GADGET =
- new ModelAdapter<Gadget, ExoPortletState, GadgetId>()
+ @Override
+ public PortletContext getProducerOfferedPortletContext(PortletId applicationState)
{
+ String appName = applicationState.getApplicationName();
+ String portletName = applicationState.getPortletName();
+ return PortletContext.createPortletContext(PortletInvoker.LOCAL_PORTLET_INVOKER_ID + "./" + appName + "." + portletName);
+ }
- /** . */
- private final String WRAPPER_ID = "local./" + "dashboard" + "." + "GadgetPortlet";
-
- /** . */
- private final PortletContext WRAPPER_CONTEXT = PortletContext.createPortletContext(WRAPPER_ID);
-
- @Override
- public StatefulPortletContext<ExoPortletState> getPortletContext(ExoContainer container,
- GadgetId applicationId, ApplicationState<Gadget> applicationState) throws Exception
+ @Override
+ public Preferences getState(ExoContainer container, ApplicationState<Preferences> applicationState) throws Exception
+ {
+ if (applicationState instanceof TransientApplicationState)
{
- GadgetRegistryService gadgetService =
- (GadgetRegistryService)container.getComponentInstanceOfType(GadgetRegistryService.class);
- org.exoplatform.application.gadget.Gadget model = gadgetService.getGadget(applicationId.getGadgetName());
- GadgetApplication application = new GadgetApplication(model.getName(), model.getUrl(), model.isLocal());
- String url = GadgetUtil.reproduceUrl(application.getUrl(), application.isLocal());
- ExoPortletState prefs = new ExoPortletState(WRAPPER_ID);
- prefs.getState().put("url", Arrays.asList(url));
- return StatefulPortletContext.create("local._dumbvalue", ExoPortletStateType.getInstance(), prefs);
+ TransientApplicationState<Preferences> transientState = (TransientApplicationState<Preferences>)applicationState;
+ return transientState.getContentState();
}
-
- @Override
- public ApplicationState<Gadget> update(ExoContainer container, ExoPortletState updateState,
- ApplicationState<Gadget> gadgetApplicationState) throws Exception
+ else
{
- throw new UnsupportedOperationException("todo / julien");
+ PersistentApplicationState<Preferences> persistentState = (PersistentApplicationState<Preferences>)applicationState;
+ DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
+ return dataStorage.load(persistentState);
}
+ }
+ };
- @Override
- public PortletContext getProducerOfferedPortletContext(GadgetId applicationState)
- {
- return WRAPPER_CONTEXT;
- }
+ private static final ModelAdapter<Gadget, ExoPortletState, GadgetId> GADGET = new ModelAdapter<Gadget, ExoPortletState, GadgetId>()
+ {
- @Override
- public Preferences getState(ExoContainer container, ApplicationState<Gadget> applicationState)
- throws Exception
- {
- // For now we return null as it does not make sense to edit the gadget preferences
- return null;
- }
- };
+ /** . */
+ private final String WRAPPER_ID = "local./" + "dashboard" + "." + "GadgetPortlet";
- private static final ModelAdapter<WSRPState, byte[], WSRPId> WSRP = new ModelAdapter<WSRPState, byte[], WSRPId>()
- {
+ /** . */
+ private final PortletContext WRAPPER_CONTEXT = PortletContext.createPortletContext(WRAPPER_ID);
+
@Override
- public PortletContext getProducerOfferedPortletContext(WSRPId state)
+ public StatefulPortletContext<ExoPortletState> getPortletContext(ExoContainer container, GadgetId applicationId, ApplicationState<Gadget> applicationState) throws Exception
{
- return PortletContext.createPortletContext(state.getUri());
+ GadgetRegistryService gadgetService = (GadgetRegistryService)container.getComponentInstanceOfType(GadgetRegistryService.class);
+ org.exoplatform.application.gadget.Gadget model = gadgetService.getGadget(applicationId.getGadgetName());
+ GadgetApplication application = new GadgetApplication(model.getName(), model.getUrl(), model.isLocal());
+ String url = GadgetUtil.reproduceUrl(application.getUrl(), application.isLocal());
+ ExoPortletState prefs = new ExoPortletState(WRAPPER_ID);
+ prefs.getState().put("url", Arrays.asList(url));
+ return StatefulPortletContext.create("local._dumbvalue", ExoPortletStateType.getInstance(), prefs);
}
@Override
- public StatefulPortletContext<byte[]> getPortletContext(ExoContainer container, WSRPId applicationId,
- ApplicationState<WSRPState> state) throws Exception
+ public ApplicationState<Gadget> update(ExoContainer container, ExoPortletState updateState, ApplicationState<Gadget> gadgetApplicationState) throws Exception
{
- DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
- WSRPState wsrpState = dataStorage.load(state);
- // todo: it should be possible to not have a state: needs a fix in StatefulPortletContext
- return StatefulPortletContext.create(applicationId.getUri(), PortletStateType.OPAQUE, wsrpState != null
- ? wsrpState.getState() : new byte[]{});
+ throw new UnsupportedOperationException("todo / julien");
}
@Override
- public ApplicationState<WSRPState> update(ExoContainer container, byte[] updateState,
- ApplicationState<WSRPState> wsrpApplicationState) throws Exception
+ public PortletContext getProducerOfferedPortletContext(GadgetId applicationState)
{
- throw new UnsupportedOperationException("todo / chris");
+ return WRAPPER_CONTEXT;
}
@Override
- public Preferences getState(ExoContainer container, ApplicationState<WSRPState> wsrpStateApplicationState)
- throws Exception
+ public Preferences getState(ExoContainer container, ApplicationState<Gadget> applicationState) throws Exception
{
- // For now we return null
+ // For now we return null as it does not make sense to edit the gadget preferences
return null;
}
};
+
+ private static final ModelAdapter<WSRP, WSRP, WSRPId> WSRP = new ModelAdapter<WSRP, WSRP, WSRPId>()
+ {
+ @Override
+ public Preferences getState(ExoContainer container, ApplicationState<WSRP> state) throws Exception
+ {
+ return null; // return null for now
+ }
+
+ @Override
+ public PortletContext getProducerOfferedPortletContext(WSRPId applicationId)
+ {
+ return PortletContext.createPortletContext(applicationId.getUri());
+ }
+
+ @Override
+ public StatefulPortletContext<WSRP> getPortletContext(ExoContainer container, WSRPId applicationId, ApplicationState<WSRP> state) throws Exception
+ {
+ DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
+ WSRP wsrp = dataStorage.load(state);
+ if (wsrp == null)
+ {
+ wsrp = new WSRP();
+ wsrp.setPortletId(applicationId.getUri());
+ }
+ return StatefulPortletContext.create(wsrp.getPortletId(), WSRPPortletStateType.instance, wsrp);
+ }
+
+ @Override
+ public ApplicationState<WSRP> update(ExoContainer container, WSRP updateState, ApplicationState<WSRP> state) throws Exception
+ {
+ if (state instanceof TransientApplicationState)
+ {
+ TransientApplicationState<WSRP> transientState = (TransientApplicationState<WSRP>)state;
+ transientState.setContentState(updateState);
+ return transientState;
+ }
+ else
+ {
+ PersistentApplicationState<WSRP> persistentState = (PersistentApplicationState<WSRP>)state;
+ DataStorage dataStorage = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
+ return dataStorage.save(persistentState, updateState);
+ }
+ }
+ };
+
public abstract PortletContext getProducerOfferedPortletContext(I applicationId);
- public abstract StatefulPortletContext<C> getPortletContext(ExoContainer container, I applicationId,
- ApplicationState<S> applicationState) throws Exception;
+ public abstract StatefulPortletContext<C> getPortletContext(ExoContainer container, I applicationId, ApplicationState<S> applicationState) throws Exception;
- public abstract ApplicationState<S> update(ExoContainer container, C updateState,
- ApplicationState<S> applicationState) throws Exception;
+ public abstract ApplicationState<S> update(ExoContainer container, C updateState, ApplicationState<S> applicationState) throws Exception;
/**
* Returns the state of the gadget as preferences or null if the preferences cannot be edited as such.
*
- * @param container the container
+ * @param container the container
* @param applicationState the application state
* @return the preferences
* @throws Exception any exception
Modified: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIAddNewApplication.java
===================================================================
--- portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIAddNewApplication.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIAddNewApplication.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -34,7 +34,7 @@
import org.exoplatform.portal.config.model.portlet.PortletId;
import org.exoplatform.portal.config.model.wsrp.WSRPId;
import org.exoplatform.portal.pom.spi.portlet.Preferences;
-import org.exoplatform.portal.pom.spi.wsrp.WSRPState;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
import org.exoplatform.portal.webui.page.UIPage;
import org.exoplatform.portal.webui.portal.UIPortal;
import org.exoplatform.portal.webui.util.PortalDataMapper;
@@ -73,19 +73,19 @@
return listAppCategories;
}
- public List<ApplicationCategory> getApplicationCategories(String remoteUser, String[] applicationType)
- throws Exception
+ public List<ApplicationCategory> getApplicationCategories(String remoteUser,
+ String[] applicationType) throws Exception
{
ExoContainer container = ExoContainerContext.getCurrentContainer();
- ApplicationRegistryService prService =
- (ApplicationRegistryService)container.getComponentInstanceOfType(ApplicationRegistryService.class);
+ ApplicationRegistryService prService = (ApplicationRegistryService)container.getComponentInstanceOfType(ApplicationRegistryService.class);
if (applicationType == null)
{
applicationType = new String[]{};
}
- List<ApplicationCategory> appCategories = prService.getApplicationCategories(remoteUser, applicationType);
+ List<ApplicationCategory> appCategories = prService.getApplicationCategories(remoteUser,
+ applicationType);
if (appCategories == null)
{
@@ -99,7 +99,9 @@
ApplicationCategory cate = cateItr.next();
List<Application> applications = cate.getApplications();
if (applications.size() < 1)
+ {
cateItr.remove();
+ }
}
}
listAppCategories = appCategories;
@@ -139,7 +141,9 @@
for (Application application : applications)
{
if (application.getId().equals(id))
+ {
return application;
+ }
}
}
@@ -207,7 +211,7 @@
}
else
{
- appState = new TransientApplicationState<WSRPState>();
+ appState = new TransientApplicationState<WSRP>();
appId = new WSRPId(application.getUri());
}
Modified: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
===================================================================
--- portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -25,6 +25,7 @@
import org.exoplatform.portal.config.model.ApplicationType;
import org.exoplatform.portal.config.model.portlet.PortletId;
import org.exoplatform.portal.pom.spi.portlet.Preferences;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
import org.exoplatform.portal.webui.application.UIPortletActionListener.ChangePortletModeActionListener;
import org.exoplatform.portal.webui.application.UIPortletActionListener.ChangeWindowStateActionListener;
import org.exoplatform.portal.webui.application.UIPortletActionListener.EditPortletActionListener;
@@ -66,6 +67,7 @@
import org.gatein.pc.api.invocation.RenderInvocation;
import org.gatein.pc.api.invocation.ResourceInvocation;
import org.gatein.pc.api.invocation.response.PortletInvocationResponse;
+import org.gatein.pc.api.state.AccessMode;
import org.gatein.pc.api.state.PropertyChange;
import org.gatein.pc.portlet.impl.spi.AbstractClientContext;
import org.gatein.pc.portlet.impl.spi.AbstractPortalContext;
@@ -73,6 +75,11 @@
import org.gatein.pc.portlet.impl.spi.AbstractSecurityContext;
import org.gatein.pc.portlet.impl.spi.AbstractServerContext;
+import javax.portlet.PortletMode;
+import javax.portlet.WindowState;
+import javax.servlet.http.Cookie;
+import javax.servlet.http.HttpServletRequest;
+import javax.xml.namespace.QName;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
@@ -83,28 +90,25 @@
import java.util.List;
import java.util.Locale;
import java.util.Map;
+import java.util.Map.Entry;
import java.util.Set;
import java.util.UUID;
-import java.util.Map.Entry;
-import javax.portlet.PortletMode;
-import javax.portlet.WindowState;
-import javax.servlet.http.Cookie;
-import javax.servlet.http.HttpServletRequest;
-import javax.xml.namespace.QName;
-
-/**
- * May 19, 2006
- */
-@ComponentConfig(lifecycle = UIPortletLifecycle.class, template = "system:/groovy/portal/webui/application/UIPortlet.gtmpl", events = {
- @EventConfig(listeners = RenderActionListener.class),
- @EventConfig(listeners = ChangePortletModeActionListener.class),
- @EventConfig(listeners = ChangeWindowStateActionListener.class),
- @EventConfig(listeners = DeleteComponentActionListener.class, confirm = "UIPortlet.deletePortlet"),
- @EventConfig(listeners = EditPortletActionListener.class),
- @EventConfig(phase = Phase.PROCESS, listeners = ProcessActionActionListener.class),
- @EventConfig(phase = Phase.PROCESS, listeners = ServeResourceActionListener.class),
- @EventConfig(phase = Phase.PROCESS, listeners = ProcessEventsActionListener.class)})
+/** May 19, 2006 */
+@ComponentConfig(
+ lifecycle = UIPortletLifecycle.class,
+ template = "system:/groovy/portal/webui/application/UIPortlet.gtmpl",
+ events = {
+ @EventConfig(listeners = RenderActionListener.class),
+ @EventConfig(listeners = ChangePortletModeActionListener.class),
+ @EventConfig(listeners = ChangeWindowStateActionListener.class),
+ @EventConfig(listeners = DeleteComponentActionListener.class, confirm = "UIPortlet.deletePortlet"),
+ @EventConfig(listeners = EditPortletActionListener.class),
+ @EventConfig(phase = Phase.PROCESS, listeners = ProcessActionActionListener.class),
+ @EventConfig(phase = Phase.PROCESS, listeners = ServeResourceActionListener.class),
+ @EventConfig(phase = Phase.PROCESS, listeners = ProcessEventsActionListener.class)
+ }
+)
public class UIPortlet<S, C extends Serializable, I> extends UIApplication
{
@@ -134,23 +138,17 @@
private PortletState<S, I> state;
private String theme_;
-
private String portletStyle;
-
private boolean showPortletMode = true;
private Map<String, String[]> renderParametersMap_;
-
private PortletMode currentPortletMode_ = PortletMode.VIEW;
-
private WindowState currentWindowState_ = WindowState.NORMAL;
private List<String> supportModes_;
private List<QName> supportedProcessingEvents_;
-
private List<String> supportedPublicParams_;
-
private boolean portletInPortal_ = true;
public UIPortlet()
@@ -195,8 +193,7 @@
ApplicationType<S, I> type = state.getApplicationType();
if (type == ApplicationType.PORTLET)
{
- return ((PortletId)state.getApplicationId()).getApplicationName() + "/"
- + ((PortletId)state.getApplicationId()).getPortletName();
+ return ((PortletId)state.getApplicationId()).getApplicationName() + "/" + ((PortletId)state.getApplicationId()).getPortletName();
}
else if (type == ApplicationType.GADGET)
{
@@ -246,7 +243,9 @@
public String getTheme()
{
if (theme_ == null || theme_.trim().length() < 1)
+ {
return DEFAULT_THEME;
+ }
return theme_;
}
@@ -289,7 +288,9 @@
Entry<String, String> entry = itr.next();
builder.append(entry.getKey()).append(":").append(entry.getValue());
if (itr.hasNext())
+ {
builder.append("::");
+ }
}
return builder.toString();
}
@@ -421,7 +422,9 @@
public List<String> getSupportModes()
{
if (supportModes_ != null)
+ {
return supportModes_;
+ }
List<String> supportModes = new ArrayList<String>();
@@ -442,11 +445,11 @@
}
if (supportModes.size() > 0)
+ {
supportModes.remove("view");
+ }
setSupportModes(supportModes);
- System.out.println("--- SUPPORT MODES : " + supportModes);
-
return supportModes;
}
@@ -456,8 +459,8 @@
}
/**
- * Tells, according to the info located in portlet.xml, wether this portlet can handle
- * a portlet event with the QName given as the method argument
+ * Tells, according to the info located in portlet.xml, wether this portlet can handle a portlet event with the QName
+ * given as the method argument
*/
public boolean supportsProcessingEvent(QName name)
{
@@ -473,11 +476,12 @@
return false;
}
- Map<QName, EventInfo> consumedEvents =
- (Map<QName, EventInfo>)portlet.getInfo().getEventing().getConsumedEvents();
+ Map<QName, EventInfo> consumedEvents = (Map<QName, EventInfo>)portlet.getInfo().getEventing().getConsumedEvents();
if (consumedEvents == null)
+ {
return false;
+ }
supportedProcessingEvents_ = new ArrayList<QName>(consumedEvents.keySet());
}
@@ -496,8 +500,8 @@
}
/**
- * Tells, according to the info located in portlet.xml, wether this portlet supports the public
- * render parameter given as a method argument
+ * Tells, according to the info located in portlet.xml, wether this portlet supports the public render parameter
+ * given as a method argument
*/
public boolean supportsPublicParam(String supportedPublicParam)
{
@@ -512,8 +516,7 @@
}
//
- Collection<ParameterInfo> parameters =
- (Collection<ParameterInfo>)producedOfferedPortlet.getInfo().getNavigation().getPublicParameters();
+ Collection<ParameterInfo> parameters = (Collection<ParameterInfo>)producedOfferedPortlet.getInfo().getNavigation().getPublicParameters();
supportedPublicParams_ = new ArrayList<String>();
for (ParameterInfo parameter : parameters)
{
@@ -527,8 +530,9 @@
if (publicParam.equals(supportedPublicParam))
{
if (log.isDebugEnabled())
- log.debug("The Portlet " + producerOfferedPortletContext.getId()
- + " supports the public render parameter : " + supportedPublicParam);
+ {
+ log.debug("The Portlet " + producerOfferedPortletContext.getId() + " supports the public render parameter : " + supportedPublicParam);
+ }
return true;
}
}
@@ -538,10 +542,8 @@
}
/**
- * This methods return the public render parameters names supported
- * by the targeted portlet; in other words, it sorts the full public
- * render params list and only return the ones that the current portlet
- * can handle
+ * This methods return the public render parameters names supported by the targeted portlet; in other words, it sorts
+ * the full public render params list and only return the ones that the current portlet can handle
*/
public List<String> getPublicRenderParamNames()
{
@@ -576,7 +578,9 @@
{
String oneOfAllParams = iter.next();
if (supportedPublicParamNames.contains(oneOfAllParams))
+ {
publicParamsMap.put(oneOfAllParams, publicParams.get(oneOfAllParams));
+ }
}
return publicParamsMap;
}
@@ -587,8 +591,8 @@
* Create the correct portlet invocation that will target the portlet represented by this UI component.
*
* @param type the invocation type
- * @param prc the portal request context
- * @param <I> the invocation type
+ * @param prc the portal request context
+ * @param <I> the invocation type
* @return the portlet invocation
* @throws Exception any exception
*/
@@ -655,7 +659,7 @@
throw new AssertionError();
}
- // Navigational state
+ // Navigational state todo: fix me, this is stupid to first encode the Map to decode it afterwards
String stateString = StateString.encodeAsOpaqueValue(getRenderParameterMap(this));
StateString navigationalState = StateString.create(stateString);
invocation.setNavigationalState(navigationalState);
@@ -691,13 +695,30 @@
}
invocation.setClientContext(clientContext);
+ // instance context
+ ExoPortletInstanceContext instanceContext;
+ if (ApplicationType.WSRP_PORTLET.equals(state.getApplicationType()))
+ {
+ WSRP wsrp = (WSRP)preferencesPortletContext.getState();
+ AccessMode accessMode = AccessMode.CLONE_BEFORE_WRITE;
+ if (wsrp.isCloned())
+ {
+ accessMode = AccessMode.READ_WRITE;
+ }
+ instanceContext = new ExoPortletInstanceContext(preferencesPortletContext.getId(), accessMode);
+ }
+ else
+ {
+ instanceContext = new ExoPortletInstanceContext(preferencesPortletContext.getId());
+ }
+ invocation.setInstanceContext(instanceContext);
+
+
invocation.setServerContext(new AbstractServerContext(servletRequest, prc.getResponse()));
- invocation.setInstanceContext(new ExoPortletInstanceContext(preferencesPortletContext.getId()));
//TODO: ExoUserContext impl not tested
invocation.setUserContext(new ExoUserContext(servletRequest, userProfile));
invocation.setWindowContext(new ExoWindowContext(storageName));
- invocation.setPortalContext(new AbstractPortalContext(Collections.singletonMap(
- "javax.portlet.markup.head.element.support", "true")));
+ invocation.setPortalContext(new AbstractPortalContext(Collections.singletonMap("javax.portlet.markup.head.element.support", "true")));
invocation.setSecurityContext(new AbstractSecurityContext(servletRequest));
//
@@ -707,10 +728,7 @@
return invocation;
}
- /**
- * This method returns all the parameters supported by the targeted portlets,
- * both the private and public ones
- */
+ /** This method returns all the parameters supported by the targeted portlets, both the private and public ones */
private Map<String, String[]> getRenderParameterMap(UIPortlet uiPortlet)
{
Map<String, String[]> renderParams = uiPortlet.getRenderParametersMap();
@@ -722,9 +740,9 @@
}
/*
- * handle public params to only get the one supported by the targeted
- * portlet
- */
+ * handle public params to only get the one supported by the targeted
+ * portlet
+ */
Map<String, String[]> allParams = new HashMap<String, String[]>(renderParams);
allParams.putAll(uiPortlet.getPublicParameters());
@@ -741,8 +759,7 @@
PortletInvoker portletInvoker = getApplicationComponent(PortletInvoker.class);
// Get marshalled version
- StatefulPortletContext<C> updatedCtx =
- (StatefulPortletContext<C>)portletInvoker.setProperties(portletContext, changes);
+ StatefulPortletContext<C> updatedCtx = (StatefulPortletContext<C>)portletInvoker.setProperties(portletContext, changes);
//
C updateState = updatedCtx.getState();
@@ -764,8 +781,7 @@
{
PortletInvoker portletInvoker = getApplicationComponent(PortletInvoker.class);
ModelAdapter<S, C, I> adapter = ModelAdapter.getAdapter(state.getApplicationType());
- PortletContext producerOfferedPortletContext =
- adapter.getProducerOfferedPortletContext(state.getApplicationId());
+ PortletContext producerOfferedPortletContext = adapter.getProducerOfferedPortletContext(state.getApplicationId());
Portlet producedOfferedPortlet = portletInvoker.getPortlet(producerOfferedPortletContext);
this.adapter = adapter;
@@ -826,10 +842,7 @@
setState(state);
}
- /**
- * This is used by the dashboard portlet and should not be used else where.
- * It will be removed some day.
- */
+ /** This is used by the dashboard portlet and should not be used else where. It will be removed some day. */
private static final ThreadLocal<UIPortlet> currentPortlet = new ThreadLocal<UIPortlet>();
public static UIPortlet getCurrentUIPortlet()
Modified: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java
===================================================================
--- portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java 2009-10-21 12:02:16 UTC (rev 389)
+++ portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java 2009-10-21 15:51:47 UTC (rev 390)
@@ -1,16 +1,16 @@
/**
* Copyright (C) 2009 eXo Platform SAS.
- *
+ *
* 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
@@ -21,6 +21,7 @@
import org.exoplatform.Constants;
import org.exoplatform.portal.application.PortalRequestContext;
+import org.exoplatform.portal.pom.spi.wsrp.WSRP;
import org.exoplatform.portal.webui.page.UIPage;
import org.exoplatform.portal.webui.page.UIPageBody;
import org.exoplatform.portal.webui.portal.UIPortal;
@@ -33,9 +34,10 @@
import org.exoplatform.webui.application.WebuiRequestContext;
import org.exoplatform.webui.core.UIComponent;
import org.exoplatform.webui.event.Event;
+import org.exoplatform.webui.event.Event.Phase;
import org.exoplatform.webui.event.EventListener;
-import org.exoplatform.webui.event.Event.Phase;
import org.gatein.common.util.MultiValuedPropertyMap;
+import org.gatein.pc.api.PortletContext;
import org.gatein.pc.api.StateString;
import org.gatein.pc.api.StatefulPortletContext;
import org.gatein.pc.api.invocation.ActionInvocation;
@@ -46,6 +48,12 @@
import org.gatein.pc.api.invocation.response.PortletInvocationResponse;
import org.gatein.pc.api.invocation.response.UpdateNavigationalStateResponse;
+import javax.portlet.PortletMode;
+import javax.portlet.ResourceURL;
+import javax.portlet.WindowState;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.xml.namespace.QName;
import java.io.OutputStream;
import java.io.Serializable;
import java.util.ArrayList;
@@ -55,16 +63,7 @@
import java.util.Map;
import java.util.Set;
-import javax.portlet.PortletMode;
-import javax.portlet.ResourceURL;
-import javax.portlet.WindowState;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-import javax.xml.namespace.QName;
-
-/**
- * May 29, 2006
- */
+/** May 29, 2006 */
public class UIPortletActionListener
{
@@ -73,15 +72,13 @@
protected static Log log = ExoLogger.getLogger("portal:UIPortletActionListener");
/**
- * The process action listener is called when an ActionURL generated by the
- * portlet container has been invoked by the client
- *
- * The call is delegated to the portlet container iteself using the method
- * portletContainer.processAction(...). It returns an object of type
- * ActionOutput that contains several information such as the next window
- * state and portlet modes (if they have to change) as well as a list of
- * Events to be broadcasted to the other portlets located in the same portal
- * page
+ * The process action listener is called when an ActionURL generated by the portlet container has been invoked by the
+ * client
+ * <p/>
+ * The call is delegated to the portlet container iteself using the method portletContainer.processAction(...). It
+ * returns an object of type ActionOutput that contains several information such as the next window state and portlet
+ * modes (if they have to change) as well as a list of Events to be broadcasted to the other portlets located in the
+ * same portal page
*/
static public class ProcessActionActionListener<S, C extends Serializable, I> extends
EventListener<UIPortlet<S, C, I>>
@@ -97,7 +94,7 @@
//
PortletInvocationResponse portletResponse = uiPortlet.invoke(actionInvocation);
- //
+ // deal with potential portlet context modifications
ExoPortletInstanceContext instanceCtx = (ExoPortletInstanceContext)actionInvocation.getInstanceContext();
if (instanceCtx.getModifiedContext() != null)
{
@@ -105,7 +102,25 @@
C portletState = updatedCtx.getState();
uiPortlet.update(portletState);
}
+ else
+ {
+ // todo: fix me as this shouldn't probably be done only for the WSRP case�
+ PortletContext clonedContext = instanceCtx.getClonedContext();
+ if (clonedContext != null)
+ {
+ WSRP wsrp = new WSRP();
+ wsrp.setPortletId(clonedContext.getId());
+ // if we have an associated state, record it as well...
+ if (clonedContext instanceof StatefulPortletContext)
+ {
+ StatefulPortletContext statefulPortletContext = (StatefulPortletContext)clonedContext;
+ wsrp.setState((byte[])statefulPortletContext.getState());
+ }
+ uiPortlet.update((C)wsrp);
+ }
+ }
+
// todo: handle the error response better than this.
if (!(portletResponse instanceof UpdateNavigationalStateResponse))
{
@@ -211,8 +226,8 @@
}
/**
- * This method is used to set the next portlet window state if this one needs to
- * be modified because of the incoming request
+ * This method is used to set the next portlet window state if this one needs to be modified because of the incoming
+ * request
*/
public static void setNextState(UIPortlet uiPortlet, WindowState state)
{
@@ -223,27 +238,30 @@
{
uiPortlet.setCurrentWindowState(WindowState.MAXIMIZED);
if (uiPage != null)
+ {
uiPage.setMaximizedUIPortlet(uiPortlet);
+ }
}
else if (state == WindowState.MINIMIZED)
{
uiPortlet.setCurrentWindowState(WindowState.MINIMIZED);
if (uiPage != null)
+ {
uiPage.setMaximizedUIPortlet(null);
+ }
}
else
{
uiPortlet.setCurrentWindowState(WindowState.NORMAL);
if (uiPage != null)
+ {
uiPage.setMaximizedUIPortlet(null);
+ }
}
}
}
- /**
- * This method is used to set the next portlet mode if this one needs to
- * be modified because of the incoming request
- */
+ /** This method is used to set the next portlet mode if this one needs to be modified because of the incoming request */
public static void setNextMode(UIPortlet uiPortlet, PortletMode portletMode)
{
if (portletMode != null)
@@ -264,21 +282,18 @@
}
/**
- * The serveResource() method defined in the JSR 286 specs has several goals:
- * - provide binary output like images to be displayed in the portlet (in the previous
- * spec - JSR 168 - a servlet was needed)
- * - provide text output that does not impact the entire portal rendering, it is for
- * instance usefull when dealing with Javascript to return some JSON structures
- *
- * The method delegates the call to the portlet container serverResource method after
- * filling the ResourceInput object with the current request state.
- *
- * This returns a ResourceOutput object that can content binary or text contentType
- *
- * Finally the content is set in the portal response writer or outputstream depending
- * on the type; the processRender() method of the portal is not called as we set the
- * response as complete
- *
+ * The serveResource() method defined in the JSR 286 specs has several goals: - provide binary output like images to
+ * be displayed in the portlet (in the previous spec - JSR 168 - a servlet was needed) - provide text output that
+ * does not impact the entire portal rendering, it is for instance usefull when dealing with Javascript to return
+ * some JSON structures
+ * <p/>
+ * The method delegates the call to the portlet container serverResource method after filling the ResourceInput
+ * object with the current request state.
+ * <p/>
+ * This returns a ResourceOutput object that can content binary or text contentType
+ * <p/>
+ * Finally the content is set in the portal response writer or outputstream depending on the type; the
+ * processRender() method of the portal is not called as we set the response as complete
*/
static public class ServeResourceActionListener<S, C extends Serializable, I> extends
EventListener<UIPortlet<S, C, I>>
@@ -337,7 +352,9 @@
String contentType = piResponse.getContentType();
if (contentType == null)
+ {
return;
+ }
log.info("Try to get a resource of type: " + contentType + " for the portlet: "
+ uiPortlet.getPortletContext());
@@ -369,10 +386,7 @@
}
}
- /**
- * This method returns all the parameters supported by the targeted portlets,
- * both the private and public ones
- */
+ /** This method returns all the parameters supported by the targeted portlets, both the private and public ones */
@SuppressWarnings({"unchecked"})
private static Map getResourceParameterMap(UIPortlet uiPortlet, PortalRequestContext prcontext)
{
@@ -420,8 +434,8 @@
}
/**
- * Process Events sent by the portlet API during the processAction() and
- * serverResource() methods defined in Portlet API 2.0 (JSR 286)
+ * Process Events sent by the portlet API during the processAction() and serverResource() methods defined in Portlet
+ * API 2.0 (JSR 286)
*/
static public class ProcessEventsActionListener extends EventListener<UIPortlet>
{
@@ -480,14 +494,14 @@
}
/**
- * This method is called when the javax.portlet.Event is supported by the
- * current portlet stored in the Portlet Caontainer
- *
- * The processEvent() method can also generates IPC events and hence the
- * portal itself will call the ProcessEventsActionListener once again
+ * This method is called when the javax.portlet.Event is supported by the current portlet stored in the Portlet
+ * Caontainer
+ * <p/>
+ * The processEvent() method can also generates IPC events and hence the portal itself will call the
+ * ProcessEventsActionListener once again
*/
public static <S, C extends Serializable, I> List<javax.portlet.Event> processEvent(UIPortlet<S, C, I> uiPortlet,
- javax.portlet.Event event)
+ javax.portlet.Event event)
{
log.info("Process Event: " + event.getName() + " for portlet: " + uiPortlet.getState());
try
@@ -596,11 +610,9 @@
}
/**
- * This listener is called when a RenderURL url has been generated by the
- * portlet container. In that case it means that the render() method of a
- * targeted portlet will be directly called and that the existing navigational
- * state will be reset by removing all the Render Parameters from the cache
- * map located in the UIPortlet
+ * This listener is called when a RenderURL url has been generated by the portlet container. In that case it means
+ * that the render() method of a targeted portlet will be directly called and that the existing navigational state
+ * will be reset by removing all the Render Parameters from the cache map located in the UIPortlet
*/
static public class RenderActionListener extends EventListener<UIPortlet>
{
@@ -620,11 +632,11 @@
}
/**
- * This method is called by the process action and render action listeners,
- * aka during the processDecode() phase of our UI framework
- *
- * It goes throughs all the request parameters and add to the public render
- * parameters Map the one that are supported by the targeted portlet
+ * This method is called by the process action and render action listeners, aka during the processDecode() phase of
+ * our UI framework
+ * <p/>
+ * It goes throughs all the request parameters and add to the public render parameters Map the one that are supported
+ * by the targeted portlet
*/
static public void setupPublicRenderParams(UIPortlet uiPortlet, Map<String, String[]> requestParams)
{
@@ -636,7 +648,9 @@
{
String key = keys.next();
if (uiPortlet.supportsPublicParam(key))
+ {
publicParams.put(key, requestParams.get(key));
+ }
}
}
@@ -656,7 +670,9 @@
String windowState = event.getRequestContext().getRequestParameter("portal:windowState");
//TODO TrongTT: We should use only parameter for change WindowState
if (windowState == null)
+ {
windowState = event.getRequestContext().getRequestParameter(UIComponent.OBJECTID).trim();
+ }
UIPageBody uiPageBody = uiPortlet.getAncestorOfType(UIPageBody.class);
UIPage uiPage = uiPortlet.getAncestorOfType(UIPage.class);
if (windowState.equals(WindowState.MAXIMIZED.toString()))
@@ -668,7 +684,9 @@
// reference: UIPortalLifecycle, UIPageLifecycle, renderChildren() in UIPageBody
//---------------------------------------------------------
if (uiPage != null && uiPage.isShowMaxWindow())
+ {
uiPage.setMaximizedUIPortlet(uiPortlet);
+ }
//---------------------------------------------------------
uiPageBody.setMaximizedUIComponent(uiPortlet);
}
@@ -682,7 +700,9 @@
{
UIPortlet maxPortlet = (UIPortlet)uiPageBody.getMaximizedUIComponent();
if (maxPortlet == uiPortlet)
+ {
uiPageBody.setMaximizedUIComponent(null);
+ }
}
//TODO dang.tung: for ShowMaxWindow situation
//----------------------------------------------------------------
@@ -690,7 +710,9 @@
{
UIPortlet maxPortlet = (UIPortlet)uiPage.getMaximizedUIPortlet();
if (maxPortlet == uiPortlet)
+ {
uiPage.setMaximizedUIPortlet(null);
+ }
}
//-----------------------------------------------------------------
if (windowState.equals(WindowState.MINIMIZED.toString()))
@@ -703,10 +725,7 @@
}
}
- /**
- * This listener is called when the portlet mode of a portlet has to be
- * changed.
- */
+ /** This listener is called when the portlet mode of a portlet has to be changed. */
static public class ChangePortletModeActionListener extends EventListener<UIPortlet>
{
public void execute(Event<UIPortlet> event) throws Exception
@@ -715,7 +734,9 @@
String portletMode = event.getRequestContext().getRequestParameter("portal:portletMode");
//TODO TrongTT: We should use only parameter for change PortletMode
if (portletMode == null)
+ {
portletMode = event.getRequestContext().getRequestParameter(UIComponent.OBJECTID);
+ }
log.info("Change portlet mode of " + uiPortlet.getPortletContext().getId() + " to " + portletMode);
if (portletMode.equals(PortletMode.HELP.toString()))
@@ -735,10 +756,9 @@
}
/**
- * This listener is called when the portlet edit form (which tells information
- * about the portlet width or height as well as if the info bar and its
- * content should be shown) is invoked.
- *
+ * This listener is called when the portlet edit form (which tells information about the portlet width or height as
+ * well as if the info bar and its content should be shown) is invoked.
+ * <p/>
* It places the form in the portal black mask
*/
static public class EditPortletActionListener extends EventListener<UIPortlet>
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/container
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/javascript
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/login
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/page
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/portal
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/util
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
Property changes on: portal/branches/wsrp-integration/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/pool
___________________________________________________________________
Name: svn:ignore
+ *.iml
.idea
15 years, 2 months
gatein SVN: r389 - portal/branches/wsrp-integration/component/application-registry.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-10-21 08:02:16 -0400 (Wed, 21 Oct 2009)
New Revision: 389
Removed:
portal/branches/wsrp-integration/component/application-registry/exo.portal.component.application-registry.iml
Log:
- Removed IDEA file that was inadvertendly added.
Deleted: portal/branches/wsrp-integration/component/application-registry/exo.portal.component.application-registry.iml
===================================================================
--- portal/branches/wsrp-integration/component/application-registry/exo.portal.component.application-registry.iml 2009-10-21 12:01:30 UTC (rev 388)
+++ portal/branches/wsrp-integration/component/application-registry/exo.portal.component.application-registry.iml 2009-10-21 12:02:16 UTC (rev 389)
@@ -1,248 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module relativePaths="true" org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
- <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false">
- <output url="file://$MODULE_DIR$/target/classes" />
- <output-test url="file://$MODULE_DIR$/target/test-classes" />
- <content url="file://$MODULE_DIR$">
- <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
- <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
- <excludeFolder url="file://$MODULE_DIR$/target" />
- </content>
- <orderEntry type="inheritedJdk" />
- <orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.jcr:exo.jcr.component.ext:1.12.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.jcr:exo.jcr.component.core:1.12.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.jcr:jcr:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.container:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.commons:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-lang:commons-lang:2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xpp3:xpp3:1.1.3.4.O" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-logging:commons-logging:1.0.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.slf4j:slf4j-api:1.5.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.slf4j:slf4j-log4j12:1.5.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: log4j:log4j:1.2.14" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.tool:exo.tool.framework.junit:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: junit:junit:3.8.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.portlet:portlet-api:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.faces:jsf-api:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.servlet:servlet-api:2.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: picocontainer:picocontainer:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jmock:jmock:1.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xstream:xstream:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-beanutils:commons-beanutils:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-collections:commons-collections:3.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-run:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-bind:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: bcel:bcel:5.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-extras:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.command:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.common:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.activation:activation:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jotm:jotm:2.0.10" level="project" />
- <orderEntry type="library" exported="" name="Maven: jotm:jotm_jrmp_stubs:2.0.10" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.transaction:jta:1.0.1B" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.objectweb.carol:carol:2.0.5" level="project" />
- <orderEntry type="library" exported="" name="Maven: howl:howl-logger:0.1.11" level="project" />
- <orderEntry type="library" exported="" name="Maven: quartz:quartz:1.5.0-RC2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.mail:mail:1.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-chain:commons-chain:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-digester:commons-digester:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.cache:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.remote:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: jgroups:jgroups:2.6.10.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.organization.api:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.security.core:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ejb:ejb:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet-hibernate-module:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet-xdoclet-module:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xjavadoc:1.0.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.document:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: pdfbox:pdfbox:0.7.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.fontbox:fontbox:0.1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jempbox:jempbox:0.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: bouncycastle:bcmail-jdk14:136" level="project" />
- <orderEntry type="library" exported="" name="Maven: bouncycastle:bcprov-jdk14:136" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.lowagie:itext:2.1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.htmlparser:htmlparser:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.poi:poi:3.0.2-FINAL" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.poi:poi-scratchpad:3.0.2-FINAL" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-core:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-spellchecker:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-memory:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.xml.stream:stax-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.sun.xml.stream:sjsxp:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-dbcp:commons-dbcp:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-pool:commons-pool:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.resource:connector-api:1.5" level="project" />
- <orderEntry type="library" exported="" name="Maven: concurrent:concurrent:1.3.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-codec:commons-codec:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ws.commons:ws-commons-util:1.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.script.groovy:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.groovy:groovy-all:1.5.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-launcher:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: jline:jline:0.9.94" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.rest.core:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.xml-processing:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: jtidy:jtidy:4aug2000r7-dev" level="project" />
- <orderEntry type="library" exported="" name="Maven: xml-resolver:xml-resolver:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.frameworks.json:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.xml.bind:jaxb-api:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.sun.xml.bind:jaxb-impl:2.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ws.rs:jsr311-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-fileupload:commons-fileupload:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-io:commons-io:1.3.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.rest.ext:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.commons:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: stax:stax-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.annotation:jsr250-api:1.0" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.portal" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.organization.jdbc:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.database:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" scope="RUNTIME" name="Maven: hsqldb:hsqldb:1.8.0.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.experlog:xapool:1.5.0" level="project" />
- <orderEntry type="library" exported="" scope="RUNTIME" name="Maven: c3p0:c3p0:0.9.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-core:3.3.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: antlr:antlr:2.7.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: dom4j:dom4j:1.6.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javassist:javassist:3.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-annotations:3.4.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:ejb3-persistence:1.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-commons-annotations:3.1.0.GA" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.web" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.common" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-api:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.common:common-common:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-log4j:log4j:1.2.14" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-j2ee:4.2.3.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-vfs:2.1.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-common-core:2.2.9.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.logging:jboss-logging-spi:2.0.5.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-jmx:4.2.3.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-httpclient:commons-httpclient:3.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-junit:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-uberjar:0.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-nodeps:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.wci:wci-wci:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:catalina:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:juli:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:annotations-api:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:jetty:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:jetty-util:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:servlet-api-2.5:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.remoting:jboss-remoting:2.5.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />
- <orderEntry type="library" exported="" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-ant:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-discovery:commons-discovery:0.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-generic:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-container:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-module:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-util:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jdom:jdom:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-j2ee-deployment_1.1_spec:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-geronimo:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jboss:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jetty:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jo:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jonas:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-ejb_2.1_spec:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.ow2.jonas.tools.configurator:configurator:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.ow2.jonas.tools.configurator:api:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xerces:xercesImpl:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jrun:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-orion:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-resin:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-tomcat:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-weblogic:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: sun-jaxb:jaxb-api:2.1.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-portlet:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.servlet.jsp:jsp-api:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ccpp:ccpp:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-controller:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:resolver:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:xercesImpl:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:xml-apis:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-portal:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.common:common-mc:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.microcontainer:jboss-kernel:2.0.6.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.microcontainer:jboss-dependency:2.0.6.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jbossxb:2.0.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-reflect:2.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: wutka-dtdparser:dtdparser121:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-mdr:2.0.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.man:jboss-managed:2.0.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.man:jboss-metatype:2.0.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-mc:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.unit:jboss-unit:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-jdk:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-spi:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-core:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-httpclient:commons-httpclient:2.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: oswego-concurrent:concurrent:1.3.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-slide:webdavlib:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-log4j:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-taglibs:jstl:1.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-taglibs:standard:1.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-federation:2.1.0-Beta01" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.scripting" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.xml-parser" exported="" />
- <orderEntry type="library" exported="" name="Maven: rhino:js:1.6R5" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.shindig:shindig-gadgets:SNAPSHOT-r790473" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.shindig:shindig-common:SNAPSHOT-r790473" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.google.code.guice:guice:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: aopalliance:aopalliance:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.google.collections:google-collections:1.0-rc2" level="project" />
- <orderEntry type="library" exported="" name="Maven: joda-time:joda-time:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.json:json:20070829" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.json-lib:json-lib:jdk15:2.2.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.ezmorph:ezmorph:1.0.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-betwixt:commons-betwixt:0.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-beanutils:commons-beanutils-core:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.thoughtworks.xstream:xstream:1.3.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xpp3:xpp3_min:1.1.4c" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.ehcache:ehcache:1.6.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: de.odysseus.juel:juel-impl:2.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: de.odysseus.juel:juel-api:2.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: caja:caja:r3375" level="project" />
- <orderEntry type="library" exported="" name="Maven: nu.validator.htmlparser:htmlparser:1.0.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: caja:json_simple:r1" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth-consumer:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth-httpclient3:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: rome:rome:0.9" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.ibm.icu:icu4j:3.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sourceforge.nekohtml:nekohtml:1.9.12" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.sanselan:sanselan:0.97-incubator" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.pc" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.resources" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.identity" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-core:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-common:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-api:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-spi:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-hibernate:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-cglib-repack:2.1_3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.cache:jbosscache-core:3.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-ldap:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-cache:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-api:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-spi:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-core:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.api:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.core:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.spi:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.common:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.api:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.core:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.spi:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.jlr:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.apt:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.apt:1.0.0-beta3" level="project" />
- <orderEntry type="library" scope="TEST" name="Maven: org.slf4j:slf4j-simple:1.5.6" level="project" />
- </component>
-</module>
-
15 years, 2 months
gatein SVN: r388 - portal/trunk/component/application-registry.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-10-21 08:01:30 -0400 (Wed, 21 Oct 2009)
New Revision: 388
Removed:
portal/trunk/component/application-registry/exo.portal.component.application-registry.iml
Log:
- Removed IDEA file that was inadvertendly added.
Deleted: portal/trunk/component/application-registry/exo.portal.component.application-registry.iml
===================================================================
--- portal/trunk/component/application-registry/exo.portal.component.application-registry.iml 2009-10-21 11:58:28 UTC (rev 387)
+++ portal/trunk/component/application-registry/exo.portal.component.application-registry.iml 2009-10-21 12:01:30 UTC (rev 388)
@@ -1,248 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module relativePaths="true" org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
- <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false">
- <output url="file://$MODULE_DIR$/target/classes" />
- <output-test url="file://$MODULE_DIR$/target/test-classes" />
- <content url="file://$MODULE_DIR$">
- <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
- <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
- <excludeFolder url="file://$MODULE_DIR$/target" />
- </content>
- <orderEntry type="inheritedJdk" />
- <orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.jcr:exo.jcr.component.ext:1.12.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.jcr:exo.jcr.component.core:1.12.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.jcr:jcr:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.container:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.commons:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-lang:commons-lang:2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xpp3:xpp3:1.1.3.4.O" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-logging:commons-logging:1.0.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.slf4j:slf4j-api:1.5.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.slf4j:slf4j-log4j12:1.5.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: log4j:log4j:1.2.14" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.tool:exo.tool.framework.junit:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: junit:junit:3.8.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.portlet:portlet-api:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.faces:jsf-api:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.servlet:servlet-api:2.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: picocontainer:picocontainer:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jmock:jmock:1.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xstream:xstream:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-beanutils:commons-beanutils:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-collections:commons-collections:3.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-run:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-bind:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: bcel:bcel:5.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jibx:jibx-extras:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.command:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.common:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.activation:activation:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jotm:jotm:2.0.10" level="project" />
- <orderEntry type="library" exported="" name="Maven: jotm:jotm_jrmp_stubs:2.0.10" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.transaction:jta:1.0.1B" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.objectweb.carol:carol:2.0.5" level="project" />
- <orderEntry type="library" exported="" name="Maven: howl:howl-logger:0.1.11" level="project" />
- <orderEntry type="library" exported="" name="Maven: quartz:quartz:1.5.0-RC2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.mail:mail:1.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-chain:commons-chain:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-digester:commons-digester:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.cache:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.kernel:exo.kernel.component.remote:2.2.Alpha3" level="project" />
- <orderEntry type="library" exported="" name="Maven: jgroups:jgroups:2.6.10.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.organization.api:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.security.core:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ejb:ejb:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet-hibernate-module:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xdoclet-xdoclet-module:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xdoclet:xjavadoc:1.0.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.document:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: pdfbox:pdfbox:0.7.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.fontbox:fontbox:0.1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jempbox:jempbox:0.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: bouncycastle:bcmail-jdk14:136" level="project" />
- <orderEntry type="library" exported="" name="Maven: bouncycastle:bcprov-jdk14:136" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.lowagie:itext:2.1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.htmlparser:htmlparser:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.poi:poi:3.0.2-FINAL" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.poi:poi-scratchpad:3.0.2-FINAL" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-core:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-spellchecker:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.lucene:lucene-memory:2.2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.xml.stream:stax-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.sun.xml.stream:sjsxp:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-dbcp:commons-dbcp:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-pool:commons-pool:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.resource:connector-api:1.5" level="project" />
- <orderEntry type="library" exported="" name="Maven: concurrent:concurrent:1.3.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-codec:commons-codec:1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ws.commons:ws-commons-util:1.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.script.groovy:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.groovy:groovy-all:1.5.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-launcher:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: jline:jline:0.9.94" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.rest.core:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.xml-processing:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: jtidy:jtidy:4aug2000r7-dev" level="project" />
- <orderEntry type="library" exported="" name="Maven: xml-resolver:xml-resolver:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.frameworks.json:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.xml.bind:jaxb-api:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.sun.xml.bind:jaxb-impl:2.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ws.rs:jsr311-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-fileupload:commons-fileupload:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-io:commons-io:1.3.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.rest.ext:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.ws:exo.ws.commons:2.1.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: stax:stax-api:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.annotation:jsr250-api:1.0" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.portal" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.organization.jdbc:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.exoplatform.core:exo.core.component.database:2.3.Alpha4" level="project" />
- <orderEntry type="library" exported="" scope="RUNTIME" name="Maven: hsqldb:hsqldb:1.8.0.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.experlog:xapool:1.5.0" level="project" />
- <orderEntry type="library" exported="" scope="RUNTIME" name="Maven: c3p0:c3p0:0.9.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-core:3.3.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: antlr:antlr:2.7.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: dom4j:dom4j:1.6.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javassist:javassist:3.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-annotations:3.4.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:ejb3-persistence:1.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-commons-annotations:3.1.0.GA" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.web" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.common" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-api:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.common:common-common:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-log4j:log4j:1.2.14" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-j2ee:4.2.3.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-vfs:2.1.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-common-core:2.2.9.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.logging:jboss-logging-spi:2.0.5.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-jmx:4.2.3.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-httpclient:commons-httpclient:3.0.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-junit:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-uberjar:0.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.ant:ant-nodeps:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.wci:wci-wci:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:catalina:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:juli:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.tomcat:annotations-api:6.0.16" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:jetty:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:jetty-util:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.mortbay.jetty:servlet-api-2.5:6.1.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.remoting:jboss-remoting:2.5.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />
- <orderEntry type="library" exported="" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-ant:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-discovery:commons-discovery:0.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-generic:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-container:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-module:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-api-util:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: jdom:jdom:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-j2ee-deployment_1.1_spec:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-geronimo:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jboss:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jetty:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jo:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jonas:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.geronimo.specs:geronimo-ejb_2.1_spec:1.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.ow2.jonas.tools.configurator:configurator:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.ow2.jonas.tools.configurator:api:1.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: xerces:xercesImpl:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-jrun:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-orion:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-resin:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-tomcat:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.codehaus.cargo:cargo-core-container-weblogic:1.0.1-alpha-1" level="project" />
- <orderEntry type="library" exported="" name="Maven: sun-jaxb:jaxb-api:2.1.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-portlet:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.servlet.jsp:jsp-api:2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: javax.ccpp:ccpp:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-controller:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:resolver:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:xercesImpl:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-xerces:xml-apis:2.9.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-portal:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.common:common-mc:2.0.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.microcontainer:jboss-kernel:2.0.6.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.microcontainer:jboss-dependency:2.0.6.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jbossxb:2.0.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-reflect:2.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: wutka-dtdparser:dtdparser121:1.2.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss:jboss-mdr:2.0.1.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.man:jboss-managed:2.0.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.man:jboss-metatype:2.0.0.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-mc:2.1.0-Beta01" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.unit:jboss-unit:1.2.3" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-jdk:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-spi:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-core:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-httpclient:commons-httpclient:2.0.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: oswego-concurrent:concurrent:1.3.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-slide:webdavlib:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: jboss:jboss-common-logging-log4j:2.0.4.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-taglibs:jstl:1.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: apache-taglibs:standard:1.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.pc:pc-federation:2.1.0-Beta01" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.scripting" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.xml-parser" exported="" />
- <orderEntry type="library" exported="" name="Maven: rhino:js:1.6R5" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.shindig:shindig-gadgets:SNAPSHOT-r790473" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.shindig:shindig-common:SNAPSHOT-r790473" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.google.code.guice:guice:2.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: aopalliance:aopalliance:1.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.google.collections:google-collections:1.0-rc2" level="project" />
- <orderEntry type="library" exported="" name="Maven: joda-time:joda-time:1.6" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.json:json:20070829" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.json-lib:json-lib:jdk15:2.2.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.ezmorph:ezmorph:1.0.4" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-betwixt:commons-betwixt:0.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: commons-beanutils:commons-beanutils-core:1.7.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.thoughtworks.xstream:xstream:1.3.1" level="project" />
- <orderEntry type="library" exported="" name="Maven: xpp3:xpp3_min:1.1.4c" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sf.ehcache:ehcache:1.6.0" level="project" />
- <orderEntry type="library" exported="" name="Maven: de.odysseus.juel:juel-impl:2.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: de.odysseus.juel:juel-api:2.1.2" level="project" />
- <orderEntry type="library" exported="" name="Maven: caja:caja:r3375" level="project" />
- <orderEntry type="library" exported="" name="Maven: nu.validator.htmlparser:htmlparser:1.0.7" level="project" />
- <orderEntry type="library" exported="" name="Maven: caja:json_simple:r1" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth-consumer:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.oauth.core:oauth-httpclient3:20090531" level="project" />
- <orderEntry type="library" exported="" name="Maven: rome:rome:0.9" level="project" />
- <orderEntry type="library" exported="" name="Maven: com.ibm.icu:icu4j:3.8" level="project" />
- <orderEntry type="library" exported="" name="Maven: net.sourceforge.nekohtml:nekohtml:1.9.12" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.apache.sanselan:sanselan:0.97-incubator" level="project" />
- <orderEntry type="module" module-name="exo.portal.component.pc" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.resources" exported="" />
- <orderEntry type="module" module-name="exo.portal.component.identity" exported="" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-core:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-common:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-api:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-spi:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-hibernate:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.hibernate:hibernate-cglib-repack:2.1_3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.cache:jbosscache-core:3.0.2.GA" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-ldap:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.jboss.identity.idm:idm-cache:1.0.0.Beta2" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-api:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-spi:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.gatein.mop:mop-core:1.0.0-Beta07" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.api:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.core:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.spi:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.common:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.api:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.core:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.spi:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.jlr:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.chromattic:chromattic.apt:1.0.0-beta3" level="project" />
- <orderEntry type="library" exported="" name="Maven: org.reflext:reflext.apt:1.0.0-beta3" level="project" />
- <orderEntry type="library" scope="TEST" name="Maven: org.slf4j:slf4j-simple:1.5.6" level="project" />
- </component>
-</module>
-
15 years, 2 months
gatein SVN: r387 - portal/branches.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-10-21 07:58:28 -0400 (Wed, 21 Oct 2009)
New Revision: 387
Added:
portal/branches/wsrp-integration/
Log:
- Branching to work on WSRP integration.
Copied: portal/branches/wsrp-integration (from rev 386, portal/trunk)
15 years, 2 months
gatein SVN: r386 - in portal/tags/3.0.0-Beta02: packaging and 1 other directory.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-10-21 04:02:33 -0400 (Wed, 21 Oct 2009)
New Revision: 386
Modified:
portal/tags/3.0.0-Beta02/README.txt
portal/tags/3.0.0-Beta02/Release Notes.txt
portal/tags/3.0.0-Beta02/packaging/
portal/tags/3.0.0-Beta02/pom.xml
Log:
- Fixed pom.xml
- Added JBoss Repository location (Or the GateIn parent couldn't be found)
- Correct SCM
- Fixed README.txt
- Fixed Release Notes.txt
- Add profiles.xml to the svn:ignore list
Modified: portal/tags/3.0.0-Beta02/README.txt
===================================================================
--- portal/tags/3.0.0-Beta02/README.txt 2009-10-21 07:50:24 UTC (rev 385)
+++ portal/tags/3.0.0-Beta02/README.txt 2009-10-21 08:02:33 UTC (rev 386)
@@ -1,22 +1,3 @@
-====
- Copyright (C) 2009 eXo Platform SAS.
-
- 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.
-====
-
Welcome to gatein codebase:
===========================
@@ -32,7 +13,7 @@
* MAVEN CONFIGURATION:
**********************
-* edit ${basedir}/profiles.xml and replace the values mentionned so that:
+* edit packaging/profiles.xml and replace the values mentioned so that:
* ${exo.projects.directory.dependencies} directory contains :
** ${exo.projects.app.tomcat.version}/ a clean Tomcat installation, to be used as packaging template
** ${exo.projects.app.jboss.version}/ a clean JBoss installation, to be used as packaging template
@@ -45,18 +26,20 @@
*****************
* PACKAGING:
*****************
-
+
* mvn install -Ppkg-tomcat
-** Create a Tomcat delivery in pkg/target/tomcat/ and archives are stored in target
+** Creates a Tomcat delivery in packaging/pkg/target/tomcat/
+** Creates compressed archives in packaging/pkg/target/target
* mvn install -Ppkg-jbossas
-** Create a JBossAS delivery in pkg/target/jboss/ and archives are stored in target
+** Creates a JBossAS delivery in packaging/pkg/target/jboss/
+** Creates compressed archives in packaging/pkg/target/target
*****************
* STARTING:
*****************
* On Tomcat: go to the tomcat directory (or unzip the archive in your favorite location) and execute 'bin/gatein.sh start' ('bin/gatein.bat start' on Windows)
-* On JBoss: go to the jboss directory (or unzip the archive in your favorite location) and execute 'bin/run.sh start' ('bin/grun.bat start' on Windows)
+* On JBoss: go to the jboss directory (or unzip the archive in your favorite location) and execute 'bin/run.sh start' ('bin/run.bat start' on Windows)
* Go to http://localhost:8080/portal to see the homepage of the portal. That's it.
Modified: portal/tags/3.0.0-Beta02/Release Notes.txt
===================================================================
--- portal/tags/3.0.0-Beta02/Release Notes.txt 2009-10-21 07:50:24 UTC (rev 385)
+++ portal/tags/3.0.0-Beta02/Release Notes.txt 2009-10-21 08:02:33 UTC (rev 386)
@@ -1,27 +1,8 @@
-====
- Copyright (C) 2009 eXo Platform SAS.
-
- 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.
-====
+Release Notes will start from GateIn CR1
Release Notes - GateIn
- Other resources and links
- Company site http://www.exoplatform.com
- Community JIRA http://jira.exoplatform.org
- Comminity site http://www.exoplatform.org
- Developers wiki http://wiki.exoplatform.org
- Documentation http://docs.exoplatform.org
+ Community site http://www.gatein.org
+ Community JIRA https://jira.jboss.org/jira/secure/Dashboard.jspa
+ Community Forum http://www.jboss.org/index.html?module=bb&op=viewforum&f=335
Property changes on: portal/tags/3.0.0-Beta02/packaging
___________________________________________________________________
Name: svn:ignore
+ profiles.xml
Modified: portal/tags/3.0.0-Beta02/pom.xml
===================================================================
--- portal/tags/3.0.0-Beta02/pom.xml 2009-10-21 07:50:24 UTC (rev 385)
+++ portal/tags/3.0.0-Beta02/pom.xml 2009-10-21 08:02:33 UTC (rev 386)
@@ -65,9 +65,9 @@
</properties>
<scm>
- <connection>scm:svn:http://svn.exoplatform.org/projects/gatein/portal/trunk</connection>
- <developerConnection>scm:svn:http://svn.exoplatform.org/projects/gatein/portal/trunk</developerConnection>
- <url>http://fisheye.exoplatform.org/browse/projects/gatein/portal/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta02</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta02</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/portal/tags/3.0.0-Beta02</url>
</scm>
<modules>
@@ -219,6 +219,16 @@
<!-- To be removed and replaced by settings in user config -->
<repositories>
<repository>
+ <id>repository.jboss.org</id>
+ <url>http://repository.jboss.org/maven2</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
<id>exo-int</id>
<url>http://maven2.exoplatform.org/rest/maven2</url>
<releases>
15 years, 2 months