You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by vo...@apache.org on 2022/10/17 19:56:41 UTC

[myfaces] branch main updated: MYFACES-4484: Add forward slash to composite namespace

This is an automated email from the ASF dual-hosted git repository.

volosied pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/main by this push:
     new 44962db24 MYFACES-4484: Add forward slash to composite namespace
     new 736771751 Merge pull request #349 from volosied/MYFACES-4484
44962db24 is described below

commit 44962db241076d7bdd2a1c2716d8dd9963eef5f8
Author: Volodymyr Siedlecki <vo...@gmail.com>
AuthorDate: Sun Oct 16 22:09:47 2022 -0400

    MYFACES-4484: Add forward slash to composite namespace
---
 .../myfaces/view/facelets/tag/composite/CompositeResourceLibrary.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/CompositeResourceLibrary.java b/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/CompositeResourceLibrary.java
index ea1865eb5..7731ff376 100644
--- a/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/CompositeResourceLibrary.java
+++ b/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/CompositeResourceLibrary.java
@@ -49,7 +49,7 @@ import org.apache.myfaces.view.facelets.tag.TagLibrary;
  */
 public class CompositeResourceLibrary implements TagLibrary
 {
-    public final static String NAMESPACE_PREFIX = "jakarta.faces.composite";
+    public final static String NAMESPACE_PREFIX = "jakarta.faces.composite/"; // Forward slash added under MYFACES-4484
     public final static String JCP_NAMESPACE_PREFIX = "http://xmlns.jcp.org/jsf/composite/";
     public final static String SUN_NAMESPACE_PREFIX = "http://java.sun.com/jsf/composite/";