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
|
||||
|
Reference in New Issue
Block a user