Skip to content

Commit 5e33645

Browse files
authored
improved messages for OPF-058 and OPF-059 (PR #811) / fixes #804
* improve message for OPF-058 and OPF-059 and include spine idref * test cleanup - first batch * fixing JSON tests
1 parent 0119927 commit 5e33645

File tree

71 files changed

+8762
-1176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+8762
-1176
lines changed

src/main/java/com/adobe/epubcheck/ctc/EpubNCXCheck.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ private void checkNcxDoc(String navDocEntry)
173173

174174
if (path != null && !path.equals(tocFileName) && !path.equals(navDocEntry) && !tocLinkSet.contains(path))
175175
{
176-
report.message(MessageId.OPF_059, EPUBLocation.create(navDocEntry, path));
176+
report.message(MessageId.OPF_059, EPUBLocation.create(navDocEntry, path), si.getIdref());
177177
}
178178
}
179179
else

src/main/java/com/adobe/epubcheck/ctc/EpubNavCheck.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.adobe.epubcheck.ctc;
22

3-
import java.io.File;
43
import java.util.HashSet;
54
import java.util.Vector;
65
import java.util.zip.ZipEntry;
@@ -21,7 +20,6 @@
2120
import com.adobe.epubcheck.ctc.epubpackage.SpineItem;
2221
import com.adobe.epubcheck.messages.MessageId;
2322
import com.adobe.epubcheck.opf.DocumentValidator;
24-
import com.adobe.epubcheck.util.EPUBVersion;
2523
import com.adobe.epubcheck.util.EpubConstants;
2624
import com.adobe.epubcheck.util.FeatureEnum;
2725
import com.adobe.epubcheck.util.HandlerUtil;
@@ -193,7 +191,7 @@ else if (type.equals("landmarks"))
193191

194192
if (path != null && !path.equals(tocFileName) && !path.equals(navDocEntry) && !tocLinkSet.contains(path))
195193
{
196-
report.message(MessageId.OPF_058, EPUBLocation.create(navDocEntry, -1, -1, path));
194+
report.message(MessageId.OPF_058, EPUBLocation.create(navDocEntry, -1, -1, path), si.getIdref());
197195
}
198196
}
199197
}

src/main/resources/com/adobe/epubcheck/messages/MessageBundle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ OPF_054=Date value '%1$s' is not valid as per http://www.w3.org/TR/NOTE-datetime
214214
OPF_055=%1$s tag is empty.
215215
OPF_056=Media type '%1$s' is not a core audio type.
216216
OPF_057=Image file length exceeds recommended size.
217-
OPF_058=Spine item has no TOC entry reference.
218-
OPF_058_SUG=Every spine item in the manifest should be referenced by at least one TOC entry.
219-
OPF_059=Spine item has no NCX entry reference.
220-
OPF_059_SUG=Every spine item in the manifest should be referenced by at least one NCX entry.
217+
OPF_058=Spine item '%1$s' is not referenced from the TOC in the Nav Doc.
218+
OPF_058_SUG=Every spine item in the manifest should be referenced by at least one TOC entry in the Nav Doc.
219+
OPF_059=Spine item '%1$s' is not referenced from the TOC in the NCX.
220+
OPF_059_SUG=Every spine item in the manifest should be referenced by at least one TOC entry in the NCX file.
221221
OPF_060=Duplicate entry in the ZIP file: '%1$s'.
222222
OPF_061=Duplicate entry in the ZIP file (after Unicode NFC normalization) '%1$s'.
223223
OPF_062=Found Adobe page-map attribute on spine element in opf file.

src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings_expected_results.json

