├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .flox ├── .gitignore ├── env.json └── env │ ├── manifest.lock │ └── manifest.toml ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── .yarnrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── README.md ├── docker.sh ├── jest.config-cli.js ├── jest.config-common.js ├── jest.config-electron.js ├── jest.config-puppeteer.js ├── package.json ├── packages ├── ace-axe-runner-electron │ ├── bin │ │ └── ace.js │ ├── package.json │ └── src │ │ ├── cli.js │ │ ├── index.js │ │ ├── init.js │ │ └── selfsigned.js ├── ace-axe-runner-puppeteer │ ├── package.json │ └── src │ │ └── index.js ├── ace-cli-shared │ ├── package.json │ └── src │ │ ├── defaults.json │ │ └── index.js ├── ace-cli │ ├── .npmignore │ ├── README.md │ ├── bin │ │ └── ace.js │ ├── package.json │ └── src │ │ └── index.js ├── ace-config │ ├── README.md │ ├── package.json │ └── src │ │ ├── __tests__ │ │ ├── config-store.test.js │ │ └── index.test.js │ │ ├── config-store.js │ │ ├── constants.json │ │ └── index.js ├── ace-core-legacy │ ├── .npmignore │ ├── README.md │ ├── bin │ │ ├── ace-http.js │ │ └── ace.js │ ├── package.json │ └── src │ │ └── index.js ├── ace-core │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── scripts │ │ └── build._js │ └── src │ │ ├── checker │ │ ├── checker-chromium.js │ │ ├── checker-epub.js │ │ └── checker.js │ │ ├── core │ │ ├── a11y-metadata.js │ │ └── ace.js │ │ ├── index.js │ │ ├── l10n │ │ ├── locales │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── ja.json │ │ │ ├── pt_BR.json │ │ │ └── zh_TW.json │ │ └── localize.js │ │ └── scripts │ │ ├── ace-axe.js │ │ ├── ace-extraction.js │ │ ├── ace-extraction.test.js │ │ ├── axe-patch-aria-roles.js │ │ ├── axe-patch-is-aria-role-allowed.js │ │ ├── axe-patch-listitem.js │ │ ├── axe-patch-only-list-items.js │ │ └── function-bind-bound-object.js ├── ace-http │ ├── .npmignore │ ├── README.md │ ├── bin │ │ └── ace-http.js │ ├── package.json │ └── src │ │ └── index.js ├── ace-localize │ ├── package.json │ └── src │ │ └── localize.js ├── ace-logger │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ ├── defaults.json │ │ └── index.js ├── ace-meta │ └── package.json ├── ace-report-axe │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ ├── axe-rules-kb-mapping.js │ │ ├── index.js │ │ └── l10n │ │ ├── locales │ │ ├── da.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── ja.json │ │ ├── pt_BR.json │ │ └── zh_TW.json │ │ └── localize.js ├── ace-report │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ ├── analyze-a11y-metadata.js │ │ ├── defaults.json │ │ ├── generate-html-report.js │ │ ├── index.js │ │ ├── l10n │ │ ├── locales │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── ja.json │ │ │ ├── pt_BR.json │ │ │ └── zh_TW.json │ │ └── localize.js │ │ ├── report-builders.js │ │ ├── report-builders.test.js │ │ ├── report-template-assets │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ ├── dataTables.bootstrap4.min.css │ │ ├── dataTables.bootstrap4.min.js │ │ ├── jquery-3.2.1.slim.min.js │ │ ├── jquery.dataTables.min.js │ │ └── popper.min.js │ │ ├── report-template.handlebars │ │ └── report.js ├── ace │ ├── .npmignore │ ├── README.md │ ├── bin │ │ ├── ace-electron.js │ │ ├── ace-http.js │ │ ├── ace-puppeteer.js │ │ └── ace.js │ ├── package.json │ └── src │ │ └── index.js ├── epub-utils │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ ├── epub-parse.js │ │ ├── epub.js │ │ └── index.js ├── jest-env-puppeteer │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ └── index.js ├── jest-puppeteer │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ └── index.js └── puppeteer-utils │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ └── index.js ├── scripts ├── axe-rules.html ├── build-utils.js ├── build.js ├── compareAxeRunners.sh ├── compareAxeRunners_VERBOSE.sh ├── findImportedButNonInstalledNpmPackages.mjs ├── locales-sort.js ├── ncu.sh ├── normalise_report_json.js ├── npm-versions-check.js ├── publish.sh ├── replace-in-file.js ├── translate-scan.js └── watch.js ├── tests ├── __tests__ │ ├── __snapshots__ │ │ └── cli.test.js.snap │ ├── axe-rules.test.js │ ├── cli.test.js │ ├── epub-rules.test.js │ ├── regression.test.js │ ├── report_files.test.js │ ├── report_json.test.js │ └── unzip.test.js ├── data │ ├── axerule-bypass │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-dpubroles-matching │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-dpubroles │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-landmark-unique │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-matching-dpub-role-cover-empty-alt │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-matching-dpub-role-cover-no-alt │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-matching-dpub-role-cover │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-matching-dpub-role │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── axerule-pagebreak-label │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── base-epub-30.epub │ ├── base-epub-30 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessModeSufficient-invalid-item │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessModeSufficient-invalid-separator │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessModeSufficient-missing │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessModeSufficient-valid │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessibilityAPI_Control-missing │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessibilityAPI_Control-present │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessibilityFeature-case-sensitive │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessibilityFeature-none-unknown │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-accessibilityHazard-none-unknown-negatives │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-pageBreakMarkers-nopagelist │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-pageNavigation-nopagelist │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata-printPageNumbers-nopagelist │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-metadata │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-package-lang │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-FXL │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-missing-pagebreak-target │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── content_002.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-missing-pagebreak │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── content_002.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-newsource │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-smil-pagebreak │ │ ├── EPUB │ │ │ ├── content_001.smil │ │ │ ├── content_001.xhtml │ │ │ ├── content_002.smil │ │ │ ├── content_002.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-toc-order-fail │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── content_002.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-toc-order-pass-FXL │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── content_002.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist-toc-order-pass │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── content_002.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── epubrules-pagelist │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-audio │ │ ├── EPUB │ │ │ ├── audio_001.mp3 │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-bindings │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-epub-switch │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-epub-trigger │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-forms │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-image │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-links │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-manifest-fallbacks │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── docbook_001.xml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-mathml │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-pagebreaks │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-svg-image │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-svg │ │ ├── EPUB │ │ │ ├── content_001.svg │ │ │ ├── content_002.svg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-video-sources │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ ├── package.opf │ │ │ ├── video_001.mp4 │ │ │ └── video_002.mp4 │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── feat-video │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ ├── package.opf │ │ │ └── video_001.mp4 │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── fs-no-leaks │ │ ├── EPUB │ │ │ ├── html │ │ │ │ └── ch1 │ │ │ │ │ └── content_001.xhtml │ │ │ ├── images │ │ │ │ └── img_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── fs-resource-missing │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── has-violations │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-108 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ ├── package.opf │ │ │ └── require.js │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-114 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-122 │ │ ├── EPUB │ │ │ ├── content_001.xml │ │ │ ├── content_002.ace │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-170 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-182 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-209 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-239 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-290.epub │ ├── issue-290 │ │ ├── E%PU B │ │ │ ├── deep │ │ │ │ ├── deeper │ │ │ │ │ ├── c%on t&e%26n%2Ft_è001_.xhtml │ │ │ │ │ └── deepest │ │ │ │ │ │ └── i%ma g&e%26_%2F00è1_.jpg │ │ │ │ └── n%av i&g%26a%2Ftioèn_.xhtml │ │ │ └── pa&c%26kag%2Feè_.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-49 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-53 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── content_002.xhtml │ │ │ ├── image_001.jpg │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-57 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── issue-85 │ │ ├── EPUB │ │ │ ├── content_001.xhtml │ │ │ ├── nav.xhtml │ │ │ └── package.opf │ │ ├── META-INF │ │ │ └── container.xml │ │ └── mimetype │ ├── pack-epub.sh │ ├── report │ │ ├── js │ │ │ └── aceReportData.js │ │ ├── report.html │ │ └── report.json │ ├── zip-invalid-comment-length.epub │ └── zip-invalid.epub ├── jest-setup.js ├── runAceCLI.js ├── runAceJS.js └── utils.js ├── website ├── config.toml ├── content │ ├── _index.md │ ├── contributing │ │ ├── _index.md │ │ ├── code.md │ │ ├── contributing.md │ │ └── notes.md │ ├── docs │ │ ├── _index.md │ │ ├── cli.md │ │ ├── config.md │ │ ├── http-api.md │ │ ├── logging.md │ │ ├── report-html.md │ │ └── report-json.md │ ├── getting-started │ │ ├── _index.md │ │ ├── ace-app.md │ │ ├── installation.md │ │ ├── running.md │ │ └── why-ace.md │ ├── help │ │ ├── _index.md │ │ ├── contact.md │ │ └── troubleshooting.md │ └── rules │ │ ├── _index.md │ │ ├── epub.md │ │ └── html.md ├── layouts │ └── partials │ │ ├── footer │ │ └── footer.html │ │ └── head │ │ └── scripts.html ├── static │ ├── ace-report-1.0.jsonld │ ├── images │ │ └── logo.svg │ └── terms │ │ └── terms-1.0.html └── themes │ └── daisy │ ├── LICENSE.md │ ├── archetypes │ └── default.md │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── li.html │ │ ├── list.html │ │ └── single.html │ ├── index.html │ ├── partials │ │ ├── footer │ │ │ ├── footer.html │ │ │ └── scripts.html │ │ ├── head │ │ │ └── styles.html │ │ ├── header.html │ │ ├── svg.html │ │ ├── toc.html │ │ └── warnings │ │ │ └── wip.html │ └── shortcodes │ │ ├── note.html │ │ └── warning.html │ ├── static │ ├── css │ │ ├── fonts │ │ │ ├── miriamlibre-bold.woff │ │ │ └── miriamlibre-bold.woff2 │ │ ├── images │ │ │ ├── arrow_effect.svg │ │ │ ├── icon-tick.svg │ │ │ └── stripe.svg │ │ ├── prism.css │ │ └── styles.css │ └── js │ │ ├── dom-scripts.js │ │ └── prism.js │ └── theme.toml └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flox/.gitignore: -------------------------------------------------------------------------------- 1 | run/ 2 | cache/ 3 | lib/ 4 | log/ 5 | -------------------------------------------------------------------------------- /.flox/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.flox/env.json -------------------------------------------------------------------------------- /.flox/env/manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.flox/env/manifest.lock -------------------------------------------------------------------------------- /.flox/env/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.flox/env/manifest.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | workspaces-experimental true 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/README.md -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/docker.sh -------------------------------------------------------------------------------- /jest.config-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/jest.config-cli.js -------------------------------------------------------------------------------- /jest.config-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/jest.config-common.js -------------------------------------------------------------------------------- /jest.config-electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/jest.config-electron.js -------------------------------------------------------------------------------- /jest.config-puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/jest.config-puppeteer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/package.json -------------------------------------------------------------------------------- /packages/ace-axe-runner-electron/bin/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-electron/bin/ace.js -------------------------------------------------------------------------------- /packages/ace-axe-runner-electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-electron/package.json -------------------------------------------------------------------------------- /packages/ace-axe-runner-electron/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-electron/src/cli.js -------------------------------------------------------------------------------- /packages/ace-axe-runner-electron/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-electron/src/index.js -------------------------------------------------------------------------------- /packages/ace-axe-runner-electron/src/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-electron/src/init.js -------------------------------------------------------------------------------- /packages/ace-axe-runner-electron/src/selfsigned.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-electron/src/selfsigned.js -------------------------------------------------------------------------------- /packages/ace-axe-runner-puppeteer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-puppeteer/package.json -------------------------------------------------------------------------------- /packages/ace-axe-runner-puppeteer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-axe-runner-puppeteer/src/index.js -------------------------------------------------------------------------------- /packages/ace-cli-shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli-shared/package.json -------------------------------------------------------------------------------- /packages/ace-cli-shared/src/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli-shared/src/defaults.json -------------------------------------------------------------------------------- /packages/ace-cli-shared/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli-shared/src/index.js -------------------------------------------------------------------------------- /packages/ace-cli/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli/.npmignore -------------------------------------------------------------------------------- /packages/ace-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli/README.md -------------------------------------------------------------------------------- /packages/ace-cli/bin/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli/bin/ace.js -------------------------------------------------------------------------------- /packages/ace-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli/package.json -------------------------------------------------------------------------------- /packages/ace-cli/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-cli/src/index.js -------------------------------------------------------------------------------- /packages/ace-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-config/README.md -------------------------------------------------------------------------------- /packages/ace-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-config/package.json -------------------------------------------------------------------------------- /packages/ace-config/src/__tests__/config-store.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-config/src/__tests__/config-store.test.js -------------------------------------------------------------------------------- /packages/ace-config/src/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-config/src/__tests__/index.test.js -------------------------------------------------------------------------------- /packages/ace-config/src/config-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-config/src/config-store.js -------------------------------------------------------------------------------- /packages/ace-config/src/constants.json: -------------------------------------------------------------------------------- 1 | { 2 | "dirname": "DAISY Ace" 3 | } 4 | -------------------------------------------------------------------------------- /packages/ace-config/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-config/src/index.js -------------------------------------------------------------------------------- /packages/ace-core-legacy/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core-legacy/.npmignore -------------------------------------------------------------------------------- /packages/ace-core-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core-legacy/README.md -------------------------------------------------------------------------------- /packages/ace-core-legacy/bin/ace-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core-legacy/bin/ace-http.js -------------------------------------------------------------------------------- /packages/ace-core-legacy/bin/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core-legacy/bin/ace.js -------------------------------------------------------------------------------- /packages/ace-core-legacy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core-legacy/package.json -------------------------------------------------------------------------------- /packages/ace-core-legacy/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core-legacy/src/index.js -------------------------------------------------------------------------------- /packages/ace-core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/.npmignore -------------------------------------------------------------------------------- /packages/ace-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/README.md -------------------------------------------------------------------------------- /packages/ace-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/package.json -------------------------------------------------------------------------------- /packages/ace-core/scripts/build._js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/scripts/build._js -------------------------------------------------------------------------------- /packages/ace-core/src/checker/checker-chromium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/checker/checker-chromium.js -------------------------------------------------------------------------------- /packages/ace-core/src/checker/checker-epub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/checker/checker-epub.js -------------------------------------------------------------------------------- /packages/ace-core/src/checker/checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/checker/checker.js -------------------------------------------------------------------------------- /packages/ace-core/src/core/a11y-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/core/a11y-metadata.js -------------------------------------------------------------------------------- /packages/ace-core/src/core/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/core/ace.js -------------------------------------------------------------------------------- /packages/ace-core/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./core/ace'); 4 | -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/da.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/de.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/en.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/es.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/fr.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/ja.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/pt_BR.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/locales/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/locales/zh_TW.json -------------------------------------------------------------------------------- /packages/ace-core/src/l10n/localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/l10n/localize.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/ace-axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/ace-axe.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/ace-extraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/ace-extraction.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/ace-extraction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/ace-extraction.test.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/axe-patch-aria-roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/axe-patch-aria-roles.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/axe-patch-is-aria-role-allowed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/axe-patch-is-aria-role-allowed.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/axe-patch-listitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/axe-patch-listitem.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/axe-patch-only-list-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/axe-patch-only-list-items.js -------------------------------------------------------------------------------- /packages/ace-core/src/scripts/function-bind-bound-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-core/src/scripts/function-bind-bound-object.js -------------------------------------------------------------------------------- /packages/ace-http/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-http/.npmignore -------------------------------------------------------------------------------- /packages/ace-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-http/README.md -------------------------------------------------------------------------------- /packages/ace-http/bin/ace-http.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib').run(); 4 | -------------------------------------------------------------------------------- /packages/ace-http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-http/package.json -------------------------------------------------------------------------------- /packages/ace-http/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-http/src/index.js -------------------------------------------------------------------------------- /packages/ace-localize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-localize/package.json -------------------------------------------------------------------------------- /packages/ace-localize/src/localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-localize/src/localize.js -------------------------------------------------------------------------------- /packages/ace-logger/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-logger/.npmignore -------------------------------------------------------------------------------- /packages/ace-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-logger/README.md -------------------------------------------------------------------------------- /packages/ace-logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-logger/package.json -------------------------------------------------------------------------------- /packages/ace-logger/src/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-logger/src/defaults.json -------------------------------------------------------------------------------- /packages/ace-logger/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-logger/src/index.js -------------------------------------------------------------------------------- /packages/ace-meta/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-meta/package.json -------------------------------------------------------------------------------- /packages/ace-report-axe/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/.npmignore -------------------------------------------------------------------------------- /packages/ace-report-axe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/README.md -------------------------------------------------------------------------------- /packages/ace-report-axe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/package.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/axe-rules-kb-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/axe-rules-kb-mapping.js -------------------------------------------------------------------------------- /packages/ace-report-axe/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/index.js -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/da.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/de.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/en.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/es.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/fr.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/ja.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/pt_BR.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/locales/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/locales/zh_TW.json -------------------------------------------------------------------------------- /packages/ace-report-axe/src/l10n/localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report-axe/src/l10n/localize.js -------------------------------------------------------------------------------- /packages/ace-report/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/.npmignore -------------------------------------------------------------------------------- /packages/ace-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/README.md -------------------------------------------------------------------------------- /packages/ace-report/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/package.json -------------------------------------------------------------------------------- /packages/ace-report/src/analyze-a11y-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/analyze-a11y-metadata.js -------------------------------------------------------------------------------- /packages/ace-report/src/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/defaults.json -------------------------------------------------------------------------------- /packages/ace-report/src/generate-html-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/generate-html-report.js -------------------------------------------------------------------------------- /packages/ace-report/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/index.js -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/da.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/de.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/en.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/es.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/fr.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/ja.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/pt_BR.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/locales/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/locales/zh_TW.json -------------------------------------------------------------------------------- /packages/ace-report/src/l10n/localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/l10n/localize.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-builders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-builders.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-builders.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-builders.test.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-template-assets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template-assets/bootstrap.min.css -------------------------------------------------------------------------------- /packages/ace-report/src/report-template-assets/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template-assets/bootstrap.min.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-template-assets/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template-assets/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /packages/ace-report/src/report-template-assets/dataTables.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template-assets/dataTables.bootstrap4.min.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-template-assets/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template-assets/jquery-3.2.1.slim.min.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-template-assets/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template-assets/jquery.dataTables.min.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-template-assets/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template-assets/popper.min.js -------------------------------------------------------------------------------- /packages/ace-report/src/report-template.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report-template.handlebars -------------------------------------------------------------------------------- /packages/ace-report/src/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace-report/src/report.js -------------------------------------------------------------------------------- /packages/ace/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/.npmignore -------------------------------------------------------------------------------- /packages/ace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/README.md -------------------------------------------------------------------------------- /packages/ace/bin/ace-electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/bin/ace-electron.js -------------------------------------------------------------------------------- /packages/ace/bin/ace-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/bin/ace-http.js -------------------------------------------------------------------------------- /packages/ace/bin/ace-puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/bin/ace-puppeteer.js -------------------------------------------------------------------------------- /packages/ace/bin/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/bin/ace.js -------------------------------------------------------------------------------- /packages/ace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/package.json -------------------------------------------------------------------------------- /packages/ace/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/ace/src/index.js -------------------------------------------------------------------------------- /packages/epub-utils/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/epub-utils/.npmignore -------------------------------------------------------------------------------- /packages/epub-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/epub-utils/README.md -------------------------------------------------------------------------------- /packages/epub-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/epub-utils/package.json -------------------------------------------------------------------------------- /packages/epub-utils/src/epub-parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/epub-utils/src/epub-parse.js -------------------------------------------------------------------------------- /packages/epub-utils/src/epub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/epub-utils/src/epub.js -------------------------------------------------------------------------------- /packages/epub-utils/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/epub-utils/src/index.js -------------------------------------------------------------------------------- /packages/jest-env-puppeteer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-env-puppeteer/.npmignore -------------------------------------------------------------------------------- /packages/jest-env-puppeteer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-env-puppeteer/README.md -------------------------------------------------------------------------------- /packages/jest-env-puppeteer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-env-puppeteer/package.json -------------------------------------------------------------------------------- /packages/jest-env-puppeteer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-env-puppeteer/src/index.js -------------------------------------------------------------------------------- /packages/jest-puppeteer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-puppeteer/.npmignore -------------------------------------------------------------------------------- /packages/jest-puppeteer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-puppeteer/README.md -------------------------------------------------------------------------------- /packages/jest-puppeteer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-puppeteer/package.json -------------------------------------------------------------------------------- /packages/jest-puppeteer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/jest-puppeteer/src/index.js -------------------------------------------------------------------------------- /packages/puppeteer-utils/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/puppeteer-utils/.npmignore -------------------------------------------------------------------------------- /packages/puppeteer-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/puppeteer-utils/README.md -------------------------------------------------------------------------------- /packages/puppeteer-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/puppeteer-utils/package.json -------------------------------------------------------------------------------- /packages/puppeteer-utils/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/packages/puppeteer-utils/src/index.js -------------------------------------------------------------------------------- /scripts/axe-rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/axe-rules.html -------------------------------------------------------------------------------- /scripts/build-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/build-utils.js -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/compareAxeRunners.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/compareAxeRunners.sh -------------------------------------------------------------------------------- /scripts/compareAxeRunners_VERBOSE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/compareAxeRunners_VERBOSE.sh -------------------------------------------------------------------------------- /scripts/findImportedButNonInstalledNpmPackages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/findImportedButNonInstalledNpmPackages.mjs -------------------------------------------------------------------------------- /scripts/locales-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/locales-sort.js -------------------------------------------------------------------------------- /scripts/ncu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/ncu.sh -------------------------------------------------------------------------------- /scripts/normalise_report_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/normalise_report_json.js -------------------------------------------------------------------------------- /scripts/npm-versions-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/npm-versions-check.js -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /scripts/replace-in-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/replace-in-file.js -------------------------------------------------------------------------------- /scripts/translate-scan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/translate-scan.js -------------------------------------------------------------------------------- /scripts/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/scripts/watch.js -------------------------------------------------------------------------------- /tests/__tests__/__snapshots__/cli.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/__snapshots__/cli.test.js.snap -------------------------------------------------------------------------------- /tests/__tests__/axe-rules.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/axe-rules.test.js -------------------------------------------------------------------------------- /tests/__tests__/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/cli.test.js -------------------------------------------------------------------------------- /tests/__tests__/epub-rules.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/epub-rules.test.js -------------------------------------------------------------------------------- /tests/__tests__/regression.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/regression.test.js -------------------------------------------------------------------------------- /tests/__tests__/report_files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/report_files.test.js -------------------------------------------------------------------------------- /tests/__tests__/report_json.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/report_json.test.js -------------------------------------------------------------------------------- /tests/__tests__/unzip.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/__tests__/unzip.test.js -------------------------------------------------------------------------------- /tests/data/axerule-bypass/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-bypass/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-bypass/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-bypass/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-bypass/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-bypass/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-bypass/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-bypass/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-bypass/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles-matching/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles-matching/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles-matching/EPUB/image_001.jpg: -------------------------------------------------------------------------------- 1 | fake image 2 | -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles-matching/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles-matching/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles-matching/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles-matching/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles-matching/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles-matching/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles-matching/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles/EPUB/image_001.jpg: -------------------------------------------------------------------------------- 1 | fake image 2 | -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-dpubroles/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-dpubroles/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-landmark-unique/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-landmark-unique/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-landmark-unique/EPUB/image_001.jpg: -------------------------------------------------------------------------------- 1 | fake image 2 | -------------------------------------------------------------------------------- /tests/data/axerule-landmark-unique/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-landmark-unique/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-landmark-unique/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-landmark-unique/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-landmark-unique/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-landmark-unique/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-landmark-unique/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/image_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/image_001.jpg -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-empty-alt/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-empty-alt/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-empty-alt/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-empty-alt/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/image_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/image_001.jpg -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-no-alt/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-no-alt/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover-no-alt/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover-no-alt/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover/EPUB/image_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover/EPUB/image_001.jpg -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role-cover/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role-cover/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-matching-dpub-role/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-matching-dpub-role/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/axerule-pagebreak-label/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-pagebreak-label/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-pagebreak-label/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-pagebreak-label/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/axerule-pagebreak-label/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-pagebreak-label/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/axerule-pagebreak-label/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/axerule-pagebreak-label/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/axerule-pagebreak-label/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/base-epub-30.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/base-epub-30.epub -------------------------------------------------------------------------------- /tests/data/base-epub-30/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/base-epub-30/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/base-epub-30/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/base-epub-30/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/base-epub-30/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/base-epub-30/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/base-epub-30/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/base-epub-30/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/base-epub-30/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-item/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-item/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-item/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-item/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-item/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-item/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-item/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-item/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-item/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-invalid-separator/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-missing/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-missing/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-missing/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-missing/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-missing/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-missing/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-missing/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-missing/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-missing/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-valid/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-valid/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-valid/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-valid/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-valid/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-valid/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-valid/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessModeSufficient-valid/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessModeSufficient-valid/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-missing/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-missing/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-missing/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-missing/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-missing/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-missing/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-missing/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-missing/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-missing/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-present/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-present/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-present/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-present/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-present/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-present/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-present/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityAPI_Control-present/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityAPI_Control-present/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-case-sensitive/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-none-unknown/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-none-unknown/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-none-unknown/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-none-unknown/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-none-unknown/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-none-unknown/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-none-unknown/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityFeature-none-unknown/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityFeature-none-unknown/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-accessibilityHazard-none-unknown-negatives/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageBreakMarkers-nopagelist/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageNavigation-nopagelist/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageNavigation-nopagelist/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageNavigation-nopagelist/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageNavigation-nopagelist/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageNavigation-nopagelist/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageNavigation-nopagelist/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageNavigation-nopagelist/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-pageNavigation-nopagelist/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-pageNavigation-nopagelist/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-printPageNumbers-nopagelist/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-printPageNumbers-nopagelist/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-printPageNumbers-nopagelist/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-printPageNumbers-nopagelist/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-printPageNumbers-nopagelist/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-printPageNumbers-nopagelist/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-printPageNumbers-nopagelist/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata-printPageNumbers-nopagelist/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata-printPageNumbers-nopagelist/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-metadata/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-metadata/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-metadata/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-metadata/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-package-lang/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-package-lang/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-package-lang/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-package-lang/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-package-lang/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-package-lang/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-package-lang/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-package-lang/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-package-lang/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-FXL/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-FXL/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-FXL/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-FXL/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-FXL/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-FXL/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-FXL/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-FXL/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-FXL/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/content_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/content_002.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak-target/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak-target/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak-target/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak-target/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak/EPUB/content_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak/EPUB/content_002.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-missing-pagebreak/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-missing-pagebreak/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-newsource/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-newsource/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-newsource/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-newsource/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-newsource/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-newsource/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-newsource/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-newsource/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-newsource/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_001.smil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_001.smil -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_002.smil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_002.smil -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-smil-pagebreak/EPUB/content_002.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-smil-pagebreak/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-smil-pagebreak/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-smil-pagebreak/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-smil-pagebreak/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-fail/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-fail/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-fail/EPUB/content_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-fail/EPUB/content_002.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-fail/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-fail/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-fail/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-fail/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-fail/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-fail/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-fail/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/content_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/content_002.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass-FXL/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass-FXL/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass-FXL/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass-FXL/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass/EPUB/content_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass/EPUB/content_002.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist-toc-order-pass/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist-toc-order-pass/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/epubrules-pagelist/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/epubrules-pagelist/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-audio/EPUB/audio_001.mp3: -------------------------------------------------------------------------------- 1 | fake audio 2 | -------------------------------------------------------------------------------- /tests/data/feat-audio/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-audio/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-audio/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-audio/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-audio/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-audio/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-audio/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-audio/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-audio/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-bindings/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-bindings/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-bindings/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-bindings/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-bindings/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-bindings/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-bindings/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-bindings/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-bindings/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-epub-switch/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-switch/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-epub-switch/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-switch/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-epub-switch/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-switch/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-epub-switch/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-switch/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-epub-switch/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-epub-trigger/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-trigger/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-epub-trigger/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-trigger/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-epub-trigger/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-trigger/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-epub-trigger/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-epub-trigger/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-epub-trigger/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-forms/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-forms/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-forms/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-forms/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-forms/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-forms/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-forms/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-forms/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-forms/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-image/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-image/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-image/EPUB/image_001.jpg: -------------------------------------------------------------------------------- 1 | fake image 2 | -------------------------------------------------------------------------------- /tests/data/feat-image/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-image/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-image/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-image/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-image/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-image/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-image/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-links/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-links/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-links/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-links/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-links/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-links/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-links/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-links/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-links/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-manifest-fallbacks/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-manifest-fallbacks/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-manifest-fallbacks/EPUB/docbook_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-manifest-fallbacks/EPUB/docbook_001.xml -------------------------------------------------------------------------------- /tests/data/feat-manifest-fallbacks/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-manifest-fallbacks/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-manifest-fallbacks/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-manifest-fallbacks/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-manifest-fallbacks/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-manifest-fallbacks/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-manifest-fallbacks/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-mathml/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-mathml/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-mathml/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-mathml/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-mathml/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-mathml/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-mathml/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-mathml/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-mathml/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-pagebreaks/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-pagebreaks/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-pagebreaks/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-pagebreaks/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-pagebreaks/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-pagebreaks/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-pagebreaks/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-pagebreaks/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-pagebreaks/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-svg-image/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg-image/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-svg-image/EPUB/image_001.jpg: -------------------------------------------------------------------------------- 1 | fake image 2 | -------------------------------------------------------------------------------- /tests/data/feat-svg-image/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg-image/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-svg-image/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg-image/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-svg-image/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg-image/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-svg-image/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-svg/EPUB/content_001.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg/EPUB/content_001.svg -------------------------------------------------------------------------------- /tests/data/feat-svg/EPUB/content_002.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg/EPUB/content_002.svg -------------------------------------------------------------------------------- /tests/data/feat-svg/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-svg/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-svg/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-svg/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-svg/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-video-sources/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video-sources/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-video-sources/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video-sources/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-video-sources/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video-sources/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-video-sources/EPUB/video_001.mp4: -------------------------------------------------------------------------------- 1 | fake video 2 | -------------------------------------------------------------------------------- /tests/data/feat-video-sources/EPUB/video_002.mp4: -------------------------------------------------------------------------------- 1 | fake video 2 | -------------------------------------------------------------------------------- /tests/data/feat-video-sources/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video-sources/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-video-sources/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/feat-video/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/feat-video/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/feat-video/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/feat-video/EPUB/video_001.mp4: -------------------------------------------------------------------------------- 1 | fake video 2 | -------------------------------------------------------------------------------- /tests/data/feat-video/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/feat-video/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/feat-video/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/fs-no-leaks/EPUB/html/ch1/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-no-leaks/EPUB/html/ch1/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/fs-no-leaks/EPUB/images/img_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-no-leaks/EPUB/images/img_001.jpg -------------------------------------------------------------------------------- /tests/data/fs-no-leaks/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-no-leaks/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/fs-no-leaks/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-no-leaks/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/fs-no-leaks/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-no-leaks/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/fs-no-leaks/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/fs-resource-missing/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-resource-missing/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/fs-resource-missing/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-resource-missing/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/fs-resource-missing/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-resource-missing/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/fs-resource-missing/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/fs-resource-missing/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/fs-resource-missing/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/has-violations/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/has-violations/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/has-violations/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/has-violations/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/has-violations/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/has-violations/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/has-violations/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/has-violations/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/has-violations/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-108/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-108/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-108/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-108/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-108/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-108/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-108/EPUB/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-108/EPUB/require.js -------------------------------------------------------------------------------- /tests/data/issue-108/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-108/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-108/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-114/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-114/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-114/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-114/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-114/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-114/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-114/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-114/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-114/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-122/EPUB/content_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-122/EPUB/content_001.xml -------------------------------------------------------------------------------- /tests/data/issue-122/EPUB/content_002.ace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-122/EPUB/content_002.ace -------------------------------------------------------------------------------- /tests/data/issue-122/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-122/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-122/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-122/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-122/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-122/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-122/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-170/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-170/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-170/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-170/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-170/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-170/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-170/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-170/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-170/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-182/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-182/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-182/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-182/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-182/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-182/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-182/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-182/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-182/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-209/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-209/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-209/EPUB/image_001.jpg: -------------------------------------------------------------------------------- 1 | fake image 2 | -------------------------------------------------------------------------------- /tests/data/issue-209/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-209/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-209/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-209/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-209/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-209/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-209/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-239/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-239/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-239/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-239/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-239/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-239/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-239/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-239/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-239/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-290.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-290.epub -------------------------------------------------------------------------------- /tests/data/issue-290/E%PU B/deep/deeper/c%on t&e%26n%2Ft_è001_.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-290/E%PU B/deep/deeper/c%on t&e%26n%2Ft_è001_.xhtml -------------------------------------------------------------------------------- /tests/data/issue-290/E%PU B/deep/deeper/deepest/i%ma g&e%26_%2F00è1_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-290/E%PU B/deep/deeper/deepest/i%ma g&e%26_%2F00è1_.jpg -------------------------------------------------------------------------------- /tests/data/issue-290/E%PU B/deep/n%av i&g%26a%2Ftioèn_.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-290/E%PU B/deep/n%av i&g%26a%2Ftioèn_.xhtml -------------------------------------------------------------------------------- /tests/data/issue-290/E%PU B/pa&c%26kag%2Feè_.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-290/E%PU B/pa&c%26kag%2Feè_.opf -------------------------------------------------------------------------------- /tests/data/issue-290/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-290/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-290/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-49/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-49/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-49/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-49/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-49/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-49/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-49/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-49/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-49/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-53/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-53/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-53/EPUB/content_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-53/EPUB/content_002.xhtml -------------------------------------------------------------------------------- /tests/data/issue-53/EPUB/image_001.jpg: -------------------------------------------------------------------------------- 1 | fake image 2 | -------------------------------------------------------------------------------- /tests/data/issue-53/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-53/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-53/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-53/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-53/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-53/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-53/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-57/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-57/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-57/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-57/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-57/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-57/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-57/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-57/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-57/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/issue-85/EPUB/content_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-85/EPUB/content_001.xhtml -------------------------------------------------------------------------------- /tests/data/issue-85/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-85/EPUB/nav.xhtml -------------------------------------------------------------------------------- /tests/data/issue-85/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-85/EPUB/package.opf -------------------------------------------------------------------------------- /tests/data/issue-85/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/issue-85/META-INF/container.xml -------------------------------------------------------------------------------- /tests/data/issue-85/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tests/data/pack-epub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/pack-epub.sh -------------------------------------------------------------------------------- /tests/data/report/js/aceReportData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/report/js/aceReportData.js -------------------------------------------------------------------------------- /tests/data/report/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/report/report.html -------------------------------------------------------------------------------- /tests/data/report/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/report/report.json -------------------------------------------------------------------------------- /tests/data/zip-invalid-comment-length.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/data/zip-invalid-comment-length.epub -------------------------------------------------------------------------------- /tests/data/zip-invalid.epub: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/jest-setup.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | jest.setTimeout(20000); 4 | -------------------------------------------------------------------------------- /tests/runAceCLI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/runAceCLI.js -------------------------------------------------------------------------------- /tests/runAceJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/runAceJS.js -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/tests/utils.js -------------------------------------------------------------------------------- /website/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/config.toml -------------------------------------------------------------------------------- /website/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/_index.md -------------------------------------------------------------------------------- /website/content/contributing/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Contributing" 3 | weight = 4 4 | +++ 5 | 6 | TBD 7 | -------------------------------------------------------------------------------- /website/content/contributing/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/contributing/code.md -------------------------------------------------------------------------------- /website/content/contributing/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/contributing/contributing.md -------------------------------------------------------------------------------- /website/content/contributing/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/contributing/notes.md -------------------------------------------------------------------------------- /website/content/docs/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Reference" 3 | weight = 2 4 | +++ 5 | 6 | TBD 7 | -------------------------------------------------------------------------------- /website/content/docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/docs/cli.md -------------------------------------------------------------------------------- /website/content/docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/docs/config.md -------------------------------------------------------------------------------- /website/content/docs/http-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/docs/http-api.md -------------------------------------------------------------------------------- /website/content/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/docs/logging.md -------------------------------------------------------------------------------- /website/content/docs/report-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/docs/report-html.md -------------------------------------------------------------------------------- /website/content/docs/report-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/docs/report-json.md -------------------------------------------------------------------------------- /website/content/getting-started/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Getting started" 3 | weight = 1 4 | +++ 5 | 6 | TBD 7 | -------------------------------------------------------------------------------- /website/content/getting-started/ace-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/getting-started/ace-app.md -------------------------------------------------------------------------------- /website/content/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/getting-started/installation.md -------------------------------------------------------------------------------- /website/content/getting-started/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/getting-started/running.md -------------------------------------------------------------------------------- /website/content/getting-started/why-ace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/getting-started/why-ace.md -------------------------------------------------------------------------------- /website/content/help/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Need Help?" 3 | weight = 5 4 | +++ 5 | 6 | TBD 7 | -------------------------------------------------------------------------------- /website/content/help/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/help/contact.md -------------------------------------------------------------------------------- /website/content/help/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/help/troubleshooting.md -------------------------------------------------------------------------------- /website/content/rules/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/rules/_index.md -------------------------------------------------------------------------------- /website/content/rules/epub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/rules/epub.md -------------------------------------------------------------------------------- /website/content/rules/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/content/rules/html.md -------------------------------------------------------------------------------- /website/layouts/partials/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/layouts/partials/footer/footer.html -------------------------------------------------------------------------------- /website/layouts/partials/head/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/layouts/partials/head/scripts.html -------------------------------------------------------------------------------- /website/static/ace-report-1.0.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/static/ace-report-1.0.jsonld -------------------------------------------------------------------------------- /website/static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/static/images/logo.svg -------------------------------------------------------------------------------- /website/static/terms/terms-1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/static/terms/terms-1.0.html -------------------------------------------------------------------------------- /website/themes/daisy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/LICENSE.md -------------------------------------------------------------------------------- /website/themes/daisy/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /website/themes/daisy/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/404.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/_default/baseof.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/_default/li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/_default/li.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/_default/list.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/_default/single.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/index.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/partials/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/partials/footer/footer.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/partials/footer/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/partials/footer/scripts.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/partials/head/styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/partials/head/styles.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/themes/daisy/layouts/partials/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/partials/svg.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/partials/toc.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/partials/warnings/wip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/partials/warnings/wip.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/shortcodes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/shortcodes/note.html -------------------------------------------------------------------------------- /website/themes/daisy/layouts/shortcodes/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/layouts/shortcodes/warning.html -------------------------------------------------------------------------------- /website/themes/daisy/static/css/fonts/miriamlibre-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/css/fonts/miriamlibre-bold.woff -------------------------------------------------------------------------------- /website/themes/daisy/static/css/fonts/miriamlibre-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/css/fonts/miriamlibre-bold.woff2 -------------------------------------------------------------------------------- /website/themes/daisy/static/css/images/arrow_effect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/css/images/arrow_effect.svg -------------------------------------------------------------------------------- /website/themes/daisy/static/css/images/icon-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/css/images/icon-tick.svg -------------------------------------------------------------------------------- /website/themes/daisy/static/css/images/stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/css/images/stripe.svg -------------------------------------------------------------------------------- /website/themes/daisy/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/css/prism.css -------------------------------------------------------------------------------- /website/themes/daisy/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/css/styles.css -------------------------------------------------------------------------------- /website/themes/daisy/static/js/dom-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/js/dom-scripts.js -------------------------------------------------------------------------------- /website/themes/daisy/static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/static/js/prism.js -------------------------------------------------------------------------------- /website/themes/daisy/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/website/themes/daisy/theme.toml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisy/ace/HEAD/yarn.lock --------------------------------------------------------------------------------