[epubcheck] branch master updated (cbc65f8 -> bba3b5b)
Eugene Zhukov
eugene-guest at moszumanska.debian.org
Mon Aug 17 08:21:23 UTC 2015
This is an automated email from the git hooks/post-receive script.
eugene-guest pushed a change to branch master
in repository epubcheck.
from cbc65f8 Moved the package to Git
new 2436fb5 Add upstream source
new 4e002d4 Fix Lintian warnings
new bba3b5b Switch away from CDBS build system
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
COPYING.txt | 19 +
README.md | 65 +
debian/changelog | 5 +-
debian/control | 9 +-
debian/copyright | 37 +-
debian/rules | 11 +-
docs/BookReporter.docx | Bin 0 -> 130807 bytes
docs/BookReporter.pdf | Bin 0 -> 627158 bytes
docs/ePubCheck-4.0-Preview.docx | Bin 0 -> 142686 bytes
docs/ePubCheck-4.0-Preview.pdf | Bin 0 -> 636476 bytes
pom.xml | 529 ++
src/main/assembly/README-dist.txt | 60 +
src/main/assembly/dist.xml | 64 +
src/main/assembly/src.xml | 21 +
.../java/com/adobe/epubcheck/api/EpubCheck.java | 333 +
.../com/adobe/epubcheck/api/EpubCheckFactory.java | 64 +
.../java/com/adobe/epubcheck/api/MasterReport.java | 148 +
.../java/com/adobe/epubcheck/api/QuietReport.java | 39 +
src/main/java/com/adobe/epubcheck/api/Report.java | 101 +
.../com/adobe/epubcheck/bitmap/BitmapChecker.java | 319 +
.../epubcheck/bitmap/BitmapCheckerFactory.java | 49 +
.../java/com/adobe/epubcheck/css/CSSChecker.java | 183 +
.../com/adobe/epubcheck/css/CSSCheckerFactory.java | 63 +
.../java/com/adobe/epubcheck/css/CSSHandler.java | 344 +
.../java/com/adobe/epubcheck/ctc/CheckManager.java | 73 +
.../com/adobe/epubcheck/ctc/ContentValidator.java | 16 +
.../java/com/adobe/epubcheck/ctc/EntitySearch.java | 187 +
.../adobe/epubcheck/ctc/Epub3StructureCheck.java | 64 +
.../java/com/adobe/epubcheck/ctc/EpubCSSCheck.java | 214 +
.../java/com/adobe/epubcheck/ctc/EpubCfiCheck.java | 83 +
.../epubcheck/ctc/EpubCheckContentFactory.java | 96 +
.../com/adobe/epubcheck/ctc/EpubExtLinksCheck.java | 114 +
.../epubcheck/ctc/EpubHTML5StructureCheck.java | 292 +
.../com/adobe/epubcheck/ctc/EpubLangCheck.java | 273 +
.../adobe/epubcheck/ctc/EpubMetaDataV2Check.java | 33 +
.../adobe/epubcheck/ctc/EpubMetaDataV3Check.java | 34 +
.../java/com/adobe/epubcheck/ctc/EpubNCXCheck.java | 226 +
.../java/com/adobe/epubcheck/ctc/EpubNavCheck.java | 177 +
.../adobe/epubcheck/ctc/EpubRenditionCheck.java | 145 +
.../java/com/adobe/epubcheck/ctc/EpubSVGCheck.java | 144 +
.../com/adobe/epubcheck/ctc/EpubScriptCheck.java | 220 +
.../com/adobe/epubcheck/ctc/EpubSpanCheck.java | 62 +
.../com/adobe/epubcheck/ctc/EpubSpineCheck.java | 99 +
.../adobe/epubcheck/ctc/EpubStyleSheetsCheck.java | 59 +
.../adobe/epubcheck/ctc/EpubTextContentCheck.java | 52 +
.../java/com/adobe/epubcheck/ctc/EpubTocCheck.java | 36 +
.../com/adobe/epubcheck/ctc/PackageReader.java | 321 +
.../java/com/adobe/epubcheck/ctc/XmlDocParser.java | 247 +
.../com/adobe/epubcheck/ctc/css/CSSSelector.java | 45 +
.../epubcheck/ctc/css/CSSSelectorAttribute.java | 37 +
.../epubcheck/ctc/css/CSSSelectorCollection.java | 38 +
.../epubcheck/ctc/css/EpubCSSCheckCSSHandler.java | 879 +++
.../epubcheck/ctc/epubpackage/EpubPackage.java | 193 +
.../epubcheck/ctc/epubpackage/ManifestItem.java | 49 +
.../epubcheck/ctc/epubpackage/MetadataElement.java | 45 +
.../epubcheck/ctc/epubpackage/PackageManifest.java | 44 +
.../epubcheck/ctc/epubpackage/PackageMetadata.java | 18 +
.../epubcheck/ctc/epubpackage/PackageSpine.java | 61 +
.../adobe/epubcheck/ctc/epubpackage/SpineItem.java | 49 +
.../adobe/epubcheck/ctc/xml/AnchorTagHandler.java | 234 +
.../ctc/xml/CSSStyleAttributeHandler.java | 315 +
.../epubcheck/ctc/xml/Epub3StructureHandler.java | 68 +
.../epubcheck/ctc/xml/HTMLTagsAnalyseHandler.java | 456 ++
.../epubcheck/ctc/xml/LangAttributeHandler.java | 63 +
.../adobe/epubcheck/ctc/xml/LinkTagHandler.java | 172 +
.../com/adobe/epubcheck/ctc/xml/ScriptElement.java | 19 +
.../adobe/epubcheck/ctc/xml/ScriptTagHandler.java | 225 +
.../adobe/epubcheck/ctc/xml/SpanTagHandler.java | 129 +
.../epubcheck/ctc/xml/XMLContentDocParser.java | 119 +
.../com/adobe/epubcheck/dtbook/DTBookChecker.java | 106 +
.../epubcheck/dtbook/DTBookCheckerFactory.java | 49 +
.../com/adobe/epubcheck/dtbook/DTBookHandler.java | 140 +
.../java/com/adobe/epubcheck/messages/Message.java | 71 +
.../epubcheck/messages/MessageDictionary.java | 601 ++
.../com/adobe/epubcheck/messages/MessageId.java | 305 +
.../adobe/epubcheck/messages/MessageLocation.java | 107 +
.../com/adobe/epubcheck/messages/Severity.java | 58 +
.../java/com/adobe/epubcheck/nav/NavChecker.java | 147 +
.../com/adobe/epubcheck/nav/NavCheckerFactory.java | 59 +
.../java/com/adobe/epubcheck/ncx/NCXChecker.java | 123 +
.../com/adobe/epubcheck/ncx/NCXCheckerFactory.java | 49 +
.../java/com/adobe/epubcheck/ncx/NCXHandler.java | 110 +
.../epubcheck/ocf/AdobeFontManglingFilter.java | 28 +
.../com/adobe/epubcheck/ocf/EncryptionFilter.java | 10 +
.../com/adobe/epubcheck/ocf/EncryptionHandler.java | 131 +
.../epubcheck/ocf/IDPFFontManglingFilter.java | 28 +
.../java/com/adobe/epubcheck/ocf/OCFChecker.java | 400 ++
src/main/java/com/adobe/epubcheck/ocf/OCFData.java | 21 +
.../adobe/epubcheck/ocf/OCFFilenameChecker.java | 132 +
.../java/com/adobe/epubcheck/ocf/OCFHandler.java | 104 +
.../java/com/adobe/epubcheck/ocf/OCFPackage.java | 191 +
.../com/adobe/epubcheck/ocf/OCFZipPackage.java | 288 +
.../epubcheck/ocf/UnsupportedEncryptionFilter.java | 16 +
.../com/adobe/epubcheck/opf/ContentChecker.java | 28 +
.../adobe/epubcheck/opf/ContentCheckerFactory.java | 36 +
.../com/adobe/epubcheck/opf/DocumentValidator.java | 28 +
.../epubcheck/opf/DocumentValidatorFactory.java | 34 +
.../adobe/epubcheck/opf/GenericContentChecker.java | 54 +
.../opf/GenericContentCheckerFactory.java | 46 +
.../java/com/adobe/epubcheck/opf/OPFChecker.java | 614 ++
.../java/com/adobe/epubcheck/opf/OPFChecker30.java | 227 +
.../com/adobe/epubcheck/opf/OPFCheckerFactory.java | 51 +
src/main/java/com/adobe/epubcheck/opf/OPFData.java | 72 +
.../java/com/adobe/epubcheck/opf/OPFHandler.java | 738 +++
.../java/com/adobe/epubcheck/opf/OPFHandler30.java | 296 +
src/main/java/com/adobe/epubcheck/opf/OPFItem.java | 163 +
.../java/com/adobe/epubcheck/opf/OPFPeeker.java | 242 +
.../java/com/adobe/epubcheck/opf/OPFReference.java | 66 +
.../com/adobe/epubcheck/opf/VersionRetriever.java | 182 +
.../java/com/adobe/epubcheck/opf/XRefChecker.java | 413 ++
.../java/com/adobe/epubcheck/ops/OPSChecker.java | 206 +
.../com/adobe/epubcheck/ops/OPSCheckerFactory.java | 64 +
.../java/com/adobe/epubcheck/ops/OPSHandler.java | 522 ++
.../java/com/adobe/epubcheck/ops/OPSHandler30.java | 621 ++
.../adobe/epubcheck/overlay/OverlayChecker.java | 133 +
.../epubcheck/overlay/OverlayCheckerFactory.java | 63 +
.../adobe/epubcheck/overlay/OverlayHandler.java | 134 +
.../adobe/epubcheck/reporting/CheckMessage.java | 205 +
.../adobe/epubcheck/reporting/CheckerMetadata.java | 116 +
.../adobe/epubcheck/reporting/CheckingReport.java | 206 +
.../adobe/epubcheck/reporting/ItemMetadata.java | 215 +
.../epubcheck/reporting/PublicationMetadata.java | 197 +
.../java/com/adobe/epubcheck/tool/Checker.java | 33 +
.../java/com/adobe/epubcheck/tool/EpubChecker.java | 778 +++
.../java/com/adobe/epubcheck/util/Archive.java | 312 +
.../java/com/adobe/epubcheck/util/CheckUtil.java | 133 +
.../java/com/adobe/epubcheck/util/DateParser.java | 330 +
.../com/adobe/epubcheck/util/DateParserTest.java | 134 +
.../adobe/epubcheck/util/DefaultReportImpl.java | 143 +
.../java/com/adobe/epubcheck/util/EPUBVersion.java | 40 +
.../com/adobe/epubcheck/util/EpubConstants.java | 15 +
.../java/com/adobe/epubcheck/util/FeatureEnum.java | 87 +
.../adobe/epubcheck/util/FileResourceProvider.java | 51 +
.../epubcheck/util/GenericResourceProvider.java | 37 +
.../java/com/adobe/epubcheck/util/HandlerUtil.java | 58 +
.../adobe/epubcheck/util/InvalidDateException.java | 21 +
.../epubcheck/util/InvalidVersionException.java | 43 +
.../java/com/adobe/epubcheck/util/JsonWriter.java | 45 +
.../com/adobe/epubcheck/util/LocationImpl.java | 52 +
.../java/com/adobe/epubcheck/util/Messages.java | 122 +
.../com/adobe/epubcheck/util/NamespaceHelper.java | 346 +
.../java/com/adobe/epubcheck/util/OPSType.java | 57 +
.../java/com/adobe/epubcheck/util/PathUtil.java | 142 +
.../com/adobe/epubcheck/util/ReportingLevel.java | 45 +
.../com/adobe/epubcheck/util/ResourceUtil.java | 76 +
.../com/adobe/epubcheck/util/SearchDictionary.java | 188 +
.../epubcheck/util/TextSearchDictionaryEntry.java | 47 +
.../adobe/epubcheck/util/URLResourceProvider.java | 52 +
.../com/adobe/epubcheck/util/WriterReportImpl.java | 159 +
.../adobe/epubcheck/util/XmlReportAbstract.java | 319 +
.../com/adobe/epubcheck/util/XmlReportImpl.java | 305 +
.../com/adobe/epubcheck/util/XmpReportImpl.java | 247 +
.../java/com/adobe/epubcheck/util/outWriter.java | 55 +
.../com/adobe/epubcheck/vocab/AggregateVocab.java | 34 +
.../adobe/epubcheck/vocab/AltStylesheetVocab.java | 18 +
.../java/com/adobe/epubcheck/vocab/EnumVocab.java | 91 +
.../com/adobe/epubcheck/vocab/ForeignVocabs.java | 33 +
.../adobe/epubcheck/vocab/MediaOverlaysVocab.java | 21 +
.../com/adobe/epubcheck/vocab/PackageVocabs.java | 79 +
.../epubcheck/vocab/PrefixDeclarationParser.java | 215 +
.../java/com/adobe/epubcheck/vocab/Property.java | 146 +
.../com/adobe/epubcheck/vocab/RenditionVocabs.java | 44 +
.../adobe/epubcheck/vocab/StagingEdupubVocab.java | 55 +
.../com/adobe/epubcheck/vocab/StructureVocab.java | 89 +
.../com/adobe/epubcheck/vocab/UncheckedVocab.java | 47 +
src/main/java/com/adobe/epubcheck/vocab/Vocab.java | 23 +
.../java/com/adobe/epubcheck/vocab/VocabUtil.java | 196 +
.../adobe/epubcheck/xml/DocumentLocatorImpl.java | 65 +
.../java/com/adobe/epubcheck/xml/Namespaces.java | 36 +
.../java/com/adobe/epubcheck/xml/XMLAttribute.java | 40 +
.../java/com/adobe/epubcheck/xml/XMLElement.java | 94 +
.../java/com/adobe/epubcheck/xml/XMLHandler.java | 37 +
src/main/java/com/adobe/epubcheck/xml/XMLNode.java | 54 +
.../java/com/adobe/epubcheck/xml/XMLParser.java | 1058 +++
.../java/com/adobe/epubcheck/xml/XMLValidator.java | 262 +
.../com/adobe/epubcheck/xml/XMLValidators.java | 44 +
.../idpf/epubcheck/util/css/CssContentHandler.java | 88 +
.../idpf/epubcheck/util/css/CssErrorHandler.java | 43 +
.../org/idpf/epubcheck/util/css/CssEscape.java | 199 +
.../org/idpf/epubcheck/util/css/CssExceptions.java | 163 +
.../org/idpf/epubcheck/util/css/CssGrammar.java | 1405 ++++
.../idpf/epubcheck/util/css/CssInputStream.java | 244 +
.../org/idpf/epubcheck/util/css/CssLocation.java | 107 +
.../org/idpf/epubcheck/util/css/CssParser.java | 746 +++
.../org/idpf/epubcheck/util/css/CssReader.java | 389 ++
.../org/idpf/epubcheck/util/css/CssScanner.java | 1415 ++++
.../org/idpf/epubcheck/util/css/CssSource.java | 102 +
.../java/org/idpf/epubcheck/util/css/CssToken.java | 532 ++
.../org/idpf/epubcheck/util/css/CssTokenList.java | 225 +
.../java/org/idpf/epubcheck/util/css/Messages.java | 120 +
.../epubcheck/util/saxon/ColumnNumberFunction.java | 79 +
.../epubcheck/util/saxon/Int64ValueSequence.java | 29 +
.../epubcheck/util/saxon/LineNumberFunction.java | 80 +
.../epubcheck/util/saxon/SystemIdFunction.java | 103 +
src/main/licenses/Apache-2.0.txt | 201 +
src/main/licenses/BSD-3-Clause.txt | 27 +
src/main/licenses/MPL-1.0.txt | 360 +
src/main/licenses/W3C.txt | 16 +
src/main/licenses/third-party.ftl | 36 +
.../com/adobe/epubcheck/api/project.properties | 2 +
.../epubcheck/messages/MessageBundle.properties | 281 +
.../epubcheck/messages/MessageBundle_ja.properties | 279 +
.../com/adobe/epubcheck/ops/registeredSchemas.txt | 75 +
.../epubcheck/schema/20/dtd/dtbook-2005-2.dtd | 2824 ++++++++
.../adobe/epubcheck/schema/20/dtd/ncx-2005-1.dtd | 269 +
.../com/adobe/epubcheck/schema/20/dtd/oeb12.dtdinc | 1136 ++++
.../com/adobe/epubcheck/schema/20/dtd/oebpkg12.dtd | 388 ++
.../com/adobe/epubcheck/schema/20/dtd/opf20.dtd | 296 +
.../com/adobe/epubcheck/schema/20/dtd/svg11.dtd | 5790 +++++++++++++++++
.../epubcheck/schema/20/dtd/xhtml-lat1.dtdinc | 196 +
.../epubcheck/schema/20/dtd/xhtml-special.dtdinc | 80 +
.../epubcheck/schema/20/dtd/xhtml-symbol.dtdinc | 237 +
.../epubcheck/schema/20/dtd/xhtml1-strict.dtd | 979 +++
.../schema/20/dtd/xhtml1-transitional.dtd | 1200 ++++
.../adobe/epubcheck/schema/20/dtd/xhtml11-ent.dtd | 324 +
.../adobe/epubcheck/schema/20/rng/container.rng | 24 +
.../adobe/epubcheck/schema/20/rng/content-svg.rng | 13 +
.../epubcheck/schema/20/rng/content-xhtml.rng | 13 +
.../com/adobe/epubcheck/schema/20/rng/content.rng | 93 +
.../epubcheck/schema/20/rng/dtbook-2005-2.rng | 4110 ++++++++++++
.../adobe/epubcheck/schema/20/rng/encryption.rng | 20 +
.../com/adobe/epubcheck/schema/20/rng/ncx-old.rng | 253 +
.../com/adobe/epubcheck/schema/20/rng/ncx.rng | 304 +
.../com/adobe/epubcheck/schema/20/rng/opf.rng | 15 +
.../com/adobe/epubcheck/schema/20/rng/opf12.rng | 386 ++
.../com/adobe/epubcheck/schema/20/rng/opf20.rng | 509 ++
.../epubcheck/schema/20/rng/ops/ops-switch.rng | 51 +
.../com/adobe/epubcheck/schema/20/rng/ops20.nvdl | 70 +
.../com/adobe/epubcheck/schema/20/rng/ops20.rng | 16 +
.../adobe/epubcheck/schema/20/rng/signatures.rng | 15 +
.../epubcheck/schema/20/rng/svg/svg-animation.rng | 412 ++
.../schema/20/rng/svg/svg-animevents-attrib.rng | 61 +
.../epubcheck/schema/20/rng/svg/svg-basic-clip.rng | 129 +
.../schema/20/rng/svg/svg-basic-filter.rng | 870 +++
.../epubcheck/schema/20/rng/svg/svg-basic-font.rng | 546 ++
.../20/rng/svg/svg-basic-graphics-attrib.rng | 74 +
.../schema/20/rng/svg/svg-basic-structure.rng | 667 ++
.../epubcheck/schema/20/rng/svg/svg-basic-text.rng | 273 +
.../adobe/epubcheck/schema/20/rng/svg/svg-clip.rng | 37 +
.../schema/20/rng/svg/svg-conditional.rng | 124 +
.../schema/20/rng/svg/svg-container-attrib.rng | 49 +
.../schema/20/rng/svg/svg-core-attrib.rng | 73 +
.../epubcheck/schema/20/rng/svg/svg-cursor.rng | 99 +
.../epubcheck/schema/20/rng/svg/svg-datatypes.rng | 196 +
.../schema/20/rng/svg/svg-docevents-attrib.rng | 87 +
.../schema/20/rng/svg/svg-extensibility.rng | 125 +
.../schema/20/rng/svg/svg-extresources-attrib.rng | 42 +
.../epubcheck/schema/20/rng/svg/svg-filter.rng | 512 ++
.../adobe/epubcheck/schema/20/rng/svg/svg-font.rng | 146 +
.../epubcheck/schema/20/rng/svg/svg-gradient.rng | 259 +
.../schema/20/rng/svg/svg-graphevents-attrib.rng | 124 +
.../schema/20/rng/svg/svg-graphics-attrib.rng | 95 +
.../epubcheck/schema/20/rng/svg/svg-hyperlink.rng | 106 +
.../epubcheck/schema/20/rng/svg/svg-image.rng | 104 +
.../epubcheck/schema/20/rng/svg/svg-marker.rng | 161 +
.../adobe/epubcheck/schema/20/rng/svg/svg-mask.rng | 148 +
.../schema/20/rng/svg/svg-opacity-attrib.rng | 60 +
.../schema/20/rng/svg/svg-paint-attrib.rng | 207 +
.../epubcheck/schema/20/rng/svg/svg-pattern.rng | 138 +
.../epubcheck/schema/20/rng/svg/svg-profile.rng | 92 +
.../epubcheck/schema/20/rng/svg/svg-qname.rng | 98 +
.../epubcheck/schema/20/rng/svg/svg-script.rng | 64 +
.../epubcheck/schema/20/rng/svg/svg-shape.rng | 433 ++
.../epubcheck/schema/20/rng/svg/svg-structure.rng | 92 +
.../epubcheck/schema/20/rng/svg/svg-style.rng | 121 +
.../adobe/epubcheck/schema/20/rng/svg/svg-text.rng | 627 ++
.../adobe/epubcheck/schema/20/rng/svg/svg-view.rng | 83 +
.../schema/20/rng/svg/svg-viewport-attrib.rng | 64 +
.../schema/20/rng/svg/svg-xlink-attrib.rng | 194 +
.../com/adobe/epubcheck/schema/20/rng/svg11.rng | 231 +
.../adobe/epubcheck/schema/20/rng/xenc-schema.rng | 223 +
.../adobe/epubcheck/schema/20/rng/xhtml/applet.rng | 47 +
.../epubcheck/schema/20/rng/xhtml/attribs.rng | 66 +
.../adobe/epubcheck/schema/20/rng/xhtml/base.rng | 23 +
.../epubcheck/schema/20/rng/xhtml/basic-form.rng | 200 +
.../epubcheck/schema/20/rng/xhtml/basic-table.rng | 146 +
.../adobe/epubcheck/schema/20/rng/xhtml/bdo.rng | 37 +
.../epubcheck/schema/20/rng/xhtml/csismap.rng | 102 +
.../epubcheck/schema/20/rng/xhtml/datatypes.rng | 120 +
.../adobe/epubcheck/schema/20/rng/xhtml/edit.rng | 55 +
.../adobe/epubcheck/schema/20/rng/xhtml/events.rng | 208 +
.../adobe/epubcheck/schema/20/rng/xhtml/form.rng | 209 +
.../adobe/epubcheck/schema/20/rng/xhtml/frames.rng | 111 +
.../epubcheck/schema/20/rng/xhtml/hypertext.rng | 61 +
.../adobe/epubcheck/schema/20/rng/xhtml/iframe.rng | 67 +
.../adobe/epubcheck/schema/20/rng/xhtml/image.rng | 40 +
.../epubcheck/schema/20/rng/xhtml/inlstyle.rng | 11 +
.../adobe/epubcheck/schema/20/rng/xhtml/legacy.rng | 502 ++
.../adobe/epubcheck/schema/20/rng/xhtml/link.rng | 56 +
.../adobe/epubcheck/schema/20/rng/xhtml/list.rng | 92 +
.../adobe/epubcheck/schema/20/rng/xhtml/meta.rng | 37 +
.../epubcheck/schema/20/rng/xhtml/nameident.rng | 39 +
.../adobe/epubcheck/schema/20/rng/xhtml/object.rng | 82 +
.../adobe/epubcheck/schema/20/rng/xhtml/param.rng | 33 +
.../adobe/epubcheck/schema/20/rng/xhtml/pres.rng | 107 +
.../adobe/epubcheck/schema/20/rng/xhtml/ruby.rng | 102 +
.../adobe/epubcheck/schema/20/rng/xhtml/script.rng | 70 +
.../epubcheck/schema/20/rng/xhtml/ssismap.rng | 14 +
.../adobe/epubcheck/schema/20/rng/xhtml/struct.rng | 78 +
.../adobe/epubcheck/schema/20/rng/xhtml/style.rng | 36 +
.../adobe/epubcheck/schema/20/rng/xhtml/table.rng | 257 +
.../adobe/epubcheck/schema/20/rng/xhtml/target.rng | 31 +
.../adobe/epubcheck/schema/20/rng/xhtml/text.rng | 338 +
.../schema/20/rng/xmldsig-core-schema.rng | 341 +
.../adobe/epubcheck/schema/20/sch/id-unique.sch | 11 +
.../com/adobe/epubcheck/schema/20/sch/ncx.sch | 88 +
.../com/adobe/epubcheck/schema/20/sch/opf.sch | 14 +
.../com/adobe/epubcheck/schema/30/LICENSE | 23 +
.../adobe/epubcheck/schema/30/collection-do-30.sch | 27 +
.../epubcheck/schema/30/collection-manifest-30.sch | 17 +
.../epubcheck/schema/30/edupub/edu-headings.sch | 68 +
.../adobe/epubcheck/schema/30/edupub/edu-opf.sch | 12 +
.../epubcheck/schema/30/edupub/edu-semantics.sch | 168 +
.../adobe/epubcheck/schema/30/epub-nav-30-PREP.sch | 70 +
.../com/adobe/epubcheck/schema/30/epub-nav-30.nvdl | 16 +
.../com/adobe/epubcheck/schema/30/epub-nav-30.rnc | 10 +
.../com/adobe/epubcheck/schema/30/epub-nav-30.sch | 72 +
.../adobe/epubcheck/schema/30/epub-svg-30-PREP.sch | 18 +
.../com/adobe/epubcheck/schema/30/epub-svg-30.nvdl | 15 +
.../com/adobe/epubcheck/schema/30/epub-svg-30.rnc | 15 +
.../com/adobe/epubcheck/schema/30/epub-svg-30.sch | 10 +
.../epubcheck/schema/30/epub-xhtml-30-PREP.sch | 354 +
.../adobe/epubcheck/schema/30/epub-xhtml-30.nvdl | 15 +
.../adobe/epubcheck/schema/30/epub-xhtml-30.rnc | 39 +
.../adobe/epubcheck/schema/30/epub-xhtml-30.sch | 401 ++
.../adobe/epubcheck/schema/30/epub30-catalog.xml | 335 +
.../epubcheck/schema/30/media-overlay-30-PREP.sch | 14 +
.../epubcheck/schema/30/media-overlay-30.nvdl | 14 +
.../adobe/epubcheck/schema/30/media-overlay-30.rnc | 46 +
.../adobe/epubcheck/schema/30/media-overlay-30.sch | 9 +
.../adobe/epubcheck/schema/30/mod/datatypes.rnc | 145 +
.../epubcheck/schema/30/mod/epub-mathml3-30.rnc | 74 +
.../epubcheck/schema/30/mod/epub-prefix-attr.rnc | 8 +
.../epubcheck/schema/30/mod/epub-ssml-attrs.rnc | 11 +
.../epubcheck/schema/30/mod/epub-svg11-30.rnc | 14 +
.../epubcheck/schema/30/mod/epub-svg11-re.sch | 7 +
.../adobe/epubcheck/schema/30/mod/epub-switch.rnc | 32 +
.../adobe/epubcheck/schema/30/mod/epub-trigger.rnc | 22 +
.../epubcheck/schema/30/mod/epub-type-attr.rnc | 7 +
.../schema/30/mod/epub-xhtml-mathml3-30.rnc | 5 +
.../schema/30/mod/epub-xhtml-svg11-30.rnc | 6 +
.../adobe/epubcheck/schema/30/mod/html5/LICENSE | 23 +
.../com/adobe/epubcheck/schema/30/mod/html5/README | 21 +
.../schema/30/mod/html5/html5-aria-30.rnc | 106 +
.../schema/30/mod/html5/html5-attrib-30.rnc | 44 +
.../schema/30/mod/html5/html5-document-30.rnc | 45 +
.../schema/30/mod/html5/html5-edit-30.rnc | 24 +
.../schema/30/mod/html5/html5-embed-30.rnc | 155 +
.../schema/30/mod/html5/html5-forms-30.rnc | 431 ++
.../schema/30/mod/html5/html5-grouping-30.rnc | 115 +
.../schema/30/mod/html5/html5-interactive-30.rnc | 86 +
.../epubcheck/schema/30/mod/html5/html5-md.rnc | 56 +
.../schema/30/mod/html5/html5-models-30.rnc | 10 +
.../schema/30/mod/html5/html5-phrasing-30.rnc | 134 +
.../epubcheck/schema/30/mod/html5/html5-rdfa.rnc | 218 +
.../schema/30/mod/html5/html5-script-30.rnc | 164 +
.../schema/30/mod/html5/html5-sections-30.rnc | 58 +
.../schema/30/mod/html5/html5-style-30.rnc | 18 +
.../adobe/epubcheck/schema/30/mod/id-unique.sch | 10 +
.../adobe/epubcheck/schema/30/mod/mathml/LICENSE | 3 +
.../schema/30/mod/mathml/mathml3-common.rnc | 84 +
.../schema/30/mod/mathml/mathml3-content.rnc | 373 ++
.../schema/30/mod/mathml/mathml3-presentation.rnc | 536 ++
.../30/mod/mathml/mathml3-strict-content.rnc | 60 +
.../adobe/epubcheck/schema/30/mod/security/LICENSE | 4 +
.../30/mod/security/Lenient-Encryption11-ghc.rnc | 41 +
.../30/mod/security/Lenient-Encryption11.rnc | 39 +
.../security/Lenient-Signature-exclusiveC14N.rnc | 25 +
...enient-Signature11-properties-exclusiveC14N.rnc | 32 +
.../security/Lenient-Signature11-properties.rnc | 30 +
.../schema/30/mod/security/Lenient-Signature11.rnc | 28 +
.../schema/30/mod/security/Strict-Encryption.rnc | 27 +
.../schema/30/mod/security/Strict-Signature.rnc | 22 +
.../epubcheck/schema/30/mod/security/exc-c14n.rnc | 39 +
.../schema/30/mod/security/security_any.rnc | 15 +
.../30/mod/security/xenc-allowAnyForeign.rnc | 25 +
.../schema/30/mod/security/xenc-schema-11.rnc | 96 +
.../schema/30/mod/security/xenc-schema.rnc | 145 +
.../30/mod/security/xenc11-allowAnyForeign.rnc | 19 +
.../30/mod/security/xmldsig-allowAnyForeign.rnc | 47 +
.../schema/30/mod/security/xmldsig-core-schema.rnc | 276 +
.../schema/30/mod/security/xmldsig-filter2.rnc | 16 +
.../30/mod/security/xmldsig-properties-schema.rnc | 34 +
.../30/mod/security/xmldsig11-allowAnyForeign.rnc | 18 +
.../schema/30/mod/security/xmldsig11-schema.rnc | 133 +
.../30/mod/security/xmlsec-ghc-allowAnyForeign.rnc | 21 +
.../schema/30/mod/security/xmlsec-ghc-schema.rnc | 42 +
.../adobe/epubcheck/schema/30/mod/svg11/LICENSE | 1 +
.../adobe/epubcheck/schema/30/mod/svg11/README.txt | 8 +
.../epubcheck/schema/30/mod/svg11/svg11-flat.rnc | 4000 ++++++++++++
.../adobe/epubcheck/schema/30/ocf-container-30.rnc | 16 +
.../epubcheck/schema/30/ocf-encryption-30.rnc | 12 +
.../epubcheck/schema/30/ocf-signatures-30.rnc | 8 +
.../adobe/epubcheck/schema/30/package-30-PREP.sch | 127 +
.../com/adobe/epubcheck/schema/30/package-30.nvdl | 14 +
.../com/adobe/epubcheck/schema/30/package-30.rnc | 132 +
.../com/adobe/epubcheck/schema/30/package-30.sch | 279 +
.../com/adobe/epubcheck/util/messages.properties | 72 +
.../adobe/epubcheck/util/messages_ja.properties | 68 +
.../datatype/xsd/resources/Messages_ja.properties | 66 +
.../pattern/resources/Messages_ja.properties | 143 +
.../idpf/epubcheck/util/css/messages.properties | 20 +
.../idpf/epubcheck/util/css/messages_ja.properties | 25 +
src/main/scripts/epubcheck.bat | 20 +
src/main/scripts/epubcheck.sh | 13 +
src/main/util/sch/iso-sch-abstract.xsl | 103 +
src/main/util/sch/iso-sch-include.xsl | 78 +
.../adobe/epubcheck/api/AbstractEpubCheckTest.java | 191 +
.../epubcheck/api/Epub20CheckExpandedTest.java | 162 +
.../com/adobe/epubcheck/api/Epub20CheckTest.java | 318 +
.../epubcheck/api/Epub30CheckExpandedTest.java | 707 ++
.../com/adobe/epubcheck/api/Epub30CheckTest.java | 308 +
src/test/java/com/adobe/epubcheck/cli/CLITest.java | 229 +
.../com/adobe/epubcheck/nav/NavCheckerTest.java | 183 +
.../com/adobe/epubcheck/ocf/OCFCheckerTest.java | 504 ++
.../epubcheck/ocf/OCFFilenameCheckerTest.java | 111 +
.../com/adobe/epubcheck/ocf/OCFMockPackage.java | 114 +
.../com/adobe/epubcheck/opf/OPFCheckerTest.java | 690 ++
.../adobe/epubcheck/opf/OPFCheckerTestChecks.java | 30 +
.../com/adobe/epubcheck/ops/OPSCheckerTest.java | 719 ++
.../epubcheck/overlay/OverlayCheckerTest.java | 168 +
.../com/adobe/epubcheck/stress/StressTest.java | 372 ++
.../epubcheck/test/NoExitSecurityManager.java | 44 +
.../epubcheck/test/OutputDifferenceListener.java | 86 +
.../com/adobe/epubcheck/test/TestRunListener.java | 72 +
.../java/com/adobe/epubcheck/test/api_Test.java | 81 +
.../adobe/epubcheck/test/command_line_Test.java | 408 ++
src/test/java/com/adobe/epubcheck/test/common.java | 178 +
.../java/com/adobe/epubcheck/test/css_Test.java | 135 +
src/test/java/com/adobe/epubcheck/test/debug.java | 42 +
.../java/com/adobe/epubcheck/test/dtBook_Test.java | 46 +
.../java/com/adobe/epubcheck/test/jsonCompare.java | 152 +
.../com/adobe/epubcheck/test/message_coverage.java | 56 +
.../java/com/adobe/epubcheck/test/opf_Test.java | 215 +
.../com/adobe/epubcheck/test/package_Test.java | 299 +
.../java/com/adobe/epubcheck/test/script_Test.java | 62 +
.../com/adobe/epubcheck/test/single_file_Test.java | 53 +
.../java/com/adobe/epubcheck/test/toc_Test.java | 46 +
.../java/com/adobe/epubcheck/test/xhtml_Test.java | 133 +
.../com/adobe/epubcheck/util/ExtraReportTest.java | 5 +
.../com/adobe/epubcheck/util/OPFPeekerTest.java | 247 +
.../com/adobe/epubcheck/util/PathUtilTest.java | 44 +
.../com/adobe/epubcheck/util/ValidationReport.java | 265 +
.../adobe/epubcheck/vocab/PrefixParsingTest.java | 188 +
.../com/adobe/epubcheck/vocab/PropertyTest.java | 70 +
.../java/com/adobe/epubcheck/vocab/VocabTest.java | 281 +
.../epubcheck/util/css/CssInputStreamTest.java | 109 +
.../org/idpf/epubcheck/util/css/CssParserTest.java | 1700 +++++
.../idpf/epubcheck/util/css/CssScannerTest.java | 1909 ++++++
src/test/resources/20/epub/ContainerNotOPF20.epub | Bin 0 -> 4660 bytes
src/test/resources/20/epub/EmptyDir20.epub | Bin 0 -> 4528 bytes
src/test/resources/20/epub/Issue21.epub | Bin 0 -> 4316 bytes
src/test/resources/20/epub/Issue25.epub | Bin 0 -> 259264 bytes
src/test/resources/20/epub/Issue95.epub | Bin 0 -> 2551 bytes
src/test/resources/20/epub/MetaInfNotOPF20.epub | Bin 0 -> 4603 bytes
src/test/resources/20/epub/Non8601Date20.epub | Bin 0 -> 4389 bytes
src/test/resources/20/epub/NullDate20.epub | Bin 0 -> 4380 bytes
.../resources/20/epub/OPFIllegalElement20.epub | Bin 0 -> 4381 bytes
.../20/epub/OPFIllegalElement_UniqueID20.epub | Bin 0 -> 4389 bytes
src/test/resources/20/epub/PageMap20.epub | Bin 0 -> 4565 bytes
src/test/resources/20/epub/Test20.epub | Bin 0 -> 4680 bytes
src/test/resources/20/epub/UniqueIDNotUsed20.epub | Bin 0 -> 4322 bytes
src/test/resources/20/epub/Unmanifested20.epub | Bin 0 -> 4798 bytes
.../20/epub/UnmanifestedGuideItems20.epub | Bin 0 -> 4497 bytes
.../20/epub/invalid/bad_opf_namespace.epub | Bin 0 -> 1839 bytes
.../invalid/filenameSpacesErrorTwice_Issue239.epub | Bin 0 -> 817189 bytes
src/test/resources/20/epub/invalid/issue138.epub | Bin 0 -> 1601 bytes
src/test/resources/20/epub/invalid/issue170.epub | Bin 0 -> 446852 bytes
src/test/resources/20/epub/invalid/issue236.epub | Bin 0 -> 2565 bytes
src/test/resources/20/epub/invalid/issue313.epub | Bin 0 -> 4095 bytes
src/test/resources/20/epub/invalid/issue316.epub | Bin 0 -> 4034 bytes
src/test/resources/20/epub/invalid/issue89.epub | Bin 0 -> 326638 bytes
.../resources/20/epub/invalid/lorem-mimetype.epub | Bin 0 -> 4048 bytes
.../20/epub/invalid/mimetypeAndVersion.epub | Bin 0 -> 1284 bytes
.../resources/20/epub/invalid/ncx-dupe-id.epub | Bin 0 -> 4046 bytes
.../resources/20/epub/invalid/no-linear-yes.epub | Bin 0 -> 286188 bytes
.../resources/20/epub/invalid/no-rootfile.epub | Bin 0 -> 1825 bytes
.../invalid/unresolved-internal-xhtml-link.epub | Bin 0 -> 4069 bytes
src/test/resources/20/epub/issues.xml | 28 +
src/test/resources/20/epub/tests20.xml | 91 +
src/test/resources/20/epub/valid/issue169.epub | Bin 0 -> 1935323 bytes
src/test/resources/20/epub/valid/issue169.txt | 22 +
src/test/resources/20/epub/valid/issue194.bad.epub | Bin 0 -> 4121 bytes
.../resources/20/epub/valid/issue194.good.epub | Bin 0 -> 4047 bytes
src/test/resources/20/epub/valid/lorem.epub | Bin 0 -> 4047 bytes
src/test/resources/20/epub/valid/lorem.txt | 11 +
.../expanded/invalid/custom-ns-attr/EPUB/lorem.css | 6 +
.../expanded/invalid/custom-ns-attr/EPUB/lorem.ncx | 29 +
.../expanded/invalid/custom-ns-attr/EPUB/lorem.opf | 17 +
.../invalid/custom-ns-attr/EPUB/lorem.xhtml | 100 +
.../invalid/custom-ns-attr/META-INF/container.xml | 7 +
.../20/expanded/invalid/custom-ns-attr/mimetype | 1 +
.../20/expanded/invalid/fallbacks-circular.txt | 13 +
.../invalid/fallbacks-circular/EPUB/image.abc | 1 +
.../invalid/fallbacks-circular/EPUB/image.jpeg | Bin 0 -> 1962 bytes
.../invalid/fallbacks-circular/EPUB/image.xyz | 1 +
.../invalid/fallbacks-circular/EPUB/lorem.css | 6 +
.../invalid/fallbacks-circular/EPUB/lorem.ncx | 29 +
.../invalid/fallbacks-circular/EPUB/lorem.opf | 20 +
.../invalid/fallbacks-circular/EPUB/lorem.xhtml | 108 +
.../fallbacks-circular/META-INF/container.xml | 7 +
.../expanded/invalid/fallbacks-circular/mimetype | 1 +
.../expanded/invalid/issue182/EPUB/1-lorem.xhtml | 98 +
.../expanded/invalid/issue182/EPUB/2-lorem.xhtml | 98 +
.../20/expanded/invalid/issue182/EPUB/lorem.css | 6 +
.../20/expanded/invalid/issue182/EPUB/lorem.opf | 20 +
.../20/expanded/invalid/issue182/EPUB/nav.ncx | 38 +
.../invalid/issue182/META-INF/container.xml | 7 +
.../20/expanded/invalid/issue182/mimetype | 1 +
.../20/expanded/invalid/lorem-dual-guide.txt | 10 +
.../invalid/lorem-dual-guide/EPUB/1-lorem.xhtml | 98 +
.../invalid/lorem-dual-guide/EPUB/2-lorem.xhtml | 98 +
.../invalid/lorem-dual-guide/EPUB/lorem.css | 6 +
.../invalid/lorem-dual-guide/EPUB/lorem.opf | 23 +
.../expanded/invalid/lorem-dual-guide/EPUB/nav.ncx | 38 +
.../lorem-dual-guide/META-INF/container.xml | 7 +
.../20/expanded/invalid/lorem-dual-guide/mimetype | 1 +
.../20/expanded/invalid/lorem-mimetype.txt | 10 +
.../expanded/invalid/lorem-mimetype/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-mimetype/EPUB/lorem.ncx | 35 +
.../expanded/invalid/lorem-mimetype/EPUB/lorem.opf | 17 +
.../invalid/lorem-mimetype/EPUB/lorem.xhtml | 98 +
.../invalid/lorem-mimetype/META-INF/container.xml | 7 +
.../20/expanded/invalid/lorem-mimetype/mimetype | 1 +
.../invalid/xhtml-extension/EPUB/lorem.css | 4 +
.../invalid/xhtml-extension/EPUB/lorem.foo | 100 +
.../invalid/xhtml-extension/EPUB/lorem.ncx | 29 +
.../invalid/xhtml-extension/EPUB/lorem.opf | 17 +
.../invalid/xhtml-extension/META-INF/container.xml | 7 +
.../20/expanded/invalid/xhtml-extension/mimetype | 1 +
src/test/resources/20/expanded/valid/fallbacks.txt | 13 +
.../20/expanded/valid/fallbacks/EPUB/image.abc | 1 +
.../20/expanded/valid/fallbacks/EPUB/image.jpeg | Bin 0 -> 1962 bytes
.../20/expanded/valid/fallbacks/EPUB/image.xyz | 1 +
.../20/expanded/valid/fallbacks/EPUB/lorem.css | 6 +
.../20/expanded/valid/fallbacks/EPUB/lorem.ncx | 29 +
.../20/expanded/valid/fallbacks/EPUB/lorem.opf | 21 +
.../20/expanded/valid/fallbacks/EPUB/lorem.xhtml | 109 +
.../valid/fallbacks/EPUB/page-template.xpgt | 44 +
.../valid/fallbacks/META-INF/container.xml | 7 +
.../resources/20/expanded/valid/fallbacks/mimetype | 1 +
.../20/expanded/valid/issue205/EPUB/lorem.css | 6 +
.../20/expanded/valid/issue205/EPUB/lorem.ncx | 29 +
.../20/expanded/valid/issue205/EPUB/lorem.opf | 18 +
.../20/expanded/valid/issue205/EPUB/lorem.xhtml | 100 +
.../expanded/valid/issue205/META-INF/container.xml | 7 +
.../resources/20/expanded/valid/issue205/mimetype | 1 +
.../resources/20/expanded/valid/issue256/.DS_Store | Bin 0 -> 6148 bytes
.../20/expanded/valid/issue256/._DS_Store | 0
.../expanded/valid/issue256/EPUB/images/Thumbs.db | 0
.../valid/issue256/EPUB/images/ehthumbs.db | 0
.../expanded/valid/issue256/EPUB/images/image.jpg | Bin 0 -> 1962 bytes
.../20/expanded/valid/issue256/EPUB/lorem.css | 6 +
.../20/expanded/valid/issue256/EPUB/lorem.ncx | 29 +
.../20/expanded/valid/issue256/EPUB/lorem.opf | 18 +
.../20/expanded/valid/issue256/EPUB/lorem.xhtml | 102 +
.../expanded/valid/issue256/META-INF/container.xml | 7 +
.../resources/20/expanded/valid/issue256/mimetype | 1 +
src/test/resources/20/expanded/valid/issue267.txt | 9 +
.../20/expanded/valid/issue267/EPUB/lorem.css | 6 +
.../20/expanded/valid/issue267/EPUB/lorem.ncx | 29 +
.../20/expanded/valid/issue267/EPUB/lorem.opf | 18 +
.../20/expanded/valid/issue267/EPUB/lorem.xhtml | 100 +
.../expanded/valid/issue267/META-INF/container.xml | 7 +
.../resources/20/expanded/valid/issue267/mimetype | 1 +
.../20/expanded/valid/lorem-basic-dual.txt | 9 +
.../valid/lorem-basic-dual/EPUB/1-lorem.xhtml | 98 +
.../valid/lorem-basic-dual/EPUB/2-lorem.xhtml | 98 +
.../expanded/valid/lorem-basic-dual/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-basic-dual/EPUB/lorem.opf | 19 +
.../expanded/valid/lorem-basic-dual/EPUB/nav.ncx | 38 +
.../valid/lorem-basic-dual/META-INF/container.xml | 7 +
.../20/expanded/valid/lorem-basic-dual/mimetype | 1 +
.../20/expanded/valid/lorem-dual-guide.txt | 9 +
.../valid/lorem-dual-guide/EPUB/1-lorem.xhtml | 98 +
.../valid/lorem-dual-guide/EPUB/2-lorem.xhtml | 98 +
.../expanded/valid/lorem-dual-guide/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-dual-guide/EPUB/lorem.opf | 23 +
.../expanded/valid/lorem-dual-guide/EPUB/nav.ncx | 38 +
.../valid/lorem-dual-guide/META-INF/container.xml | 7 +
.../20/expanded/valid/lorem-dual-guide/mimetype | 1 +
.../20/expanded/valid/lorem-uidspaces.txt | 6 +
.../expanded/valid/lorem-uidspaces/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-uidspaces/EPUB/lorem.ncx | 29 +
.../expanded/valid/lorem-uidspaces/EPUB/lorem.opf | 18 +
.../valid/lorem-uidspaces/EPUB/lorem.xhtml | 98 +
.../valid/lorem-uidspaces/META-INF/container.xml | 7 +
.../20/expanded/valid/lorem-uidspaces/mimetype | 1 +
.../valid/lorem-xrenditions-1ops/EPUB/lorem.css | 6 +
.../valid/lorem-xrenditions-1ops/EPUB/lorem.ncx | 29 +
.../valid/lorem-xrenditions-1ops/EPUB/lorem.opf | 17 +
.../valid/lorem-xrenditions-1ops/EPUB/lorem.xhtml | 100 +
.../lorem-xrenditions-1ops/META-INF/container.xml | 7 +
.../valid/lorem-xrenditions-1ops/TEXT/lorem.txt | 88 +
.../expanded/valid/lorem-xrenditions-1ops/mimetype | 1 +
.../valid/lorem-xrenditions-2ops/EPUB/lorem.css | 6 +
.../valid/lorem-xrenditions-2ops/EPUB/lorem.ncx | 29 +
.../valid/lorem-xrenditions-2ops/EPUB/lorem.opf | 17 +
.../valid/lorem-xrenditions-2ops/EPUB/lorem.xhtml | 100 +
.../valid/lorem-xrenditions-2ops/EPUB_2/lorem.css | 6 +
.../valid/lorem-xrenditions-2ops/EPUB_2/lorem.ncx | 29 +
.../valid/lorem-xrenditions-2ops/EPUB_2/lorem.opf | 17 +
.../lorem-xrenditions-2ops/EPUB_2/lorem.xhtml | 100 +
.../lorem-xrenditions-2ops/META-INF/container.xml | 7 +
.../expanded/valid/lorem-xrenditions-2ops/mimetype | 1 +
.../20/expanded/valid/lorem/lorem-basic.txt | 9 +
.../valid/lorem/lorem-basic/EPUB/lorem.css | 6 +
.../valid/lorem/lorem-basic/EPUB/lorem.ncx | 29 +
.../valid/lorem/lorem-basic/EPUB/lorem.opf | 17 +
.../valid/lorem/lorem-basic/EPUB/lorem.xhtml | 100 +
.../valid/lorem/lorem-basic/META-INF/container.xml | 7 +
.../20/expanded/valid/lorem/lorem-basic/mimetype | 1 +
.../20/single/opf/invalid/bad-opf-namespace.opf | 24 +
.../resources/20/single/opf/invalid/dupe-id.opf | 21 +
.../invalid/filename_contains_spaces_issue239.opf | 38 +
.../20/single/opf/invalid/null-identifier.opf | 20 +
src/test/resources/20/single/opf/valid.opf | 30 +
.../resources/20/single/opf/valid/issue216.opf | 29 +
.../resources/20/single/ops/invalid/dupe-id.xhtml | 10 +
.../20/single/ops/invalid/unresolved-entity.xhtml | 10 +
.../resources/20/single/ops/valid/issue215.xhtml | 10 +
.../resources/20/single/ops/valid/issue222.xhtml | 21 +
.../20/single/ops/valid/svg-font-face.svg | 24 +
.../20/single/ops/valid/svg-foreignObject.xhtml | 24 +
.../resources/30/epub/invalid/fallback-cycle.epub | Bin 0 -> 3860 bytes
.../30/epub/invalid/font_no_fallback.epub | Bin 0 -> 3847 bytes
.../resources/30/epub/invalid/invalid-ncx.epub | Bin 0 -> 4720 bytes
src/test/resources/30/epub/invalid/issue137a.epub | Bin 0 -> 5898 bytes
src/test/resources/30/epub/invalid/issue137b.epub | Bin 0 -> 5858 bytes
src/test/resources/30/epub/invalid/issue176.epub | Bin 0 -> 67824 bytes
src/test/resources/30/epub/invalid/issue203.epub | Bin 0 -> 4721 bytes
src/test/resources/30/epub/invalid/issue221.epub | Bin 0 -> 4053187 bytes
src/test/resources/30/epub/invalid/issue239.epub | Bin 0 -> 226801 bytes
src/test/resources/30/epub/invalid/issue265.epub | Bin 0 -> 15223 bytes
src/test/resources/30/epub/invalid/issue265b.epub | Bin 0 -> 15235 bytes
src/test/resources/30/epub/invalid/issue265c.epub | Bin 0 -> 14887 bytes
.../resources/30/epub/invalid/lorem-xht-rng-1.epub | Bin 0 -> 3755 bytes
.../resources/30/epub/invalid/lorem-xht-sch-1.epub | Bin 0 -> 3760 bytes
.../30/epub/invalid/mimetype-extra-field.epub | Bin 0 -> 4739 bytes
.../30/epub/invalid/mp3-in-spine-no-fallback.epub | Bin 0 -> 4365 bytes
.../resources/30/epub/invalid/nav-invalid.epub | Bin 0 -> 3002 bytes
src/test/resources/30/epub/valid/epub30-spec.epub | Bin 0 -> 226787 bytes
src/test/resources/30/epub/valid/epub30-spec.txt | 18 +
src/test/resources/30/epub/valid/extension-1.ePub | Bin 0 -> 3712 bytes
src/test/resources/30/epub/valid/extension-1.txt | 11 +
.../resources/30/epub/valid/font-obfuscation.epub | Bin 0 -> 20975 bytes
.../30/epub/valid/font_fallback_chain.epub | Bin 0 -> 3859 bytes
.../30/epub/valid/font_fallback_chain.txt | 12 +
src/test/resources/30/epub/valid/georgia-cfi.epub | Bin 0 -> 545499 bytes
src/test/resources/30/epub/valid/issue145.epub | Bin 0 -> 138788 bytes
src/test/resources/30/epub/valid/issue145.txt | 18 +
src/test/resources/30/epub/valid/issue156.epub | Bin 0 -> 3713 bytes
src/test/resources/30/epub/valid/issue158.epub | Bin 0 -> 2207 bytes
src/test/resources/30/epub/valid/issue158.txt | 13 +
src/test/resources/30/epub/valid/issue262.epub | Bin 0 -> 2671 bytes
.../epub/valid/issue271_xpgt_correctFallback.epub | Bin 0 -> 4464 bytes
src/test/resources/30/epub/valid/lorem.epub | Bin 0 -> 3712 bytes
src/test/resources/30/epub/valid/lorem.txt | 11 +
.../resources/30/epub/valid/mp3-in-manifest.epub | Bin 0 -> 4362 bytes
.../resources/30/epub/valid/mp3-in-manifest.txt | 12 +
.../resources/30/epub/valid/mp3-with-fallback.epub | Bin 0 -> 4371 bytes
.../resources/30/epub/valid/mp3-with-fallback.txt | 12 +
src/test/resources/30/epub/valid/test_svg.epub | Bin 0 -> 4234 bytes
src/test/resources/30/epub/valid/test_svg.txt | 11 +
src/test/resources/30/epub/valid/valid ncx.epub | Bin 0 -> 4719 bytes
src/test/resources/30/epub/valid/valid_ncx.txt | 11 +
.../expanded/invalid/custom-ns-attr/EPUB/lorem.css | 6 +
.../expanded/invalid/custom-ns-attr/EPUB/lorem.opf | 17 +
.../invalid/custom-ns-attr/EPUB/lorem.xhtml | 107 +
.../invalid/custom-ns-attr/META-INF/container.xml | 7 +
.../30/expanded/invalid/custom-ns-attr/mimetype | 1 +
.../invalid/epub30-spec/EPUB/css/epub-spec.css | 586 ++
.../epub30-spec/EPUB/img/epub_logo_color.jpg | Bin 0 -> 134445 bytes
.../epub30-spec/EPUB/img/idpflogo_web_125.jpg | Bin 0 -> 19659 bytes
.../expanded/invalid/epub30-spec/EPUB/package.opf | 39 +
.../EPUB/xhtml/epub30-acknowledgements.xhtml | 2 +
.../epub30-spec/EPUB/xhtml/epub30-changes.xhtml | 2 +
.../EPUB/xhtml/epub30-contentdocs.xhtml | 216 +
.../EPUB/xhtml/epub30-mediaoverlays.xhtml | 226 +
.../epub30-spec/EPUB/xhtml/epub30-nav.xhtml | 565 ++
.../epub30-spec/EPUB/xhtml/epub30-ocf.xhtml | 304 +
.../epub30-spec/EPUB/xhtml/epub30-overview.xhtml | 974 +++
.../EPUB/xhtml/epub30-publications.xhtml | 329 +
.../epub30-spec/EPUB/xhtml/epub30-references.xhtml | 15 +
.../EPUB/xhtml/epub30-terminology.xhtml | 8 +
.../epub30-spec/EPUB/xhtml/epub30-titlepage.xhtml | 6 +
.../invalid/epub30-spec/META-INF/container.xml | 6 +
.../30/expanded/invalid/epub30-spec/mimetype | 1 +
.../invalid/fallbacks-circular/EPUB/image.abc | 1 +
.../invalid/fallbacks-circular/EPUB/image.jpeg | Bin 0 -> 1962 bytes
.../invalid/fallbacks-circular/EPUB/image.xyz | 1 +
.../invalid/fallbacks-circular/EPUB/lorem.css | 6 +
.../invalid/fallbacks-circular/EPUB/lorem.opf | 20 +
.../invalid/fallbacks-circular/EPUB/lorem.xhtml | 109 +
.../fallbacks-circular/META-INF/container.xml | 7 +
.../expanded/invalid/fallbacks-circular/mimetype | 1 +
.../invalid/fallbacks-nonresolving/EPUB/image.abc | 1 +
.../invalid/fallbacks-nonresolving/EPUB/image.jpeg | Bin 0 -> 1962 bytes
.../invalid/fallbacks-nonresolving/EPUB/image.xyz | 1 +
.../invalid/fallbacks-nonresolving/EPUB/lorem.css | 6 +
.../invalid/fallbacks-nonresolving/EPUB/lorem.opf | 20 +
.../fallbacks-nonresolving/EPUB/lorem.xhtml | 109 +
.../fallbacks-nonresolving/META-INF/container.xml | 7 +
.../invalid/fallbacks-nonresolving/mimetype | 1 +
.../30/expanded/invalid/issue189/EPUB/lorem.css | 6 +
.../30/expanded/invalid/issue189/EPUB/lorem.opf | 17 +
.../30/expanded/invalid/issue189/EPUB/lorem.xhtml | 34 +
.../invalid/issue189/META-INF/container.xml | 7 +
.../30/expanded/invalid/issue189/mimetype | 1 +
.../lorem-basic-dual-base/EPUB/1-lorem.xhtml | 101 +
.../lorem-basic-dual-base/EPUB/2-lorem.xhtml | 100 +
.../invalid/lorem-basic-dual-base/EPUB/lorem.css | 6 +
.../invalid/lorem-basic-dual-base/EPUB/lorem.opf | 20 +
.../invalid/lorem-basic-dual-base/EPUB/nav.xhtml | 22 +
.../lorem-basic-dual-base/META-INF/container.xml | 7 +
.../invalid/lorem-basic-dual-base/mimetype | 1 +
.../EPUB/wasteland-content.xhtml | 1091 ++++
.../lorem-basic-switch/EPUB/wasteland-cover.jpg | Bin 0 -> 103477 bytes
.../lorem-basic-switch/EPUB/wasteland-nav.xhtml | 31 +
.../invalid/lorem-basic-switch/EPUB/wasteland.css | 32 +
.../invalid/lorem-basic-switch/EPUB/wasteland.opf | 22 +
.../lorem-basic-switch/META-INF/container.xml | 7 +
.../expanded/invalid/lorem-basic-switch/mimetype | 1 +
.../expanded/invalid/lorem-bindings/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-bindings/EPUB/lorem.opf | 23 +
.../invalid/lorem-bindings/EPUB/lorem.xhtml | 120 +
.../invalid/lorem-bindings/EPUB/slideshow.xml | 0
.../expanded/invalid/lorem-bindings/EPUB/video.avi | 0
.../invalid/lorem-bindings/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-bindings/mimetype | 1 +
.../invalid/lorem-container/EPUB/lorem.css | 6 +
.../invalid/lorem-container/EPUB/lorem.opf | 17 +
.../invalid/lorem-container/EPUB/lorem.xhtml | 108 +
.../invalid/lorem-container/META-INF/container.xml | 8 +
.../30/expanded/invalid/lorem-container/mimetype | 1 +
.../expanded/invalid/lorem-css-enc/EPUB/lorem.css | 8 +
.../expanded/invalid/lorem-css-enc/EPUB/lorem.opf | 17 +
.../invalid/lorem-css-enc/EPUB/lorem.xhtml | 108 +
.../invalid/lorem-css-enc/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-css-enc/mimetype | 1 +
.../invalid/lorem-css-import-1/EPUB/lorem.css | 8 +
.../invalid/lorem-css-import-1/EPUB/lorem.opf | 19 +
.../invalid/lorem-css-import-1/EPUB/lorem.xhtml | 108 +
.../lorem-css-import-1/META-INF/container.xml | 7 +
.../expanded/invalid/lorem-css-import-1/mimetype | 1 +
.../invalid/lorem-css-import-2/EPUB/import.css | 3 +
.../invalid/lorem-css-import-2/EPUB/lorem.css | 8 +
.../invalid/lorem-css-import-2/EPUB/lorem.opf | 19 +
.../invalid/lorem-css-import-2/EPUB/lorem.xhtml | 108 +
.../lorem-css-import-2/META-INF/container.xml | 7 +
.../expanded/invalid/lorem-css-import-2/mimetype | 1 +
.../lorem-css-urls-1/EPUB/OldStandard-Regular.otf | Bin 0 -> 443980 bytes
.../invalid/lorem-css-urls-1/EPUB/import.css | 3 +
.../invalid/lorem-css-urls-1/EPUB/lorem.css | 374 ++
.../invalid/lorem-css-urls-1/EPUB/lorem.opf | 19 +
.../invalid/lorem-css-urls-1/EPUB/lorem.xhtml | 108 +
.../lorem-css-urls-1/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-css-urls-1/mimetype | 1 +
.../invalid/lorem-css-urls-2/EPUB/lorem.css | 16 +
.../invalid/lorem-css-urls-2/EPUB/lorem.opf | 19 +
.../invalid/lorem-css-urls-2/EPUB/lorem.xhtml | 61 +
.../invalid/lorem-css-urls-2/EPUB/lorem2.xhtml | 44 +
.../lorem-css-urls-2/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-css-urls-2/mimetype | 1 +
.../invalid/lorem-css-urls-3/EPUB/lorem.css | 12 +
.../invalid/lorem-css-urls-3/EPUB/lorem.opf | 19 +
.../invalid/lorem-css-urls-3/EPUB/lorem.xhtml | 61 +
.../invalid/lorem-css-urls-3/EPUB/lorem2.xhtml | 44 +
.../lorem-css-urls-3/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-css-urls-3/mimetype | 1 +
.../invalid/lorem-css-wrongtype/EPUB/lorem.css | 6 +
.../invalid/lorem-css-wrongtype/EPUB/lorem.opf | 17 +
.../invalid/lorem-css-wrongtype/EPUB/lorem.xhtml | 108 +
.../lorem-css-wrongtype/META-INF/container.xml | 7 +
.../expanded/invalid/lorem-css-wrongtype/mimetype | 1 +
.../invalid/lorem-encryption/EPUB/lorem.css | 6 +
.../invalid/lorem-encryption/EPUB/lorem.opf | 17 +
.../invalid/lorem-encryption/EPUB/lorem.xhtml | 108 +
.../lorem-encryption/META-INF/container.xml | 7 +
.../lorem-encryption/META-INF/encryption.xml | 7 +
.../invalid/lorem-encryption/dropped text.txt | 1 +
.../30/expanded/invalid/lorem-encryption/mimetype | 1 +
.../expanded/invalid/lorem-foreign/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-foreign/EPUB/lorem.opf | 18 +
.../invalid/lorem-foreign/EPUB/lorem.xhtml | 113 +
.../invalid/lorem-foreign/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-foreign/mimetype | 1 +
.../EPUB/wasteland-content.xhtml | 1082 ++++
.../lorem-mathml-noalt/EPUB/wasteland-cover.jpg | Bin 0 -> 103477 bytes
.../lorem-mathml-noalt/EPUB/wasteland-nav.xhtml | 31 +
.../invalid/lorem-mathml-noalt/EPUB/wasteland.css | 32 +
.../invalid/lorem-mathml-noalt/EPUB/wasteland.opf | 22 +
.../lorem-mathml-noalt/META-INF/container.xml | 7 +
.../expanded/invalid/lorem-mathml-noalt/mimetype | 1 +
.../invalid/lorem-mimetype-2/EPUB/lorem.css | 6 +
.../invalid/lorem-mimetype-2/EPUB/lorem.opf | 17 +
.../invalid/lorem-mimetype-2/EPUB/lorem.xhtml | 108 +
.../lorem-mimetype-2/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-mimetype-2/mimetype | 1 +
.../expanded/invalid/lorem-mimetype/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-mimetype/EPUB/lorem.opf | 17 +
.../invalid/lorem-mimetype/EPUB/lorem.xhtml | 108 +
.../invalid/lorem-mimetype/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-mimetype/mimetype | 1 +
.../expanded/invalid/lorem-poster/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-poster/EPUB/lorem.opf | 19 +
.../expanded/invalid/lorem-poster/EPUB/lorem.xhtml | 113 +
.../expanded/invalid/lorem-poster/EPUB/poster.png | Bin 0 -> 3654 bytes
.../invalid/lorem-poster/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-poster/mimetype | 1 +
.../expanded/invalid/lorem-remote-2/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-remote-2/EPUB/lorem.opf | 18 +
.../invalid/lorem-remote-2/EPUB/lorem.xhtml | 110 +
.../invalid/lorem-remote-2/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-remote-2/mimetype | 1 +
.../expanded/invalid/lorem-remote-3/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-remote-3/EPUB/lorem.opf | 18 +
.../invalid/lorem-remote-3/EPUB/lorem.xhtml | 110 +
.../invalid/lorem-remote-3/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-remote-3/mimetype | 1 +
.../expanded/invalid/lorem-remote-4/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-remote-4/EPUB/lorem.opf | 19 +
.../invalid/lorem-remote-4/EPUB/lorem.xhtml | 113 +
.../invalid/lorem-remote-4/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-remote-4/mimetype | 1 +
.../expanded/invalid/lorem-remote/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-remote/EPUB/lorem.opf | 18 +
.../expanded/invalid/lorem-remote/EPUB/lorem.xhtml | 110 +
.../invalid/lorem-remote/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-remote/mimetype | 1 +
.../invalid/lorem-signatures/EPUB/lorem.css | 6 +
.../invalid/lorem-signatures/EPUB/lorem.opf | 17 +
.../invalid/lorem-signatures/EPUB/lorem.xhtml | 108 +
.../lorem-signatures/META-INF/container.xml | 7 +
.../lorem-signatures/META-INF/signatures.xml | 7 +
.../30/expanded/invalid/lorem-signatures/mimetype | 1 +
.../invalid/lorem-svg-dual-2/EPUB/lorem-1.xhtml | 120 +
.../invalid/lorem-svg-dual-2/EPUB/lorem-2.xhtml | 22 +
.../invalid/lorem-svg-dual-2/EPUB/lorem.css | 6 +
.../invalid/lorem-svg-dual-2/EPUB/lorem.opf | 20 +
.../lorem-svg-dual-2/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-svg-dual-2/mimetype | 1 +
.../invalid/lorem-svg-dual/EPUB/lorem-1.xhtml | 120 +
.../invalid/lorem-svg-dual/EPUB/lorem-2.xhtml | 22 +
.../expanded/invalid/lorem-svg-dual/EPUB/lorem.css | 6 +
.../expanded/invalid/lorem-svg-dual/EPUB/lorem.opf | 20 +
.../invalid/lorem-svg-dual/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-svg-dual/mimetype | 1 +
.../lorem-svg-hyperlink-notitle/EPUB/lorem-1.xhtml | 120 +
.../lorem-svg-hyperlink-notitle/EPUB/lorem-2.xhtml | 29 +
.../lorem-svg-hyperlink-notitle/EPUB/lorem.css | 6 +
.../lorem-svg-hyperlink-notitle/EPUB/lorem.opf | 19 +
.../META-INF/container.xml | 7 +
.../invalid/lorem-svg-hyperlink-notitle/mimetype | 1 +
.../invalid/lorem-xhtml-rng-1/EPUB/lorem.css | 6 +
.../invalid/lorem-xhtml-rng-1/EPUB/lorem.opf | 17 +
.../invalid/lorem-xhtml-rng-1/EPUB/lorem.xhtml | 109 +
.../lorem-xhtml-rng-1/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-xhtml-rng-1/mimetype | 1 +
.../invalid/lorem-xhtml-sch-1/EPUB/lorem.css | 6 +
.../invalid/lorem-xhtml-sch-1/EPUB/lorem.opf | 17 +
.../invalid/lorem-xhtml-sch-1/EPUB/lorem.xhtml | 109 +
.../lorem-xhtml-sch-1/META-INF/container.xml | 7 +
.../30/expanded/invalid/lorem-xhtml-sch-1/mimetype | 1 +
.../lorem-xrenditions-unmanifested/EPUB/lorem.css | 6 +
.../lorem-xrenditions-unmanifested/EPUB/lorem.opf | 17 +
.../EPUB/lorem.xhtml | 108 +
.../EPUB_2/lorem.css | 6 +
.../EPUB_2/lorem.opf | 17 +
.../EPUB_2/lorem.xhtml | 108 +
.../META-INF/container.xml | 7 +
.../lorem-xrenditions-unmanifested/mimetype | 1 +
.../unmanifested.txt | 0
.../invalid/nav-invalid/META-INF/container.xml | 6 +
.../30/expanded/invalid/nav-invalid/OEBPS/4.xhtml | 127 +
.../invalid/nav-invalid/OEBPS/css/cnib.css | 79 +
.../expanded/invalid/nav-invalid/OEBPS/nav.xhtml | 11 +
.../30/expanded/invalid/nav-invalid/mimetype | 1 +
.../30/expanded/invalid/nav-invalid/package.opf | 22 +
.../expanded/invalid/wasteland-otf/EPUB/fonts.css | 20 +
.../wasteland-otf/EPUB/wasteland-content.xhtml | 1069 +++
.../invalid/wasteland-otf/EPUB/wasteland-cover.jpg | Bin 0 -> 103477 bytes
.../invalid/wasteland-otf/EPUB/wasteland-nav.xhtml | 32 +
.../invalid/wasteland-otf/EPUB/wasteland-night.css | 19 +
.../invalid/wasteland-otf/EPUB/wasteland.css | 59 +
.../invalid/wasteland-otf/EPUB/wasteland.ncx | 49 +
.../invalid/wasteland-otf/EPUB/wasteland.opf | 37 +
.../invalid/wasteland-otf/META-INF/container.xml | 7 +
.../30/expanded/invalid/wasteland-otf/mimetype | 1 +
.../invalid/xhtml-extension/EPUB/lorem.css | 4 +
.../invalid/xhtml-extension/EPUB/lorem.html | 108 +
.../invalid/xhtml-extension/EPUB/lorem.opf | 17 +
.../invalid/xhtml-extension/META-INF/container.xml | 7 +
.../30/expanded/invalid/xhtml-extension/mimetype | 1 +
src/test/resources/30/expanded/make.sh | 12 +
.../30/expanded/valid/cc-shared-culture.txt | 34 +
.../EPUB/audio/asharedculture_soundtrack.mp3 | Bin 0 -> 3265152 bytes
.../cc-shared-culture/EPUB/captions/cc-en.vtt | 225 +
.../cc-shared-culture/EPUB/captions/cc-en.xml | 64 +
.../cc-shared-culture/EPUB/captions/cc-fr.vtt | 221 +
.../cc-shared-culture/EPUB/captions/cc-fr.xml | 63 +
.../cc-shared-culture/EPUB/css/shared-culture.css | 125 +
.../EPUB/fonts/Quicksand_Bold_Oblique.otf | Bin 0 -> 38172 bytes
.../EPUB/fonts/Quicksand_Light.otf | Bin 0 -> 35504 bytes
.../EPUB/images/2565514353_2ae2073e14.jpg | Bin 0 -> 88094 bytes
.../EPUB/images/326261902_3fa36f548d.jpg | Bin 0 -> 279551 bytes
.../valid/cc-shared-culture/EPUB/package.opf | 51 +
.../valid/cc-shared-culture/EPUB/script/shared.js | 30 +
.../EPUB/video/shared-culture.mp4 | Bin 0 -> 4976488 bytes
.../EPUB/video/shared-culture.webm | Bin 0 -> 8330669 bytes
.../valid/cc-shared-culture/EPUB/xhtml/cover.xhtml | 17 +
.../valid/cc-shared-culture/EPUB/xhtml/p10.xhtml | 52 +
.../valid/cc-shared-culture/EPUB/xhtml/p20.xhtml | 60 +
.../valid/cc-shared-culture/EPUB/xhtml/p30.xhtml | 40 +
.../valid/cc-shared-culture/EPUB/xhtml/p40.xhtml | 40 +
.../valid/cc-shared-culture/EPUB/xhtml/p50.xhtml | 52 +
.../valid/cc-shared-culture/EPUB/xhtml/p60.xhtml | 86 +
.../valid/cc-shared-culture/EPUB/xhtml/toc.xhtml | 72 +
.../valid/cc-shared-culture/META-INF/container.xml | 6 +
.../30/expanded/valid/cc-shared-culture/mimetype | 1 +
.../valid/collections-preview/EPUB/chapter1.xhtml | 99 +
.../valid/collections-preview/EPUB/chapter2.xhtml | 99 +
.../valid/collections-preview/EPUB/chapter3.xhtml | 99 +
.../valid/collections-preview/EPUB/lorem.css | 4 +
.../valid/collections-preview/EPUB/lorem.opf | 30 +
.../valid/collections-preview/EPUB/nav.xhtml | 18 +
.../collections-preview/META-INF/container.xml | 7 +
.../30/expanded/valid/collections-preview/mimetype | 1 +
src/test/resources/30/expanded/valid/fallbacks.txt | 13 +
.../30/expanded/valid/fallbacks/EPUB/image.abc | 1 +
.../30/expanded/valid/fallbacks/EPUB/image.jpeg | Bin 0 -> 1962 bytes
.../30/expanded/valid/fallbacks/EPUB/image.xyz | 1 +
.../30/expanded/valid/fallbacks/EPUB/lorem.css | 6 +
.../30/expanded/valid/fallbacks/EPUB/lorem.opf | 20 +
.../30/expanded/valid/fallbacks/EPUB/lorem.xhtml | 109 +
.../valid/fallbacks/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/fallbacks/mimetype | 1 +
.../30/expanded/valid/issue188/EPUB/epub+logo.png | Bin 0 -> 3654 bytes
.../30/expanded/valid/issue188/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue188/EPUB/lorem.opf | 18 +
.../30/expanded/valid/issue188/EPUB/lorem.xhtml | 109 +
.../expanded/valid/issue188/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue188/mimetype | 1 +
.../expanded/valid/issue198/META-INF/container.xml | 6 +
.../30/expanded/valid/issue198/OEBPS/content.opf | 24 +
.../expanded/valid/issue198/OEBPS/page_0001.xhtml | 21 +
.../expanded/valid/issue198/OEBPS/page_0002.xhtml | 25 +
.../30/expanded/valid/issue198/OEBPS/toc.ncx | 27 +
.../resources/30/expanded/valid/issue198/mimetype | 1 +
.../30/expanded/valid/issue211a/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue211a/EPUB/lorem.opf | 17 +
.../30/expanded/valid/issue211a/EPUB/lorem.xhtml | 115 +
.../valid/issue211a/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue211a/mimetype | 1 +
.../30/expanded/valid/issue211b/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue211b/EPUB/lorem.opf | 17 +
.../30/expanded/valid/issue211b/EPUB/lorem.xhtml | 115 +
.../valid/issue211b/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue211b/mimetype | 1 +
.../30/expanded/valid/issue225/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue225/EPUB/lorem.opf | 17 +
.../30/expanded/valid/issue225/EPUB/lorem.xhtml | 108 +
.../expanded/valid/issue225/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue225/mimetype | 1 +
.../30/expanded/valid/issue226/EPUB/doc.pdf | Bin 0 -> 8784 bytes
.../30/expanded/valid/issue226/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue226/EPUB/lorem.opf | 18 +
.../30/expanded/valid/issue226/EPUB/lorem.xhtml | 112 +
.../expanded/valid/issue226/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue226/mimetype | 1 +
.../30/expanded/valid/issue237/EPUB/lorem.css | 8 +
.../30/expanded/valid/issue237/EPUB/lorem.opf | 17 +
.../30/expanded/valid/issue237/EPUB/lorem.xhtml | 108 +
.../expanded/valid/issue237/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue237/mimetype | 1 +
.../30/expanded/valid/issue249/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue249/EPUB/lorem.opf | 18 +
.../30/expanded/valid/issue249/EPUB/lorem.xhtml | 113 +
.../expanded/valid/issue249/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue249/mimetype | 1 +
src/test/resources/30/expanded/valid/issue267.txt | 14 +
.../30/expanded/valid/issue267/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue267/EPUB/lorem.opf | 25 +
.../30/expanded/valid/issue267/EPUB/lorem.xhtml | 108 +
.../expanded/valid/issue267/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue267/mimetype | 1 +
.../30/expanded/valid/issue270/EPUB/lorem-2.xhtml | 57 +
.../30/expanded/valid/issue270/EPUB/lorem.css | 6 +
.../30/expanded/valid/issue270/EPUB/lorem.opf | 19 +
.../30/expanded/valid/issue270/EPUB/lorem.xhtml | 62 +
.../expanded/valid/issue270/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/issue270/mimetype | 1 +
.../resources/30/expanded/valid/lorem-audio.txt | 12 +
.../30/expanded/valid/lorem-audio/EPUB/audio.mp3 | 0
.../30/expanded/valid/lorem-audio/EPUB/audio.mp4 | 0
.../30/expanded/valid/lorem-audio/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-audio/EPUB/lorem.opf | 19 +
.../30/expanded/valid/lorem-audio/EPUB/lorem.xhtml | 114 +
.../valid/lorem-audio/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-audio/mimetype | 1 +
.../30/expanded/valid/lorem-basic-dual.txt | 10 +
.../valid/lorem-basic-dual/EPUB/1-lorem.xhtml | 99 +
.../valid/lorem-basic-dual/EPUB/2-lorem.xhtml | 99 +
.../expanded/valid/lorem-basic-dual/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-basic-dual/EPUB/lorem.opf | 20 +
.../expanded/valid/lorem-basic-dual/EPUB/nav.xhtml | 22 +
.../valid/lorem-basic-dual/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-basic-dual/mimetype | 1 +
.../EPUB/wasteland-content.xhtml | 1082 ++++
.../lorem-basic-mathml/EPUB/wasteland-cover.jpg | Bin 0 -> 103477 bytes
.../lorem-basic-mathml/EPUB/wasteland-nav.xhtml | 31 +
.../valid/lorem-basic-mathml/EPUB/wasteland.css | 32 +
.../valid/lorem-basic-mathml/EPUB/wasteland.opf | 22 +
.../lorem-basic-mathml/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-basic-mathml/mimetype | 1 +
.../expanded/valid/lorem-basic-ncx/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-basic-ncx/EPUB/lorem.ncx | 29 +
.../expanded/valid/lorem-basic-ncx/EPUB/lorem.opf | 18 +
.../valid/lorem-basic-ncx/EPUB/lorem.xhtml | 108 +
.../valid/lorem-basic-ncx/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-basic-ncx/mimetype | 1 +
.../30/expanded/valid/lorem-basic-switch.txt | 15 +
.../EPUB/wasteland-content.xhtml | 1091 ++++
.../lorem-basic-switch/EPUB/wasteland-cover.jpg | Bin 0 -> 103477 bytes
.../lorem-basic-switch/EPUB/wasteland-nav.xhtml | 31 +
.../valid/lorem-basic-switch/EPUB/wasteland.css | 32 +
.../valid/lorem-basic-switch/EPUB/wasteland.opf | 22 +
.../lorem-basic-switch/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-basic-switch/mimetype | 1 +
.../resources/30/expanded/valid/lorem-basic.txt | 12 +
.../30/expanded/valid/lorem-basic/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-basic/EPUB/lorem.opf | 17 +
.../30/expanded/valid/lorem-basic/EPUB/lorem.xhtml | 108 +
.../valid/lorem-basic/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-basic/mimetype | 1 +
.../resources/30/expanded/valid/lorem-bindings.txt | 12 +
.../expanded/valid/lorem-bindings/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-bindings/EPUB/lorem.opf | 22 +
.../expanded/valid/lorem-bindings/EPUB/lorem.xhtml | 115 +
.../valid/lorem-bindings/EPUB/slideshow.xml | 0
.../valid/lorem-bindings/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-bindings/mimetype | 1 +
.../30/expanded/valid/lorem-css-import.txt | 10 +
.../valid/lorem-css-import/EPUB/import.css | 3 +
.../expanded/valid/lorem-css-import/EPUB/lorem.css | 8 +
.../expanded/valid/lorem-css-import/EPUB/lorem.opf | 18 +
.../valid/lorem-css-import/EPUB/lorem.xhtml | 108 +
.../valid/lorem-css-import/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-css-import/mimetype | 1 +
.../resources/30/expanded/valid/lorem-foreign.txt | 12 +
.../30/expanded/valid/lorem-foreign/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-foreign/EPUB/lorem.opf | 18 +
.../expanded/valid/lorem-foreign/EPUB/lorem.xhtml | 113 +
.../valid/lorem-foreign/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-foreign/mimetype | 1 +
.../30/expanded/valid/lorem-image/EPUB/image.png | Bin 0 -> 3654 bytes
.../30/expanded/valid/lorem-image/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-image/EPUB/lorem.opf | 18 +
.../30/expanded/valid/lorem-image/EPUB/lorem.xhtml | 109 +
.../valid/lorem-image/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-image/mimetype | 1 +
.../resources/30/expanded/valid/lorem-link.txt | 13 +
.../30/expanded/valid/lorem-link/EPUB/licence.txt | 1 +
.../30/expanded/valid/lorem-link/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-link/EPUB/lorem.opf | 18 +
.../30/expanded/valid/lorem-link/EPUB/lorem.xhtml | 108 +
.../valid/lorem-link/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-link/mimetype | 1 +
.../30/expanded/valid/lorem-object-fallbacks.txt | 13 +
.../valid/lorem-object-fallbacks/EPUB/lorem.css | 6 +
.../valid/lorem-object-fallbacks/EPUB/lorem.opf | 23 +
.../valid/lorem-object-fallbacks/EPUB/lorem.xhtml | 120 +
.../lorem-object-fallbacks/EPUB/slideshow.xml | 0
.../valid/lorem-object-fallbacks/EPUB/video.avi | 0
.../lorem-object-fallbacks/META-INF/container.xml | 7 +
.../expanded/valid/lorem-object-fallbacks/mimetype | 1 +
.../resources/30/expanded/valid/lorem-poster.txt | 13 +
.../30/expanded/valid/lorem-poster/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-poster/EPUB/lorem.opf | 19 +
.../expanded/valid/lorem-poster/EPUB/lorem.xhtml | 113 +
.../30/expanded/valid/lorem-poster/EPUB/poster.png | Bin 0 -> 3654 bytes
.../valid/lorem-poster/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-poster/mimetype | 1 +
.../expanded/valid/lorem-remote-2/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-remote-2/EPUB/lorem.opf | 19 +
.../expanded/valid/lorem-remote-2/EPUB/lorem.xhtml | 113 +
.../valid/lorem-remote-2/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-remote-2/mimetype | 1 +
.../valid/lorem-remote-https/EPUB/lorem.css | 6 +
.../valid/lorem-remote-https/EPUB/lorem.opf | 18 +
.../valid/lorem-remote-https/EPUB/lorem.xhtml | 110 +
.../lorem-remote-https/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-remote-https/mimetype | 1 +
.../valid/lorem-remote-queryurl/EPUB/lorem.css | 6 +
.../valid/lorem-remote-queryurl/EPUB/lorem.opf | 18 +
.../valid/lorem-remote-queryurl/EPUB/lorem.xhtml | 110 +
.../lorem-remote-queryurl/META-INF/container.xml | 7 +
.../expanded/valid/lorem-remote-queryurl/mimetype | 1 +
.../resources/30/expanded/valid/lorem-remote.txt | 13 +
.../30/expanded/valid/lorem-remote/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-remote/EPUB/lorem.opf | 18 +
.../expanded/valid/lorem-remote/EPUB/lorem.xhtml | 110 +
.../valid/lorem-remote/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-remote/mimetype | 1 +
.../resources/30/expanded/valid/lorem-svg-dual.txt | 10 +
.../valid/lorem-svg-dual/EPUB/lorem-1.xhtml | 120 +
.../valid/lorem-svg-dual/EPUB/lorem-2.xhtml | 29 +
.../expanded/valid/lorem-svg-dual/EPUB/lorem.css | 6 +
.../expanded/valid/lorem-svg-dual/EPUB/lorem.opf | 19 +
.../valid/lorem-svg-dual/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-svg-dual/mimetype | 1 +
.../30/expanded/valid/lorem-svg-hyperlink.txt | 11 +
.../valid/lorem-svg-hyperlink/EPUB/lorem.css | 6 +
.../valid/lorem-svg-hyperlink/EPUB/lorem.opf | 19 +
.../valid/lorem-svg-hyperlink/EPUB/lorem.xhtml | 108 +
.../valid/lorem-svg-hyperlink/EPUB/rect.svg | 18 +
.../lorem-svg-hyperlink/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-svg-hyperlink/mimetype | 1 +
src/test/resources/30/expanded/valid/lorem-svg.txt | 11 +
.../30/expanded/valid/lorem-svg/EPUB/lorem.css | 6 +
.../30/expanded/valid/lorem-svg/EPUB/lorem.opf | 19 +
.../30/expanded/valid/lorem-svg/EPUB/lorem.xhtml | 108 +
.../30/expanded/valid/lorem-svg/EPUB/rect.svg | 18 +
.../valid/lorem-svg/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/lorem-svg/mimetype | 1 +
.../valid/lorem-xrenditions/EPUB/lorem.css | 6 +
.../valid/lorem-xrenditions/EPUB/lorem.opf | 17 +
.../valid/lorem-xrenditions/EPUB/lorem.xhtml | 108 +
.../valid/lorem-xrenditions/EPUB_2/lorem.css | 6 +
.../valid/lorem-xrenditions/EPUB_2/lorem.opf | 17 +
.../valid/lorem-xrenditions/EPUB_2/lorem.xhtml | 108 +
.../valid/lorem-xrenditions/META-INF/container.xml | 7 +
.../30/expanded/valid/lorem-xrenditions/mimetype | 1 +
src/test/resources/30/expanded/valid/svg-cover.txt | 11 +
.../30/expanded/valid/svg-cover/EPUB/cover.svg | 262 +
.../30/expanded/valid/svg-cover/EPUB/lorem.css | 6 +
.../30/expanded/valid/svg-cover/EPUB/lorem.opf | 18 +
.../30/expanded/valid/svg-cover/EPUB/lorem.xhtml | 108 +
.../valid/svg-cover/META-INF/container.xml | 7 +
.../resources/30/expanded/valid/svg-cover/mimetype | 1 +
.../resources/30/expanded/valid/svg-in-spine.txt | 22 +
.../valid/svg-in-spine/META-INF/container.xml | 6 +
.../svg-in-spine/OPS/Images/Tsuru_wiki-1b.svg | 1238 ++++
.../svg-in-spine/OPS/Images/Tsuru_wiki-2b.svg | 1014 +++
.../valid/svg-in-spine/OPS/Images/cover.svg | 262 +
.../valid/svg-in-spine/OPS/Images/crane1.jpg | Bin 0 -> 168654 bytes
.../valid/svg-in-spine/OPS/Images/crane2.jpg | Bin 0 -> 172361 bytes
.../valid/svg-in-spine/OPS/Images/flyer.jpg | Bin 0 -> 422956 bytes
.../valid/svg-in-spine/OPS/Images/p002.svg | 4 +
.../valid/svg-in-spine/OPS/Images/p005.svg | 4 +
.../valid/svg-in-spine/OPS/Images/p006.svg | 4 +
.../valid/svg-in-spine/OPS/Images/p007.svg | 4 +
.../30/expanded/valid/svg-in-spine/OPS/content.opf | 46 +
.../30/expanded/valid/svg-in-spine/OPS/nav.xhtml | 18 +
.../valid/svg-in-spine/OPS/tocimages/bg.png | Bin 0 -> 1148 bytes
.../valid/svg-in-spine/OPS/tocimages/divider.png | Bin 0 -> 1073 bytes
.../svg-in-spine/OPS/tocimages/dividerBig.png | Bin 0 -> 1085 bytes
.../expanded/valid/svg-in-spine/OPS/tocstyle.css | 80 +
.../30/expanded/valid/svg-in-spine/mimetype | 1 +
.../30/expanded/valid/wasteland-basic.txt | 14 +
.../wasteland-basic/EPUB/wasteland-content.xhtml | 1067 +++
.../valid/wasteland-basic/EPUB/wasteland-cover.jpg | Bin 0 -> 103477 bytes
.../valid/wasteland-basic/EPUB/wasteland-nav.xhtml | 31 +
.../valid/wasteland-basic/EPUB/wasteland.css | 32 +
.../valid/wasteland-basic/EPUB/wasteland.opf | 22 +
.../valid/wasteland-basic/META-INF/container.xml | 7 +
.../30/expanded/valid/wasteland-basic/mimetype | 1 +
.../resources/30/expanded/valid/wasteland-otf.txt | 22 +
.../valid/wasteland-otf/EPUB/OldStandard-Bold.otf | Bin 0 -> 471892 bytes
.../wasteland-otf/EPUB/OldStandard-Italic.otf | Bin 0 -> 538480 bytes
.../wasteland-otf/EPUB/OldStandard-Regular.otf | Bin 0 -> 443980 bytes
.../30/expanded/valid/wasteland-otf/EPUB/fonts.css | 20 +
.../wasteland-otf/EPUB/wasteland-content.xhtml | 1069 +++
.../valid/wasteland-otf/EPUB/wasteland-cover.jpg | Bin 0 -> 103477 bytes
.../valid/wasteland-otf/EPUB/wasteland-nav.xhtml | 32 +
.../valid/wasteland-otf/EPUB/wasteland-night.css | 19 +
.../valid/wasteland-otf/EPUB/wasteland.css | 59 +
.../valid/wasteland-otf/EPUB/wasteland.ncx | 49 +
.../valid/wasteland-otf/EPUB/wasteland.opf | 37 +
.../valid/wasteland-otf/META-INF/container.xml | 7 +
.../30/expanded/valid/wasteland-otf/mimetype | 1 +
.../resources/30/single/nav/invalid/h-text.xhtml | 91 +
.../30/single/nav/invalid/nav-labels-001.xhtml | 47 +
.../30/single/nav/invalid/nav-labels-002.xhtml | 48 +
.../30/single/nav/invalid/nav-landmarks-001.xhtml | 47 +
.../30/single/nav/invalid/nav-landmarks-002.xhtml | 56 +
.../30/single/nav/invalid/nav-no-toc.xhtml | 31 +
.../30/single/nav/invalid/nav-pagelist-001.xhtml | 43 +
.../resources/30/single/nav/invalid/noTocNav.xhtml | 59 +
.../30/single/nav/invalid/req-heading.xhtml | 51 +
.../resources/30/single/nav/valid/issue156.xhtml | 81 +
.../resources/30/single/nav/valid/minimal.xhtml | 23 +
.../resources/30/single/nav/valid/nav001.xhtml | 78 +
.../30/single/opf/invalid/bindings-001.opf | 32 +
.../opf/invalid/collection-invalid-do-sch-001.opf | 193 +
.../invalid/collection-invalid-manifest-001.opf | 30 +
.../30/single/opf/invalid/cover-image.opf | 27 +
.../resources/30/single/opf/invalid/date-1.opf | 16 +
.../resources/30/single/opf/invalid/date-2.opf | 17 +
.../30/single/opf/invalid/fallback-001.opf | 27 +
.../30/single/opf/invalid/fallback-002.opf | 30 +
.../invalid/filename_contains_spaces_issue239.opf | 29 +
.../resources/30/single/opf/invalid/foreign.opf | 19 +
.../resources/30/single/opf/invalid/id-unique.opf | 30 +
.../30/single/opf/invalid/invalidMetaAbout.opf | 33 +
.../30/single/opf/invalid/item-properties.opf | 28 +
.../30/single/opf/invalid/itemref-001.opf | 21 +
.../opf/invalid/link-rel-record-no-mediatype.opf | 18 +
.../single/opf/invalid/link-rel-record-refines.opf | 18 +
.../resources/30/single/opf/invalid/malformed.opf | 22 +
.../30/single/opf/invalid/media-overlay-001.opf | 31 +
.../30/single/opf/invalid/media-overlay-002.opf | 32 +
.../single/opf/invalid/media-overlay-meta-001.opf | 36 +
.../meta-collection-refine-noncollection.opf | 18 +
.../opf/invalid/meta-collection-type-norefines.opf | 19 +
.../meta-collection-type-refines-noncollection.opf | 19 +
.../opf/invalid/meta-source-of-norefines.opf | 19 +
.../opf/invalid/meta-source-of-wrongrefines.opf | 18 +
.../opf/invalid/meta-source-of-wrongvalue.opf | 19 +
.../resources/30/single/opf/invalid/minlength.opf | 20 +
.../30/single/opf/invalid/modified-syntax.opf | 19 +
.../resources/30/single/opf/invalid/modified.opf | 18 +
.../resources/30/single/opf/invalid/nav-001.opf | 24 +
.../resources/30/single/opf/invalid/nav-002.opf | 28 +
.../resources/30/single/opf/invalid/nav-003.opf | 28 +
.../30/single/opf/invalid/noDcNamespace.opf | 30 +
.../resources/30/single/opf/invalid/noDcTitle.opf | 29 +
.../30/single/opf/invalid/noMetadataElement.opf | 25 +
src/test/resources/30/single/opf/invalid/noNav.opf | 30 +
src/test/resources/30/single/opf/invalid/order.opf | 28 +
.../30/single/opf/invalid/prefix-declaration.opf | 26 +
.../30/single/opf/invalid/prefixes-001.opf | 28 +
.../30/single/opf/invalid/prefixes-002.opf | 28 +
.../30/single/opf/invalid/prefixes-003.opf | 29 +
.../30/single/opf/invalid/prefixes-004.opf | 28 +
.../30/single/opf/invalid/prefixes-redeclare.opf | 29 +
.../30/single/opf/invalid/refines-relative.opf | 20 +
.../opf/invalid/rendition-globals-badvalues.opf | 22 +
.../opf/invalid/rendition-globals-duplicate.opf | 27 +
.../opf/invalid/rendition-globals-refines.opf | 21 +
.../opf/invalid/rendition-overrides-conflicts.opf | 25 +
.../resources/30/single/opf/invalid/scheme-001.opf | 29 +
.../resources/30/single/opf/invalid/scheme-002.opf | 29 +
.../resources/30/single/opf/invalid/tocncx-001.opf | 25 +
.../resources/30/single/opf/invalid/tocncx-002.opf | 28 +
.../resources/30/single/opf/invalid/uid-001.opf | 22 +
.../resources/30/single/opf/invalid/uid-002.opf | 22 +
.../30/single/opf/peekData/collectionDCType.opf | 13 +
.../resources/30/single/opf/peekData/emptyId.opf | 6 +
.../30/single/opf/peekData/idNotOnDCIdentifier.opf | 7 +
.../resources/30/single/opf/peekData/missingId.opf | 6 +
.../30/single/opf/peekData/multipleDCType.opf | 7 +
.../30/single/opf/peekData/multipleIds.opf | 7 +
.../30/single/opf/peekData/negativeVersion.opf | 3 +
.../resources/30/single/opf/peekData/noEqual.opf | 3 +
.../30/single/opf/peekData/noPackageElement.opf | 8 +
.../30/single/opf/peekData/noPointInValue.opf | 3 +
.../resources/30/single/opf/peekData/noVersion.opf | 3 +
.../30/single/opf/peekData/singleDCType.opf | 6 +
.../30/single/opf/peekData/spacesBetweenQuotes.opf | 3 +
.../30/single/opf/peekData/spacesInValue.opf | 3 +
.../resources/30/single/opf/peekData/uniqueId.opf | 6 +
.../30/single/opf/peekData/validVersion.opf | 3 +
.../30/single/opf/peekData/valueWithoutQuotes.opf | 3 +
.../30/single/opf/peekData/version123.323.opf | 3 +
.../opf/peekData/whitespaceInDCIdentifier.opf | 6 +
.../30/single/opf/peekData/whitespaceInDCType.opf | 8 +
.../resources/30/single/opf/valid/base-001.opf | 29 +
.../resources/30/single/opf/valid/bindings-001.opf | 32 +
.../30/single/opf/valid/collection-valid-001.opf | 36 +
.../30/single/opf/valid/collection-valid-002.opf | 30 +
.../single/opf/valid/collection-valid-do-001.opf | 192 +
src/test/resources/30/single/opf/valid/date-1.opf | 16 +
src/test/resources/30/single/opf/valid/date-2.opf | 16 +
src/test/resources/30/single/opf/valid/date-3.opf | 18 +
.../resources/30/single/opf/valid/dc-source.opf | 20 +
src/test/resources/30/single/opf/valid/dc-type.opf | 19 +
.../30/single/opf/valid/link-rel-record.opf | 18 +
.../30/single/opf/valid/lorem-svg-fallback.opf | 19 +
.../resources/30/single/opf/valid/lorem-svg.opf | 19 +
.../30/single/opf/valid/media-overlay-001.opf | 33 +
.../30/single/opf/valid/media-overlay-002.opf | 34 +
.../30/single/opf/valid/meta-collection.opf | 20 +
.../30/single/opf/valid/meta-schemaorg.opf | 18 +
.../30/single/opf/valid/meta-source-of.opf | 20 +
src/test/resources/30/single/opf/valid/minimal.opf | 17 +
.../resources/30/single/opf/valid/prefixes.opf | 29 +
.../30/single/opf/valid/rendition-globals.opf | 24 +
.../30/single/opf/valid/rendition-properties.opf | 24 +
.../resources/30/single/opf/valid/scheme-001.opf | 29 +
.../30/single/overlays/invalid/overlay-001.smil | 47 +
.../30/single/overlays/invalid/overlay-002.smil | 44 +
.../30/single/overlays/invalid/overlay-003.smil | 49 +
.../30/single/overlays/invalid/overlay-004.smil | 47 +
.../30/single/overlays/invalid/overlay-005.smil | 43 +
.../30/single/overlays/invalid/overlay-006.smil | 44 +
.../30/single/overlays/valid/overlay-001.smil | 42 +
.../30/single/overlays/valid/overlay-002.smil | 42 +
.../30/single/overlays/valid/overlay-003.smil | 53 +
.../30/single/overlays/valid/overlay-007.smil | 44 +
src/test/resources/30/single/svg/invalid/rect.svg | 23 +
.../resources/30/single/svg/valid/issue219.svg | 2465 +++++++
.../resources/30/single/svg/valid/issue222.xhtml | 21 +
src/test/resources/30/single/svg/valid/rect.svg | 18 +
.../30/single/xhtml/invalid/canvas-fallback.xhtml | 16 +
.../30/single/xhtml/invalid/doctype-1.xhtml | 24 +
.../30/single/xhtml/invalid/http-equiv-1.xhtml | 16 +
.../30/single/xhtml/invalid/issue153.xhtml | 21 +
.../30/single/xhtml/invalid/issue230.xhtml | 13 +
.../resources/30/single/xhtml/invalid/link.xhtml | 11 +
.../resources/30/single/xhtml/invalid/md.xhtml | 11 +
.../30/single/xhtml/invalid/ops-mathml-001.xhtml | 31 +
.../30/single/xhtml/invalid/ops-mathml-002.xhtml | 61 +
.../30/single/xhtml/invalid/prefixes-001.xhtml | 22 +
.../30/single/xhtml/invalid/sch-001.xhtml | 164 +
.../30/single/xhtml/invalid/ssml-empty-ph.xhtml | 19 +
.../30/single/xhtml/invalid/style-001.xhtml | 11 +
.../30/single/xhtml/invalid/styleAttr001.xhtml | 8 +
.../30/single/xhtml/invalid/svg-001.xhtml | 40 +
.../30/single/xhtml/invalid/switch-001.xhtml | 63 +
.../30/single/xhtml/invalid/trigger.xhtml | 25 +
.../resources/30/single/xhtml/invalid/xml11.xhtml | 7 +
.../30/single/xhtml/valid/aria-describedAt.xhtml | 8 +
.../resources/30/single/xhtml/valid/canvas.xhtml | 16 +
.../30/single/xhtml/valid/custom-ns-attrs.xhtml | 9 +
.../resources/30/single/xhtml/valid/data.xhtml | 18 +
.../30/single/xhtml/valid/doctype-1.xhtml | 23 +
.../30/single/xhtml/valid/doctype-2.xhtml | 23 +
.../30/single/xhtml/valid/edits-001.xhtml | 79 +
.../30/single/xhtml/valid/embed-001.xhtml | 101 +
.../30/single/xhtml/valid/forms-001.xhtml | 363 ++
.../30/single/xhtml/valid/global-attrs-001.xhtml | 54 +
.../30/single/xhtml/valid/http-equiv-1.xhtml | 16 +
.../resources/30/single/xhtml/valid/issue153.xhtml | 21 +
.../resources/30/single/xhtml/valid/issue204.xhtml | 41 +
.../resources/30/single/xhtml/valid/issue230.xhtml | 13 +
.../resources/30/single/xhtml/valid/issue248.xhtml | 22 +
.../resources/30/single/xhtml/valid/link.xhtml | 11 +
src/test/resources/30/single/xhtml/valid/md.xhtml | 37 +
.../resources/30/single/xhtml/valid/ops-001.xhtml | 122 +
.../30/single/xhtml/valid/ops-mathml-001.xhtml | 89 +
.../30/single/xhtml/valid/ops-mathml-002.xhtml | 53 +
.../30/single/xhtml/valid/ops-svg-001.xhtml | 36 +
.../30/single/xhtml/valid/ops-svg-002.xhtml | 36 +
.../30/single/xhtml/valid/prefixes-001.xhtml | 22 +
.../resources/30/single/xhtml/valid/rdfa.xhtml | 74 +
.../resources/30/single/xhtml/valid/ruby-001.xhtml | 47 +
.../resources/30/single/xhtml/valid/sch-001.xhtml | 139 +
.../30/single/xhtml/valid/sections-001.xhtml | 328 +
.../resources/30/single/xhtml/valid/ssml.xhtml | 19 +
.../30/single/xhtml/valid/style-001.xhtml | 28 +
.../30/single/xhtml/valid/styleAttr001.xhtml | 8 +
.../30/single/xhtml/valid/svg-rdf-001.xhtml | 57 +
.../30/single/xhtml/valid/switch-001.xhtml | 55 +
.../30/single/xhtml/valid/tables-001.xhtml | 114 +
.../resources/30/single/xhtml/valid/text-001.xhtml | 191 +
.../resources/30/single/xhtml/valid/trigger.xhtml | 25 +
.../resources/30/single/xhtml/valid/video.xhtml | 17 +
.../test/DTBook/Basic/META-INF/container.xml | 6 +
.../test/DTBook/Basic/OPS/AreYouReadyV3.xml | 698 ++
.../epubcheck/test/DTBook/Basic/OPS/content.opf | 27 +
.../test/DTBook/Basic/OPS/dtbookbasic.css | 621 ++
.../epubcheck/test/DTBook/Basic/OPS/image1.jpg | Bin 0 -> 3445 bytes
.../epubcheck/test/DTBook/Basic/OPS/image11.jpg | Bin 0 -> 5586 bytes
.../epubcheck/test/DTBook/Basic/OPS/image12.jpg | Bin 0 -> 4826 bytes
.../epubcheck/test/DTBook/Basic/OPS/image13.jpg | Bin 0 -> 12586 bytes
.../epubcheck/test/DTBook/Basic/OPS/image14.jpg | Bin 0 -> 17587 bytes
.../epubcheck/test/DTBook/Basic/OPS/image2.jpg | Bin 0 -> 8577 bytes
.../epubcheck/test/DTBook/Basic/OPS/image3.jpg | Bin 0 -> 5981 bytes
.../epubcheck/test/DTBook/Basic/OPS/image4.jpg | Bin 0 -> 4720 bytes
.../epubcheck/test/DTBook/Basic/OPS/image5.jpg | Bin 0 -> 6589 bytes
.../epubcheck/test/DTBook/Basic/OPS/page01.xhtml | 15 +
.../adobe/epubcheck/test/DTBook/Basic/OPS/toc.ncx | 26 +
.../com/adobe/epubcheck/test/DTBook/Basic/mimetype | 1 +
.../test/DTBook/Basic_expected_results.json | 420 ++
.../test/DTBook/Basic_expected_results.xml | 52 +
.../epubcheck/test/api/InputStream_Expected.txt | 2 +
.../epubcheck/test/api/PrintWriter_Expected.txt | 2 +
.../failonwarnings/META-INF/container.xml | 6 +
.../command_line/failonwarnings/OPS/content.opf | 22 +
.../failonwarnings/OPS/external_css.xhtml | 15 +
.../failonwarnings/OPS/inline_css.xhtml | 18 +
.../test/command_line/failonwarnings/OPS/style.css | 10 +
.../failonwarnings/OPS/style_tag_css.xhtml | 25 +
.../test/command_line/failonwarnings/OPS/toc.ncx | 20 +
.../test/command_line/failonwarnings/OPS/toc.xhtml | 17 +
.../test/command_line/failonwarnings/mimetype | 1 +
.../failonwarnings_expected_results.json | 376 ++
.../command_line/jsonfile/META-INF/container.xml | 6 +
.../test/command_line/jsonfile/OPS/content.opf | 22 +
.../command_line/jsonfile/OPS/external_css.xhtml | 15 +
.../command_line/jsonfile/OPS/inline_css.xhtml | 18 +
.../test/command_line/jsonfile/OPS/style.css | 9 +
.../command_line/jsonfile/OPS/style_tag_css.xhtml | 25 +
.../test/command_line/jsonfile/OPS/toc.ncx | 20 +
.../test/command_line/jsonfile/OPS/toc.xhtml | 17 +
.../epubcheck/test/command_line/jsonfile/mimetype | 1 +
.../command_line/jsonfile_expected_results.json | 364 ++
.../listSeverities_expected_results.txt | 221 +
.../passonwarnings/META-INF/container.xml | 6 +
.../command_line/passonwarnings/OPS/content.opf | 22 +
.../passonwarnings/OPS/external_css.xhtml | 15 +
.../passonwarnings/OPS/inline_css.xhtml | 18 +
.../test/command_line/passonwarnings/OPS/style.css | 9 +
.../passonwarnings/OPS/style_tag_css.xhtml | 25 +
.../test/command_line/passonwarnings/OPS/toc.ncx | 20 +
.../test/command_line/passonwarnings/OPS/toc.xhtml | 17 +
.../test/command_line/passonwarnings/mimetype | 1 +
.../passonwarnings_expected_results.json | 364 ++
.../command_line/severity/META-INF/container.xml | 6 +
.../test/command_line/severity/OPS/content.opf | 24 +
.../test/command_line/severity/OPS/cssStyles.css | 37 +
.../command_line/severity/OPS/external_css.xhtml | 28 +
.../command_line/severity/OPS/inline_css.xhtml | 17 +
.../test/command_line/severity/OPS/style.css | 101 +
.../command_line/severity/OPS/style_tag_css.xhtml | 83 +
.../test/command_line/severity/OPS/toc.ncx | 20 +
.../test/command_line/severity/OPS/toc.xhtml | 17 +
.../test/command_line/severity/OPS/unused.css | 69 +
.../epubcheck/test/command_line/severity/mimetype | 1 +
.../severity_error_expected_results.txt | 12 +
.../severity_fatal_expected_results.txt | 5 +
.../test/command_line/severity_overrideBadId.txt | 3 +
.../severity_overrideBadId_expected_results.txt | 83 +
.../command_line/severity_overrideBadMessage.txt | 4 +
...everity_overrideBadMessage_expected_results.txt | 84 +
.../command_line/severity_overrideBadSeverity.txt | 3 +
...verity_overrideBadSeverity_expected_results.txt | 83 +
...verity_overrideMissingFile_expected_results.txt | 83 +
.../test/command_line/severity_overrideOk.txt | 4 +
.../severity_overrideOk_expected_results.txt | 81 +
.../severity_usage_expected_results.txt | 82 +
.../severity_warning_expected_results.txt | 18 +
.../command_line/xmlfile/META-INF/container.xml | 6 +
.../test/command_line/xmlfile/OPS/content.opf | 22 +
.../command_line/xmlfile/OPS/external_css.xhtml | 15 +
.../test/command_line/xmlfile/OPS/inline_css.xhtml | 18 +
.../test/command_line/xmlfile/OPS/style.css | 9 +
.../command_line/xmlfile/OPS/style_tag_css.xhtml | 25 +
.../test/command_line/xmlfile/OPS/toc.ncx | 20 +
.../test/command_line/xmlfile/OPS/toc.xhtml | 17 +
.../epubcheck/test/command_line/xmlfile/mimetype | 1 +
.../test/command_line/xmlfile_expected_results.xml | 73 +
.../test/css/alternate/META-INF/container.xml | 6 +
.../epubcheck/test/css/alternate/OPS/content.opf | 22 +
.../epubcheck/test/css/alternate/OPS/page01.xhtml | 18 +
.../epubcheck/test/css/alternate/OPS/page02.xhtml | 16 +
.../test/css/alternate/OPS/styles/chocolate.css | 812 +++
.../test/css/alternate/OPS/styles/midnight.css | 812 +++
.../test/css/alternate/OPS/styles/style.css | 800 +++
.../adobe/epubcheck/test/css/alternate/OPS/toc.ncx | 20 +
.../epubcheck/test/css/alternate/OPS/toc.xhtml | 15 +
.../adobe/epubcheck/test/css/alternate/mimetype | 1 +
.../test/css/alternate_expected_results.json | 388 ++
.../test/css/columns/META-INF/container.xml | 6 +
.../epubcheck/test/css/columns/OPS/content.opf | 22 +
.../test/css/columns/OPS/external_css.xhtml | 24 +
.../test/css/columns/OPS/inline_css.xhtml | 21 +
.../adobe/epubcheck/test/css/columns/OPS/style.css | 6 +
.../test/css/columns/OPS/style_tag_css.xhtml | 31 +
.../adobe/epubcheck/test/css/columns/OPS/toc.ncx | 20 +
.../adobe/epubcheck/test/css/columns/OPS/toc.xhtml | 17 +
.../com/adobe/epubcheck/test/css/columns/mimetype | 1 +
.../test/css/columns_expected_results.json | 393 ++
.../test/css/discouraged/META-INF/container.xml | 6 +
.../epubcheck/test/css/discouraged/OPS/content.opf | 24 +
.../test/css/discouraged/OPS/cssStyles.css | 37 +
.../test/css/discouraged/OPS/external_css.xhtml | 28 +
.../test/css/discouraged/OPS/inline_css.xhtml | 17 +
.../epubcheck/test/css/discouraged/OPS/style.css | 101 +
.../test/css/discouraged/OPS/style_tag_css.xhtml | 83 +
.../epubcheck/test/css/discouraged/OPS/toc.ncx | 20 +
.../epubcheck/test/css/discouraged/OPS/toc.xhtml | 17 +
.../epubcheck/test/css/discouraged/OPS/unused.css | 69 +
.../adobe/epubcheck/test/css/discouraged/mimetype | 1 +
.../test/css/discouraged_expected_results.json | 775 +++
.../test/css/discouraged_expected_results.xml | 131 +
.../css/excessive_epub3/META-INF/container.xml | 6 +
.../test/css/excessive_epub3/OPS/content.opf | 28 +
.../css/excessive_epub3/OPS/external_css.xhtml | 67 +
.../test/css/excessive_epub3/OPS/style.css | 4 +
.../test/css/excessive_epub3/OPS/style10.css | 4 +
.../test/css/excessive_epub3/OPS/style11.css | 4 +
.../test/css/excessive_epub3/OPS/style2.css | 4 +
.../test/css/excessive_epub3/OPS/style3.css | 4 +
.../test/css/excessive_epub3/OPS/style4.css | 4 +
.../test/css/excessive_epub3/OPS/style5.css | 4 +
.../test/css/excessive_epub3/OPS/style6.css | 4 +
.../test/css/excessive_epub3/OPS/style7.css | 4 +
.../test/css/excessive_epub3/OPS/style8.css | 4 +
.../test/css/excessive_epub3/OPS/style9.css | 4 +
.../epubcheck/test/css/excessive_epub3/OPS/toc.ncx | 20 +
.../test/css/excessive_epub3/OPS/toc.xhtml | 15 +
.../epubcheck/test/css/excessive_epub3/mimetype | 1 +
.../test/css/excessive_epub3_expected_results.json | 454 ++
.../test/css/font-face/META-INF/container.xml | 6 +
.../epubcheck/test/css/font-face/OPS/content.opf | 25 +
.../test/css/font-face/OPS/external_css.xhtml | 66 +
.../test/css/font-face/OPS/fonts/Fummel.otf | Bin 0 -> 6564 bytes
.../test/css/font-face/OPS/fonts/bloody.woff | Bin 0 -> 28712 bytes
.../test/css/font-face/OPS/fonts/brankovic.ttf | Bin 0 -> 36356 bytes
.../test/css/font-face/OPS/inline_css.xhtml | 12 +
.../test/css/font-face/OPS/style_tag_css.xhtml | 47 +
.../test/css/font-face/OPS/styles/style.css | 95 +
.../adobe/epubcheck/test/css/font-face/OPS/toc.ncx | 20 +
.../epubcheck/test/css/font-face/OPS/toc.xhtml | 17 +
.../adobe/epubcheck/test/css/font-face/mimetype | 1 +
.../test/css/font-face_expected_results.json | 706 ++
.../font_encryption_adobe/META-INF/container.xml | 6 +
.../font_encryption_adobe/META-INF/encryption.xml | 8 +
.../font_encryption_adobe/OEBPS/am-font-test.html | 15 +
.../css/font_encryption_adobe/OEBPS/content.opf | 28 +
.../OEBPS/fonts/ChaparralPro-Regular.otf | Bin 0 -> 31804 bytes
.../css/font_encryption_adobe/OEBPS/template.css | 35 +
.../test/css/font_encryption_adobe/OEBPS/toc.ncx | 20 +
.../test/css/font_encryption_adobe/mimetype | 1 +
.../font_encryption_adobe_expected_results.json | 312 +
.../Css-fontface/css/fonts.css | 82 +
.../Css-fontface/fonts/OldStandard-Bold.obf.otf | Bin 0 -> 471892 bytes
.../Css-fontface/fonts/OldStandard-Bold.obf.woff | Bin 0 -> 104300 bytes
.../Css-fontface/fonts/OldStandard-Bold.otf | Bin 0 -> 471892 bytes
.../Css-fontface/fonts/OldStandard-Bold.woff | Bin 0 -> 104300 bytes
.../Css-fontface/fonts/OldStandard-Italic.obf.otf | Bin 0 -> 538480 bytes
.../Css-fontface/fonts/OldStandard-Italic.obf.woff | Bin 0 -> 118780 bytes
.../Css-fontface/fonts/OldStandard-Italic.otf | Bin 0 -> 538480 bytes
.../Css-fontface/fonts/OldStandard-Italic.woff | Bin 0 -> 118780 bytes
.../Css-fontface/fonts/OldStandard-Regular.obf.otf | Bin 0 -> 443980 bytes
.../fonts/OldStandard-Regular.obf.woff | Bin 0 -> 109100 bytes
.../Css-fontface/fonts/OldStandard-Regular.otf | Bin 0 -> 443980 bytes
.../Css-fontface/fonts/OldStandard-Regular.woff | Bin 0 -> 109100 bytes
.../font_encryption_idpf/Css-fontface/package.opf | 47 +
.../Css-fontface/pages/cover.xhtml | 14 +
.../Css-fontface/pages/pg1.xhtml | 40 +
.../Css-fontface/pages/pg2.xhtml | 42 +
.../Css-fontface/pages/pg3.xhtml | 42 +
.../Css-fontface/pages/toc.xhtml | 30 +
.../font_encryption_idpf/META-INF/container.xml | 6 +
.../font_encryption_idpf/META-INF/encryption.xml | 39 +
.../test/css/font_encryption_idpf/mimetype | 1 +
.../css/font_encryption_idpf_expected_results.json | 810 +++
.../css/font_encryption_idpf_expected_results.xml | 331 +
.../font_encryption_unknown/META-INF/container.xml | 6 +
.../META-INF/encryption.xml | 8 +
.../OEBPS/am-font-test.html | 15 +
.../css/font_encryption_unknown/OEBPS/content.opf | 28 +
.../OEBPS/fonts/ChaparralPro-Regular.otf | Bin 0 -> 31804 bytes
.../css/font_encryption_unknown/OEBPS/template.css | 35 +
.../test/css/font_encryption_unknown/OEBPS/toc.ncx | 20 +
.../test/css/font_encryption_unknown/mimetype | 1 +
.../font_encryption_unknown_expected_results.json | 324 +
.../test/css/keyframe/META-INF/container.xml | 6 +
.../epubcheck/test/css/keyframe/OPS/content.opf | 22 +
.../test/css/keyframe/OPS/external_css.xhtml | 14 +
.../test/css/keyframe/OPS/inline_css.xhtml | 11 +
.../epubcheck/test/css/keyframe/OPS/style.css | 38 +
.../test/css/keyframe/OPS/style_tag_css.xhtml | 53 +
.../adobe/epubcheck/test/css/keyframe/OPS/toc.ncx | 20 +
.../epubcheck/test/css/keyframe/OPS/toc.xhtml | 17 +
.../com/adobe/epubcheck/test/css/keyframe/mimetype | 1 +
.../test/css/keyframe_expected_results.json | 381 ++
.../test/css/multiple_epub2/META-INF/container.xml | 6 +
.../test/css/multiple_epub2/OPS/content.opf | 21 +
.../test/css/multiple_epub2/OPS/external_css.xhtml | 35 +
.../test/css/multiple_epub2/OPS/inline_css.xhtml | 12 +
.../test/css/multiple_epub2/OPS/style.css | 4 +
.../test/css/multiple_epub2/OPS/style2.css | 4 +
.../css/multiple_epub2/OPS/style_tag_css.xhtml | 39 +
.../epubcheck/test/css/multiple_epub2/OPS/toc.ncx | 20 +
.../epubcheck/test/css/multiple_epub2/mimetype | 1 +
.../test/css/multiple_epub2_expected_results.json | 145 +
.../test/css/multiple_epub3/META-INF/container.xml | 6 +
.../test/css/multiple_epub3/OPS/content.opf | 24 +
.../test/css/multiple_epub3/OPS/external_css.xhtml | 47 +
.../test/css/multiple_epub3/OPS/inline_css.xhtml | 12 +
.../test/css/multiple_epub3/OPS/style.css | 4 +
.../test/css/multiple_epub3/OPS/style2.css | 4 +
.../test/css/multiple_epub3/OPS/styleUTF32.css | Bin 0 -> 272 bytes
.../css/multiple_epub3/OPS/style_tag_css.xhtml | 39 +
.../epubcheck/test/css/multiple_epub3/OPS/toc.ncx | 20 +
.../test/css/multiple_epub3/OPS/toc.xhtml | 17 +
.../epubcheck/test/css/multiple_epub3/mimetype | 1 +
.../test/css/multiple_epub3_expected_results.json | 383 ++
.../test/css/transform/META-INF/container.xml | 6 +
.../epubcheck/test/css/transform/OPS/content.opf | 22 +
.../test/css/transform/OPS/external_css.xhtml | 15 +
.../test/css/transform/OPS/inline_css.xhtml | 18 +
.../epubcheck/test/css/transform/OPS/style.css | 9 +
.../test/css/transform/OPS/style_tag_css.xhtml | 25 +
.../adobe/epubcheck/test/css/transform/OPS/toc.ncx | 20 +
.../epubcheck/test/css/transform/OPS/toc.xhtml | 17 +
.../adobe/epubcheck/test/css/transform/mimetype | 1 +
.../test/css/transform_expected_results.json | 364 ++
.../test/css/transition/META-INF/container.xml | 6 +
.../epubcheck/test/css/transition/OPS/content.opf | 22 +
.../test/css/transition/OPS/external_css.xhtml | 14 +
.../test/css/transition/OPS/inline_css.xhtml | 16 +
.../epubcheck/test/css/transition/OPS/style.css | 10 +
.../test/css/transition/OPS/style_tag_css.xhtml | 34 +
.../epubcheck/test/css/transition/OPS/toc.ncx | 20 +
.../epubcheck/test/css/transition/OPS/toc.xhtml | 17 +
.../adobe/epubcheck/test/css/transition/mimetype | 1 +
.../test/css/transition_expected_results.json | 381 ++
.../test/css/unused_epub2/META-INF/container.xml | 6 +
.../test/css/unused_epub2/OPS/content.opf | 21 +
.../test/css/unused_epub2/OPS/external_css.xhtml | 24 +
.../test/css/unused_epub2/OPS/inline_css.xhtml | 12 +
.../epubcheck/test/css/unused_epub2/OPS/style.css | 9 +
.../test/css/unused_epub2/OPS/style_tag_css.xhtml | 33 +
.../epubcheck/test/css/unused_epub2/OPS/toc.ncx | 20 +
.../epubcheck/test/css/unused_epub2/OPS/unused.css | 4 +
.../adobe/epubcheck/test/css/unused_epub2/mimetype | 1 +
.../test/css/unused_epub2_expected_results.json | 39 +
.../test/css/unused_epub3/META-INF/container.xml | 6 +
.../test/css/unused_epub3/OPS/content.opf | 23 +
.../test/css/unused_epub3/OPS/external_css.xhtml | 24 +
.../test/css/unused_epub3/OPS/inline_css.xhtml | 12 +
.../epubcheck/test/css/unused_epub3/OPS/style.css | 9 +
.../test/css/unused_epub3/OPS/style_tag_css.xhtml | 33 +
.../epubcheck/test/css/unused_epub3/OPS/toc.ncx | 20 +
.../epubcheck/test/css/unused_epub3/OPS/toc.xhtml | 17 +
.../epubcheck/test/css/unused_epub3/OPS/unused.css | 4 +
.../adobe/epubcheck/test/css/unused_epub3/mimetype | 1 +
.../test/css/unused_epub3_expected_results.json | 39 +
.../opf/Epub2_marked_v3/META-INF/container.xml | 6 +
.../test/opf/Epub2_marked_v3/OPS/content.opf | 15 +
.../test/opf/Epub2_marked_v3/OPS/page01.xhtml | 15 +
.../epubcheck/test/opf/Epub2_marked_v3/OPS/toc.ncx | 20 +
.../epubcheck/test/opf/Epub2_marked_v3/mimetype | 1 +
.../test/opf/Epub2_marked_v3_expected_results.json | 238 +
.../test/opf/Epub2_marked_v3_expected_results.xml | 59 +
.../opf/Epub3_marked_v2/META-INF/container.xml | 6 +
.../test/opf/Epub3_marked_v2/OPS/content.opf | 17 +
.../test/opf/Epub3_marked_v2/OPS/page01.xhtml | 14 +
.../epubcheck/test/opf/Epub3_marked_v2/OPS/toc.ncx | 20 +
.../test/opf/Epub3_marked_v2/OPS/toc.xhtml | 15 +
.../epubcheck/test/opf/Epub3_marked_v2/mimetype | 1 +
.../test/opf/Epub3_marked_v2_expected_results.json | 260 +
.../test/opf/Epub3_marked_v2_expected_results.xml | 64 +
.../META-INF/container.xml | 6 +
.../Excessive_Spine_Items_epub2/OPS/content.opf | 213 +
.../Excessive_Spine_Items_epub2/OPS/page001.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page002.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page003.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page004.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page005.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page006.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page007.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page008.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page009.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page010.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page011.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page012.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page013.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page014.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page015.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page016.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page017.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page018.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page019.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page020.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page021.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page022.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page023.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page024.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page025.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page026.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page027.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page028.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page029.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page030.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page031.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page032.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page033.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page034.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page035.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page036.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page037.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page038.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page039.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page040.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page041.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page042.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page043.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page044.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page045.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page046.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page047.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page048.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page049.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page050.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page051.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page052.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page053.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page054.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page055.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page056.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page057.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page058.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page059.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page060.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page061.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page062.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page063.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page064.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page065.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page066.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page067.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page068.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page069.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page070.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page071.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page072.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page073.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page074.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page075.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page076.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page077.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page078.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page079.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page080.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page081.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page082.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page083.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page084.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page085.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page086.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page087.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page088.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page089.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page090.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page091.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page092.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page093.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page094.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page095.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page096.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page097.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page098.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page099.xhtml | 11 +
.../Excessive_Spine_Items_epub2/OPS/page100.xhtml | 11 +
.../opf/Excessive_Spine_Items_epub2/OPS/toc.ncx | 20 +
.../test/opf/Excessive_Spine_Items_epub2/mimetype | 1 +
...cessive_Spine_Items_epub2_expected_results.json | 2481 +++++++
.../META-INF/container.xml | 6 +
.../Excessive_Spine_Items_epub3/OPS/content.opf | 215 +
.../Excessive_Spine_Items_epub3/OPS/page001.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page002.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page003.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page004.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page005.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page006.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page007.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page008.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page009.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page010.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page011.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page012.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page013.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page014.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page015.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page016.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page017.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page018.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page019.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page020.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page021.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page022.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page023.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page024.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page025.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page026.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page027.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page028.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page029.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page030.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page031.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page032.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page033.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page034.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page035.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page036.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page037.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page038.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page039.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page040.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page041.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page042.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page043.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page044.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page045.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page046.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page047.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page048.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page049.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page050.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page051.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page052.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page053.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page054.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page055.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page056.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page057.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page058.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page059.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page060.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page061.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page062.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page063.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page064.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page065.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page066.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page067.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page068.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page069.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page070.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page071.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page072.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page073.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page074.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page075.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page076.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page077.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page078.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page079.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page080.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page081.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page082.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page083.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page084.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page085.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page086.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page087.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page088.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page089.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page090.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page091.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page092.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page093.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page094.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page095.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page096.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page097.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page098.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page099.xhtml | 11 +
.../Excessive_Spine_Items_epub3/OPS/page100.xhtml | 11 +
.../opf/Excessive_Spine_Items_epub3/OPS/toc.ncx | 20 +
.../opf/Excessive_Spine_Items_epub3/OPS/toc.xhtml | 15 +
.../test/opf/Excessive_Spine_Items_epub3/mimetype | 1 +
...cessive_Spine_Items_epub3_expected_results.json | 2789 ++++++++
.../META-INF/container.xml | 6 +
.../OPS/content.opf | 216 +
.../OPS/page001.xhtml | 11 +
.../OPS/page002.xhtml | 11 +
.../OPS/page003.xhtml | 11 +
.../OPS/page004.xhtml | 11 +
.../OPS/page005.xhtml | 11 +
.../OPS/page006.xhtml | 11 +
.../OPS/page007.xhtml | 11 +
.../OPS/page008.xhtml | 11 +
.../OPS/page009.xhtml | 11 +
.../OPS/page010.xhtml | 11 +
.../OPS/page011.xhtml | 11 +
.../OPS/page012.xhtml | 11 +
.../OPS/page013.xhtml | 11 +
.../OPS/page014.xhtml | 11 +
.../OPS/page015.xhtml | 11 +
.../OPS/page016.xhtml | 11 +
.../OPS/page017.xhtml | 11 +
.../OPS/page018.xhtml | 11 +
.../OPS/page019.xhtml | 11 +
.../OPS/page020.xhtml | 11 +
.../OPS/page021.xhtml | 11 +
.../OPS/page022.xhtml | 11 +
.../OPS/page023.xhtml | 11 +
.../OPS/page024.xhtml | 11 +
.../OPS/page025.xhtml | 11 +
.../OPS/page026.xhtml | 11 +
.../OPS/page027.xhtml | 11 +
.../OPS/page028.xhtml | 11 +
.../OPS/page029.xhtml | 11 +
.../OPS/page030.xhtml | 11 +
.../OPS/page031.xhtml | 11 +
.../OPS/page032.xhtml | 11 +
.../OPS/page033.xhtml | 11 +
.../OPS/page034.xhtml | 11 +
.../OPS/page035.xhtml | 11 +
.../OPS/page036.xhtml | 11 +
.../OPS/page037.xhtml | 11 +
.../OPS/page038.xhtml | 11 +
.../OPS/page039.xhtml | 11 +
.../OPS/page040.xhtml | 11 +
.../OPS/page041.xhtml | 11 +
.../OPS/page042.xhtml | 11 +
.../OPS/page043.xhtml | 11 +
.../OPS/page044.xhtml | 11 +
.../OPS/page045.xhtml | 11 +
.../OPS/page046.xhtml | 11 +
.../OPS/page047.xhtml | 11 +
.../OPS/page048.xhtml | 11 +
.../OPS/page049.xhtml | 11 +
.../OPS/page050.xhtml | 11 +
.../OPS/page051.xhtml | 11 +
.../OPS/page052.xhtml | 11 +
.../OPS/page053.xhtml | 11 +
.../OPS/page054.xhtml | 11 +
.../OPS/page055.xhtml | 11 +
.../OPS/page056.xhtml | 11 +
.../OPS/page057.xhtml | 11 +
.../OPS/page058.xhtml | 11 +
.../OPS/page059.xhtml | 11 +
.../OPS/page060.xhtml | 11 +
.../OPS/page061.xhtml | 11 +
.../OPS/page062.xhtml | 11 +
.../OPS/page063.xhtml | 11 +
.../OPS/page064.xhtml | 11 +
.../OPS/page065.xhtml | 11 +
.../OPS/page066.xhtml | 11 +
.../OPS/page067.xhtml | 11 +
.../OPS/page068.xhtml | 11 +
.../OPS/page069.xhtml | 11 +
.../OPS/page070.xhtml | 11 +
.../OPS/page071.xhtml | 11 +
.../OPS/page072.xhtml | 11 +
.../OPS/page073.xhtml | 11 +
.../OPS/page074.xhtml | 11 +
.../OPS/page075.xhtml | 11 +
.../OPS/page076.xhtml | 11 +
.../OPS/page077.xhtml | 11 +
.../OPS/page078.xhtml | 11 +
.../OPS/page079.xhtml | 11 +
.../OPS/page080.xhtml | 11 +
.../OPS/page081.xhtml | 11 +
.../OPS/page082.xhtml | 11 +
.../OPS/page083.xhtml | 11 +
.../OPS/page084.xhtml | 11 +
.../OPS/page085.xhtml | 11 +
.../OPS/page086.xhtml | 11 +
.../OPS/page087.xhtml | 11 +
.../OPS/page088.xhtml | 11 +
.../OPS/page089.xhtml | 11 +
.../OPS/page090.xhtml | 11 +
.../OPS/page091.xhtml | 11 +
.../OPS/page092.xhtml | 11 +
.../OPS/page093.xhtml | 11 +
.../OPS/page094.xhtml | 11 +
.../OPS/page095.xhtml | 11 +
.../OPS/page096.xhtml | 11 +
.../OPS/page097.xhtml | 11 +
.../OPS/page098.xhtml | 11 +
.../OPS/page099.xhtml | 11 +
.../OPS/page100.xhtml | 11 +
.../OPS/toc.ncx | 20 +
.../OPS/toc.xhtml | 15 +
.../mimetype | 1 +
..._Items_epub3_fixed_format_expected_results.json | 2926 +++++++++
.../META-INF/container.xml | 6 +
.../OPS/content.opf | 215 +
.../OPS/page001.xhtml | 11 +
.../OPS/page002.xhtml | 11 +
.../OPS/page003.xhtml | 11 +
.../OPS/page004.xhtml | 11 +
.../OPS/page005.xhtml | 11 +
.../OPS/page006.xhtml | 11 +
.../OPS/page007.xhtml | 11 +
.../OPS/page008.xhtml | 11 +
.../OPS/page009.xhtml | 11 +
.../OPS/page010.xhtml | 11 +
.../OPS/page011.xhtml | 11 +
.../OPS/page012.xhtml | 11 +
.../OPS/page013.xhtml | 11 +
.../OPS/page014.xhtml | 11 +
.../OPS/page015.xhtml | 11 +
.../OPS/page016.xhtml | 11 +
.../OPS/page017.xhtml | 11 +
.../OPS/page018.xhtml | 11 +
.../OPS/page019.xhtml | 11 +
.../OPS/page020.xhtml | 11 +
.../OPS/page021.xhtml | 11 +
.../OPS/page022.xhtml | 11 +
.../OPS/page023.xhtml | 11 +
.../OPS/page024.xhtml | 11 +
.../OPS/page025.xhtml | 11 +
.../OPS/page026.xhtml | 11 +
.../OPS/page027.xhtml | 11 +
.../OPS/page028.xhtml | 11 +
.../OPS/page029.xhtml | 11 +
.../OPS/page030.xhtml | 11 +
.../OPS/page031.xhtml | 11 +
.../OPS/page032.xhtml | 11 +
.../OPS/page033.xhtml | 11 +
.../OPS/page034.xhtml | 11 +
.../OPS/page035.xhtml | 11 +
.../OPS/page036.xhtml | 11 +
.../OPS/page037.xhtml | 11 +
.../OPS/page038.xhtml | 11 +
.../OPS/page039.xhtml | 11 +
.../OPS/page040.xhtml | 11 +
.../OPS/page041.xhtml | 11 +
.../OPS/page042.xhtml | 11 +
.../OPS/page043.xhtml | 11 +
.../OPS/page044.xhtml | 11 +
.../OPS/page045.xhtml | 11 +
.../OPS/page046.xhtml | 11 +
.../OPS/page047.xhtml | 11 +
.../OPS/page048.xhtml | 11 +
.../OPS/page049.xhtml | 11 +
.../OPS/page050.xhtml | 11 +
.../OPS/page051.xhtml | 11 +
.../OPS/page052.xhtml | 11 +
.../OPS/page053.xhtml | 11 +
.../OPS/page054.xhtml | 11 +
.../OPS/page055.xhtml | 11 +
.../OPS/page056.xhtml | 11 +
.../OPS/page057.xhtml | 11 +
.../OPS/page058.xhtml | 11 +
.../OPS/page059.xhtml | 11 +
.../OPS/page060.xhtml | 11 +
.../OPS/page061.xhtml | 11 +
.../OPS/page062.xhtml | 11 +
.../OPS/page063.xhtml | 11 +
.../OPS/page064.xhtml | 11 +
.../OPS/page065.xhtml | 11 +
.../OPS/page066.xhtml | 11 +
.../OPS/page067.xhtml | 11 +
.../OPS/page068.xhtml | 11 +
.../OPS/page069.xhtml | 11 +
.../OPS/page070.xhtml | 11 +
.../OPS/page071.xhtml | 11 +
.../OPS/page072.xhtml | 11 +
.../OPS/page073.xhtml | 11 +
.../OPS/page074.xhtml | 11 +
.../OPS/page075.xhtml | 11 +
.../OPS/page076.xhtml | 11 +
.../OPS/page077.xhtml | 11 +
.../OPS/page078.xhtml | 11 +
.../OPS/page079.xhtml | 11 +
.../OPS/page080.xhtml | 11 +
.../OPS/page081.xhtml | 11 +
.../OPS/page082.xhtml | 11 +
.../OPS/page083.xhtml | 11 +
.../OPS/page084.xhtml | 11 +
.../OPS/page085.xhtml | 11 +
.../OPS/page086.xhtml | 11 +
.../OPS/page087.xhtml | 11 +
.../OPS/page088.xhtml | 11 +
.../OPS/page089.xhtml | 11 +
.../OPS/page090.xhtml | 11 +
.../OPS/page091.xhtml | 11 +
.../OPS/page092.xhtml | 11 +
.../OPS/page093.xhtml | 11 +
.../OPS/page094.xhtml | 11 +
.../OPS/page095.xhtml | 11 +
.../OPS/page096.xhtml | 11 +
.../OPS/page097.xhtml | 11 +
.../OPS/page098.xhtml | 11 +
.../OPS/page099.xhtml | 11 +
.../OPS/page100.xhtml | 11 +
.../OPS/toc.ncx | 20 +
.../OPS/toc.xhtml | 15 +
.../mimetype | 1 +
...3_fixed_format_properties_expected_results.json | 2926 +++++++++
.../opf/Fallbacks_epub2/META-INF/container.xml | 6 +
.../test/opf/Fallbacks_epub2/OPS/content.opf | 18 +
.../test/opf/Fallbacks_epub2/OPS/fallback.xhtml | 13 +
.../test/opf/Fallbacks_epub2/OPS/math.xml | 19 +
.../test/opf/Fallbacks_epub2/OPS/page01.xhtml | 14 +
.../epubcheck/test/opf/Fallbacks_epub2/OPS/toc.ncx | 20 +
.../epubcheck/test/opf/Fallbacks_epub2/mimetype | 1 +
.../test/opf/Fallbacks_epub2_expected_results.json | 234 +
.../opf/Fallbacks_epub3/META-INF/container.xml | 6 +
.../test/opf/Fallbacks_epub3/OPS/content.opf | 20 +
.../test/opf/Fallbacks_epub3/OPS/fallback.xhtml | 13 +
.../test/opf/Fallbacks_epub3/OPS/math.xml | 19 +
.../test/opf/Fallbacks_epub3/OPS/page01.xhtml | 14 +
.../epubcheck/test/opf/Fallbacks_epub3/OPS/toc.ncx | 20 +
.../test/opf/Fallbacks_epub3/OPS/toc.xhtml | 15 +
.../epubcheck/test/opf/Fallbacks_epub3/mimetype | 1 +
.../test/opf/Fallbacks_epub3_expected_results.json | 297 +
.../opf/Media-type_handler/META-INF/container.xml | 6 +
.../test/opf/Media-type_handler/OPS/content.opf | 36 +
.../opf/Media-type_handler/OPS/duplicate.xhtml | 14 +
.../Media-type_handler/OPS/images/PlaceHolder.gif | Bin 0 -> 2065 bytes
.../opf/Media-type_handler/OPS/images/image1.jpg | Bin 0 -> 20337 bytes
.../opf/Media-type_handler/OPS/images/image2.jpg | Bin 0 -> 20337 bytes
.../opf/Media-type_handler/OPS/images/image3.jpg | Bin 0 -> 20337 bytes
.../opf/Media-type_handler/OPS/images/image4.jpg | Bin 0 -> 20337 bytes
.../test/opf/Media-type_handler/OPS/impl.xhtml | 61 +
.../test/opf/Media-type_handler/OPS/impl2.xhtml | 10 +
.../test/opf/Media-type_handler/OPS/page01.xhtml | 22 +
.../test/opf/Media-type_handler/OPS/quiz.xml | 6 +
.../test/opf/Media-type_handler/OPS/settings.xml | 6 +
.../test/opf/Media-type_handler/OPS/slideshow.xml | 6 +
.../test/opf/Media-type_handler/OPS/toc.ncx | 20 +
.../test/opf/Media-type_handler/OPS/toc.xhtml | 15 +
.../epubcheck/test/opf/Media-type_handler/mimetype | 1 +
.../opf/Media-type_handler_expected_results.json | 558 ++
.../META-INF/container.xml | 6 +
.../test/opf/Mismatched_mimetypes_epub2/OPS/blank | 0
.../opf/Mismatched_mimetypes_epub2/OPS/content.opf | 22 +
.../Mismatched_mimetypes_epub2/OPS/css/style.css | 1 +
.../opf/Mismatched_mimetypes_epub2/OPS/image1.jpg | Bin 0 -> 20337 bytes
.../Mismatched_mimetypes_epub2/OPS/page01.xhtml | 13 +
.../Mismatched_mimetypes_epub2/OPS/page02.xhtml | 14 +
.../opf/Mismatched_mimetypes_epub2/OPS/sample.mov | Bin 0 -> 101602 bytes
.../opf/Mismatched_mimetypes_epub2/OPS/toc.ncx | 20 +
.../test/opf/Mismatched_mimetypes_epub2/mimetype | 1 +
...ismatched_mimetypes_epub2_expected_results.json | 377 ++
.../META-INF/container.xml | 6 +
.../test/opf/Mismatched_mimetypes_epub3/OPS/blank | 0
.../opf/Mismatched_mimetypes_epub3/OPS/content.opf | 23 +
.../opf/Mismatched_mimetypes_epub3/OPS/image1.jpg | Bin 0 -> 20337 bytes
.../Mismatched_mimetypes_epub3/OPS/page01.xhtml | 13 +
.../Mismatched_mimetypes_epub3/OPS/page02.xhtml | 18 +
.../opf/Mismatched_mimetypes_epub3/OPS/sample.mov | Bin 0 -> 101602 bytes
.../opf/Mismatched_mimetypes_epub3/OPS/toc.ncx | 20 +
.../opf/Mismatched_mimetypes_epub3/OPS/toc.xhtml | 15 +
.../test/opf/Mismatched_mimetypes_epub3/mimetype | 1 +
...ismatched_mimetypes_epub3_expected_results.json | 423 ++
.../opf/Missing_NAV_epub2/META-INF/container.xml | 6 +
.../test/opf/Missing_NAV_epub2/OPS/content.opf | 15 +
.../test/opf/Missing_NAV_epub2/OPS/page01.xhtml | 13 +
.../test/opf/Missing_NAV_epub2/OPS/toc.ncx | 20 +
.../epubcheck/test/opf/Missing_NAV_epub2/mimetype | 1 +
.../opf/Missing_NAV_epub2_expected_results.json | 166 +
.../opf/Missing_NAV_epub3/META-INF/container.xml | 6 +
.../test/opf/Missing_NAV_epub3/OPS/content.opf | 16 +
.../test/opf/Missing_NAV_epub3/OPS/page01.xhtml | 14 +
.../test/opf/Missing_NAV_epub3/OPS/toc.ncx | 20 +
.../epubcheck/test/opf/Missing_NAV_epub3/mimetype | 1 +
.../opf/Missing_NAV_epub3_expected_results.json | 202 +
.../opf/Missing_NCX_epub2/META-INF/container.xml | 6 +
.../test/opf/Missing_NCX_epub2/OPS/content.opf | 14 +
.../test/opf/Missing_NCX_epub2/OPS/page01.xhtml | 13 +
.../epubcheck/test/opf/Missing_NCX_epub2/mimetype | 1 +
.../opf/Missing_NCX_epub2_expected_results.json | 156 +
.../opf/Missing_NCX_epub3/META-INF/container.xml | 6 +
.../test/opf/Missing_NCX_epub3/OPS/content.opf | 16 +
.../test/opf/Missing_NCX_epub3/OPS/page01.xhtml | 14 +
.../test/opf/Missing_NCX_epub3/OPS/toc.xhtml | 15 +
.../epubcheck/test/opf/Missing_NCX_epub3/mimetype | 1 +
.../opf/Missing_NCX_epub3_expected_results.json | 190 +
.../opf/Missing_Spine_epub2/META-INF/container.xml | 6 +
.../test/opf/Missing_Spine_epub2/OPS/content.opf | 12 +
.../test/opf/Missing_Spine_epub2/OPS/page01.xhtml | 14 +
.../test/opf/Missing_Spine_epub2/OPS/toc.ncx | 20 +
.../test/opf/Missing_Spine_epub2/mimetype | 1 +
.../opf/Missing_Spine_epub2_expected_results.json | 190 +
.../opf/Missing_Spine_epub3/META-INF/container.xml | 6 +
.../test/opf/Missing_Spine_epub3/OPS/content.opf | 13 +
.../test/opf/Missing_Spine_epub3/OPS/page01.xhtml | 14 +
.../test/opf/Missing_Spine_epub3/OPS/toc.xhtml | 15 +
.../test/opf/Missing_Spine_epub3/mimetype | 1 +
.../opf/Missing_Spine_epub3_expected_results.json | 226 +
.../opf/Missing_Spine_epub3_expected_results.xml | 62 +
.../Missing_metadata_epub2/META-INF/container.xml | 6 +
.../opf/Missing_metadata_epub2/OPS/content.opf | 13 +
.../opf/Missing_metadata_epub2/OPS/page01.xhtml | 13 +
.../test/opf/Missing_metadata_epub2/OPS/toc.ncx | 20 +
.../test/opf/Missing_metadata_epub2/mimetype | 1 +
.../Missing_metadata_epub2_expected_results.json | 202 +
.../Missing_metadata_epub3/META-INF/container.xml | 6 +
.../opf/Missing_metadata_epub3/OPS/content.opf | 11 +
.../opf/Missing_metadata_epub3/OPS/page01.xhtml | 14 +
.../test/opf/Missing_metadata_epub3/OPS/toc.ncx | 20 +
.../test/opf/Missing_metadata_epub3/OPS/toc.xhtml | 15 +
.../test/opf/Missing_metadata_epub3/mimetype | 1 +
.../Missing_metadata_epub3_expected_results.json | 248 +
.../opf/Missing_unique_id/META-INF/container.xml | 6 +
.../test/opf/Missing_unique_id/OPS/content.opf | 17 +
.../test/opf/Missing_unique_id/OPS/page01.xhtml | 14 +
.../test/opf/Missing_unique_id/OPS/toc.ncx | 20 +
.../test/opf/Missing_unique_id/OPS/toc.xhtml | 15 +
.../epubcheck/test/opf/Missing_unique_id/mimetype | 1 +
.../opf/Missing_unique_id_expected_results.json | 248 +
.../test/opf/Properties/META-INF/container.xml | 6 +
.../epubcheck/test/opf/Properties/OPS/content.opf | 23 +
.../epubcheck/test/opf/Properties/OPS/page01.xhtml | 12 +
.../epubcheck/test/opf/Properties/OPS/page02.xhtml | 12 +
.../epubcheck/test/opf/Properties/OPS/page03.xhtml | 27 +
.../epubcheck/test/opf/Properties/OPS/page04.xhtml | 27 +
.../epubcheck/test/opf/Properties/OPS/toc.ncx | 20 +
.../epubcheck/test/opf/Properties/OPS/toc.xhtml | 15 +
.../adobe/epubcheck/test/opf/Properties/mimetype | 1 +
.../test/opf/Properties_expected_results.json | 426 ++
.../META-INF/container.xml | 6 +
.../opf/Publication_Metadata_epub3/OPS/content.opf | 42 +
.../Publication_Metadata_epub3/OPS/page01.xhtml | 14 +
.../opf/Publication_Metadata_epub3/OPS/toc.ncx | 20 +
.../opf/Publication_Metadata_epub3/OPS/toc.xhtml | 15 +
.../test/opf/Publication_Metadata_epub3/mimetype | 1 +
...ublication_Metadata_epub3_expected_results.json | 212 +
...Publication_Metadata_epub3_expected_results.xml | 113 +
.../epubcheck/test/opf/excessiveSpineItems.js | 59 +
.../test/opf/oebps12/META-INF/container.xml | 6 +
.../com/adobe/epubcheck/test/opf/oebps12/mimetype | 1 +
.../adobe/epubcheck/test/opf/oebps12/oebps12.css | 4 +
.../adobe/epubcheck/test/opf/oebps12/oebps12.opf | 22 +
.../adobe/epubcheck/test/opf/oebps12/page01.html | 13 +
.../adobe/epubcheck/test/opf/oebps12/page02.html | 13 +
.../adobe/epubcheck/test/opf/oebps12/style2.css | 4 +
.../test/opf/oebps12_expected_results.json | 311 +
.../opf/rendition_valid/META-INF/container.xml | 6 +
.../test/opf/rendition_valid/OPS/content.opf | 24 +
.../test/opf/rendition_valid/OPS/page01.xhtml | 14 +
.../test/opf/rendition_valid/OPS/page02.xhtml | 14 +
.../test/opf/rendition_valid/OPS/page03.xhtml | 14 +
.../epubcheck/test/opf/rendition_valid/OPS/toc.ncx | 20 +
.../test/opf/rendition_valid/OPS/toc.xhtml | 15 +
.../epubcheck/test/opf/rendition_valid/mimetype | 1 +
.../test/opf/rendition_valid_expected_results.json | 317 +
.../test/opf/viewport/META-INF/container.xml | 6 +
.../epubcheck/test/opf/viewport/OPS/content.opf | 35 +
.../epubcheck/test/opf/viewport/OPS/page001.xhtml | 12 +
.../epubcheck/test/opf/viewport/OPS/page002.xhtml | 12 +
.../epubcheck/test/opf/viewport/OPS/page003.xhtml | 12 +
.../epubcheck/test/opf/viewport/OPS/page004.xhtml | 12 +
.../epubcheck/test/opf/viewport/OPS/page005.svg | 8 +
.../epubcheck/test/opf/viewport/OPS/page005.xhtml | 11 +
.../epubcheck/test/opf/viewport/OPS/page006.svg | 8 +
.../epubcheck/test/opf/viewport/OPS/page007.svg | 8 +
.../epubcheck/test/opf/viewport/OPS/page008.svg | 8 +
.../adobe/epubcheck/test/opf/viewport/OPS/toc.ncx | 68 +
.../epubcheck/test/opf/viewport/OPS/toc.xhtml | 25 +
.../com/adobe/epubcheck/test/opf/viewport/mimetype | 1 +
.../test/opf/viewport2/META-INF/container.xml | 6 +
.../epubcheck/test/opf/viewport2/OPS/content.opf | 25 +
.../epubcheck/test/opf/viewport2/OPS/page001.xhtml | 12 +
.../epubcheck/test/opf/viewport2/OPS/page002.xhtml | 11 +
.../epubcheck/test/opf/viewport2/OPS/page003.xhtml | 12 +
.../epubcheck/test/opf/viewport2/OPS/page004.xhtml | 12 +
.../adobe/epubcheck/test/opf/viewport2/OPS/toc.ncx | 44 +
.../epubcheck/test/opf/viewport2/OPS/toc.xhtml | 20 +
.../adobe/epubcheck/test/opf/viewport2/mimetype | 1 +
.../test/opf/viewport2_expected_results.json | 317 +
.../test/opf/viewport_expected_results.json | 528 ++
.../adobe/epubcheck/test/package/PlaceHolder.epub | Bin 0 -> 2065 bytes
.../com/adobe/epubcheck/test/package/blank.epub | 0
.../adobe/epubcheck/test/package/corrupt_file.epub | Bin 0 -> 40960 bytes
.../package/corrupt_file_expected_results.json | 56 +
.../epubcheck/test/package/empty_archive.epub | Bin 0 -> 22 bytes
.../package/empty_archive_expected_results.json | 57 +
.../adobe/epubcheck/test/package/empty_dir.epub | Bin 0 -> 138 bytes
.../test/package/empty_dir_expected_results.json | 80 +
.../test/package/empty_mimetype/mime.type | 0
.../package/empty_mimetype_expected_results.json | 80 +
.../package/image_types/META-INF/container.xml | 6 +
.../test/package/image_types/OPS/content.opf | 22 +
.../test/package/image_types/OPS/images/BigRed.png | Bin 0 -> 31984 bytes
.../package/image_types/OPS/images/PlaceHolder.gif | Bin 0 -> 2065 bytes
.../package/image_types/OPS/images/PlaceHolder.png | Bin 0 -> 2065 bytes
.../OPS/images/PrincessBrideReunion.png | Bin 0 -> 6800022 bytes
.../test/package/image_types/OPS/images/kitty.jpeg | Bin 0 -> 10995 bytes
.../test/package/image_types/OPS/page01.xhtml | 18 +
.../epubcheck/test/package/image_types/OPS/toc.ncx | 20 +
.../test/package/image_types/OPS/toc.xhtml | 15 +
.../epubcheck/test/package/image_types/mimetype | 1 +
.../test/package/image_types_expected_results.json | 334 +
.../interesting_paths_epub2/META-INF/container.xml | 6 +
.../OPS Content/More XHTML Content/page01.xhtml | 16 +
.../OPS Content/content.opf | 17 +
.../interesting_paths_epub2/OPS Content/toc.ncx | 26 +
.../XHTML Content/page02.xhtml | 15 +
.../test/package/interesting_paths_epub2/mimetype | 1 +
.../interesting_paths_epub2_expected_results.json | 215 +
.../interesting_paths_epub2_expected_results.xml | 55 +
.../interesting_paths_epub3/META-INF/container.xml | 6 +
.../OPS Content/Cyrillic_phi.xhtml | 16 +
.../OPS Content/More XHTML Content/page01.xhtml | 16 +
.../OPS Content/content.opf | 24 +
.../OPS Content/page{03}.xhtml | 15 +
.../interesting_paths_epub3/OPS Content/toc.ncx | 26 +
.../interesting_paths_epub3/OPS Content/toc.xhtml | 16 +
.../XHTML Content/page 02.xhtml | 14 +
.../test/package/interesting_paths_epub3/mimetype | 1 +
.../interesting_paths_epub3_expected_results.json | 480 ++
.../interesting_paths_epub3_expected_results.xml | 79 +
.../com/adobe/epubcheck/test/package/mimetype | 0
.../missing_container_file_epub2/OPS/content.opf | 15 +
.../missing_container_file_epub2/OPS/page01.xhtml | 13 +
.../missing_container_file_epub2/OPS/toc.ncx | 20 +
.../package/missing_container_file_epub2/mimetype | 1 +
...sing_container_file_epub2_expected_results.json | 68 +
.../missing_container_file_epub3/OPS/content.opf | 17 +
.../missing_container_file_epub3/OPS/page01.xhtml | 14 +
.../missing_container_file_epub3/OPS/toc.ncx | 20 +
.../missing_container_file_epub3/OPS/toc.xhtml | 15 +
.../package/missing_container_file_epub3/mimetype | 1 +
...sing_container_file_epub3_expected_results.json | 68 +
.../package/missing_file_expected_results.json | 56 +
.../META-INF/container.xml | 6 +
.../missing_mimetype_file_epub2/OPS/content.opf | 15 +
.../missing_mimetype_file_epub2/OPS/page01.xhtml | 13 +
.../missing_mimetype_file_epub2/OPS/toc.ncx | 20 +
...ssing_mimetype_file_epub2_expected_results.json | 156 +
.../META-INF/container.xml | 6 +
.../missing_mimetype_file_epub3/OPS/content.opf | 17 +
.../missing_mimetype_file_epub3/OPS/page01.xhtml | 14 +
.../missing_mimetype_file_epub3/OPS/toc.ncx | 20 +
.../missing_mimetype_file_epub3/OPS/toc.xhtml | 15 +
...ssing_mimetype_file_epub3_expected_results.json | 202 +
.../missing_ncx_file/META-INF/container.xml | 6 +
.../test/package/missing_ncx_file/OPS/content.opf | 15 +
.../test/package/missing_ncx_file/OPS/page01.xhtml | 14 +
.../test/package/missing_ncx_file/mimetype | 1 +
.../package/missing_ncx_file_expected_results.json | 166 +
.../missing_opf_epub_file_expected_results.json | 56 +
.../missing_opf_file/META-INF/container.xml | 7 +
.../test/package/missing_opf_file/OPS/content.opf | 17 +
.../test/package/missing_opf_file/OPS/page01.xhtml | 14 +
.../test/package/missing_opf_file/OPS/toc.ncx | 20 +
.../test/package/missing_opf_file/OPS/toc.xhtml | 15 +
.../test/package/missing_opf_file/mimetype | 1 +
.../package/missing_opf_file_expected_results.json | 158 +
.../missing_toc_file/META-INF/container.xml | 6 +
.../test/package/missing_toc_file/OPS/content.opf | 17 +
.../test/package/missing_toc_file/OPS/page01.xhtml | 14 +
.../test/package/missing_toc_file/OPS/toc.ncx | 20 +
.../test/package/missing_toc_file/mimetype | 1 +
.../package/missing_toc_file_expected_results.json | 224 +
.../epubcheck/test/package/path_resolution/A.xhtml | 13 +
.../test/package/path_resolution/Hydrangeas.jpg | Bin 0 -> 595284 bytes
.../package/path_resolution/META-INF/container.xml | 6 +
.../test/package/path_resolution/MathML2.xhtml | 23 +
.../package/path_resolution/OPS/Description.xhtml | 13 +
.../test/package/path_resolution/OPS/MathML1.xhtml | 23 +
.../path_resolution/OPS/images/Lighthouse.jpg | Bin 0 -> 561276 bytes
.../path_resolution/OPS/images/equation_1.png | Bin 0 -> 3469 bytes
.../test/package/path_resolution/OPS/toc.ncx | 21 +
.../test/package/path_resolution/OPS/toc.xhtml | 18 +
.../test/package/path_resolution/content.opf | 28 +
.../test/package/path_resolution/equation_2.png | Bin 0 -> 3672 bytes
.../test/package/path_resolution/mimetype | 1 +
.../package/path_resolution_expected_results.json | 413 ++
.../com/adobe/epubcheck/test/package/period.js | 19 +
.../epubcheck/test/package/wrong_extension.zip | Bin 0 -> 5361 bytes
.../package/wrong_extension_expected_results.json | 281 +
.../test/package/wrong_type_expected_results.json | 68 +
.../scripts/XMLHttpRequest/META-INF/container.xml | 6 +
.../test/scripts/XMLHttpRequest/OPS/Test.txt | 1 +
.../test/scripts/XMLHttpRequest/OPS/content.opf | 23 +
.../XMLHttpRequest/OPS/external_script.xhtml | 14 +
.../scripts/XMLHttpRequest/OPS/inline_script.xhtml | 11 +
.../test/scripts/XMLHttpRequest/OPS/sample.js | 8 +
.../scripts/XMLHttpRequest/OPS/script_tag.xhtml | 39 +
.../test/scripts/XMLHttpRequest/OPS/toc.ncx | 20 +
.../test/scripts/XMLHttpRequest/OPS/toc.xhtml | 16 +
.../epubcheck/test/scripts/XMLHttpRequest/mimetype | 1 +
.../scripts/XMLHttpRequest_expected_results.json | 460 ++
.../test/scripts/epub2/META-INF/container.xml | 6 +
.../epubcheck/test/scripts/epub2/OPS/content.opf | 20 +
.../test/scripts/epub2/OPS/external_script.xhtml | 14 +
.../test/scripts/epub2/OPS/inline_script.xhtml | 13 +
.../epubcheck/test/scripts/epub2/OPS/sample.js | 6 +
.../test/scripts/epub2/OPS/script_tag.xhtml | 28 +
.../adobe/epubcheck/test/scripts/epub2/OPS/toc.ncx | 20 +
.../adobe/epubcheck/test/scripts/epub2/mimetype | 1 +
.../test/scripts/epub2_expected_results.json | 312 +
.../test/scripts/eval/META-INF/container.xml | 6 +
.../epubcheck/test/scripts/eval/OPS/content.opf | 22 +
.../test/scripts/eval/OPS/external_script.xhtml | 14 +
.../test/scripts/eval/OPS/inline_script.xhtml | 11 +
.../epubcheck/test/scripts/eval/OPS/sample.js | 7 +
.../test/scripts/eval/OPS/script_tag.xhtml | 17 +
.../adobe/epubcheck/test/scripts/eval/OPS/toc.ncx | 20 +
.../epubcheck/test/scripts/eval/OPS/toc.xhtml | 16 +
.../com/adobe/epubcheck/test/scripts/eval/mimetype | 1 +
.../test/scripts/eval_expected_results.json | 449 ++
.../test/scripts/properties/META-INF/container.xml | 6 +
.../test/scripts/properties/OPS/content.opf | 28 +
.../scripts/properties/OPS/external_script.xhtml | 14 +
.../OPS/external_script_not_marked.xhtml | 14 +
.../scripts/properties/OPS/inline_script.xhtml | 15 +
.../properties/OPS/inline_script_not_marked.xhtml | 13 +
.../test/scripts/properties/OPS/sample.js | 6 +
.../test/scripts/properties/OPS/script_tag.xhtml | 20 +
.../properties/OPS/script_tag_not_marked.xhtml | 20 +
.../epubcheck/test/scripts/properties/OPS/toc.ncx | 20 +
.../test/scripts/properties/OPS/toc.xhtml | 16 +
.../epubcheck/test/scripts/properties/mimetype | 1 +
.../test/scripts/properties_expected_results.json | 621 ++
.../test/scripts/storage/META-INF/container.xml | 6 +
.../epubcheck/test/scripts/storage/OPS/content.opf | 22 +
.../test/scripts/storage/OPS/external_script.xhtml | 14 +
.../test/scripts/storage/OPS/inline_script.xhtml | 14 +
.../epubcheck/test/scripts/storage/OPS/sample.js | 14 +
.../test/scripts/storage/OPS/script_tag.xhtml | 23 +
.../epubcheck/test/scripts/storage/OPS/toc.ncx | 20 +
.../epubcheck/test/scripts/storage/OPS/toc.xhtml | 16 +
.../adobe/epubcheck/test/scripts/storage/mimetype | 1 +
.../test/scripts/storage_expected_results.json | 474 ++
.../test/scripts/unused/META-INF/container.xml | 6 +
.../epubcheck/test/scripts/unused/OPS/content.opf | 23 +
.../test/scripts/unused/OPS/external_script.xhtml | 23 +
.../test/scripts/unused/OPS/inline_script.xhtml | 13 +
.../epubcheck/test/scripts/unused/OPS/sample.js | 20 +
.../test/scripts/unused/OPS/script_tag.xhtml | 36 +
.../epubcheck/test/scripts/unused/OPS/toc.ncx | 20 +
.../epubcheck/test/scripts/unused/OPS/toc.xhtml | 16 +
.../epubcheck/test/scripts/unused/OPS/unused.js | 6 +
.../adobe/epubcheck/test/scripts/unused/mimetype | 1 +
.../test/scripts/unused_expected_results.json | 422 ++
.../test/toc/fragments/META-INF/container.xml | 6 +
.../epubcheck/test/toc/fragments/OPS/content.opf | 19 +
.../epubcheck/test/toc/fragments/OPS/page01.xhtml | 15 +
.../epubcheck/test/toc/fragments/OPS/page02.xhtml | 14 +
.../adobe/epubcheck/test/toc/fragments/OPS/toc.ncx | 20 +
.../epubcheck/test/toc/fragments/OPS/toc.xhtml | 29 +
.../adobe/epubcheck/test/toc/fragments/mimetype | 1 +
.../test/toc/fragments_expected_results.json | 251 +
.../test/toc/invalid_ncx/META-INF/container.xml | 6 +
.../epubcheck/test/toc/invalid_ncx/OPS/content.opf | 17 +
.../test/toc/invalid_ncx/OPS/page01.xhtml | 14 +
.../epubcheck/test/toc/invalid_ncx/OPS/toc.ncx | 30 +
.../epubcheck/test/toc/invalid_ncx/OPS/toc.xhtml | 15 +
.../adobe/epubcheck/test/toc/invalid_ncx/mimetype | 1 +
.../test/toc/invalid_ncx_expected_results.json | 265 +
.../toc/missing_epub_type/META-INF/container.xml | 6 +
.../test/toc/missing_epub_type/OPS/content.opf | 17 +
.../test/toc/missing_epub_type/OPS/page01.xhtml | 14 +
.../test/toc/missing_epub_type/OPS/toc.ncx | 20 +
.../test/toc/missing_epub_type/OPS/toc.xhtml | 16 +
.../epubcheck/test/toc/missing_epub_type/mimetype | 1 +
.../toc/missing_epub_type_expected_results.json | 241 +
.../xhtml/External_media/META-INF/container.xml | 6 +
.../test/xhtml/External_media/OPS/audio.xhtml | 17 +
.../test/xhtml/External_media/OPS/content.opf | 23 +
.../test/xhtml/External_media/OPS/sample.jpg | Bin 0 -> 20337 bytes
.../test/xhtml/External_media/OPS/toc.ncx | 20 +
.../test/xhtml/External_media/OPS/toc.xhtml | 16 +
.../test/xhtml/External_media/OPS/video.xhtml | 17 +
.../epubcheck/test/xhtml/External_media/mimetype | 1 +
.../xhtml/External_media_expected_results.json | 339 +
.../xhtml/accessibility/META-INF/container.xml | 6 +
.../xhtml/accessibility/OPS/ImageMap_target.xhtml | 40 +
.../accessibility/OPS/Navigation_ImageMap.xhtml | 25 +
.../test/xhtml/accessibility/OPS/content.opf | 22 +
.../xhtml/accessibility/OPS/images/devices2.jpg | Bin 0 -> 36298 bytes
.../test/xhtml/accessibility/OPS/page01.xhtml | 15 +
.../epubcheck/test/xhtml/accessibility/OPS/toc.ncx | 20 +
.../test/xhtml/accessibility/OPS/toc.xhtml | 15 +
.../epubcheck/test/xhtml/accessibility/mimetype | 1 +
.../test/xhtml/accessibility_expected_results.json | 417 ++
.../test/xhtml/dtd/META-INF/container.xml | 6 +
.../adobe/epubcheck/test/xhtml/dtd/OPS/content.opf | 29 +
.../test/xhtml/dtd/OPS/external_dtd.xhtml | 15 +
.../epubcheck/test/xhtml/dtd/OPS/inline_dtd.xhtml | 17 +
.../test/xhtml/dtd/OPS/internal_dtd.xhtml | 15 +
.../test/xhtml/dtd/OPS/internal_dtd2.xhtml | 17 +
.../test/xhtml/dtd/OPS/internal_xhtml_dtd.xml | 15 +
.../adobe/epubcheck/test/xhtml/dtd/OPS/sample.dtd | 14 +
.../com/adobe/epubcheck/test/xhtml/dtd/OPS/toc.ncx | 21 +
.../adobe/epubcheck/test/xhtml/dtd/OPS/toc.xhtml | 16 +
.../epubcheck/test/xhtml/dtd/OPS/xhtml-lat1.ent | 121 +
.../epubcheck/test/xhtml/dtd/OPS/xhtml-special.ent | 82 +
.../epubcheck/test/xhtml/dtd/OPS/xhtml-symbol.ent | 204 +
.../epubcheck/test/xhtml/dtd/OPS/xhtml1-strict.dtd | 979 +++
.../com/adobe/epubcheck/test/xhtml/dtd/mimetype | 1 +
.../epubcheck/test/xhtml/dtd_expected_results.json | 644 ++
.../test/xhtml/epubcfi/META-INF/container.xml | 6 +
.../test/xhtml/epubcfi/OPS/Intra_Publication.xhtml | 15 +
.../test/xhtml/epubcfi/OPS/Outer_Publication.xhtml | 14 +
.../epubcheck/test/xhtml/epubcfi/OPS/content.opf | 19 +
.../adobe/epubcheck/test/xhtml/epubcfi/OPS/toc.ncx | 20 +
.../epubcheck/test/xhtml/epubcfi/OPS/toc.xhtml | 15 +
.../adobe/epubcheck/test/xhtml/epubcfi/mimetype | 1 +
.../test/xhtml/epubcfi_expected_results.json | 302 +
.../html5_deprecated_epub3/META-INF/container.xml | 6 +
.../xhtml/html5_deprecated_epub3/OPS/content.opf | 17 +
.../xhtml/html5_deprecated_epub3/OPS/html5.xhtml | 26 +
.../test/xhtml/html5_deprecated_epub3/OPS/toc.ncx | 20 +
.../xhtml/html5_deprecated_epub3/OPS/toc.xhtml | 15 +
.../test/xhtml/html5_deprecated_epub3/mimetype | 1 +
.../html5_deprecated_epub3_expected_results.json | 260 +
.../test/xhtml/html5_epub2/META-INF/container.xml | 6 +
.../test/xhtml/html5_epub2/OPS/content.opf | 16 +
.../test/xhtml/html5_epub2/OPS/html5.xhtml | 25 +
.../test/xhtml/html5_epub2/OPS/sample.m4a | Bin 0 -> 43256 bytes
.../epubcheck/test/xhtml/html5_epub2/OPS/toc.ncx | 20 +
.../epubcheck/test/xhtml/html5_epub2/mimetype | 1 +
.../test/xhtml/html5_epub2_expected_results.json | 244 +
.../test/xhtml/html5_epub3/META-INF/container.xml | 6 +
.../test/xhtml/html5_epub3/OPS/content.opf | 20 +
.../test/xhtml/html5_epub3/OPS/html5.xhtml | 26 +
.../test/xhtml/html5_epub3/OPS/sample.m4a | Bin 0 -> 43256 bytes
.../epubcheck/test/xhtml/html5_epub3/OPS/toc.ncx | 20 +
.../epubcheck/test/xhtml/html5_epub3/OPS/toc.xhtml | 15 +
.../test/xhtml/html5_epub3/OPS/xml_version.xhtml | 12 +
.../epubcheck/test/xhtml/html5_epub3/mimetype | 1 +
.../test/xhtml/html5_epub3_expected_results.json | 333 +
.../test/xhtml/hyperlinks/META-INF/container.xml | 6 +
.../test/xhtml/hyperlinks/OPS/content.opf | 26 +
.../test/xhtml/hyperlinks/OPS/images/mathml.png | Bin 0 -> 4957 bytes
.../test/xhtml/hyperlinks/OPS/images/sample.jpg | Bin 0 -> 20337 bytes
.../test/xhtml/hyperlinks/OPS/link_target.xhtml | 20 +
.../test/xhtml/hyperlinks/OPS/links.xhtml | 61 +
.../test/xhtml/hyperlinks/OPS/mathMl.xhtml | 15 +
.../epubcheck/test/xhtml/hyperlinks/OPS/style.css | 3 +
.../test/xhtml/hyperlinks/OPS/svg_links.xhtml | 30 +
.../epubcheck/test/xhtml/hyperlinks/OPS/toc.ncx | 26 +
.../epubcheck/test/xhtml/hyperlinks/OPS/toc.xhtml | 16 +
.../adobe/epubcheck/test/xhtml/hyperlinks/mimetype | 1 +
.../test/xhtml/hyperlinks_expected_results.json | 723 +++
.../test/xhtml/lang/META-INF/container.xml | 6 +
.../epubcheck/test/xhtml/lang/OPS/content.opf | 21 +
.../test/xhtml/lang/OPS/invalid_lang.xhtml | 13 +
.../test/xhtml/lang/OPS/mismatched_lang.xhtml | 13 +
.../epubcheck/test/xhtml/lang/OPS/no_lang.xhtml | 13 +
.../adobe/epubcheck/test/xhtml/lang/OPS/toc.ncx | 20 +
.../adobe/epubcheck/test/xhtml/lang/OPS/toc.xhtml | 15 +
.../com/adobe/epubcheck/test/xhtml/lang/mimetype | 1 +
.../test/xhtml/lang_expected_results.json | 372 ++
.../test/xhtml/lorem_noxmlns/EPUB/lorem.css | 6 +
.../test/xhtml/lorem_noxmlns/EPUB/lorem.ncx | 29 +
.../test/xhtml/lorem_noxmlns/EPUB/lorem.opf | 17 +
.../test/xhtml/lorem_noxmlns/EPUB/lorem.xhtml | 100 +
.../xhtml/lorem_noxmlns/META-INF/container.xml | 7 +
.../epubcheck/test/xhtml/lorem_noxmlns/mimetype | 1 +
.../test/xhtml/lorem_noxmlns_expected_results.json | 246 +
.../test/xhtml/lorem_pagemaps1/EPUB/lorem.css | 6 +
.../test/xhtml/lorem_pagemaps1/EPUB/lorem.ncx | 47 +
.../test/xhtml/lorem_pagemaps1/EPUB/lorem.opf | 20 +
.../test/xhtml/lorem_pagemaps1/EPUB/lorem.xhtml | 99 +
.../test/xhtml/lorem_pagemaps1/EPUB/nav.xhtml | 33 +
.../test/xhtml/lorem_pagemaps1/EPUB/page-map.xml | 6 +
.../xhtml/lorem_pagemaps1/META-INF/container.xml | 7 +
.../epubcheck/test/xhtml/lorem_pagemaps1/mimetype | 1 +
.../xhtml/lorem_pagemaps1_expected_results.json | 350 +
.../test/xhtml/lorem_pagemaps2/EPUB/lorem.css | 6 +
.../test/xhtml/lorem_pagemaps2/EPUB/lorem.ncx | 29 +
.../test/xhtml/lorem_pagemaps2/EPUB/lorem.opf | 19 +
.../test/xhtml/lorem_pagemaps2/EPUB/lorem.xhtml | 99 +
.../test/xhtml/lorem_pagemaps2/EPUB/nav.xhtml | 33 +
.../xhtml/lorem_pagemaps2/META-INF/container.xml | 7 +
.../epubcheck/test/xhtml/lorem_pagemaps2/mimetype | 1 +
.../xhtml/lorem_pagemaps2_expected_results.json | 285 +
.../test/xhtml/lorem_pagemaps3/EPUB/lorem.css | 6 +
.../test/xhtml/lorem_pagemaps3/EPUB/lorem.ncx | 47 +
.../test/xhtml/lorem_pagemaps3/EPUB/lorem.opf | 19 +
.../test/xhtml/lorem_pagemaps3/EPUB/lorem.xhtml | 99 +
.../test/xhtml/lorem_pagemaps3/EPUB/nav.xhtml | 33 +
.../test/xhtml/lorem_pagemaps3/EPUB/page-map.xml | 6 +
.../xhtml/lorem_pagemaps3/META-INF/container.xml | 7 +
.../epubcheck/test/xhtml/lorem_pagemaps3/mimetype | 1 +
.../xhtml/lorem_pagemaps3_expected_results.json | 374 ++
.../xhtml/media_overlays/META-INF/container.xml | 6 +
.../media_overlays/OPS/audio/echild_s01_all.m4a | Bin 0 -> 68669 bytes
.../OPS/audio/mobydick_001_002_melville.mp4 | Bin 0 -> 9131982 bytes
.../xhtml/media_overlays/OPS/chapter_001.xhtml | 37 +
.../media_overlays/OPS/chapter_001_overlay.smil | 172 +
.../test/xhtml/media_overlays/OPS/content.opf | 30 +
.../xhtml/media_overlays/OPS/css/stylesheet.css | 373 ++
.../media_overlays/OPS/fonts/iwonacond-bold.otf | Bin 0 -> 142404 bytes
.../OPS/fonts/iwonacond-bolditalic.otf | Bin 0 -> 143912 bytes
.../media_overlays/OPS/fonts/iwonacond-italic.otf | Bin 0 -> 143656 bytes
.../media_overlays/OPS/fonts/iwonacond-regular.otf | Bin 0 -> 141748 bytes
.../test/xhtml/media_overlays/OPS/page01.smil | 10 +
.../test/xhtml/media_overlays/OPS/page01.xhtml | 14 +
.../test/xhtml/media_overlays/OPS/toc.ncx | 20 +
.../test/xhtml/media_overlays/OPS/toc.xhtml | 15 +
.../epubcheck/test/xhtml/media_overlays/mimetype | 1 +
.../xhtml/media_overlays_expected_results.json | 772 +++
.../test/xhtml/namespaces/META-INF/container.xml | 6 +
.../test/xhtml/namespaces/OPS/content.opf | 17 +
.../test/xhtml/namespaces/OPS/html5.xhtml | 26 +
.../epubcheck/test/xhtml/namespaces/OPS/toc.ncx | 20 +
.../epubcheck/test/xhtml/namespaces/OPS/toc.xhtml | 15 +
.../adobe/epubcheck/test/xhtml/namespaces/mimetype | 1 +
.../test/xhtml/namespaces_expected_results.json | 272 +
.../test/xhtml/nesting/META-INF/container.xml | 6 +
.../epubcheck/test/xhtml/nesting/OPS/content.opf | 20 +
.../test/xhtml/nesting/OPS/deep_nesting.xhtml | 15 +
.../test/xhtml/nesting/OPS/standard_nesting.xhtml | 49 +
.../test/xhtml/nesting/OPS/stylesheet.css | 97 +
.../adobe/epubcheck/test/xhtml/nesting/OPS/toc.ncx | 20 +
.../epubcheck/test/xhtml/nesting/OPS/toc.xhtml | 15 +
.../adobe/epubcheck/test/xhtml/nesting/mimetype | 1 +
.../test/xhtml/nesting_expected_results.json | 334 +
.../test/xhtml/singleline/META-INF/container.xml | 1 +
.../test/xhtml/singleline/OEBPS/content.opf | 20 +
.../test/xhtml/singleline/OEBPS/moby.html | 1 +
.../epubcheck/test/xhtml/singleline/OEBPS/moby.ncx | 1 +
.../test/xhtml/singleline/OEBPS/stylesheet.css | 1 +
.../adobe/epubcheck/test/xhtml/singleline/mimetype | 1 +
.../test/xhtml/singleline_expected_results.json | 268 +
src/test/resources/css/bom-charset15.css | 7 +
src/test/resources/css/bom-utf16be-charset.css | Bin 0 -> 84 bytes
src/test/resources/css/bom-utf16be.css | Bin 0 -> 42 bytes
src/test/resources/css/bom-utf16le-charset.css | Bin 0 -> 86 bytes
src/test/resources/css/bom-utf16le.css | Bin 0 -> 120 bytes
src/test/resources/css/caja.css | 367 ++
src/test/resources/css/charset-empty.css | 2 +
src/test/resources/css/charset-malformed.css | 2 +
src/test/resources/css/charset-utf8.css | 2 +
src/test/resources/css/counter-styles.css | 217 +
src/test/resources/css/flexbox.css | 62 +
src/test/resources/css/issue231-crlf.css | 102 +
src/test/resources/css/issue231-lf.css | 102 +
src/test/resources/css/issue240-1.css | 233 +
src/test/resources/css/issue240-2.css | 161 +
src/test/resources/css/issue241.css | 37 +
src/test/resources/css/issue262.css | 5 +
src/test/resources/css/misc.css | 93 +
src/test/resources/css/none.css | 1 +
src/test/resources/css/other-rule.css | 2 +
src/test/resources/css/other.txt | 1 +
src/test/resources/css/samples.css | 6845 ++++++++++++++++++++
src/test/resources/stress/EPUB/content_00000.xhtml | 101 +
src/test/resources/stress/EPUB/image_00000.png | Bin 0 -> 3654 bytes
src/test/resources/stress/EPUB/nav.xhtml | 16 +
src/test/resources/stress/EPUB/package.opf | 19 +
src/test/resources/stress/EPUB/style_00000.css | 6 +
src/test/resources/stress/META-INF/container.xml | 7 +
src/test/resources/stress/mimetype | 1 +
src/tools/BookReporter.py | 865 +++
src/tools/CompareResults.py | 200 +
src/tools/CompareResultsUtil.py | 45 +
src/tools/CompareVersions.py | 194 +
src/tools/Dictionary.py | 39 +
2618 files changed, 197704 insertions(+), 30 deletions(-)
create mode 100644 COPYING.txt
create mode 100644 README.md
create mode 100644 docs/BookReporter.docx
create mode 100644 docs/BookReporter.pdf
create mode 100644 docs/ePubCheck-4.0-Preview.docx
create mode 100644 docs/ePubCheck-4.0-Preview.pdf
create mode 100644 pom.xml
create mode 100644 src/main/assembly/README-dist.txt
create mode 100644 src/main/assembly/dist.xml
create mode 100644 src/main/assembly/src.xml
create mode 100644 src/main/java/com/adobe/epubcheck/api/EpubCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/api/EpubCheckFactory.java
create mode 100644 src/main/java/com/adobe/epubcheck/api/MasterReport.java
create mode 100644 src/main/java/com/adobe/epubcheck/api/QuietReport.java
create mode 100755 src/main/java/com/adobe/epubcheck/api/Report.java
create mode 100755 src/main/java/com/adobe/epubcheck/bitmap/BitmapChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/bitmap/BitmapCheckerFactory.java
create mode 100644 src/main/java/com/adobe/epubcheck/css/CSSChecker.java
create mode 100644 src/main/java/com/adobe/epubcheck/css/CSSCheckerFactory.java
create mode 100644 src/main/java/com/adobe/epubcheck/css/CSSHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/CheckManager.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/ContentValidator.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EntitySearch.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/Epub3StructureCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubCSSCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubCfiCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubCheckContentFactory.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubExtLinksCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubHTML5StructureCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubLangCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubMetaDataV2Check.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubMetaDataV3Check.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubNCXCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubNavCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubRenditionCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubSVGCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubScriptCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubSpanCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubSpineCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubStyleSheetsCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubTextContentCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/EpubTocCheck.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/PackageReader.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/XmlDocParser.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/css/CSSSelector.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/css/CSSSelectorAttribute.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/css/CSSSelectorCollection.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/css/EpubCSSCheckCSSHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/epubpackage/EpubPackage.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/epubpackage/ManifestItem.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/epubpackage/MetadataElement.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/epubpackage/PackageManifest.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/epubpackage/PackageMetadata.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/epubpackage/PackageSpine.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/epubpackage/SpineItem.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/AnchorTagHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/CSSStyleAttributeHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/Epub3StructureHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/HTMLTagsAnalyseHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/LangAttributeHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/LinkTagHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/ScriptElement.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/ScriptTagHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/SpanTagHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ctc/xml/XMLContentDocParser.java
create mode 100755 src/main/java/com/adobe/epubcheck/dtbook/DTBookChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/dtbook/DTBookCheckerFactory.java
create mode 100755 src/main/java/com/adobe/epubcheck/dtbook/DTBookHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/messages/Message.java
create mode 100644 src/main/java/com/adobe/epubcheck/messages/MessageDictionary.java
create mode 100644 src/main/java/com/adobe/epubcheck/messages/MessageId.java
create mode 100644 src/main/java/com/adobe/epubcheck/messages/MessageLocation.java
create mode 100644 src/main/java/com/adobe/epubcheck/messages/Severity.java
create mode 100644 src/main/java/com/adobe/epubcheck/nav/NavChecker.java
create mode 100644 src/main/java/com/adobe/epubcheck/nav/NavCheckerFactory.java
create mode 100755 src/main/java/com/adobe/epubcheck/ncx/NCXChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/ncx/NCXCheckerFactory.java
create mode 100755 src/main/java/com/adobe/epubcheck/ncx/NCXHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/AdobeFontManglingFilter.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/EncryptionFilter.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/EncryptionHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/IDPFFontManglingFilter.java
create mode 100755 src/main/java/com/adobe/epubcheck/ocf/OCFChecker.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/OCFData.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/OCFFilenameChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/ocf/OCFHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/OCFPackage.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/OCFZipPackage.java
create mode 100644 src/main/java/com/adobe/epubcheck/ocf/UnsupportedEncryptionFilter.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/ContentChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/ContentCheckerFactory.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/DocumentValidator.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/DocumentValidatorFactory.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/GenericContentChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/GenericContentCheckerFactory.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/OPFChecker.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/OPFChecker30.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/OPFCheckerFactory.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/OPFData.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/OPFHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/OPFHandler30.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/OPFItem.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/OPFPeeker.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/OPFReference.java
create mode 100644 src/main/java/com/adobe/epubcheck/opf/VersionRetriever.java
create mode 100755 src/main/java/com/adobe/epubcheck/opf/XRefChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/ops/OPSChecker.java
create mode 100755 src/main/java/com/adobe/epubcheck/ops/OPSCheckerFactory.java
create mode 100755 src/main/java/com/adobe/epubcheck/ops/OPSHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/ops/OPSHandler30.java
create mode 100644 src/main/java/com/adobe/epubcheck/overlay/OverlayChecker.java
create mode 100644 src/main/java/com/adobe/epubcheck/overlay/OverlayCheckerFactory.java
create mode 100644 src/main/java/com/adobe/epubcheck/overlay/OverlayHandler.java
create mode 100644 src/main/java/com/adobe/epubcheck/reporting/CheckMessage.java
create mode 100644 src/main/java/com/adobe/epubcheck/reporting/CheckerMetadata.java
create mode 100644 src/main/java/com/adobe/epubcheck/reporting/CheckingReport.java
create mode 100644 src/main/java/com/adobe/epubcheck/reporting/ItemMetadata.java
create mode 100644 src/main/java/com/adobe/epubcheck/reporting/PublicationMetadata.java
create mode 100755 src/main/java/com/adobe/epubcheck/tool/Checker.java
create mode 100644 src/main/java/com/adobe/epubcheck/tool/EpubChecker.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/Archive.java
create mode 100755 src/main/java/com/adobe/epubcheck/util/CheckUtil.java
create mode 100755 src/main/java/com/adobe/epubcheck/util/DateParser.java
create mode 100755 src/main/java/com/adobe/epubcheck/util/DateParserTest.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/DefaultReportImpl.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/EPUBVersion.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/EpubConstants.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/FeatureEnum.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/FileResourceProvider.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/GenericResourceProvider.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/HandlerUtil.java
create mode 100755 src/main/java/com/adobe/epubcheck/util/InvalidDateException.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/InvalidVersionException.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/JsonWriter.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/LocationImpl.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/Messages.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/NamespaceHelper.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/OPSType.java
create mode 100755 src/main/java/com/adobe/epubcheck/util/PathUtil.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/ReportingLevel.java
create mode 100755 src/main/java/com/adobe/epubcheck/util/ResourceUtil.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/SearchDictionary.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/TextSearchDictionaryEntry.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/URLResourceProvider.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/WriterReportImpl.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/XmlReportAbstract.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/XmlReportImpl.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/XmpReportImpl.java
create mode 100644 src/main/java/com/adobe/epubcheck/util/outWriter.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/AggregateVocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/AltStylesheetVocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/EnumVocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/ForeignVocabs.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/MediaOverlaysVocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/PackageVocabs.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/PrefixDeclarationParser.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/Property.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/RenditionVocabs.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/StagingEdupubVocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/StructureVocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/UncheckedVocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/Vocab.java
create mode 100644 src/main/java/com/adobe/epubcheck/vocab/VocabUtil.java
create mode 100644 src/main/java/com/adobe/epubcheck/xml/DocumentLocatorImpl.java
create mode 100644 src/main/java/com/adobe/epubcheck/xml/Namespaces.java
create mode 100755 src/main/java/com/adobe/epubcheck/xml/XMLAttribute.java
create mode 100755 src/main/java/com/adobe/epubcheck/xml/XMLElement.java
create mode 100755 src/main/java/com/adobe/epubcheck/xml/XMLHandler.java
create mode 100755 src/main/java/com/adobe/epubcheck/xml/XMLNode.java
create mode 100755 src/main/java/com/adobe/epubcheck/xml/XMLParser.java
create mode 100755 src/main/java/com/adobe/epubcheck/xml/XMLValidator.java
create mode 100644 src/main/java/com/adobe/epubcheck/xml/XMLValidators.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssContentHandler.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssErrorHandler.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssEscape.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssExceptions.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssGrammar.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssInputStream.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssLocation.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssParser.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssReader.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssScanner.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssSource.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssToken.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/CssTokenList.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/css/Messages.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/saxon/ColumnNumberFunction.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/saxon/Int64ValueSequence.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/saxon/LineNumberFunction.java
create mode 100644 src/main/java/org/idpf/epubcheck/util/saxon/SystemIdFunction.java
create mode 100644 src/main/licenses/Apache-2.0.txt
create mode 100644 src/main/licenses/BSD-3-Clause.txt
create mode 100644 src/main/licenses/MPL-1.0.txt
create mode 100644 src/main/licenses/W3C.txt
create mode 100644 src/main/licenses/third-party.ftl
create mode 100644 src/main/resources/com/adobe/epubcheck/api/project.properties
create mode 100644 src/main/resources/com/adobe/epubcheck/messages/MessageBundle.properties
create mode 100644 src/main/resources/com/adobe/epubcheck/messages/MessageBundle_ja.properties
create mode 100644 src/main/resources/com/adobe/epubcheck/ops/registeredSchemas.txt
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/dtbook-2005-2.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/ncx-2005-1.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/oeb12.dtdinc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/oebpkg12.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/opf20.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/svg11.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/xhtml-lat1.dtdinc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/xhtml-special.dtdinc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/xhtml-symbol.dtdinc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/xhtml1-strict.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/xhtml1-transitional.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/dtd/xhtml11-ent.dtd
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/container.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/content-svg.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/content-xhtml.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/content.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/dtbook-2005-2.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/encryption.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/ncx-old.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/ncx.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/opf.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/opf12.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/opf20.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/ops/ops-switch.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/ops20.nvdl
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/ops20.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/signatures.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-animation.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-animevents-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-basic-clip.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-basic-filter.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-basic-font.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-basic-graphics-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-basic-structure.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-basic-text.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-clip.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-conditional.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-container-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-core-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-cursor.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-datatypes.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-docevents-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-extensibility.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-extresources-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-filter.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-font.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-gradient.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-graphevents-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-graphics-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-hyperlink.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-image.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-marker.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-mask.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-opacity-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-paint-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-pattern.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-profile.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-qname.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-script.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-shape.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-structure.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-style.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-text.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-view.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-viewport-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg/svg-xlink-attrib.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/svg11.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xenc-schema.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/applet.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/attribs.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/base.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/basic-form.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/basic-table.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/bdo.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/csismap.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/datatypes.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/edit.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/events.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/form.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/frames.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/hypertext.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/iframe.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/image.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/inlstyle.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/legacy.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/link.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/list.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/meta.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/nameident.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/object.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/param.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/pres.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/ruby.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/script.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/ssismap.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/struct.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/style.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/table.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/target.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xhtml/text.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/rng/xmldsig-core-schema.rng
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/sch/id-unique.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/sch/ncx.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/20/sch/opf.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/LICENSE
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/collection-do-30.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/collection-manifest-30.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/edupub/edu-headings.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/edupub/edu-opf.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/edupub/edu-semantics.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-nav-30-PREP.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-nav-30.nvdl
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-nav-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-nav-30.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-svg-30-PREP.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-svg-30.nvdl
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-svg-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-svg-30.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-xhtml-30-PREP.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-xhtml-30.nvdl
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-xhtml-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub-xhtml-30.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/epub30-catalog.xml
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/media-overlay-30-PREP.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/media-overlay-30.nvdl
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/media-overlay-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/media-overlay-30.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/datatypes.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-mathml3-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-prefix-attr.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-ssml-attrs.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-svg11-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-svg11-re.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-switch.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-trigger.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-type-attr.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-xhtml-mathml3-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/epub-xhtml-svg11-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/LICENSE
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/README
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-aria-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-attrib-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-document-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-edit-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-embed-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-forms-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-grouping-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-interactive-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-md.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-models-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-phrasing-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-rdfa.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-script-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-sections-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/html5/html5-style-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/id-unique.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/mathml/LICENSE
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/mathml/mathml3-common.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/mathml/mathml3-content.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/mathml/mathml3-presentation.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/mathml/mathml3-strict-content.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/LICENSE
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Lenient-Encryption11-ghc.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Lenient-Encryption11.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Lenient-Signature-exclusiveC14N.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Lenient-Signature11-properties-exclusiveC14N.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Lenient-Signature11-properties.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Lenient-Signature11.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Strict-Encryption.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/Strict-Signature.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/exc-c14n.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/security_any.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xenc-allowAnyForeign.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xenc-schema-11.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xenc-schema.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xenc11-allowAnyForeign.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmldsig-allowAnyForeign.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmldsig-core-schema.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmldsig-filter2.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmldsig-properties-schema.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmldsig11-allowAnyForeign.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmldsig11-schema.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmlsec-ghc-allowAnyForeign.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/security/xmlsec-ghc-schema.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/svg11/LICENSE
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/svg11/README.txt
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/mod/svg11/svg11-flat.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/ocf-container-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/ocf-encryption-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/ocf-signatures-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/package-30-PREP.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/package-30.nvdl
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/package-30.rnc
create mode 100644 src/main/resources/com/adobe/epubcheck/schema/30/package-30.sch
create mode 100644 src/main/resources/com/adobe/epubcheck/util/messages.properties
create mode 100644 src/main/resources/com/adobe/epubcheck/util/messages_ja.properties
create mode 100755 src/main/resources/com/thaiopensource/datatype/xsd/resources/Messages_ja.properties
create mode 100644 src/main/resources/com/thaiopensource/relaxng/pattern/resources/Messages_ja.properties
create mode 100644 src/main/resources/org/idpf/epubcheck/util/css/messages.properties
create mode 100644 src/main/resources/org/idpf/epubcheck/util/css/messages_ja.properties
create mode 100644 src/main/scripts/epubcheck.bat
create mode 100644 src/main/scripts/epubcheck.sh
create mode 100644 src/main/util/sch/iso-sch-abstract.xsl
create mode 100644 src/main/util/sch/iso-sch-include.xsl
create mode 100644 src/test/java/com/adobe/epubcheck/api/AbstractEpubCheckTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/api/Epub20CheckExpandedTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/api/Epub20CheckTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/api/Epub30CheckExpandedTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/api/Epub30CheckTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/cli/CLITest.java
create mode 100644 src/test/java/com/adobe/epubcheck/nav/NavCheckerTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/ocf/OCFCheckerTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/ocf/OCFFilenameCheckerTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/ocf/OCFMockPackage.java
create mode 100644 src/test/java/com/adobe/epubcheck/opf/OPFCheckerTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/opf/OPFCheckerTestChecks.java
create mode 100644 src/test/java/com/adobe/epubcheck/ops/OPSCheckerTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/overlay/OverlayCheckerTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/stress/StressTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/NoExitSecurityManager.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/OutputDifferenceListener.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/TestRunListener.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/api_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/command_line_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/common.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/css_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/debug.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/dtBook_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/jsonCompare.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/message_coverage.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/opf_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/package_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/script_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/single_file_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/toc_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/test/xhtml_Test.java
create mode 100644 src/test/java/com/adobe/epubcheck/util/ExtraReportTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/util/OPFPeekerTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/util/PathUtilTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/util/ValidationReport.java
create mode 100644 src/test/java/com/adobe/epubcheck/vocab/PrefixParsingTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/vocab/PropertyTest.java
create mode 100644 src/test/java/com/adobe/epubcheck/vocab/VocabTest.java
create mode 100644 src/test/java/org/idpf/epubcheck/util/css/CssInputStreamTest.java
create mode 100644 src/test/java/org/idpf/epubcheck/util/css/CssParserTest.java
create mode 100644 src/test/java/org/idpf/epubcheck/util/css/CssScannerTest.java
create mode 100644 src/test/resources/20/epub/ContainerNotOPF20.epub
create mode 100644 src/test/resources/20/epub/EmptyDir20.epub
create mode 100644 src/test/resources/20/epub/Issue21.epub
create mode 100644 src/test/resources/20/epub/Issue25.epub
create mode 100644 src/test/resources/20/epub/Issue95.epub
create mode 100644 src/test/resources/20/epub/MetaInfNotOPF20.epub
create mode 100644 src/test/resources/20/epub/Non8601Date20.epub
create mode 100644 src/test/resources/20/epub/NullDate20.epub
create mode 100644 src/test/resources/20/epub/OPFIllegalElement20.epub
create mode 100644 src/test/resources/20/epub/OPFIllegalElement_UniqueID20.epub
create mode 100644 src/test/resources/20/epub/PageMap20.epub
create mode 100644 src/test/resources/20/epub/Test20.epub
create mode 100644 src/test/resources/20/epub/UniqueIDNotUsed20.epub
create mode 100644 src/test/resources/20/epub/Unmanifested20.epub
create mode 100644 src/test/resources/20/epub/UnmanifestedGuideItems20.epub
create mode 100644 src/test/resources/20/epub/invalid/bad_opf_namespace.epub
create mode 100644 src/test/resources/20/epub/invalid/filenameSpacesErrorTwice_Issue239.epub
create mode 100644 src/test/resources/20/epub/invalid/issue138.epub
create mode 100644 src/test/resources/20/epub/invalid/issue170.epub
create mode 100644 src/test/resources/20/epub/invalid/issue236.epub
create mode 100644 src/test/resources/20/epub/invalid/issue313.epub
create mode 100644 src/test/resources/20/epub/invalid/issue316.epub
create mode 100644 src/test/resources/20/epub/invalid/issue89.epub
create mode 100644 src/test/resources/20/epub/invalid/lorem-mimetype.epub
create mode 100644 src/test/resources/20/epub/invalid/mimetypeAndVersion.epub
create mode 100644 src/test/resources/20/epub/invalid/ncx-dupe-id.epub
create mode 100644 src/test/resources/20/epub/invalid/no-linear-yes.epub
create mode 100644 src/test/resources/20/epub/invalid/no-rootfile.epub
create mode 100644 src/test/resources/20/epub/invalid/unresolved-internal-xhtml-link.epub
create mode 100644 src/test/resources/20/epub/issues.xml
create mode 100644 src/test/resources/20/epub/tests20.xml
create mode 100644 src/test/resources/20/epub/valid/issue169.epub
create mode 100644 src/test/resources/20/epub/valid/issue169.txt
create mode 100644 src/test/resources/20/epub/valid/issue194.bad.epub
create mode 100644 src/test/resources/20/epub/valid/issue194.good.epub
create mode 100644 src/test/resources/20/epub/valid/lorem.epub
create mode 100644 src/test/resources/20/epub/valid/lorem.txt
create mode 100644 src/test/resources/20/expanded/invalid/custom-ns-attr/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/invalid/custom-ns-attr/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/invalid/custom-ns-attr/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/invalid/custom-ns-attr/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/invalid/custom-ns-attr/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/invalid/custom-ns-attr/mimetype
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular.txt
create mode 100755 src/test/resources/20/expanded/invalid/fallbacks-circular/EPUB/image.abc
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular/EPUB/image.jpeg
create mode 100755 src/test/resources/20/expanded/invalid/fallbacks-circular/EPUB/image.xyz
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/invalid/fallbacks-circular/mimetype
create mode 100644 src/test/resources/20/expanded/invalid/issue182/EPUB/1-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/invalid/issue182/EPUB/2-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/invalid/issue182/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/invalid/issue182/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/invalid/issue182/EPUB/nav.ncx
create mode 100644 src/test/resources/20/expanded/invalid/issue182/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/invalid/issue182/mimetype
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide.txt
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide/EPUB/1-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide/EPUB/2-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide/EPUB/nav.ncx
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/invalid/lorem-dual-guide/mimetype
create mode 100644 src/test/resources/20/expanded/invalid/lorem-mimetype.txt
create mode 100644 src/test/resources/20/expanded/invalid/lorem-mimetype/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/invalid/lorem-mimetype/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/invalid/lorem-mimetype/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/invalid/lorem-mimetype/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/invalid/lorem-mimetype/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/invalid/lorem-mimetype/mimetype
create mode 100644 src/test/resources/20/expanded/invalid/xhtml-extension/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/invalid/xhtml-extension/EPUB/lorem.foo
create mode 100644 src/test/resources/20/expanded/invalid/xhtml-extension/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/invalid/xhtml-extension/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/invalid/xhtml-extension/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/invalid/xhtml-extension/mimetype
create mode 100644 src/test/resources/20/expanded/valid/fallbacks.txt
create mode 100755 src/test/resources/20/expanded/valid/fallbacks/EPUB/image.abc
create mode 100644 src/test/resources/20/expanded/valid/fallbacks/EPUB/image.jpeg
create mode 100755 src/test/resources/20/expanded/valid/fallbacks/EPUB/image.xyz
create mode 100644 src/test/resources/20/expanded/valid/fallbacks/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/fallbacks/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/fallbacks/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/fallbacks/EPUB/lorem.xhtml
create mode 100755 src/test/resources/20/expanded/valid/fallbacks/EPUB/page-template.xpgt
create mode 100644 src/test/resources/20/expanded/valid/fallbacks/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/fallbacks/mimetype
create mode 100644 src/test/resources/20/expanded/valid/issue205/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/issue205/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/issue205/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/issue205/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/issue205/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/issue205/mimetype
create mode 100644 src/test/resources/20/expanded/valid/issue256/.DS_Store
create mode 100644 src/test/resources/20/expanded/valid/issue256/._DS_Store
create mode 100644 src/test/resources/20/expanded/valid/issue256/EPUB/images/Thumbs.db
create mode 100644 src/test/resources/20/expanded/valid/issue256/EPUB/images/ehthumbs.db
create mode 100644 src/test/resources/20/expanded/valid/issue256/EPUB/images/image.jpg
create mode 100644 src/test/resources/20/expanded/valid/issue256/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/issue256/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/issue256/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/issue256/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/issue256/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/issue256/mimetype
create mode 100644 src/test/resources/20/expanded/valid/issue267.txt
create mode 100644 src/test/resources/20/expanded/valid/issue267/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/issue267/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/issue267/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/issue267/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/issue267/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/issue267/mimetype
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual.txt
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual/EPUB/1-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual/EPUB/2-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual/EPUB/nav.ncx
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/lorem-basic-dual/mimetype
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide.txt
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide/EPUB/1-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide/EPUB/2-lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide/EPUB/nav.ncx
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/lorem-dual-guide/mimetype
create mode 100644 src/test/resources/20/expanded/valid/lorem-uidspaces.txt
create mode 100644 src/test/resources/20/expanded/valid/lorem-uidspaces/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/lorem-uidspaces/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/lorem-uidspaces/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/lorem-uidspaces/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-uidspaces/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/lorem-uidspaces/mimetype
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-1ops/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-1ops/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-1ops/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-1ops/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-1ops/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-1ops/TEXT/lorem.txt
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-1ops/mimetype
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB_2/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB_2/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB_2/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/EPUB_2/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/lorem-xrenditions-2ops/mimetype
create mode 100644 src/test/resources/20/expanded/valid/lorem/lorem-basic.txt
create mode 100644 src/test/resources/20/expanded/valid/lorem/lorem-basic/EPUB/lorem.css
create mode 100644 src/test/resources/20/expanded/valid/lorem/lorem-basic/EPUB/lorem.ncx
create mode 100644 src/test/resources/20/expanded/valid/lorem/lorem-basic/EPUB/lorem.opf
create mode 100644 src/test/resources/20/expanded/valid/lorem/lorem-basic/EPUB/lorem.xhtml
create mode 100644 src/test/resources/20/expanded/valid/lorem/lorem-basic/META-INF/container.xml
create mode 100644 src/test/resources/20/expanded/valid/lorem/lorem-basic/mimetype
create mode 100644 src/test/resources/20/single/opf/invalid/bad-opf-namespace.opf
create mode 100644 src/test/resources/20/single/opf/invalid/dupe-id.opf
create mode 100644 src/test/resources/20/single/opf/invalid/filename_contains_spaces_issue239.opf
create mode 100644 src/test/resources/20/single/opf/invalid/null-identifier.opf
create mode 100644 src/test/resources/20/single/opf/valid.opf
create mode 100644 src/test/resources/20/single/opf/valid/issue216.opf
create mode 100644 src/test/resources/20/single/ops/invalid/dupe-id.xhtml
create mode 100644 src/test/resources/20/single/ops/invalid/unresolved-entity.xhtml
create mode 100644 src/test/resources/20/single/ops/valid/issue215.xhtml
create mode 100755 src/test/resources/20/single/ops/valid/issue222.xhtml
create mode 100644 src/test/resources/20/single/ops/valid/svg-font-face.svg
create mode 100644 src/test/resources/20/single/ops/valid/svg-foreignObject.xhtml
create mode 100644 src/test/resources/30/epub/invalid/fallback-cycle.epub
create mode 100644 src/test/resources/30/epub/invalid/font_no_fallback.epub
create mode 100644 src/test/resources/30/epub/invalid/invalid-ncx.epub
create mode 100644 src/test/resources/30/epub/invalid/issue137a.epub
create mode 100644 src/test/resources/30/epub/invalid/issue137b.epub
create mode 100644 src/test/resources/30/epub/invalid/issue176.epub
create mode 100644 src/test/resources/30/epub/invalid/issue203.epub
create mode 100644 src/test/resources/30/epub/invalid/issue221.epub
create mode 100644 src/test/resources/30/epub/invalid/issue239.epub
create mode 100644 src/test/resources/30/epub/invalid/issue265.epub
create mode 100644 src/test/resources/30/epub/invalid/issue265b.epub
create mode 100644 src/test/resources/30/epub/invalid/issue265c.epub
create mode 100644 src/test/resources/30/epub/invalid/lorem-xht-rng-1.epub
create mode 100644 src/test/resources/30/epub/invalid/lorem-xht-sch-1.epub
create mode 100644 src/test/resources/30/epub/invalid/mimetype-extra-field.epub
create mode 100644 src/test/resources/30/epub/invalid/mp3-in-spine-no-fallback.epub
create mode 100644 src/test/resources/30/epub/invalid/nav-invalid.epub
create mode 100644 src/test/resources/30/epub/valid/epub30-spec.epub
create mode 100644 src/test/resources/30/epub/valid/epub30-spec.txt
create mode 100644 src/test/resources/30/epub/valid/extension-1.ePub
create mode 100644 src/test/resources/30/epub/valid/extension-1.txt
create mode 100644 src/test/resources/30/epub/valid/font-obfuscation.epub
create mode 100644 src/test/resources/30/epub/valid/font_fallback_chain.epub
create mode 100644 src/test/resources/30/epub/valid/font_fallback_chain.txt
create mode 100644 src/test/resources/30/epub/valid/georgia-cfi.epub
create mode 100644 src/test/resources/30/epub/valid/issue145.epub
create mode 100644 src/test/resources/30/epub/valid/issue145.txt
create mode 100644 src/test/resources/30/epub/valid/issue156.epub
create mode 100644 src/test/resources/30/epub/valid/issue158.epub
create mode 100644 src/test/resources/30/epub/valid/issue158.txt
create mode 100644 src/test/resources/30/epub/valid/issue262.epub
create mode 100644 src/test/resources/30/epub/valid/issue271_xpgt_correctFallback.epub
create mode 100644 src/test/resources/30/epub/valid/lorem.epub
create mode 100644 src/test/resources/30/epub/valid/lorem.txt
create mode 100644 src/test/resources/30/epub/valid/mp3-in-manifest.epub
create mode 100644 src/test/resources/30/epub/valid/mp3-in-manifest.txt
create mode 100644 src/test/resources/30/epub/valid/mp3-with-fallback.epub
create mode 100644 src/test/resources/30/epub/valid/mp3-with-fallback.txt
create mode 100644 src/test/resources/30/epub/valid/test_svg.epub
create mode 100644 src/test/resources/30/epub/valid/test_svg.txt
create mode 100644 src/test/resources/30/epub/valid/valid ncx.epub
create mode 100644 src/test/resources/30/epub/valid/valid_ncx.txt
create mode 100644 src/test/resources/30/expanded/invalid/custom-ns-attr/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/custom-ns-attr/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/custom-ns-attr/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/custom-ns-attr/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/custom-ns-attr/mimetype
create mode 100755 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/css/epub-spec.css
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/img/epub_logo_color.jpg
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/img/idpflogo_web_125.jpg
create mode 100755 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/package.opf
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-acknowledgements.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-changes.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-contentdocs.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-mediaoverlays.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-nav.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-ocf.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-overview.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-publications.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-references.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-terminology.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/epub30-spec/EPUB/xhtml/epub30-titlepage.xhtml
create mode 100755 src/test/resources/30/expanded/invalid/epub30-spec/META-INF/container.xml
create mode 100755 src/test/resources/30/expanded/invalid/epub30-spec/mimetype
create mode 100755 src/test/resources/30/expanded/invalid/fallbacks-circular/EPUB/image.abc
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-circular/EPUB/image.jpeg
create mode 100755 src/test/resources/30/expanded/invalid/fallbacks-circular/EPUB/image.xyz
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-circular/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-circular/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-circular/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-circular/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-circular/mimetype
create mode 100755 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/EPUB/image.abc
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/EPUB/image.jpeg
create mode 100755 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/EPUB/image.xyz
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/fallbacks-nonresolving/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/issue189/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/issue189/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/issue189/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/issue189/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/issue189/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-dual-base/EPUB/1-lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-dual-base/EPUB/2-lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-dual-base/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-dual-base/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-dual-base/EPUB/nav.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-dual-base/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-dual-base/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-switch/EPUB/wasteland-content.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-switch/EPUB/wasteland-cover.jpg
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-switch/EPUB/wasteland-nav.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-switch/EPUB/wasteland.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-switch/EPUB/wasteland.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-switch/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-basic-switch/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-bindings/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-bindings/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-bindings/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-bindings/EPUB/slideshow.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-bindings/EPUB/video.avi
create mode 100644 src/test/resources/30/expanded/invalid/lorem-bindings/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-bindings/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-container/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-container/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-container/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-container/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-container/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-enc/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-enc/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-enc/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-enc/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-enc/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-1/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-1/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-1/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-1/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-1/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-2/EPUB/import.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-2/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-2/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-2/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-2/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-import-2/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-1/EPUB/OldStandard-Regular.otf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-1/EPUB/import.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-1/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-1/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-1/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-1/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-1/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-2/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-2/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-2/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-2/EPUB/lorem2.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-2/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-2/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-3/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-3/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-3/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-3/EPUB/lorem2.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-3/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-urls-3/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-wrongtype/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-wrongtype/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-wrongtype/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-wrongtype/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-css-wrongtype/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-encryption/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-encryption/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-encryption/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-encryption/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-encryption/META-INF/encryption.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-encryption/dropped text.txt
create mode 100644 src/test/resources/30/expanded/invalid/lorem-encryption/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-foreign/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-foreign/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-foreign/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-foreign/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-foreign/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mathml-noalt/EPUB/wasteland-content.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mathml-noalt/EPUB/wasteland-cover.jpg
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mathml-noalt/EPUB/wasteland-nav.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mathml-noalt/EPUB/wasteland.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mathml-noalt/EPUB/wasteland.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mathml-noalt/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mathml-noalt/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype-2/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype-2/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype-2/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype-2/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype-2/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-mimetype/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-poster/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-poster/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-poster/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-poster/EPUB/poster.png
create mode 100644 src/test/resources/30/expanded/invalid/lorem-poster/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-poster/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-2/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-2/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-2/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-2/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-2/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-3/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-3/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-3/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-3/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-3/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-4/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-4/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-4/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-4/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote-4/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-remote/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-signatures/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-signatures/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-signatures/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-signatures/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-signatures/META-INF/signatures.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-signatures/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual-2/EPUB/lorem-1.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual-2/EPUB/lorem-2.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual-2/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual-2/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual-2/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual-2/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual/EPUB/lorem-1.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual/EPUB/lorem-2.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-dual/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-hyperlink-notitle/EPUB/lorem-1.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-hyperlink-notitle/EPUB/lorem-2.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-hyperlink-notitle/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-hyperlink-notitle/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-hyperlink-notitle/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-svg-hyperlink-notitle/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-rng-1/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-rng-1/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-rng-1/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-rng-1/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-rng-1/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-sch-1/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-sch-1/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-sch-1/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-sch-1/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xhtml-sch-1/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/EPUB_2/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/EPUB_2/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/EPUB_2/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/lorem-xrenditions-unmanifested/unmanifested.txt
create mode 100755 src/test/resources/30/expanded/invalid/nav-invalid/META-INF/container.xml
create mode 100755 src/test/resources/30/expanded/invalid/nav-invalid/OEBPS/4.xhtml
create mode 100755 src/test/resources/30/expanded/invalid/nav-invalid/OEBPS/css/cnib.css
create mode 100755 src/test/resources/30/expanded/invalid/nav-invalid/OEBPS/nav.xhtml
create mode 100755 src/test/resources/30/expanded/invalid/nav-invalid/mimetype
create mode 100755 src/test/resources/30/expanded/invalid/nav-invalid/package.opf
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/fonts.css
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/wasteland-content.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/wasteland-cover.jpg
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/wasteland-nav.xhtml
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/wasteland-night.css
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/wasteland.css
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/wasteland.ncx
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/EPUB/wasteland.opf
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/wasteland-otf/mimetype
create mode 100644 src/test/resources/30/expanded/invalid/xhtml-extension/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/invalid/xhtml-extension/EPUB/lorem.html
create mode 100644 src/test/resources/30/expanded/invalid/xhtml-extension/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/invalid/xhtml-extension/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/invalid/xhtml-extension/mimetype
create mode 100755 src/test/resources/30/expanded/make.sh
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture.txt
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/audio/asharedculture_soundtrack.mp3
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/captions/cc-en.vtt
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/captions/cc-en.xml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/captions/cc-fr.vtt
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/captions/cc-fr.xml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/css/shared-culture.css
create mode 100755 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/fonts/Quicksand_Bold_Oblique.otf
create mode 100755 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/fonts/Quicksand_Light.otf
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/images/2565514353_2ae2073e14.jpg
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/images/326261902_3fa36f548d.jpg
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/package.opf
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/script/shared.js
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/video/shared-culture.mp4
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/video/shared-culture.webm
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/cover.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/p10.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/p20.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/p30.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/p40.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/p50.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/p60.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/EPUB/xhtml/toc.xhtml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/cc-shared-culture/mimetype
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/EPUB/chapter1.xhtml
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/EPUB/chapter2.xhtml
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/EPUB/chapter3.xhtml
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/EPUB/nav.xhtml
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/collections-preview/mimetype
create mode 100644 src/test/resources/30/expanded/valid/fallbacks.txt
create mode 100755 src/test/resources/30/expanded/valid/fallbacks/EPUB/image.abc
create mode 100644 src/test/resources/30/expanded/valid/fallbacks/EPUB/image.jpeg
create mode 100755 src/test/resources/30/expanded/valid/fallbacks/EPUB/image.xyz
create mode 100644 src/test/resources/30/expanded/valid/fallbacks/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/fallbacks/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/fallbacks/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/fallbacks/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/fallbacks/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue188/EPUB/epub+logo.png
create mode 100644 src/test/resources/30/expanded/valid/issue188/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue188/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue188/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue188/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue188/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue198/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue198/OEBPS/content.opf
create mode 100644 src/test/resources/30/expanded/valid/issue198/OEBPS/page_0001.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue198/OEBPS/page_0002.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue198/OEBPS/toc.ncx
create mode 100644 src/test/resources/30/expanded/valid/issue198/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue211a/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue211a/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue211a/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue211a/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue211a/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue211b/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue211b/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue211b/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue211b/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue211b/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue225/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue225/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue225/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue225/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue225/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue226/EPUB/doc.pdf
create mode 100644 src/test/resources/30/expanded/valid/issue226/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue226/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue226/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue226/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue226/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue237/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue237/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue237/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue237/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue237/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue249/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue249/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue249/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue249/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue249/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue267.txt
create mode 100644 src/test/resources/30/expanded/valid/issue267/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue267/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue267/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue267/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue267/mimetype
create mode 100644 src/test/resources/30/expanded/valid/issue270/EPUB/lorem-2.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue270/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/issue270/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/issue270/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/issue270/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/issue270/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio/EPUB/audio.mp3
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio/EPUB/audio.mp4
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-audio/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual/EPUB/1-lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual/EPUB/2-lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual/EPUB/nav.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-dual/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-mathml/EPUB/wasteland-content.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-mathml/EPUB/wasteland-cover.jpg
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-mathml/EPUB/wasteland-nav.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-mathml/EPUB/wasteland.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-mathml/EPUB/wasteland.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-mathml/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-mathml/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-ncx/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-ncx/EPUB/lorem.ncx
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-ncx/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-ncx/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-ncx/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-ncx/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch/EPUB/wasteland-content.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch/EPUB/wasteland-cover.jpg
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch/EPUB/wasteland-nav.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch/EPUB/wasteland.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch/EPUB/wasteland.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic-switch/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-basic/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-bindings.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-bindings/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-bindings/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-bindings/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-bindings/EPUB/slideshow.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-bindings/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-bindings/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-css-import.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-css-import/EPUB/import.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-css-import/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-css-import/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-css-import/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-css-import/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-css-import/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-foreign.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-foreign/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-foreign/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-foreign/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-foreign/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-foreign/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-image/EPUB/image.png
create mode 100644 src/test/resources/30/expanded/valid/lorem-image/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-image/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-image/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-image/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-image/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-link.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-link/EPUB/licence.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-link/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-link/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-link/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-link/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-link/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks/EPUB/slideshow.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks/EPUB/video.avi
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-object-fallbacks/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-poster.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-poster/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-poster/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-poster/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-poster/EPUB/poster.png
create mode 100644 src/test/resources/30/expanded/valid/lorem-poster/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-poster/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-2/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-2/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-2/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-2/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-2/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-https/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-https/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-https/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-https/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-https/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-queryurl/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-queryurl/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-queryurl/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-queryurl/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote-queryurl/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-remote/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-dual.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-dual/EPUB/lorem-1.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-dual/EPUB/lorem-2.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-dual/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-dual/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-dual/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-dual/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-hyperlink.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-hyperlink/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-hyperlink/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-hyperlink/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-hyperlink/EPUB/rect.svg
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-hyperlink/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg-hyperlink/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg.txt
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg/EPUB/rect.svg
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-svg/mimetype
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/EPUB_2/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/EPUB_2/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/EPUB_2/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/lorem-xrenditions/mimetype
create mode 100644 src/test/resources/30/expanded/valid/svg-cover.txt
create mode 100755 src/test/resources/30/expanded/valid/svg-cover/EPUB/cover.svg
create mode 100644 src/test/resources/30/expanded/valid/svg-cover/EPUB/lorem.css
create mode 100644 src/test/resources/30/expanded/valid/svg-cover/EPUB/lorem.opf
create mode 100644 src/test/resources/30/expanded/valid/svg-cover/EPUB/lorem.xhtml
create mode 100644 src/test/resources/30/expanded/valid/svg-cover/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/svg-cover/mimetype
create mode 100644 src/test/resources/30/expanded/valid/svg-in-spine.txt
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/META-INF/container.xml
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/Tsuru_wiki-1b.svg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/Tsuru_wiki-2b.svg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/cover.svg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/crane1.jpg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/crane2.jpg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/flyer.jpg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/p002.svg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/p005.svg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/p006.svg
create mode 100644 src/test/resources/30/expanded/valid/svg-in-spine/OPS/Images/p007.svg
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/content.opf
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/nav.xhtml
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/tocimages/bg.png
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/tocimages/divider.png
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/tocimages/dividerBig.png
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/OPS/tocstyle.css
create mode 100755 src/test/resources/30/expanded/valid/svg-in-spine/mimetype
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic.txt
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic/EPUB/wasteland-content.xhtml
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic/EPUB/wasteland-cover.jpg
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic/EPUB/wasteland-nav.xhtml
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic/EPUB/wasteland.css
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic/EPUB/wasteland.opf
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/wasteland-basic/mimetype
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf.txt
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/OldStandard-Bold.otf
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/OldStandard-Italic.otf
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/OldStandard-Regular.otf
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/fonts.css
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/wasteland-content.xhtml
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/wasteland-cover.jpg
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/wasteland-nav.xhtml
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/wasteland-night.css
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/wasteland.css
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/wasteland.ncx
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/EPUB/wasteland.opf
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/META-INF/container.xml
create mode 100644 src/test/resources/30/expanded/valid/wasteland-otf/mimetype
create mode 100644 src/test/resources/30/single/nav/invalid/h-text.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/nav-labels-001.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/nav-labels-002.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/nav-landmarks-001.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/nav-landmarks-002.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/nav-no-toc.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/nav-pagelist-001.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/noTocNav.xhtml
create mode 100644 src/test/resources/30/single/nav/invalid/req-heading.xhtml
create mode 100644 src/test/resources/30/single/nav/valid/issue156.xhtml
create mode 100644 src/test/resources/30/single/nav/valid/minimal.xhtml
create mode 100644 src/test/resources/30/single/nav/valid/nav001.xhtml
create mode 100644 src/test/resources/30/single/opf/invalid/bindings-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/collection-invalid-do-sch-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/collection-invalid-manifest-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/cover-image.opf
create mode 100644 src/test/resources/30/single/opf/invalid/date-1.opf
create mode 100644 src/test/resources/30/single/opf/invalid/date-2.opf
create mode 100644 src/test/resources/30/single/opf/invalid/fallback-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/fallback-002.opf
create mode 100644 src/test/resources/30/single/opf/invalid/filename_contains_spaces_issue239.opf
create mode 100644 src/test/resources/30/single/opf/invalid/foreign.opf
create mode 100644 src/test/resources/30/single/opf/invalid/id-unique.opf
create mode 100644 src/test/resources/30/single/opf/invalid/invalidMetaAbout.opf
create mode 100644 src/test/resources/30/single/opf/invalid/item-properties.opf
create mode 100644 src/test/resources/30/single/opf/invalid/itemref-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/link-rel-record-no-mediatype.opf
create mode 100644 src/test/resources/30/single/opf/invalid/link-rel-record-refines.opf
create mode 100644 src/test/resources/30/single/opf/invalid/malformed.opf
create mode 100644 src/test/resources/30/single/opf/invalid/media-overlay-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/media-overlay-002.opf
create mode 100644 src/test/resources/30/single/opf/invalid/media-overlay-meta-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/meta-collection-refine-noncollection.opf
create mode 100644 src/test/resources/30/single/opf/invalid/meta-collection-type-norefines.opf
create mode 100644 src/test/resources/30/single/opf/invalid/meta-collection-type-refines-noncollection.opf
create mode 100644 src/test/resources/30/single/opf/invalid/meta-source-of-norefines.opf
create mode 100644 src/test/resources/30/single/opf/invalid/meta-source-of-wrongrefines.opf
create mode 100644 src/test/resources/30/single/opf/invalid/meta-source-of-wrongvalue.opf
create mode 100644 src/test/resources/30/single/opf/invalid/minlength.opf
create mode 100644 src/test/resources/30/single/opf/invalid/modified-syntax.opf
create mode 100644 src/test/resources/30/single/opf/invalid/modified.opf
create mode 100644 src/test/resources/30/single/opf/invalid/nav-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/nav-002.opf
create mode 100644 src/test/resources/30/single/opf/invalid/nav-003.opf
create mode 100644 src/test/resources/30/single/opf/invalid/noDcNamespace.opf
create mode 100644 src/test/resources/30/single/opf/invalid/noDcTitle.opf
create mode 100644 src/test/resources/30/single/opf/invalid/noMetadataElement.opf
create mode 100644 src/test/resources/30/single/opf/invalid/noNav.opf
create mode 100644 src/test/resources/30/single/opf/invalid/order.opf
create mode 100644 src/test/resources/30/single/opf/invalid/prefix-declaration.opf
create mode 100644 src/test/resources/30/single/opf/invalid/prefixes-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/prefixes-002.opf
create mode 100644 src/test/resources/30/single/opf/invalid/prefixes-003.opf
create mode 100644 src/test/resources/30/single/opf/invalid/prefixes-004.opf
create mode 100644 src/test/resources/30/single/opf/invalid/prefixes-redeclare.opf
create mode 100644 src/test/resources/30/single/opf/invalid/refines-relative.opf
create mode 100644 src/test/resources/30/single/opf/invalid/rendition-globals-badvalues.opf
create mode 100644 src/test/resources/30/single/opf/invalid/rendition-globals-duplicate.opf
create mode 100644 src/test/resources/30/single/opf/invalid/rendition-globals-refines.opf
create mode 100644 src/test/resources/30/single/opf/invalid/rendition-overrides-conflicts.opf
create mode 100644 src/test/resources/30/single/opf/invalid/scheme-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/scheme-002.opf
create mode 100644 src/test/resources/30/single/opf/invalid/tocncx-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/tocncx-002.opf
create mode 100644 src/test/resources/30/single/opf/invalid/uid-001.opf
create mode 100644 src/test/resources/30/single/opf/invalid/uid-002.opf
create mode 100644 src/test/resources/30/single/opf/peekData/collectionDCType.opf
create mode 100644 src/test/resources/30/single/opf/peekData/emptyId.opf
create mode 100644 src/test/resources/30/single/opf/peekData/idNotOnDCIdentifier.opf
create mode 100644 src/test/resources/30/single/opf/peekData/missingId.opf
create mode 100644 src/test/resources/30/single/opf/peekData/multipleDCType.opf
create mode 100644 src/test/resources/30/single/opf/peekData/multipleIds.opf
create mode 100644 src/test/resources/30/single/opf/peekData/negativeVersion.opf
create mode 100644 src/test/resources/30/single/opf/peekData/noEqual.opf
create mode 100644 src/test/resources/30/single/opf/peekData/noPackageElement.opf
create mode 100644 src/test/resources/30/single/opf/peekData/noPointInValue.opf
create mode 100644 src/test/resources/30/single/opf/peekData/noVersion.opf
create mode 100644 src/test/resources/30/single/opf/peekData/singleDCType.opf
create mode 100644 src/test/resources/30/single/opf/peekData/spacesBetweenQuotes.opf
create mode 100644 src/test/resources/30/single/opf/peekData/spacesInValue.opf
create mode 100644 src/test/resources/30/single/opf/peekData/uniqueId.opf
create mode 100644 src/test/resources/30/single/opf/peekData/validVersion.opf
create mode 100644 src/test/resources/30/single/opf/peekData/valueWithoutQuotes.opf
create mode 100644 src/test/resources/30/single/opf/peekData/version123.323.opf
create mode 100644 src/test/resources/30/single/opf/peekData/whitespaceInDCIdentifier.opf
create mode 100644 src/test/resources/30/single/opf/peekData/whitespaceInDCType.opf
create mode 100644 src/test/resources/30/single/opf/valid/base-001.opf
create mode 100644 src/test/resources/30/single/opf/valid/bindings-001.opf
create mode 100644 src/test/resources/30/single/opf/valid/collection-valid-001.opf
create mode 100644 src/test/resources/30/single/opf/valid/collection-valid-002.opf
create mode 100644 src/test/resources/30/single/opf/valid/collection-valid-do-001.opf
create mode 100644 src/test/resources/30/single/opf/valid/date-1.opf
create mode 100644 src/test/resources/30/single/opf/valid/date-2.opf
create mode 100644 src/test/resources/30/single/opf/valid/date-3.opf
create mode 100644 src/test/resources/30/single/opf/valid/dc-source.opf
create mode 100644 src/test/resources/30/single/opf/valid/dc-type.opf
create mode 100644 src/test/resources/30/single/opf/valid/link-rel-record.opf
create mode 100644 src/test/resources/30/single/opf/valid/lorem-svg-fallback.opf
create mode 100644 src/test/resources/30/single/opf/valid/lorem-svg.opf
create mode 100644 src/test/resources/30/single/opf/valid/media-overlay-001.opf
create mode 100644 src/test/resources/30/single/opf/valid/media-overlay-002.opf
create mode 100644 src/test/resources/30/single/opf/valid/meta-collection.opf
create mode 100644 src/test/resources/30/single/opf/valid/meta-schemaorg.opf
create mode 100644 src/test/resources/30/single/opf/valid/meta-source-of.opf
create mode 100644 src/test/resources/30/single/opf/valid/minimal.opf
create mode 100644 src/test/resources/30/single/opf/valid/prefixes.opf
create mode 100644 src/test/resources/30/single/opf/valid/rendition-globals.opf
create mode 100644 src/test/resources/30/single/opf/valid/rendition-properties.opf
create mode 100644 src/test/resources/30/single/opf/valid/scheme-001.opf
create mode 100644 src/test/resources/30/single/overlays/invalid/overlay-001.smil
create mode 100644 src/test/resources/30/single/overlays/invalid/overlay-002.smil
create mode 100644 src/test/resources/30/single/overlays/invalid/overlay-003.smil
create mode 100644 src/test/resources/30/single/overlays/invalid/overlay-004.smil
create mode 100644 src/test/resources/30/single/overlays/invalid/overlay-005.smil
create mode 100644 src/test/resources/30/single/overlays/invalid/overlay-006.smil
create mode 100644 src/test/resources/30/single/overlays/valid/overlay-001.smil
create mode 100644 src/test/resources/30/single/overlays/valid/overlay-002.smil
create mode 100644 src/test/resources/30/single/overlays/valid/overlay-003.smil
create mode 100644 src/test/resources/30/single/overlays/valid/overlay-007.smil
create mode 100644 src/test/resources/30/single/svg/invalid/rect.svg
create mode 100644 src/test/resources/30/single/svg/valid/issue219.svg
create mode 100755 src/test/resources/30/single/svg/valid/issue222.xhtml
create mode 100644 src/test/resources/30/single/svg/valid/rect.svg
create mode 100644 src/test/resources/30/single/xhtml/invalid/canvas-fallback.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/doctype-1.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/http-equiv-1.xhtml
create mode 100755 src/test/resources/30/single/xhtml/invalid/issue153.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/issue230.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/link.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/md.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/ops-mathml-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/ops-mathml-002.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/prefixes-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/sch-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/ssml-empty-ph.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/style-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/styleAttr001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/svg-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/switch-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/trigger.xhtml
create mode 100644 src/test/resources/30/single/xhtml/invalid/xml11.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/aria-describedAt.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/canvas.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/custom-ns-attrs.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/data.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/doctype-1.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/doctype-2.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/edits-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/embed-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/forms-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/global-attrs-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/http-equiv-1.xhtml
create mode 100755 src/test/resources/30/single/xhtml/valid/issue153.xhtml
create mode 100755 src/test/resources/30/single/xhtml/valid/issue204.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/issue230.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/issue248.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/link.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/md.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/ops-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/ops-mathml-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/ops-mathml-002.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/ops-svg-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/ops-svg-002.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/prefixes-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/rdfa.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/ruby-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/sch-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/sections-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/ssml.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/style-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/styleAttr001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/svg-rdf-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/switch-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/tables-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/text-001.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/trigger.xhtml
create mode 100644 src/test/resources/30/single/xhtml/valid/video.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/AreYouReadyV3.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/dtbookbasic.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image1.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image11.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image12.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image13.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image14.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image2.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image3.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image4.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/image5.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/DTBook/Basic_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/api/InputStream_Expected.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/api/PrintWriter_Expected.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/failonwarnings_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/jsonfile_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/listSeverities_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/passonwarnings_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/cssStyles.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/OPS/unused.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_error_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_fatal_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadId.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadId_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadMessage.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadMessage_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadSeverity.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideBadSeverity_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideMissingFile_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideOk.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_overrideOk_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_usage_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/severity_warning_expected_results.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/command_line/xmlfile_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/page02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/styles/chocolate.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/styles/midnight.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/styles/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/alternate_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/columns_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/cssStyles.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/OPS/unused.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/discouraged_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style10.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style11.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style2.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style3.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style4.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style5.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style6.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style7.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style8.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/style9.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/excessive_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/fonts/Fummel.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/fonts/bloody.woff
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/fonts/brankovic.ttf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/styles/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font-face_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/META-INF/encryption.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/OEBPS/am-font-test.html
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/OEBPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/OEBPS/fonts/ChaparralPro-Regular.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/OEBPS/template.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/OEBPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_adobe_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/css/fonts.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Bold.obf.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Bold.obf.woff
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Bold.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Bold.woff
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Italic.obf.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Italic.obf.woff
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Italic.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Italic.woff
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Regular.obf.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Regular.obf.woff
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Regular.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/fonts/OldStandard-Regular.woff
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/package.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/pages/cover.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/pages/pg1.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/pages/pg2.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/pages/pg3.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/Css-fontface/pages/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/META-INF/encryption.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_idpf_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/META-INF/encryption.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/OEBPS/am-font-test.html
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/OEBPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/OEBPS/fonts/ChaparralPro-Regular.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/OEBPS/template.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/OEBPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/font_encryption_unknown_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/keyframe_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/OPS/style2.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/style2.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/styleUTF32.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/multiple_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transform_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/transition_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/OPS/unused.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/external_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/inline_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/style_tag_css.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/OPS/unused.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/css/unused_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub2_marked_v3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub2_marked_v3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub2_marked_v3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub2_marked_v3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub2_marked_v3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub2_marked_v3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub2_marked_v3_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Epub3_marked_v2_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page001.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page002.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page003.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page004.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page005.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page006.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page007.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page008.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page009.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page010.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page011.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page012.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page013.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page014.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page015.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page016.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page017.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page018.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page019.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page020.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page021.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page022.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page023.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page024.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page025.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page026.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page027.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page028.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page029.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page030.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page031.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page032.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page033.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page034.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page035.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page036.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page037.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page038.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page039.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page040.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page041.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page042.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page043.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page044.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page045.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page046.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page047.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page048.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page049.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page050.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page051.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page052.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page053.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page054.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page055.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page056.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page057.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page058.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page059.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page060.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page061.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page062.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page063.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page064.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page065.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page066.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page067.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page068.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page069.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page070.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page071.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page072.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page073.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page074.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page075.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page076.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page077.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page078.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page079.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page080.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page081.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page082.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page083.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page084.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page085.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page086.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page087.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page088.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page089.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page090.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page091.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page092.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page093.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page094.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page095.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page096.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page097.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page098.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page099.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/page100.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page001.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page002.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page003.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page004.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page005.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page006.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page007.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page008.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page009.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page010.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page011.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page012.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page013.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page014.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page015.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page016.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page017.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page018.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page019.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page020.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page021.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page022.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page023.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page024.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page025.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page026.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page027.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page028.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page029.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page030.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page031.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page032.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page033.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page034.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page035.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page036.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page037.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page038.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page039.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page040.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page041.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page042.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page043.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page044.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page045.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page046.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page047.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page048.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page049.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page050.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page051.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page052.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page053.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page054.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page055.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page056.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page057.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page058.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page059.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page060.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page061.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page062.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page063.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page064.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page065.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page066.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page067.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page068.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page069.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page070.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page071.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page072.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page073.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page074.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page075.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page076.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page077.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page078.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page079.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page080.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page081.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page082.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page083.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page084.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page085.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page086.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page087.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page088.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page089.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page090.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page091.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page092.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page093.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page094.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page095.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page096.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page097.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page098.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page099.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/page100.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page001.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page002.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page003.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page004.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page005.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page006.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page007.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page008.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page009.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page010.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page011.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page012.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page013.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page014.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page015.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page016.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page017.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page018.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page019.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page020.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page021.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page022.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page023.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page024.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page025.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page026.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page027.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page028.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page029.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page030.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page031.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page032.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page033.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page034.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page035.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page036.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page037.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page038.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page039.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page040.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page041.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page042.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page043.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page044.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page045.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page046.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page047.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page048.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page049.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page050.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page051.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page052.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page053.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page054.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page055.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page056.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page057.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page058.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page059.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page060.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page061.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page062.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page063.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page064.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page065.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page066.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page067.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page068.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page069.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page070.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page071.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page072.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page073.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page074.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page075.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page076.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page077.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page078.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page079.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page080.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page081.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page082.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page083.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page084.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page085.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page086.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page087.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page088.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page089.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page090.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page091.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page092.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page093.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page094.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page095.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page096.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page097.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page098.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page099.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/page100.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page001.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page002.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page003.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page004.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page005.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page006.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page007.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page008.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page009.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page010.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page011.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page012.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page013.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page014.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page015.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page016.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page017.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page018.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page019.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page020.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page021.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page022.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page023.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page024.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page025.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page026.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page027.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page028.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page029.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page030.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page031.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page032.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page033.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page034.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page035.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page036.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page037.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page038.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page039.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page040.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page041.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page042.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page043.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page044.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page045.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page046.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page047.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page048.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page049.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page050.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page051.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page052.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page053.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page054.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page055.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page056.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page057.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page058.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page059.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page060.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page061.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page062.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page063.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page064.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page065.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page066.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page067.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page068.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page069.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page070.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page071.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page072.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page073.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page074.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page075.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page076.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page077.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page078.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page079.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page080.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page081.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page082.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page083.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page084.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page085.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page086.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page087.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page088.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page089.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page090.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page091.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page092.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page093.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page094.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page095.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page096.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page097.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page098.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page099.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/page100.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Excessive_Spine_Items_epub3_fixed_format_properties_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2/OPS/fallback.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2/OPS/math.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/OPS/fallback.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/OPS/math.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Fallbacks_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/duplicate.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/images/PlaceHolder.gif
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/images/image1.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/images/image2.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/images/image3.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/images/image4.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/impl.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/impl2.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/quiz.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/settings.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/slideshow.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Media-type_handler_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/blank
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/css/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/image1.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/page02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/sample.mov
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/blank
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/image1.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/page02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/sample.mov
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Mismatched_mimetypes_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NAV_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_NCX_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_Spine_epub3_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_metadata_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_unique_id/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_unique_id/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_unique_id/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_unique_id/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_unique_id/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_unique_id/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Missing_unique_id_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/OPS/page02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/OPS/page03.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/OPS/page04.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Properties_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/Publication_Metadata_epub3_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/excessiveSpineItems.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12/oebps12.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12/oebps12.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12/page01.html
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12/page02.html
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12/style2.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/oebps12_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/OPS/page02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/OPS/page03.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/rendition_valid_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page001.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page002.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page003.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page004.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page005.svg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page005.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page006.svg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page007.svg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/page008.svg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/OPS/page001.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/OPS/page002.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/OPS/page003.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/OPS/page004.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/opf/viewport_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/PlaceHolder.epub
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/blank.epub
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/corrupt_file.epub
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/corrupt_file_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/empty_archive.epub
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/empty_archive_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/empty_dir.epub
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/empty_dir_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/empty_mimetype/mime.type
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/empty_mimetype_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/images/BigRed.png
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/images/PlaceHolder.gif
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/images/PlaceHolder.png
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/images/PrincessBrideReunion.png
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/images/kitty.jpeg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/image_types_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2/OPS Content/More XHTML Content/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2/OPS Content/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2/OPS Content/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2/XHTML Content/page02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub2_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/OPS Content/Cyrillic_phi.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/OPS Content/More XHTML Content/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/OPS Content/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/OPS Content/page{03}.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/OPS Content/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/OPS Content/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/XHTML Content/page 02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/interesting_paths_epub3_expected_results.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_container_file_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_file_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub2/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub3/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_mimetype_file_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_ncx_file/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_ncx_file/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_ncx_file/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_ncx_file/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_ncx_file_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_epub_file_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_file/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_file/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_file/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_file/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_file/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_file/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_opf_file_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_toc_file/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_toc_file/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_toc_file/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_toc_file/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_toc_file/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/missing_toc_file_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/A.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/Hydrangeas.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/MathML2.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/OPS/Description.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/OPS/MathML1.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/OPS/images/Lighthouse.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/OPS/images/equation_1.png
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/equation_2.png
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/path_resolution_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/period.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/wrong_extension.zip
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/wrong_extension_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/package/wrong_type_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/Test.txt
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/external_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/inline_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/sample.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/script_tag.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/XMLHttpRequest_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/OPS/external_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/OPS/inline_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/OPS/sample.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/OPS/script_tag.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/OPS/external_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/OPS/inline_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/OPS/sample.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/OPS/script_tag.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/eval_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/external_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/external_script_not_marked.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/inline_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/inline_script_not_marked.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/sample.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/script_tag.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/script_tag_not_marked.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/properties_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/OPS/external_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/OPS/inline_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/OPS/sample.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/OPS/script_tag.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/storage_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/external_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/inline_script.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/sample.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/script_tag.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/OPS/unused.js
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/scripts/unused_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments/OPS/page02.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/fragments_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/invalid_ncx/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/invalid_ncx/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/invalid_ncx/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/invalid_ncx/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/invalid_ncx/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/invalid_ncx/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/invalid_ncx_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/missing_epub_type/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/missing_epub_type/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/missing_epub_type/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/missing_epub_type/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/missing_epub_type/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/missing_epub_type/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/toc/missing_epub_type_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/OPS/audio.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/OPS/sample.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/OPS/video.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/External_media_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/OPS/ImageMap_target.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/OPS/Navigation_ImageMap.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/OPS/images/devices2.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/accessibility_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/external_dtd.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/inline_dtd.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/internal_dtd.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/internal_dtd2.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/internal_xhtml_dtd.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/sample.dtd
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/xhtml-lat1.ent
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/xhtml-special.ent
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/xhtml-symbol.ent
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/OPS/xhtml1-strict.dtd
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/dtd_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi/OPS/Intra_Publication.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi/OPS/Outer_Publication.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/epubcfi_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_deprecated_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_deprecated_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_deprecated_epub3/OPS/html5.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_deprecated_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_deprecated_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_deprecated_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_deprecated_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub2/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub2/OPS/html5.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub2/OPS/sample.m4a
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub2/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/OPS/html5.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/OPS/sample.m4a
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/OPS/xml_version.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/html5_epub3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/images/mathml.png
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/images/sample.jpg
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/link_target.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/links.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/mathMl.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/style.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/svg_links.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/hyperlinks_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/OPS/invalid_lang.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/OPS/mismatched_lang.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/OPS/no_lang.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lang_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_noxmlns/EPUB/lorem.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_noxmlns/EPUB/lorem.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_noxmlns/EPUB/lorem.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_noxmlns/EPUB/lorem.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_noxmlns/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_noxmlns/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_noxmlns_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/EPUB/lorem.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/EPUB/lorem.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/EPUB/lorem.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/EPUB/lorem.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/EPUB/nav.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/EPUB/page-map.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps1_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2/EPUB/lorem.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2/EPUB/lorem.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2/EPUB/lorem.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2/EPUB/lorem.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2/EPUB/nav.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps2_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/EPUB/lorem.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/EPUB/lorem.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/EPUB/lorem.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/EPUB/lorem.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/EPUB/nav.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/EPUB/page-map.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/lorem_pagemaps3_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/audio/echild_s01_all.m4a
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/audio/mobydick_001_002_melville.mp4
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/chapter_001.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/chapter_001_overlay.smil
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/css/stylesheet.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/fonts/iwonacond-bold.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/fonts/iwonacond-bolditalic.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/fonts/iwonacond-italic.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/fonts/iwonacond-regular.otf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/page01.smil
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/page01.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/media_overlays_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/namespaces/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/namespaces/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/namespaces/OPS/html5.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/namespaces/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/namespaces/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/namespaces/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/namespaces_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/OPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/OPS/deep_nesting.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/OPS/standard_nesting.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/OPS/stylesheet.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/OPS/toc.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/OPS/toc.xhtml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/nesting_expected_results.json
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/singleline/META-INF/container.xml
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/singleline/OEBPS/content.opf
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/singleline/OEBPS/moby.html
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/singleline/OEBPS/moby.ncx
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/singleline/OEBPS/stylesheet.css
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/singleline/mimetype
create mode 100644 src/test/resources/com/adobe/epubcheck/test/xhtml/singleline_expected_results.json
create mode 100644 src/test/resources/css/bom-charset15.css
create mode 100644 src/test/resources/css/bom-utf16be-charset.css
create mode 100644 src/test/resources/css/bom-utf16be.css
create mode 100644 src/test/resources/css/bom-utf16le-charset.css
create mode 100644 src/test/resources/css/bom-utf16le.css
create mode 100644 src/test/resources/css/caja.css
create mode 100644 src/test/resources/css/charset-empty.css
create mode 100644 src/test/resources/css/charset-malformed.css
create mode 100644 src/test/resources/css/charset-utf8.css
create mode 100644 src/test/resources/css/counter-styles.css
create mode 100644 src/test/resources/css/flexbox.css
create mode 100755 src/test/resources/css/issue231-crlf.css
create mode 100755 src/test/resources/css/issue231-lf.css
create mode 100644 src/test/resources/css/issue240-1.css
create mode 100644 src/test/resources/css/issue240-2.css
create mode 100755 src/test/resources/css/issue241.css
create mode 100644 src/test/resources/css/issue262.css
create mode 100755 src/test/resources/css/misc.css
create mode 100644 src/test/resources/css/none.css
create mode 100644 src/test/resources/css/other-rule.css
create mode 100644 src/test/resources/css/other.txt
create mode 100644 src/test/resources/css/samples.css
create mode 100644 src/test/resources/stress/EPUB/content_00000.xhtml
create mode 100644 src/test/resources/stress/EPUB/image_00000.png
create mode 100644 src/test/resources/stress/EPUB/nav.xhtml
create mode 100644 src/test/resources/stress/EPUB/package.opf
create mode 100644 src/test/resources/stress/EPUB/style_00000.css
create mode 100644 src/test/resources/stress/META-INF/container.xml
create mode 100644 src/test/resources/stress/mimetype
create mode 100644 src/tools/BookReporter.py
create mode 100644 src/tools/CompareResults.py
create mode 100644 src/tools/CompareResultsUtil.py
create mode 100644 src/tools/CompareVersions.py
create mode 100644 src/tools/Dictionary.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/epubcheck.git
More information about the pkg-java-commits
mailing list