Hi all,

I am having issues using the XSLFSlideShow class, when I try to
retrieve the list of relationships from a slide PackagePart, I am only
getting the slide layout relationships.

There should be image and notes relationships as well, I've tried this
with my own code as well as using the (mispelling is correct)
XSLFSlideShow.getNodesPart(...) function. I am certain that the notes
are present in the file, since i've inspected the files.

Same behavior is happening with every pptx file, the layout
relationships are parsed, but the notes relationships are entirely
absent.

e.g. On a slide which has both notes and image relationships:

      for (PackageRelationship rel : slidePart.getRelationships()) {
        System.out.println(rel.getRelationshipType());
        System.out.println(rel.getTargetURI());
      }

will print out:
http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout
/ppt/slideLayouts/slideLayout2.xml

I'm using version 3.5. Is this fixed/working in a later version?

I am happy to go digging through the code myself, I would just like
some theories/ideas/pointers to get me started.
 - Katie

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to