+15-8
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"path" : "./com/adobe/epubcheck/test/command_line/failonwarnings.epub",
55
"filename" : "failonwarnings.epub",
66
"checkerVersion" : "4.0.3-SNAPSHOT",
7-
"checkDate" : "12-31-2016 01:11:58",
8-
"elapsedTime" : 58,
7+
"checkDate" : "11-27-2017 20:48:48",
8+
"elapsedTime" : 70,
99
"nFatal" : 0,
1010
"nError" : 0,
1111
"nWarning" : 1,
12-
"nUsage" : 6
12+
"nUsage" : 7
1313
},
1414
"publication" : {
1515
"publisher" : null,
@@ -358,19 +358,26 @@
358358
}, {
359359
"ID" : "OPF-059",
360360
"severity" : "USAGE",
361-
"message" : "Spine item has no NCX entry reference.",
361+
"message" : "Spine item 'page02' is not referenced from the TOC in the NCX.",
362362
"additionalLocations" : 0,
363363
"locations" : [ {
364364
"path" : "OPS/toc.ncx",
365365
"line" : -1,
366366
"column" : -1,
367-
"context" : "OPS/inline_css.xhtml"
368-
}, {
367+
"context" : "OPS/style_tag_css.xhtml"
368+
} ],
369+
"suggestion" : "Every spine item in the manifest should be referenced by at least one TOC entry in the NCX file."
370+
}, {
371+
"ID" : "OPF-059",
372+
"severity" : "USAGE",
373+
"message" : "Spine item 'page03' is not referenced from the TOC in the NCX.",
374+
"additionalLocations" : 0,
375+
"locations" : [ {
369376
"path" : "OPS/toc.ncx",
370377
"line" : -1,
371378
"column" : -1,
372-
"context" : "OPS/style_tag_css.xhtml"
379+
"context" : "OPS/inline_css.xhtml"
373380
} ],
374-
"suggestion" : "Every spine item in the manifest should be referenced by at least one NCX entry."
381+
"suggestion" : "Every spine item in the manifest should be referenced by at least one TOC entry in the NCX file."
375382
} ]
376383
}

src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile_expected_results.json

+15-8
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"path" : "./com/adobe/epubcheck/test/command_line/jsonfile.epub",
55
"filename" : "jsonfile.epub",
66
"checkerVersion" : "4.0.3-SNAPSHOT",
7-
"checkDate" : "12-31-2016 18:59:12",
8-
"elapsedTime" : 39,
7+
"checkDate" : "11-27-2017 21:25:45",
8+
"elapsedTime" : 46,
99
"nFatal" : 0,
1010
"nError" : 0,
1111
"nWarning" : 0,
12-
"nUsage" : 6
12+
"nUsage" : 7
1313
},
1414
"publication" : {
1515
"publisher" : null,
@@ -346,19 +346,26 @@
346346
}, {
347347
"ID" : "OPF-059",
348348
"severity" : "USAGE",
349-
"message" : "Spine item has no NCX entry reference.",
349+
"message" : "Spine item 'page02' is not referenced from the TOC in the NCX.",
350350
"additionalLocations" : 0,
351351
"locations" : [ {
352352
"path" : "OPS/toc.ncx",
353353
"line" : -1,
354354
"column" : -1,
355-
"context" : "OPS/inline_css.xhtml"
356-
}, {
355+
"context" : "OPS/style_tag_css.xhtml"
356+
} ],
357+
"suggestion" : "Every spine item in the manifest should be referenced by at least one TOC entry in the NCX file."
358+
}, {
359+
"ID" : "OPF-059",
360+
"severity" : "USAGE",
361+
"message" : "Spine item 'page03' is not referenced from the TOC in the NCX.",
362+
"additionalLocations" : 0,
363+
"locations" : [ {
357364
"path" : "OPS/toc.ncx",
358365
"line" : -1,
359366
"column" : -1,
360-
"context" : "OPS/style_tag_css.xhtml"
367+
"context" : "OPS/inline_css.xhtml"
361368
} ],
362-
"suggestion" : "Every spine item in the manifest should be referenced by at least one NCX entry."
369+
"suggestion" : "Every spine item in the manifest should be referenced by at least one TOC entry in the NCX file."
363370
} ]
364371
}

src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings_expected_results.json

+15-8
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"path" : "./com/adobe/epubcheck/test/command_line/passonwarnings.epub",
55
"filename" : "passonwarnings.epub",
66
"checkerVersion" : "4.0.3-SNAPSHOT",
7-
"checkDate" : "12-31-2016 01:11:58",
8-
"elapsedTime" : 39,
7+
"checkDate" : "11-27-2017 20:48:47",
8+
"elapsedTime" : 80,
99
"nFatal" : 0,
1010
"nError" : 0,
1111
"nWarning" : 0,
12-
"nUsage" : 6
12+
"nUsage" : 7
1313
},
1414
"publication" : {
1515
"publisher" : null,
@@ -346,19 +346,26 @@
346346
}, {
347347
"ID" : "OPF-059",
348348
"severity" : "USAGE",
349-
"message" : "Spine item has no NCX entry reference.",
349+
"message" : "Spine item 'page02' is not referenced from the TOC in the NCX.",
350350
"additionalLocations" : 0,
351351
"locations" : [ {
352352
"path" : "OPS/toc.ncx",
353353
"line" : -1,
354354
"column" : -1,
355-
"context" : "OPS/inline_css.xhtml"
356-
}, {
355+
"context" : "OPS/style_tag_css.xhtml"
356+
} ],
357+
"suggestion" : "Every spine item in the manifest should be referenced by at least one TOC entry in the NCX file."
358+
}, {
359+
"ID" : "OPF-059",
360+
"severity" : "USAGE",
361+
"message" : "Spine item 'page03' is not referenced from the TOC in the NCX.",
362+
"additionalLocations" : 0,
363+
"locations" : [ {
357364
"path" : "OPS/toc.ncx",
358365
"line" : -1,
359366
"column" : -1,
360-
"context" : "OPS/style_tag_css.xhtml"
367+
"context" : "OPS/inline_css.xhtml"
361368
} ],
362-
"suggestion" : "Every spine item in the manifest should be referenced by at least one NCX entry."
369+
"suggestion" : "Every spine item in the manifest should be referenced by at least one TOC entry in the NCX file."
363370
} ]
364371
}

