mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
MyFaces 1.1.5 offers improved performance (around 10-15% overall client performance improvement!) over 1.1.1.
Dependant libraries also required upgrading: commons-logging -> commons-logging-1.0.4 commons-beanutils-1.6.1 -> commons-beanutils-1.7.0 commons-collections-3.0 -> commons-collections-3.1 commons-digester-1.5 -> commons-digester-1.6 updated appropriate classpaths note: all JSPs required global find-and-replace as form tag attribute 'acceptCharset' changed to 'acceptcharset' git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5334 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -76,7 +76,7 @@ import org.alfresco.web.data.IDataContainer;
|
||||
import org.alfresco.web.ui.common.component.UIStatusMessage;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.myfaces.renderkit.html.HtmlFormRendererBase;
|
||||
import org.apache.myfaces.shared_impl.renderkit.html.HtmlFormRendererBase;
|
||||
import org.springframework.web.jsf.FacesContextUtils;
|
||||
|
||||
/**
|
||||
@@ -503,7 +503,7 @@ public final class Utils
|
||||
|
||||
// weak, but this seems to be the way Sun RI do it...
|
||||
//FormRenderer.addNeededHiddenField(context, name);
|
||||
HtmlFormRendererBase.addHiddenCommandParameter(form, name);
|
||||
HtmlFormRendererBase.addHiddenCommandParameter(context, form, name);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -520,7 +520,7 @@ public final class Utils
|
||||
|
||||
// weak, but this seems to be the way Sun RI do it...
|
||||
//FormRenderer.addNeededHiddenField(context, fieldId);
|
||||
HtmlFormRendererBase.addHiddenCommandParameter(form, fieldId);
|
||||
HtmlFormRendererBase.addHiddenCommandParameter(context, form, fieldId);
|
||||
|
||||
return buf.toString();
|
||||
}
|
||||
|
@@ -57,7 +57,7 @@ import org.alfresco.web.ui.repo.component.evaluator.ActionInstanceEvaluator;
|
||||
import org.alfresco.web.ui.repo.component.evaluator.PermissionEvaluator;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.myfaces.taglib.UIComponentTagUtils;
|
||||
import org.apache.myfaces.shared_impl.taglib.UIComponentTagUtils;
|
||||
|
||||
/**
|
||||
* @author kevinr
|
||||
|
@@ -30,6 +30,12 @@
|
||||
<description>This is an EXPERIMENTAL feature, so leave it off for now!</description>
|
||||
</context-param>
|
||||
|
||||
<context-param>
|
||||
<param-name>org.apache.myfaces.SERIALIZE_STATE_IN_SESSION</param-name>
|
||||
<param-value>false</param-value>
|
||||
<description>Stop MyFaces from Serializing the state to the session</description>
|
||||
</context-param>
|
||||
|
||||
<!-- TODO: Change this to false for production -->
|
||||
<context-param>
|
||||
<param-name>org.apache.myfaces.PRETTY_HTML</param-name>
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="add-features-action">
|
||||
<h:form acceptcharset="UTF-8" id="add-features-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="check-in-action">
|
||||
<h:form acceptcharset="UTF-8" id="check-in-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="check-out-action">
|
||||
<h:form acceptcharset="UTF-8" id="check-out-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="copy-action">
|
||||
<h:form acceptcharset="UTF-8" id="copy-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="import-action">
|
||||
<h:form acceptcharset="UTF-8" id="import-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="link-category-action">
|
||||
<h:form acceptcharset="UTF-8" id="link-category-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -63,7 +63,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="email-action">
|
||||
<h:form acceptcharset="UTF-8" id="email-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="move-action">
|
||||
<h:form acceptcharset="UTF-8" id="move-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="remove-feature-action">
|
||||
<h:form acceptcharset="UTF-8" id="remove-feature-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="script-action">
|
||||
<h:form acceptcharset="UTF-8" id="script-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -78,7 +78,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="simple-workflow-action">
|
||||
<h:form acceptcharset="UTF-8" id="simple-workflow-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -53,7 +53,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="specialise-type-action">
|
||||
<h:form acceptcharset="UTF-8" id="specialise-type-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="transform-image-action">
|
||||
<h:form acceptcharset="UTF-8" id="transform-image-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="transform-action">
|
||||
<h:form acceptcharset="UTF-8" id="transform-action">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="admin-console">
|
||||
<h:form acceptcharset="UTF-8" id="admin-console">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -74,7 +74,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="browse">
|
||||
<h:form acceptcharset="UTF-8" id="browse">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing=0 cellpadding=2>
|
||||
|
@@ -41,7 +41,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="dashboard">
|
||||
<h:form acceptcharset="UTF-8" id="dashboard">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing=0 cellpadding=2>
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="users">
|
||||
<h:form acceptcharset="UTF-8" id="users">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="delete-category">
|
||||
<h:form acceptcharset="UTF-8" id="delete-category">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -63,7 +63,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-category">
|
||||
<h:form acceptcharset="UTF-8" id="edit-category">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -63,7 +63,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="new-category">
|
||||
<h:form acceptcharset="UTF-8" id="new-category">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -54,7 +54,7 @@ if (dialog != null && dialog.getFileName() != null)
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="add-content-upload-start">
|
||||
<h:form acceptcharset="UTF-8" id="add-content-upload-start">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
@@ -169,7 +169,7 @@ if (dialog != null && dialog.getFileName() != null)
|
||||
</r:uploadForm>
|
||||
<% } %>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="add-content-upload-end" onsubmit="return validate();">
|
||||
<h:form acceptcharset="UTF-8" id="add-content-upload-end" onsubmit="return validate();">
|
||||
<% if (fileUploaded) { %>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="dashboard">
|
||||
<h:form acceptcharset="UTF-8" id="dashboard">
|
||||
|
||||
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||
<tr>
|
||||
|
@@ -47,7 +47,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="dashboard">
|
||||
<h:form acceptcharset="UTF-8" id="dashboard">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
<f:loadBundle basename="alfresco.version" var="version"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="about">
|
||||
<h:form acceptcharset="UTF-8" id="about">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -51,7 +51,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="advsearch">
|
||||
<h:form acceptcharset="UTF-8" id="advsearch">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="apply-template">
|
||||
<h:form acceptcharset="UTF-8" id="apply-template">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="apply-rss">
|
||||
<h:form acceptcharset="UTF-8" id="apply-rss">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="apply-template">
|
||||
<h:form acceptcharset="UTF-8" id="apply-template">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -44,7 +44,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="checkin-file1">
|
||||
<h:form acceptcharset="UTF-8" id="checkin-file1">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
@@ -226,7 +226,7 @@
|
||||
<td style="background-image: url(<%=request.getContextPath()%>/images/parts/whitepanel_6.gif)" width="4"></td>
|
||||
</tr>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="checkin-file2">
|
||||
<h:form acceptcharset="UTF-8" id="checkin-file2">
|
||||
|
||||
<%-- Error Messages --%>
|
||||
<tr valign="top">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="checkout-link">
|
||||
<h:form acceptcharset="UTF-8" id="checkout-link">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="checkout-file">
|
||||
<h:form acceptcharset="UTF-8" id="checkout-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="dialog">
|
||||
<h:form acceptcharset="UTF-8" id="dialog">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="delete-file">
|
||||
<h:form acceptcharset="UTF-8" id="delete-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -47,7 +47,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="document-details">
|
||||
<h:form acceptcharset="UTF-8" id="document-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-category">
|
||||
<h:form acceptcharset="UTF-8" id="edit-category">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="edit-file">
|
||||
<h:form acceptcharset="UTF-8" id="edit-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -66,7 +66,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-file">
|
||||
<h:form acceptcharset="UTF-8" id="edit-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -53,7 +53,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-link-props">
|
||||
<h:form acceptcharset="UTF-8" id="edit-link-props">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -63,7 +63,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="save-search">
|
||||
<h:form acceptcharset="UTF-8" id="save-search">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -78,7 +78,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-simple-workflow">
|
||||
<h:form acceptcharset="UTF-8" id="edit-simple-workflow">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-category">
|
||||
<h:form acceptcharset="UTF-8" id="edit-category">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -78,7 +78,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-simple-workflow">
|
||||
<h:form acceptcharset="UTF-8" id="edit-simple-workflow">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-file">
|
||||
<h:form acceptcharset="UTF-8" id="edit-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -74,7 +74,7 @@ final InstanceData instanceData = new InstanceData() {
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="edit-file">
|
||||
<h:form acceptcharset="UTF-8" id="edit-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -62,7 +62,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="export-form">
|
||||
<h:form acceptcharset="UTF-8" id="export-form">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="filelink-details">
|
||||
<h:form acceptcharset="UTF-8" id="filelink-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -43,7 +43,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="import-form">
|
||||
<h:form acceptcharset="UTF-8" id="import-form">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
@@ -134,7 +134,7 @@
|
||||
</tr>
|
||||
</r:uploadForm>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="import-upload-end">
|
||||
<h:form acceptcharset="UTF-8" id="import-upload-end">
|
||||
<tr><td class="paddingRow"></td></tr>
|
||||
<%
|
||||
ImportBean bean = (ImportBean)FacesHelper.getManagedBean(FacesContext.getCurrentInstance(), "ImportDialog");
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="preview-file">
|
||||
<h:form acceptcharset="UTF-8" id="preview-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="preview-space">
|
||||
<h:form acceptcharset="UTF-8" id="preview-space">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="document-details">
|
||||
<h:form acceptcharset="UTF-8" id="document-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -63,7 +63,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="save-search">
|
||||
<h:form acceptcharset="UTF-8" id="save-search">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -47,7 +47,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="space-details">
|
||||
<h:form acceptcharset="UTF-8" id="space-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="spacelink-details">
|
||||
<h:form acceptcharset="UTF-8" id="spacelink-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
<f:loadBundle basename="alfresco.version" var="version"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="system-information-form">
|
||||
<h:form acceptcharset="UTF-8" id="system-information-form">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="undocheckout-file">
|
||||
<h:form acceptcharset="UTF-8" id="undocheckout-file">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -44,7 +44,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="update-file1">
|
||||
<h:form acceptcharset="UTF-8" id="update-file1">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
@@ -147,7 +147,7 @@
|
||||
<% } %>
|
||||
</r:uploadForm>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="update-file2">
|
||||
<h:form acceptcharset="UTF-8" id="update-file2">
|
||||
</table>
|
||||
<% PanelGenerator.generatePanelEnd(out, request.getContextPath(), "white"); %>
|
||||
</td>
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="missing-working-copy">
|
||||
<h:form acceptcharset="UTF-8" id="missing-working-copy">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="forum-details">
|
||||
<h:form acceptcharset="UTF-8" id="forum-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -38,7 +38,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="browse-topics">
|
||||
<h:form acceptcharset="UTF-8" id="browse-topics">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing=0 cellpadding=2>
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="forums-details">
|
||||
<h:form acceptcharset="UTF-8" id="forums-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -38,7 +38,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="browse-forums">
|
||||
<h:form acceptcharset="UTF-8" id="browse-forums">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing=0 cellpadding=2>
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="topic-details">
|
||||
<h:form acceptcharset="UTF-8" id="topic-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -38,7 +38,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="browse-posts">
|
||||
<h:form acceptcharset="UTF-8" id="browse-posts">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing=0 cellpadding=2>
|
||||
|
@@ -38,7 +38,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="add-user-group">
|
||||
<h:form acceptcharset="UTF-8" id="add-user-group">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="delete-group">
|
||||
<h:form acceptcharset="UTF-8" id="delete-group">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -38,7 +38,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="groups">
|
||||
<h:form acceptcharset="UTF-8" id="groups">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -62,7 +62,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="new-group">
|
||||
<h:form acceptcharset="UTF-8" id="new-group">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -65,7 +65,7 @@
|
||||
<%-- load a bundle of properties I18N strings here --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="loginForm" >
|
||||
<h:form acceptcharset="UTF-8" id="loginForm" >
|
||||
|
||||
<table width=100% height=98% align=center>
|
||||
<tr width=100% align=center>
|
||||
|
@@ -55,7 +55,7 @@
|
||||
<%-- load a bundle of properties I18N strings here --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="loggedOutForm" >
|
||||
<h:form acceptcharset="UTF-8" id="loggedOutForm" >
|
||||
|
||||
<table width=100% height=90% align=center>
|
||||
<tr width=100% align=center>
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="invite-users">
|
||||
<h:form acceptcharset="UTF-8" id="invite-users">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="invite-users">
|
||||
<h:form acceptcharset="UTF-8" id="invite-users">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="users">
|
||||
<h:form acceptcharset="UTF-8" id="users">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="users">
|
||||
<h:form acceptcharset="UTF-8" id="users">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="remove-user">
|
||||
<h:form acceptcharset="UTF-8" id="remove-user">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="remove-user">
|
||||
<h:form acceptcharset="UTF-8" id="remove-user">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="has-mimetype-condition">
|
||||
<h:form acceptcharset="UTF-8" id="has-mimetype-condition">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -47,7 +47,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="contains-text-condition">
|
||||
<h:form acceptcharset="UTF-8" id="contains-text-condition">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="has-aspect-condition">
|
||||
<h:form acceptcharset="UTF-8" id="has-aspect-condition">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="in-category-condition">
|
||||
<h:form acceptcharset="UTF-8" id="in-category-condition">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="is-subtype-condition">
|
||||
<h:form acceptcharset="UTF-8" id="is-subtype-condition">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="delete-all">
|
||||
<h:form acceptcharset="UTF-8" id="delete-all">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="delete-item">
|
||||
<h:form acceptcharset="UTF-8" id="delete-item">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="delete-listed">
|
||||
<h:form acceptcharset="UTF-8" id="delete-listed">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="deleteditem-details">
|
||||
<h:form acceptcharset="UTF-8" id="deleteditem-details">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="recover-all">
|
||||
<h:form acceptcharset="UTF-8" id="recover-all">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="recover-item">
|
||||
<h:form acceptcharset="UTF-8" id="recover-item">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="recover-listed">
|
||||
<h:form acceptcharset="UTF-8" id="recover-listed">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="recovery-report">
|
||||
<h:form acceptcharset="UTF-8" id="recovery-report">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -78,7 +78,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="trashcan">
|
||||
<h:form acceptcharset="UTF-8" id="trashcan">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -65,7 +65,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="edit-my-pass">
|
||||
<h:form acceptcharset="UTF-8" id="edit-my-pass">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -64,7 +64,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="edit-pass">
|
||||
<h:form acceptcharset="UTF-8" id="edit-pass">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -40,7 +40,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="delete-user">
|
||||
<h:form acceptcharset="UTF-8" id="delete-user">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -65,7 +65,7 @@
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<%-- set the form name here --%>
|
||||
<h:form acceptCharset="UTF-8" id="edit-user">
|
||||
<h:form acceptcharset="UTF-8" id="edit-user">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="user-console">
|
||||
<h:form acceptcharset="UTF-8" id="user-console">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -62,7 +62,7 @@
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="users">
|
||||
<h:form acceptcharset="UTF-8" id="users">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
|
@@ -54,7 +54,7 @@ if (dialog != null && dialog.getFileName() != null)
|
||||
<%-- load a bundle of properties with I18N strings --%>
|
||||
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="add-content-upload-start">
|
||||
<h:form acceptcharset="UTF-8" id="add-content-upload-start">
|
||||
|
||||
<%-- Main outer table --%>
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
@@ -169,7 +169,7 @@ if (dialog != null && dialog.getFileName() != null)
|
||||
</r:uploadForm>
|
||||
<% } %>
|
||||
|
||||
<h:form acceptCharset="UTF-8" id="add-content-upload-end" onsubmit="return validate();">
|
||||
<h:form acceptcharset="UTF-8" id="add-content-upload-end" onsubmit="return validate();">
|
||||
<% if (fileUploaded) { %>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user