Skip to content

Commit

Permalink
fix: allow links to resources embedded in content documents
Browse files Browse the repository at this point in the history
This commit checks that the linked resource is not in the spine before
reporting `OPF-067` ("The resource "…" must not be listed both as a
"link" element in the package metadata and as a manifest item.").

Effectively, this allows package links to publication resources in the
two cases identified in the EPUB 3.3 specification:

> Resources referenced from the link element are publication resources
> only when they are:
> - referenced from the spine; or
> - included or embedded in an EPUB content document

Fix #1454
  • Loading branch information
rdeltour committed Dec 23, 2022
1 parent dd00b88 commit 74871c6
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/adobe/epubcheck/opf/OPFChecker30.java
Expand Up @@ -412,10 +412,10 @@ private void checkLinkedResources()
LinkedResources links = ((OPFHandler30) opfHandler).getLinkedResources();
for (LinkedResource link : links.asList())
{
if (opfHandler.getItemByURL(link.getDocumentURL()).isPresent())
Optional<OPFItem> item = opfHandler.getItemByURL(link.getDocumentURL());
if (item.isPresent() && !item.get().isInSpine())
{
// FIXME 2022 check how to report the URL
report.message(MessageId.OPF_067, EPUBLocation.of(context), link.getDocumentURL().path());
report.message(MessageId.OPF_067, EPUBLocation.of(context), item.get().getPath());
}
}
}
Expand Down
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html xmlns:epub="http://www.idpf.org/2007/ops" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
lang="en">
<head>
<meta charset="utf-8" />
<title>Minimal EPUB</title>
<script id="meta-json" type="application/ld+json">
{
"@context" : "http://schema.org",
"name" : "test"
}
</script>
</head>
<body>
<h1>Loomings</h1>
<p>Call me Ishmael.</p>
</body>
</html>
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" xml:lang="en" lang="en">
<head>
<meta charset="utf-8"/>
<title>Minimal Nav</title>
</head>
<body>
<nav epub:type="toc">
<ol>
<li><a href="content_001.xhtml">content 001</a></li>
</ol>
</nav>
</body>
</html>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://www.idpf.org/2007/opf" version="3.0" xml:lang="en" unique-identifier="q">
<metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:title id="title">Minimal EPUB 3.0</dc:title>
<dc:language>en</dc:language>
<dc:identifier id="q">NOID</dc:identifier>
<meta property="dcterms:modified">2017-06-14T00:00:01Z</meta>
<link rel="record" href="content_001.xhtml#meta-json" media-type="application/xhtml+xml" hreflang="en"
/>
</metadata>
<manifest>
<item id="content_001" href="content_001.xhtml" media-type="application/xhtml+xml"/>
<item id="nav" href="nav.xhtml" media-type="application/xhtml+xml" properties="nav"/>
</manifest>
<spine>
<itemref idref="content_001"/>
</spine>
</package>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
<rootfiles>
<rootfile full-path="EPUB/package.opf" media-type="application/oebps-package+xml"/>
</rootfiles>
</container>
@@ -0,0 +1 @@
application/epub+zip
Expand Up @@ -7,8 +7,7 @@
<dc:language>en</dc:language>
<dc:identifier id="uid">NOID</dc:identifier>
<meta property="dcterms:modified">2019-01-01T12:00:00Z</meta>
<!--Linked resources MUST NOT be listed in the manifest.-->
<link rel="example:property" href="contents.xhtml#ch1" media-type="application/xhtml+xml"/>
<link rel="example:property" href="contents.xhtml" media-type="application/xhtml+xml"/>
</metadata>
<manifest>
<item id="t001" href="contents.xhtml" properties="nav" media-type="application/xhtml+xml"/>
Expand Down
Expand Up @@ -382,6 +382,16 @@ Feature: EPUB 3 — Package document
When checking file 'link-hreflang-not-well-formed-error.opf'
Then error OPF-092 is reported
And no other errors or warnings are reported

@spec @xref:sec-link-elem
Scenario: Allow a link to a resource referenced from the spine
When checking file 'link-to-spine-item-valid.opf'
Then no errors or warnings are reported

@spec @xref:sec-link-elem
Scenario: Allow a link to a resource embedded in a content document
When checking EPUB 'link-to-embedded-resource-valid'
Then no errors or warnings are reported


### 5.6 Manifest section
Expand Down

0 comments on commit 74871c6

Please sign in to comment.