Author: woonsan
Date: Tue Apr 5 02:39:00 2011
New Revision: 1088859
URL: http://svn.apache.org/viewvc?rev=1088859&view=rev
Log:
JS2-1247: Improving UI to have clone/delete action in portlet list view.
Added:
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$CloneStatusPanel.html
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$PortletActionPanel.html
Modified:
portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/ApplicationsListHome.java
portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDataProvider.java
portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDefinitionBean.java
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome.html
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ca.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_en.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_es.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_hu.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_it.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ja.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ko.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ua.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh.properties
portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh_TW.properties
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/ApplicationsListHome.java
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/ApplicationsListHome.java?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/ApplicationsListHome.java
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/ApplicationsListHome.java
Tue Apr 5 02:39:00 2011
@@ -37,6 +37,7 @@ import org.apache.wicket.extensions.mark
import org.apache.wicket.extensions.markup.html.repeater.data.sort.OrderByLink.VoidCssProvider;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.form.Button;
+import org.apache.wicket.markup.html.form.CheckBox;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.markup.html.image.Image;
@@ -244,6 +245,8 @@ public class ApplicationsListHome extend
link.add(new Label("nameLabel", portletDefinitionBean.getDisplayName()));
item.add(link);
+ item.add(new CloneStatusPanel("status", item.getModel()));
+ item.add(new PortletActionPanel("actions", item.getModel()));
}
};
@@ -290,6 +293,26 @@ public class ApplicationsListHome extend
}
}
}
+
+ class CloneStatusPanel extends Panel
+ {
+ private static final long serialVersionUID = 1L;
+
+ public CloneStatusPanel(String id, final IModel<PortletDefinitionBean> model)
+ {
+ super(id, model);
+ PortletDefinitionBean pd = (PortletDefinitionBean) model.getObject();
+
+ if (pd.isCloned())
+ {
+ add(new Label("status", new StringResourceModel("pam.details.status.cloned",
this, null)));
+ }
+ else
+ {
+ add(new Label("status", ""));
+ }
+ }
+ }
class ActionPanel extends Panel
{
@@ -544,11 +567,66 @@ public class ApplicationsListHome extend
return true;
}
+ class PortletActionPanel extends Panel
+ {
+ private static final long serialVersionUID = 1L;
+
+ @Override
+ protected void onBeforeRender()
+ {
+ PortletDefinitionBean pdb = (PortletDefinitionBean) getDefaultModelObject();
+
+ get("clone").setVisible(true);
+ get("delete").setVisible(pdb.isCloned());
+
+ super.onBeforeRender();
+ }
+
+ /**
+ * @param id
+ * component id
+ * @param model
+ * model for contact
+ */
+ public PortletActionPanel(String id, final IModel<PortletDefinitionBean> model)
+ {
+ super(id, model);
+
+ Link<String> clone = new Link<String>("clone")
+ {
+ private static final long serialVersionUID = 1L;
+
+ public void onClick()
+ {
+ PortletDefinitionBean pdb = (PortletDefinitionBean) model.getObject();
+ FeedbackPanel feed = (FeedbackPanel) getPage().get("feedback");
+ }
+ };
+
+ add(clone);
+
+ Link<String> del = new Link<String>("delete")
+ {
+ private static final long serialVersionUID = 1L;
+
+ public void onClick()
+ {
+ PortletDefinitionBean pdb = (PortletDefinitionBean) model.getObject();
+ FeedbackPanel feed = (FeedbackPanel) getPage().get("feedback");
+ }
+ };
+
+ add(del);
+ }
+ }
+
private class SearchForm extends Form<Void>
{
private static final long serialVersionUID = 1L;
private String appSearchField;
+ private boolean filterPortlet = true;
+ private boolean filterClone = true;
public SearchForm(String name)
{
@@ -566,7 +644,7 @@ public class ApplicationsListHome extend
ApplicationDataProvider adp = (ApplicationDataProvider) appView.getDataProvider();
adp.searchApplications(getAppSearchField());
PortletDataProvider pdp = (PortletDataProvider) portletView.getDataProvider();
- pdp.searchPortlets(getAppSearchField());
+ pdp.searchPortlets(getAppSearchField(), filterPortlet, filterClone);
}
});
@@ -599,6 +677,9 @@ public class ApplicationsListHome extend
pdp.refresh();
}
});
+
+ add(new CheckBox("filterPortlet", new PropertyModel(this, "filterPortlet")));
+ add(new CheckBox("filterClone", new PropertyModel(this, "filterClone")));
}
public String getAppSearchField()
@@ -611,5 +692,25 @@ public class ApplicationsListHome extend
this.appSearchField = appSearchField;
}
+ public boolean isFilterPortlet()
+ {
+ return filterPortlet;
+ }
+
+ public void setFilterPortlet(boolean filterPortlet)
+ {
+ this.filterPortlet = filterPortlet;
+ }
+
+ public boolean isFilterClone()
+ {
+ return filterClone;
+ }
+
+ public void setFilterClone(boolean filterClone)
+ {
+ this.filterClone = filterClone;
+ }
+
}
}
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDataProvider.java
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDataProvider.java?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDataProvider.java
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDataProvider.java
Tue Apr 5 02:39:00 2011
@@ -192,6 +192,12 @@ public class PortletDataProvider extends
@SuppressWarnings("unchecked")
public void searchPortlets(String search)
{
+ searchPortlets(search, true, true);
+ }
+
+ @SuppressWarnings("unchecked")
+ public void searchPortlets(String search, boolean withOriginalPortlets, boolean withClonedPortlets)
+ {
try
{
if (search == null)
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDefinitionBean.java
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDefinitionBean.java?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDefinitionBean.java
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/java/org/apache/jetspeed/portlets/prm/PortletDefinitionBean.java
Tue Apr 5 02:39:00 2011
@@ -27,16 +27,24 @@ public class PortletDefinitionBean exten
protected String uniqueName;
protected String displayName;
+ protected boolean cloned;
public PortletDefinitionBean(PortletDefinition portlet, String appName, Locale locale)
{
super(appName, portlet.getPortletName());
this.uniqueName = portlet.getUniqueName();
DisplayName dn = portlet.getDisplayName(locale);
+
if (dn == null)
+ {
this.displayName = this.name;
+ }
else
+ {
this.displayName = dn.getDisplayName();
+ }
+
+ this.cloned = portlet.isClone();
}
public String getUniqueName()
@@ -53,5 +61,15 @@ public class PortletDefinitionBean exten
{
return displayName;
}
+
+ public boolean isCloned()
+ {
+ return cloned;
+ }
+
+ public void setCloned(boolean cloned)
+ {
+ this.cloned = cloned;
+ }
}
Added: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$CloneStatusPanel.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome%24CloneStatusPanel.html?rev=1088859&view=auto
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$CloneStatusPanel.html
(added)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$CloneStatusPanel.html
Tue Apr 5 02:39:00 2011
@@ -0,0 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<wicket:panel>
+<span wicket:id="status">Cloned</span>
+</wicket:panel>
\ No newline at end of file
Added: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$PortletActionPanel.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome%24PortletActionPanel.html?rev=1088859&view=auto
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$PortletActionPanel.html
(added)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome$PortletActionPanel.html
Tue Apr 5 02:39:00 2011
@@ -0,0 +1,20 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<wicket:panel>
+<a href="#" wicket:id="clone"><wicket:message key="pam.details.action.clone"/></a>
+<a href="#" wicket:id="delete"><wicket:message key="pam.details.action.delete"/></a>
+</wicket:panel>
\ No newline at end of file
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome.html?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome.html
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/ApplicationsListHome.html
Tue Apr 5 02:39:00 2011
@@ -27,10 +27,12 @@
<input type='text' wicket:id="appSearchField" />
<input type='submit' wicket:id="appSearchButton" value='search' /> |
<a wicket:id="appDeploy"><wicket:message key="pam.details.action.deploy" /></a>
|
- <a wicket:id="appHome"><wicket:message key="pam.details.action.refresh" /></a>
+ <a wicket:id="appHome"><wicket:message key="pam.details.action.refresh" /></a>
|
+ <input type="checkbox" wicket:id="filterPortlet" /> <wicket:message key="pam.details.filter.portlet"
/>
+ <input type="checkbox" wicket:id="filterClone" /> <wicket:message key="pam.details.filter.clone"
/>
</form>
-<table style="border-collapse: collapse; width: 350px; margin-top: 8px; float: left;">
+<table style="border-collapse: collapse; margin-top: 8px; margin-left: 2px; float: left;">
<tr>
<th class="portlet-section-header" colspan="5"><wicket:message key="pam.details.applications"/></th>
</tr>
@@ -63,24 +65,32 @@
<td colspan="5"><span wicket:id="appNavigator">[dataview navigator]</span></td>
</tr>
</table>
-<table style="border-collapse: collapse; margin-top: 8px; width: 150px; margin-left: 3px;
float: left;">
+<table style="border-collapse: collapse; margin-top: 8px; margin-left: 4px; float: left;">
<tr>
- <th class="portlet-section-header"><wicket:message key="pam.details.portlets"/></th>
+ <th class="portlet-section-header" colspan="3"><wicket:message key="pam.details.portlets"/></th>
</tr>
<tr>
<th class="portlet-section-subheader">
<span wicket:id="plOrderByDisplayName"><wicket:message key="pam.details.name"/></span>
</th>
+ <th class="portlet-section-subheader">
+ <wicket:message key="pam.details.cloned" />
+ </th>
+ <th class="portlet-section-subheader">
+ <wicket:message key="pam.details.actions" />
+ </th>
</tr>
<tr wicket:id="portletTable">
- <td class="portlet-section-body">
+ <td class="portlet-section-body" >
<a href="#" wicket:id="nameLink">
<span wicket:id="nameLabel">[name]</span>
</a>
</td>
+ <td class="portlet-section-body"><span wicket:id="status">[status]</span></td>
+ <td class="portlet-section-body" nowrap="true"><span wicket:id="actions">[actions]</span></td>
</tr>
<tr class="portlet-section-footer">
- <td><span wicket:id="plNavigator">[dataview navigator]</span></td>
+ <td colspan="3"><span wicket:id="plNavigator">[dataview navigator]</span></td>
</tr>
</table>
</body>
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=Content
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ca.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ca.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ca.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ca.properties
Tue Apr 5 02:39:00 2011
@@ -120,9 +120,11 @@ pam.details.tabs.pd_content_type=Tipus d
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -163,3 +165,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_en.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_en.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_en.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_en.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=Content
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_es.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_es.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_es.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_es.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=Tipo de
## Newly added for PRM
pam.details.applications = Aplicaciones
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Localizaci\u00f3n
pam.details.status = Estado
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Accciones
pam.details.action.deploy = Implementar...
pam.details.action.undeploy = Anular la implementaci\u00f3n
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clonar Portlet
pam.details.message.clone.portlet.name = Nombre del portlet clonado:
pam.details.action.clone.emptyPortletName = Por Favor, introduzca un nombre de portlet v\u00e1lido.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_hu.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_hu.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_hu.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_hu.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=Tartalo
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_it.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_it.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_it.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_it.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=Content
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ja.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ja.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ja.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ja.properties
Tue Apr 5 02:39:00 2011
@@ -121,9 +121,11 @@ pam.details.tabs.pd_content_type=\u30B3\
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -164,3 +166,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ko.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ko.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ko.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ko.properties
Tue Apr 5 02:39:00 2011
@@ -124,9 +124,11 @@ pam.details.tabs.pd_content_type=\ucee8\
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -167,3 +169,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ua.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ua.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ua.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_ua.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=\u0422\
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=\u5185\
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
Modified: portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh_TW.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh_TW.properties?rev=1088859&r1=1088858&r2=1088859&view=diff
==============================================================================
--- portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh_TW.properties
(original)
+++ portals/jetspeed-2/applications/j2-admin/trunk/src/main/resources/org/apache/jetspeed/portlets/prm/resources/PRMResources_zh_TW.properties
Tue Apr 5 02:39:00 2011
@@ -122,9 +122,11 @@ pam.details.tabs.pd_content_type=\u5185\
## Newly added for PRM
pam.details.applications = Applications
-pam.details.portlets = Portlets
+pam.details.portlets = Portlets / Clones
pam.details.path = Path
pam.details.status = Status
+pam.details.cloned = Cloned
+pam.details.status.cloned = Cloned
pam.details.actions = Actions
pam.details.action.deploy = Deploy...
pam.details.action.undeploy = Undeploy
@@ -165,3 +167,6 @@ pam.details.action.status.portlet.cloneF
pam.details.action.clone.title = Clone Portlet
pam.details.message.clone.portlet.name = Name of cloned portlet:
pam.details.action.clone.emptyPortletName = Please enter a valid portlet name.
+
+pam.details.filter.portlet = Portlet
+pam.details.filter.clone = Clone
---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org
|