Author: thomas.heute(a)jboss.com
Date: 2010-04-15 13:42:19 -0400 (Thu, 15 Apr 2010)
New Revision: 2661
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/FindMembershipTypesPageList.java
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIListMembershipType.java
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ar.xml
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_de.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_en.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_es.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_fr.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ja.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ko.xml
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ne.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_nl.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_pt_BR.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ru.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_uk.properties
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_vi.xml
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh.xml
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh_TW.xml
Log:
JBEPP-305: Possible to inject javascript code into EPP input fields
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/FindMembershipTypesPageList.java
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/FindMembershipTypesPageList.java 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/FindMembershipTypesPageList.java 2010-04-15
17:42:19 UTC (rev 2661)
@@ -26,14 +26,17 @@
import org.exoplatform.container.PortalContainer;
import org.exoplatform.services.organization.MembershipType;
import org.exoplatform.services.organization.OrganizationService;
+import org.gatein.common.text.EntityEncoder;
+import java.util.Date;
import java.util.List;
+import java.util.ArrayList;
/**
* @author <a href="mailto:julien.viet@exoplatform.com">Julien
Viet</a>
* @version $Revision$
*/
-public class FindMembershipTypesPageList extends StatelessPageList<MembershipType>
+public class FindMembershipTypesPageList extends
StatelessPageList<FindMembershipTypesPageList.UIMembershipType>
{
public FindMembershipTypesPageList(int pageSize)
@@ -42,11 +45,58 @@
}
@Override
- protected ListAccess<MembershipType> connect() throws Exception
+ protected ListAccess<UIMembershipType> connect() throws Exception
{
ExoContainer container = PortalContainer.getInstance();
OrganizationService service =
(OrganizationService)container.getComponentInstance(OrganizationService.class);
List<MembershipType> memberships =
(List<MembershipType>)service.getMembershipTypeHandler().findMembershipTypes();
- return new ListAccessImpl<MembershipType>(MembershipType.class,
memberships);
+
+ return new ListAccessImpl<UIMembershipType>(UIMembershipType.class,
convertMembershipTypes(memberships));
}
+
+ private List<UIMembershipType> convertMembershipTypes(List<MembershipType>
memberships)
+ {
+ List<UIMembershipType> types = new
ArrayList<UIMembershipType>(memberships.size());
+ for (MembershipType type: memberships)
+ {
+ types.add(new UIMembershipType(type));
+ }
+ return types;
+ }
+
+ public class UIMembershipType
+ {
+ private MembershipType mType;
+
+ public UIMembershipType(MembershipType mType)
+ {
+ this.mType = mType;
+ }
+
+ public String getName()
+ {
+ return mType.getName();
+ }
+
+ public Date getCreatedDate()
+ {
+ return mType.getCreatedDate();
+ }
+
+ public Date getModifiedDate()
+ {
+ return mType.getModifiedDate();
+ }
+
+ public String getDescription()
+ {
+ return mType.getDescription();
+ }
+
+ public String getEncodedDescription()
+ {
+ EntityEncoder encoder = EntityEncoder.FULL;
+ return encoder.encode(getDescription());
+ }
+ }
}
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIListMembershipType.java
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIListMembershipType.java 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIListMembershipType.java 2010-04-15
17:42:19 UTC (rev 2661)
@@ -45,7 +45,7 @@
public class UIListMembershipType extends UIContainer
{
- private static String[] USER_BEAN_FIELD = {"name", "createdDate",
"modifiedDate", "description"};
+ private static String[] USER_BEAN_FIELD = {"name", "createdDate",
"modifiedDate", "encodedDescription"};
private static String[] USER_ACTION = {"EditMembership",
"DeleteMembership"};
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ar.xml
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ar.xml 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ar.xml 2010-04-15
17:42:19 UTC (rev 2661)
@@ -307,7 +307,7 @@
<createdDate>تاريخ الإنشاء</createdDate>
<modifiedDate>تاريخ التعديل</modifiedDate>
<action>#{word.action}</action>
- <description>#{word.description}</description>
+ <encodedDescription>#{word.description}</encodedDescription>
</header>
<action>
<title>
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_de.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_de.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_de.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -169,7 +169,7 @@
UIMembershipList.header.createdDate=Erstelldatum
UIMembershipList.header.modifiedDate=Bearbeitungsdatum
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Rolle bearbeiten
UIMembershipList.action.title.DeleteMembership=Rolle löschen
UIMembershipList.msg.InUse=Sie können die Rolle nicht löschen, weil sie
benutzt wird.
@@ -254,4 +254,4 @@
UITabPane.title.UISharedNavigation=Navigation der Gruppenseiten
UISharedNavigation.label.userNavigation=Name der Benutzerseiten-Navigation
UISharedNavigation.label.priority=Priorität
-UISharedNavigation.action.Save=Speichern
\ No newline at end of file
+UISharedNavigation.action.Save=Speichern
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_en.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_en.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_en.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -169,7 +169,7 @@
UIMembershipList.header.createdDate=Created date
UIMembershipList.header.modifiedDate=Modified date
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Edit Membership
UIMembershipList.action.title.DeleteMembership=Delete Membership
UIMembershipList.msg.InUse=You can not delete this membership because it is in use
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_es.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_es.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_es.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -169,7 +169,7 @@
UIMembershipList.header.createdDate=Fecha de Creaci\u00f3n
UIMembershipList.header.modifiedDate=Fecha de Modificaci\u00f3n
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Editar Afiliaci\u00f3n
UIMembershipList.action.title.DeleteMembership=Borrar Afiliaci\u00f3n
UIMembershipList.msg.InUse=No puedes borrar esta afiliaci\u00f3n porque est\u00e1 siendo
usada
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_fr.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_fr.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_fr.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -168,7 +168,7 @@
UIMembershipList.header.createdDate=Date de cr\u00e9ation
UIMembershipList.header.modifiedDate=Date de modification
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Editer le r\u00f4le
UIMembershipList.action.title.DeleteMembership=Supprimer le r\u00f4le
UIMembershipList.msg.InUse=Vous ne pouvez pas supprimer ce r\u00f4le car il est
utilis\u00e9
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -169,7 +169,7 @@
UIMembershipList.header.createdDate=Data di creazione
UIMembershipList.header.modifiedDate=Data di modifica
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Modifica il Membership
UIMembershipList.action.title.DeleteMembership=Elimina il Membership
UIMembershipList.msg.InUse=Non puoi eliminare il membership perch\u00E8 \u00E8 gi\u00E0
in uso
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ja.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ja.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ja.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -170,7 +170,7 @@
UIMembershipList.header.createdDate=\u4f5c\u6210\u65e5
UIMembershipList.header.modifiedDate=\u66f4\u65b0\u65e5
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=\u30e1\u30f3\u30d0\u30fc\u30b7\u30c3\u30d7\u3092\u7de8\u96c6
UIMembershipList.action.title.DeleteMembership=\u30e1\u30f3\u30d0\u30fc\u30b7\u30c3\u30d7\u3092\u524a\u9664
UIMembershipList.msg.InUse=\u3053\u306e\u30e1\u30f3\u30d0\u30fc\u30b7\u30c3\u30d7\u306f\u4f7f\u7528\u4e2d\u306a\u306e\u3067\u524a\u9664\u3067\u304d\u307e\u305b\u3093
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ko.xml
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ko.xml 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ko.xml 2010-04-15
17:42:19 UTC (rev 2661)
@@ -259,7 +259,7 @@
<createdDate>생성된 날짜</createdDate>
<modifiedDate>수정된 날짜</modifiedDate>
<action>#{word.action}</action>
- <description>#{word.description}</description>
+ <encodedDescription>#{word.description}</encodedDescription>
</header>
<action>
<title>
@@ -376,4 +376,4 @@
</label>
<deleteGroup>이 그룹을 삭제하시겠습니까?</deleteGroup>
</UIGroupManagement>
-</bundle>
\ No newline at end of file
+</bundle>
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ne.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ne.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ne.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -170,7 +170,7 @@
UIMembershipList.header.createdDate=\u092c\u0928\u093e\u090f\u0915\u094b
\u092e\u093f\u0924\u0940
UIMembershipList.header.modifiedDate=\u092a\u0930\u093f\u092e\u093e\u0930\u094d\u091c\u0928
\u0917\u0930\u0947\u0915\u094b \u092e\u093f\u0924\u0940
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=\u0938\u0926\u0938\u094d\u092f\u0924\u093e
\u0938\u092e\u094d\u092a\u093e\u0926\u0928
UIMembershipList.action.title.DeleteMembership=\u0938\u0926\u0938\u094d\u092f\u0924\u093e
\u092e\u0947\u091f\u093e\u0909\u0928\u0941
UIMembershipList.msg.InUse=\u0924\u092a\u093e\u0908\u0902 \u092f\u094b
\u0938\u0926\u0938\u094d\u092f\u0924\u093e \u092e\u0947\u091f\u093e\u0909\u0928
\u0938\u0915\u094d\u0928\u0941 \u0939\u0941\u0928\u094d\u0928
\u0915\u093f\u0928\u0915\u0940 \u092f\u094b \u092a\u094d\u0930\u092f\u094b\u0917
\u092d\u0907\u0930\u0939\u0947\u0915\u094b \u091b
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_nl.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_nl.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_nl.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -166,7 +166,7 @@
UIMembershipList.header.createdDate=Gecre\u00EBerd datum
UIMembershipList.header.modifiedDate=Gewijzigde datum
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Wijzig rol
UIMembershipList.action.title.DeleteMembership=Verwijder rol
UIMembershipList.msg.InUse=U kan deze rol niet verwijderen omdat die in gebruik is.
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_pt_BR.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_pt_BR.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_pt_BR.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -169,7 +169,7 @@
UIMembershipList.header.createdDate=Data de Criação
UIMembershipList.header.modifiedDate=Data de modificação
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Editar Papel
UIMembershipList.action.title.DeleteMembership=Remover Papel
UIMembershipList.msg.InUse=Papel em uso, não é possível removê-lo.
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ru.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ru.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_ru.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -159,7 +159,7 @@
UIMembershipList.header.createdDate=Дата создание
UIMembershipList.header.modifiedDate=Дата изменения
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Изменить участие
UIMembershipList.action.title.DeleteMembership=Отменить участие
UIMembershipList.msg.InUse=Невозможно отменить участие.
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_uk.properties
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_uk.properties 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_uk.properties 2010-04-15
17:42:19 UTC (rev 2661)
@@ -158,7 +158,7 @@
UIMembershipList.header.createdDate=Дата створення
UIMembershipList.header.modifiedDate=Дата змін
UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
+UIMembershipList.header.encodedDescription=#{word.description}
UIMembershipList.action.title.EditMembership=Редагувати клас
UIMembershipList.action.title.DeleteMembership=Видалити клас
UIMembershipList.msg.InUse=Ви не можете видалити цей клас, бо він використовується.
@@ -242,4 +242,4 @@
UITabPane.title.UISharedNavigation=Навігаційна сторінка групи
UISharedNavigation.label.userNavigation=Назва навігаційної сторінки користувача
UISharedNavigation.label.priority=Пріоритет
-UISharedNavigation.action.Save=Зберегти
\ No newline at end of file
+UISharedNavigation.action.Save=Зберегти
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_vi.xml
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_vi.xml 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_vi.xml 2010-04-15
17:42:19 UTC (rev 2661)
@@ -307,7 +307,7 @@
<createdDate>Ngày tạo</createdDate>
<modifiedDate>Ngày sửa</modifiedDate>
<action>#{word.action}</action>
- <description>#{word.description}</description>
+ <encodedDescription>#{word.description}</encodedDescription>
</header>
<action>
<title>
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh.xml
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh.xml 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh.xml 2010-04-15
17:42:19 UTC (rev 2661)
@@ -258,7 +258,7 @@
<createdDate>创建日期</createdDate>
<modifiedDate>修改日期</modifiedDate>
<action>#{word.action}</action>
- <description>#{word.description}</description>
+ <encodedDescription>#{word.description}</encodedDescription>
</header>
<action>
<title>
Modified:
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh_TW.xml
===================================================================
---
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh_TW.xml 2010-04-15
17:22:38 UTC (rev 2660)
+++
portal/branches/EPP_5_0_0_CR01_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_zh_TW.xml 2010-04-15
17:42:19 UTC (rev 2661)
@@ -259,7 +259,7 @@
<createdDate>建立日期</createdDate>
<modifiedDate>修改日期</modifiedDate>
<action>#{word.action}</action>
- <description>#{word.description}</description>
+ <encodedDescription>#{word.description}</encodedDescription>
</header>
<action>
<title>