You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Tobias Bocanegra (JIRA)" <ji...@apache.org> on 2016/12/19 03:53:58 UTC

[jira] [Created] (JCRVLT-147) Vault serialization doesn't handle xmltext and xmlcharacter correctly

Tobias Bocanegra created JCRVLT-147:
---------------------------------------

             Summary: Vault serialization doesn't handle xmltext and xmlcharacter correctly
                 Key: JCRVLT-147
                 URL: https://issues.apache.org/jira/browse/JCRVLT-147
             Project: Jackrabbit FileVault
          Issue Type: Bug
          Components: Packaging
    Affects Versions: 3.1.30
            Reporter: Tobias Bocanegra
            Assignee: Tobias Bocanegra


Serializing a node structure that has {{jcr:xmltext}} nodes, are transformed into xml-text instead of elements in the .content.xml:

expected:
{noformat}
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
    jcr:primaryType="nt:unstructured">
    <a jcr:primaryType="nt:unstructured">
        <jcr:xmltext 
            jcr:primaryType="nt:unstructured"
            jcr:xmlcharacters="Hello, World." />
    </a>
</jcr:root>
{noformat}

actual:
{noformat}
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
    jcr:primaryType="nt:unstructured">
    <a jcr:primaryType="nt:unstructured">Hello, World.</a>
</jcr:root>
{noformat}





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)