src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadId_expected_results.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ERROR(CSS-001): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.
1414
WARNING(CSS-006): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(66,5): CSS position:fixed property should not be used in EPUBs.
1515
USAGE(ACC-008): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.xhtml(-1,-1): Navigation Document has no 'landmarks nav' element.
1616
USAGE(HTM-010): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(2,68): Namespace uri 'http://www.daisy.org/z3986/2005/ncx/' was found.
17-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
18-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
17+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page02' is not referenced from the TOC in the NCX.
18+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page03' is not referenced from the TOC in the NCX.
1919
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(6,62): Document links to multiple CSS files.
2020
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(7,66): Document links to multiple CSS files.
2121
USAGE(ACC-014): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(2,5): Value of CSS property 'font-size' does not use a relative size: '14px'

src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadMessage_expected_results.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ERROR(CSS-001): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.
1515
WARNING(CSS-006): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(66,5): CSS position:fixed property should not be used in EPUBs.
1616
USAGE(ACC-008): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.xhtml(-1,-1): Navigation Document has no 'landmarks nav' element.
1717
USAGE(HTM-010): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(2,68): Namespace uri 'http://www.daisy.org/z3986/2005/ncx/' was found.
18-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
19-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
18+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page02' is not referenced from the TOC in the NCX.
19+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page03' is not referenced from the TOC in the NCX.
2020
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(6,62): Document links to multiple CSS files.
2121
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(7,66): Document links to multiple CSS files.
2222
USAGE(ACC-014): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(2,5): Value of CSS property 'font-size' does not use a relative size: '14px'

src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadSeverity_expected_results.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ERROR(CSS-001): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.
1414
WARNING(CSS-006): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(66,5): CSS position:fixed property should not be used in EPUBs.
1515
USAGE(ACC-008): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.xhtml(-1,-1): Navigation Document has no 'landmarks nav' element.
1616
USAGE(HTM-010): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(2,68): Namespace uri 'http://www.daisy.org/z3986/2005/ncx/' was found.
17-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
18-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
17+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page02' is not referenced from the TOC in the NCX.
18+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page03' is not referenced from the TOC in the NCX.
1919
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(6,62): Document links to multiple CSS files.
2020
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(7,66): Document links to multiple CSS files.
2121
USAGE(ACC-014): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(2,5): Value of CSS property 'font-size' does not use a relative size: '14px'

src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideMissingFile_expected_results.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ERROR(CSS-001): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.
1414
WARNING(CSS-006): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(66,5): CSS position:fixed property should not be used in EPUBs.
1515
USAGE(ACC-008): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.xhtml(-1,-1): Navigation Document has no 'landmarks nav' element.
1616
USAGE(HTM-010): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(2,68): Namespace uri 'http://www.daisy.org/z3986/2005/ncx/' was found.
17-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
18-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
17+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page02' is not referenced from the TOC in the NCX.
18+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page03' is not referenced from the TOC in the NCX.
1919
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(6,62): Document links to multiple CSS files.
2020
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(7,66): Document links to multiple CSS files.
2121
USAGE(ACC-014): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(2,5): Value of CSS property 'font-size' does not use a relative size: '14px'

