This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a change to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git. from 662a3f9 Improved: Remove Compdoc functionality from content manager (OFBIZ-10476) new 432c7bd Fixed: Use from-field pattern instead of value=${***} pattern in 'set' element (OFBIZ-9607) new da13424 Fixed: issue put in with r1160964 (9 years, 5 months ago) The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: applications/content/widget/contentsetup/ContentSetupForms.xml | 4 ++-- applications/content/widget/forum/ForumScreens.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) |
This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git commit 432c7bde98df42511a565d040369ed290f2d47d4 Author: Jacques Le Roux <[hidden email]> AuthorDate: Sat Feb 13 17:55:29 2021 +0100 Fixed: Use from-field pattern instead of value=${***} pattern in 'set' element (OFBIZ-9607) Fixes a syntax issue spotted while testing FreeMarker 2.3.31 --- applications/content/widget/forum/ForumScreens.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/content/widget/forum/ForumScreens.xml b/applications/content/widget/forum/ForumScreens.xml index 23ba20e..f8bef82 100644 --- a/applications/content/widget/forum/ForumScreens.xml +++ b/applications/content/widget/forum/ForumScreens.xml @@ -26,7 +26,7 @@ under the License. <actions> <set field="headerItem" value="Forum"/> <property-map resource="ContentUiLabels" map-name="uiLabelMap" global="true"/> - <set field="pageTitle" from-field="uiLabelMap.[titleProperty]"/> + <set field="pageTitle" from-field="uiLabelMap.${titleProperty}"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
In reply to this post by jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git commit da134243f7993496ffb4c02c5dc8921aa04f2d20 Author: Jacques Le Roux <[hidden email]> AuthorDate: Sat Feb 13 18:07:23 2021 +0100 Fixed: issue put in with r1160964 (9 years, 5 months ago) Fixes a syntax issue spotted while testing FreeMarker 2.3.31 --- applications/content/widget/contentsetup/ContentSetupForms.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/content/widget/contentsetup/ContentSetupForms.xml b/applications/content/widget/contentsetup/ContentSetupForms.xml index b3b4db7..355cc84 100644 --- a/applications/content/widget/contentsetup/ContentSetupForms.xml +++ b/applications/content/widget/contentsetup/ContentSetupForms.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ofbiz.apache.org/Widget-Form" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form http://ofbiz.apache.org/dtds/widget-form.xsd"> <!-- ContentType forms --> <form name="AddContentType" target="addContentType" title="" type="single" @@ -214,7 +214,7 @@ under the License. <form name="UpdateContentPurposeOperation" target="" title="" type="list" list-name="contentList" odd-row-style="alternate-row" header-row-style="header-row-2" default-table-style="basic-table hover-bar"> <actions> - <entity-one entity-name="ContentPurposeOperation" use-cache="false"/> + <entity-condition entity-name="ContentPurposeOperation" use-cache="false"/> </actions> <auto-fields-service service-name="updateContentPurposeOperation" default-field-type="display"/> <field name="deleteLink" title=" " widget-style="buttontext"> |
Free forum by Nabble | Edit this page |