This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release17.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git The following commit(s) were added to refs/heads/release17.12 by this push: new ce2f66b Fixed: Hyperlink title under form widget doesn't support character encoding for special characters (OFBIZ-12026) ce2f66b is described below commit ce2f66b7204d6695240acbb5c5e7e4364f7f999f Author: Jacques Le Roux <[hidden email]> AuthorDate: Fri Dec 11 13:40:53 2020 +0100 Fixed: Hyperlink title under form widget doesn't support character encoding for special characters (OFBIZ-12026) When we use any title with special characters for hyperlink tag, it shows broken string on UI, eg: <hyperlink description="${uiLabelMap.CommonImportExport}" target="ImportExport"> should render a button with the title "Import/Export. But it shows as Import/Export jleroux: I have noticed that the same happens with special French characters. So it's a general issue. The title (description in code) is HTML encoded and that does not work for special characters. I simply used a string encoder. Thanks: Pradeep Choudhary for report, Sourabh Jain for a possible but not general solution at OFBIZ-12023, ie using target-type="plain" --- applications/accounting/widget/GlSetupForms.xml | 4 ++-- .../org/apache/ofbiz/widget/renderer/macro/MacroFormRenderer.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/accounting/widget/GlSetupForms.xml b/applications/accounting/widget/GlSetupForms.xml index ff70d33..9cdc388 100644 --- a/applications/accounting/widget/GlSetupForms.xml +++ b/applications/accounting/widget/GlSetupForms.xml @@ -30,12 +30,12 @@ under the License. </hyperlink> </field> <field name="accounting" title=" " use-when="hasBasicPermission" widget-style="buttontext"> - <hyperlink description="${uiLabelMap.AccountingAccounting}" target="PartyAccountsSummary" target-type="plain"> + <hyperlink description="${uiLabelMap.AccountingAccounting}" target="PartyAccountsSummary"> <parameter param-name="organizationPartyId" from-field="partyId"/> </hyperlink> </field> <field name="importexport" title=" " use-when="hasBasicPermission" widget-style="buttontext"> - <hyperlink description="${uiLabelMap.CommonImportExport}" target="ImportExport" target-type="plain"> + <hyperlink description="${uiLabelMap.CommonImportExport}" target="ImportExport"> <parameter param-name="organizationPartyId" from-field="partyId"/> </hyperlink> </field> diff --git a/framework/widget/src/main/java/org/apache/ofbiz/widget/renderer/macro/MacroFormRenderer.java b/framework/widget/src/main/java/org/apache/ofbiz/widget/renderer/macro/MacroFormRenderer.java index cb498e2..01a6686 100644 --- a/framework/widget/src/main/java/org/apache/ofbiz/widget/renderer/macro/MacroFormRenderer.java +++ b/framework/widget/src/main/java/org/apache/ofbiz/widget/renderer/macro/MacroFormRenderer.java @@ -3093,7 +3093,7 @@ public final class MacroFormRenderer implements FormStringRenderer { public void makeHyperlinkByType(Appendable writer, String linkType, String linkStyle, String targetType, String target, Map<String, String> parameterMap, String description, String targetWindow, String confirmation, ModelFormField modelFormField, HttpServletRequest request, HttpServletResponse response, Map<String, Object> context) throws IOException { String realLinkType = WidgetWorker.determineAutoLinkType(linkType, target, targetType, request); - String encodedDescription = encode(description, modelFormField, context); + String encodedDescription = internalEncoder.encode(description); // get the parameterized pagination index and size fields int paginatorNumber = WidgetWorker.getPaginatorNumber(context); ModelForm modelForm = modelFormField.getModelForm(); |
Free forum by Nabble | Edit this page |