4 Replies Latest reply on Feb 5, 2013 6:30 AM by aroxenhag

    Initial content xml text properties are split into multi valued properties

    aroxenhag

      I have some initial content that gets imported. It appears though, that for some reason text properties are split on commas and set on my node as multivalued properties. But I'd like the strings stay as is and get imported as one value. This is a part of the xml:

       

      <?xml version="1.0" encoding="UTF-8"?>

      <jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0">

        <sites jcr:primaryType="wmod:section" title="Sites">

          <mst jcr:primaryType="wmod:section" title="ModeShape Times">

            <section jcr:primaryType="wmod:section" title="News">

              <section jcr:primaryType="wmod:section" title="Politics">

                <story jcr:primaryType="wmod:story"

                  title="Winter vomiting bug threatens to ruin Christmas for thousands"

                  lead="Families face ruined Christmas celebrations as the worst-ever outbreak of the winter vomiting bug escalates sharply.">

                  <body>This is the body text. Please beware of commas until as they will turn this single valued property into a multi valued one..</body>

                </story>

              </section>

      ...

       

      I suspect there is some sequencing going on, replacing my text with a split version of it. I've seen there is config for text sequencers to do that anyway.

       

      How do I tell the import to not split the strings?

       

      My repository config is quite simple, without any sequencer config.