You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Jukka Zitting (JIRA)" <ji...@apache.org> on 2007/08/08 08:54:59 UTC

[jira] Closed: (JCR-543) DocViewSAXEventGenerator produces invalid SAX stream

     [ https://issues.apache.org/jira/browse/JCR-543?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jukka Zitting closed JCR-543.
-----------------------------


> DocViewSAXEventGenerator produces invalid SAX stream
> ----------------------------------------------------
>
>                 Key: JCR-543
>                 URL: https://issues.apache.org/jira/browse/JCR-543
>             Project: Jackrabbit
>          Issue Type: Bug
>          Components: xml
>    Affects Versions: 1.0.1
>            Reporter: Jaka Jaksic
>            Assignee: Stefan Guggisberg
>             Fix For: 1.1
>
>
> ISO9075.encode() is called twice in DocViewSAXEventGenerator.leaving(), which produces invalid endElement events.
> Faulty block of code (note the encode method called twice):
>         // encode node name to make sure it's a valid xml name
>         name = ISO9075.encode(name);
>         // element name
>         String elemName;
>         if (node.getDepth() == 0) {
>             // root node needs a name
>             elemName = jcrRoot;
>         } else {
>             // encode node name to make sure it's a valid xml name
>             elemName = ISO9075.encode(name);
>         }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.