You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This item bugs python-docx for me. I'll admit I'm using a 2.5-year-old version of the package, since I needed to modify stuff for my own usecase, so I am not sure whether this has been fixed after that. I was looking for whether this had been solved somehow, and it seems it is very much related to this issue.
Investigation
I see in the pkgreader that the target_mode can be used to identify external targets, and that external targets receive special treatment to avoid such zipfile issues. External targets are recognized in the relationship file for e.g. hyperlinks to web sites, and add a Target attribute to the <Relationship> object.
From what I gather, RT.HYPERLINK elements that have a Target starting with # should be treated specially - like some sort of internal bookmark relationship (or similar).
The text was updated successfully, but these errors were encountered:
I'm inclined to think the quick fix (if you're patching your fork) is to add code to _SerializedRelationship.is_external to catch this case and report the relationship as external. docx.opc.oxml.CT_Relationship.target_mode is another possibility, adding something like:
If you want to study the spec, perhaps there is some mention there or clarification of the criteria for internal/external and a more robust long-term behavior could be proposed.
I suppose an alternative is to add code that distinguishes "internal" hyperlinks from internal "parts" and only loads internal part references. But that sounds like a bigger deal that would invoke a broader scope. If I was going to do that I would rework the whole docx.opc.pkgreader module which would benefit from a broad refactoring (but isn't going to get one from me anytime soon :)
Now that I'm thinking about it, maybe just a try-except-continue around the part loading bit would be a better alternative, since that would also address the NULL target issue. Maybe that could just wrap that blob = phys_reader.blob_for(partname) L114 in your stacktrace and have continue there if it catches a KeyError, which essentially skips trying to load that part.
The document below contains a picture with a hyperlink to an internal bookmark.
PictureBookmarks.docx (The very last picture links to the very first Heading1)
I get this error message when reading the file using python-docx:
KeyError: "There is no item named 'word/#MyBookmark' in the archive"
Stack trace
How to recreate
This is achieved by:
Then the hyperlink ends up like this, notice the
a:hlinkClick
relationship ID:Now, in
word/_rels/document.xml.rels
, we get:This item bugs python-docx for me. I'll admit I'm using a 2.5-year-old version of the package, since I needed to modify stuff for my own usecase, so I am not sure whether this has been fixed after that. I was looking for whether this had been solved somehow, and it seems it is very much related to this issue.
Investigation
I see in the
pkgreader
that thetarget_mode
can be used to identify external targets, and that external targets receive special treatment to avoid such zipfile issues. External targets are recognized in the relationship file for e.g. hyperlinks to web sites, and add aTarget
attribute to the<Relationship>
object.From what I gather,
RT.HYPERLINK
elements that have aTarget
starting with#
should be treated specially - like some sort of internal bookmark relationship (or similar).The text was updated successfully, but these errors were encountered: