From 59dc196c092b4cd8f0cb9157fd2bb68b72ba0716 Mon Sep 17 00:00:00 2001 From: pietrangelo Date: Thu, 4 Apr 2019 16:39:51 +0200 Subject: [PATCH 1/2] set release to 5.1.0 --- README.md | 2 +- admin-console/pom.xml | 8 ++++---- engine/pom.xml | 4 ++-- pom.xml | 2 +- portal-ui/pom.xml | 14 +++++++------- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 54cc7bb0f..7b491f841 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ It provides the basic structure, tools, and functionality to build an instance o 2. **admin-console**, includes tools to manage administrative core features and WCMS functionality 3. **portal-ui**, provides tools to create interactive web apps UI/UX -The Entando platform **v5.1.0-SNAPSHOT** project includes also the following Github projects: +The Entando platform **v5.1.0** project includes also the following Github projects: * **entando-components**: https://github.com/entando/entando-components. Entando platform relies on a number of components or extensions that add functionality not included with the standard Entando platform. There are two types of components: Plugins and Bundles. Plugins extend the functionality of Entando engine, admin-console and portal-ui; Bundles extend the functionality of UI/UX Applications. diff --git a/admin-console/pom.xml b/admin-console/pom.xml index 6fe37a483..dc1ff9863 100644 --- a/admin-console/pom.xml +++ b/admin-console/pom.xml @@ -4,11 +4,11 @@ entando-core org.entando.entando - 5.1.0-SNAPSHOT + 5.1.0 org.entando.entando entando-admin-console - 5.1.0-SNAPSHOT + 5.1.0 war Entando Core: Administration Console Entando Administration Console: an agile, modern and user-centric open source Portal platform. @@ -233,12 +233,12 @@ org.entando.entando entando-engine - 5.1.0-SNAPSHOT + 5.1.0 org.entando.entando entando-engine - 5.1.0-SNAPSHOT + 5.1.0 test-jar test diff --git a/engine/pom.xml b/engine/pom.xml index 71df9dd2b..a7643f1b4 100644 --- a/engine/pom.xml +++ b/engine/pom.xml @@ -5,12 +5,12 @@ entando-core org.entando.entando - 5.1.0-SNAPSHOT + 5.1.0 org.entando.entando entando-engine jar - 5.1.0-SNAPSHOT + 5.1.0 Entando Core: Engine Entando Engine: an agile, modern and user-centric open source Portal platform. http://www.entando.com/ diff --git a/pom.xml b/pom.xml index 9473762c1..d25d4da3e 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.entando.entando entando-core - 5.1.0-SNAPSHOT + 5.1.0 pom Entando Core Entando Core: an agile, modern and user-centric open source Portal platform. diff --git a/portal-ui/pom.xml b/portal-ui/pom.xml index 06a4a65dc..1680d443c 100644 --- a/portal-ui/pom.xml +++ b/portal-ui/pom.xml @@ -4,11 +4,11 @@ entando-core org.entando.entando - 5.1.0-SNAPSHOT + 5.1.0 org.entando.entando entando-portal-ui - 5.1.0-SNAPSHOT + 5.1.0 war Entando Core: Portal UI Entando Portal UI: an agile, modern and user-centric open source Portal platform. @@ -232,12 +232,12 @@ org.entando.entando entando-engine - 5.1.0-SNAPSHOT + 5.1.0 org.entando.entando entando-engine - 5.1.0-SNAPSHOT + 5.1.0 test-jar test @@ -247,18 +247,18 @@ org.entando.entando entando-admin-console - 5.1.0-SNAPSHOT + 5.1.0 org.entando.entando entando-admin-console - 5.1.0-SNAPSHOT + 5.1.0 war org.entando.entando entando-admin-console - 5.1.0-SNAPSHOT + 5.1.0 test-jar test From f69dfa73aa6131f56bc66554b4858db482658359 Mon Sep 17 00:00:00 2001 From: "Matteo E. Minnai" Date: Thu, 9 Jul 2026 12:51:32 +0200 Subject: [PATCH 2/2] ESB-1157 Fix XEE in PageModelDOM --- .../agiletec/aps/system/services/pagemodel/PageModelDOM.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engine/src/main/java/com/agiletec/aps/system/services/pagemodel/PageModelDOM.java b/engine/src/main/java/com/agiletec/aps/system/services/pagemodel/PageModelDOM.java index 3e792ed61..d2b65b59c 100644 --- a/engine/src/main/java/com/agiletec/aps/system/services/pagemodel/PageModelDOM.java +++ b/engine/src/main/java/com/agiletec/aps/system/services/pagemodel/PageModelDOM.java @@ -109,6 +109,10 @@ private Element buildSketchXML(Frame frame) { private void decodeDOM(String xmlText) throws ApsSystemException { SAXBuilder builder = new SAXBuilder(); builder.setValidation(false); + builder.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); + builder.setFeature("http://xml.org/sax/features/external-general-entities", false); + builder.setFeature("http://xml.org/sax/features/external-parameter-entities", false); + builder.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false); StringReader reader = new StringReader(xmlText); try { _doc = builder.build(reader);