src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideOk_expected_results.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ ERROR(CSS-001): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.
1313
WARNING(CSS-006): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(66,5): CSS position:fixed property should not be used in EPUBs.
1414
USAGE(ACC-008): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.xhtml(-1,-1): Navigation Document has no 'landmarks nav' element.
1515
USAGE(HTM-010): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(2,68): Namespace uri 'http://www.daisy.org/z3986/2005/ncx/' was found.
16-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
17-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
16+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page02' is not referenced from the TOC in the NCX.
17+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page03' is not referenced from the TOC in the NCX.
1818
ERROR(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(6,62): (severity overridden from USAGE) This is an overridden message
1919
ERROR(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(7,66): (severity overridden from USAGE) This is an overridden message
2020
USAGE(ACC-014): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(2,5): Value of CSS property 'font-size' does not use a relative size: '14px'

src/test/resources/com/adobe/epubcheck/test/command_line/severity_usage_expected_results.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ ERROR(CSS-001): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.
1313
WARNING(CSS-006): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(66,5): CSS position:fixed property should not be used in EPUBs.
1414
USAGE(ACC-008): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.xhtml(-1,-1): Navigation Document has no 'landmarks nav' element.
1515
USAGE(HTM-010): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(2,68): Namespace uri 'http://www.daisy.org/z3986/2005/ncx/' was found.
16-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
17-
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item has no NCX entry reference.
16+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page02' is not referenced from the TOC in the NCX.
17+
USAGE(OPF-059): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/toc.ncx(-1,-1): Spine item 'page03' is not referenced from the TOC in the NCX.
1818
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(6,62): Document links to multiple CSS files.
1919
USAGE(CSS-012): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/external_css.xhtml(7,66): Document links to multiple CSS files.
2020
USAGE(ACC-014): ./com/adobe/epubcheck/test/command_line/severity.epub/OPS/style.css(2,5): Value of CSS property 'font-size' does not use a relative size: '14px'

src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile_expected_results.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<jhove xmlns="http://hul.harvard.edu/ois/xml/ns/jhove"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
date="2017-01-02"
4+
date="2017-11-26"
55
name="epubcheck"
66
release="4.0.3-SNAPSHOT"
77
xsi:schemaLocation="http://hul.harvard.edu/ois/xml/ns/jhove http://hul.harvard.edu/ois/xml/xsd/jhove/jhove.xsd">
8-
<date>2017-01-02T18:40:26+01:00</date>
8+
<date>2017-11-27T21:25:45+01:00</date>
99
<repInfo uri="/Users/tofi/dev/epubcheck/target/test-classes/com/adobe/epubcheck/test/command_line/xmlfile.epub">
10-
<created>2017-01-02T18:34:14Z</created>
10+
<created>2017-11-27T21:24:50Z</created>
1111
<lastModified>2012-10-10T12:00:00Z</lastModified>
1212
<format>application/epub+zip</format>
1313
<version>3.0.1</version>
@@ -18,8 +18,8 @@
1818
<message severity="info" subMessage="ACC-007">ACC-007, HINT, [Content Documents do not use 'epub:type' attributes for semantic inflection.], OPS/inline_css.xhtml</message>
1919
<message severity="info" subMessage="ACC-008">ACC-008, HINT, [Navigation Document has no 'landmarks nav' element.], OPS/toc.xhtml</message>
2020
<message severity="info" subMessage="HTM-010">HTM-010, HINT, [Namespace uri 'http://www.daisy.org/z3986/2005/ncx/' was found.], OPS/toc.ncx (2-68)</message>
21-
<message severity="info" subMessage="OPF-059">OPF-059, HINT, [Spine item has no NCX entry reference.], OPS/toc.ncx</message>
22-
<message severity="info" subMessage="OPF-059">OPF-059, HINT, [Spine item has no NCX entry reference.], OPS/toc.ncx</message>
21+
<message severity="info" subMessage="OPF-059">OPF-059, HINT, [Spine item 'page02' is not referenced from the TOC in the NCX.], OPS/toc.ncx</message>
22+
<message severity="info" subMessage="OPF-059">OPF-059, HINT, [Spine item 'page03' is not referenced from the TOC in the NCX.], OPS/toc.ncx</message>
2323
<message severity="info" subMessage="CSS-009">CSS-009, HINT, [Use of certain CSS such as Columns, Transforms, Transitions, box-sizing or KeyFrames can cause pagination issues.], OPS/style.css (3-23)</message>
2424
<message severity="info" subMessage="CSS-009">CSS-009, HINT, [Use of certain CSS such as Columns, Transforms, Transitions, box-sizing or KeyFrames can cause pagination issues.], OPS/style.css (8-23)</message>
2525
<message severity="info" subMessage="CSS-009">CSS-009, HINT, [Use of certain CSS such as Columns, Transforms, Transitions, box-sizing or KeyFrames can cause pagination issues.], OPS/style_tag_css.xhtml (8-31)</message>
@@ -62,7 +62,7 @@
6262
<property>
6363
<name>CreationDate</name>
6464
<values arity="Scalar" type="Date">
65-
<value>2016-12-31T01:11:26Z</value>
65+
<value>2017-11-27T21:24:50Z</value>
6666
</values>
6767
</property>
6868
<property>

0 commit comments

Comments
 (0)