├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── config.rb ├── core ├── cleanup │ └── cleanup.rb ├── coverchecker │ └── coverchecker.rb ├── epubmaker │ ├── cover_placeholder.js │ ├── epubcheck │ │ ├── CHANGELOG.txt │ │ ├── COPYING.txt │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── THIRD-PARTY.txt │ │ ├── epubcheck.jar │ │ ├── lib │ │ │ ├── Saxon-HE-9.8.0-8.jar │ │ │ ├── animal-sniffer-annotations-1.14.jar │ │ │ ├── checker-compat-qual-2.0.0.jar │ │ │ ├── common-image-3.4.1.jar │ │ │ ├── common-io-3.4.1.jar │ │ │ ├── common-lang-3.4.1.jar │ │ │ ├── commons-compress-1.20.jar │ │ │ ├── error_prone_annotations-2.1.3.jar │ │ │ ├── guava-24.1.1-android.jar │ │ │ ├── imageio-core-3.4.1.jar │ │ │ ├── imageio-jpeg-3.4.1.jar │ │ │ ├── imageio-metadata-3.4.1.jar │ │ │ ├── isorelax-20030108.jar │ │ │ ├── j2objc-annotations-1.1.jar │ │ │ ├── jackson-core-asl-1.9.12.jar │ │ │ ├── jackson-mapper-asl-1.9.12.jar │ │ │ ├── jing-20181222.jar │ │ │ ├── jsr305-1.3.9.jar │ │ │ ├── sac-1.3.jar │ │ │ └── xercesImpl-2.9.1.jar │ │ └── licenses │ │ │ ├── Apache-2.0.txt │ │ │ ├── BSD-3-Clause.txt │ │ │ ├── MIT.txt │ │ │ ├── MPL-2.0.txt │ │ │ └── W3C.txt │ ├── epubmaker.rb │ ├── strip-halftitle.xsl │ ├── strip-tocnodes.js │ └── zipepub.py ├── filearchive │ └── filearchive.rb ├── header.rb ├── htmlmaker │ ├── docxtoxml.py │ ├── evaluate_pis.js │ ├── headings.js │ ├── htmlmaker.rb │ ├── inlines.js │ ├── preformatted.js │ ├── title.js │ ├── version_metatag.js │ ├── wordtohtml.xsl │ └── xsl_only.js ├── imagechecker │ └── imagechecker.rb ├── metadata.rb ├── pdfmaker │ └── pdfmaker.rb ├── stylesheets │ └── stylesheets.rb ├── tmparchive │ ├── tmparchive.rb │ ├── tmparchive_direct.rb │ └── tmparchive_rsuite.rb └── utilities │ ├── evaltemplates.js │ ├── insertaddon.js │ ├── mcmlln-tools.rb │ └── movesection.js ├── favicon.ico ├── index.html ├── logo.png ├── m_p_mono_b.png ├── package.json └── unit_tests.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/README.md -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/config.rb -------------------------------------------------------------------------------- /core/cleanup/cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/cleanup/cleanup.rb -------------------------------------------------------------------------------- /core/coverchecker/coverchecker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/coverchecker/coverchecker.rb -------------------------------------------------------------------------------- /core/epubmaker/cover_placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/cover_placeholder.js -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/CHANGELOG.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/COPYING.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/LICENSE.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/README.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/THIRD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/THIRD-PARTY.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/epubcheck.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/epubcheck.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/Saxon-HE-9.8.0-8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/Saxon-HE-9.8.0-8.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/animal-sniffer-annotations-1.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/animal-sniffer-annotations-1.14.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/checker-compat-qual-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/checker-compat-qual-2.0.0.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/common-image-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/common-image-3.4.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/common-io-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/common-io-3.4.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/common-lang-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/common-lang-3.4.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/commons-compress-1.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/commons-compress-1.20.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/error_prone_annotations-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/error_prone_annotations-2.1.3.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/guava-24.1.1-android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/guava-24.1.1-android.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/imageio-core-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/imageio-core-3.4.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/imageio-jpeg-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/imageio-jpeg-3.4.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/imageio-metadata-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/imageio-metadata-3.4.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/isorelax-20030108.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/isorelax-20030108.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/j2objc-annotations-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/j2objc-annotations-1.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/jackson-core-asl-1.9.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/jackson-core-asl-1.9.12.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/jackson-mapper-asl-1.9.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/jackson-mapper-asl-1.9.12.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/jing-20181222.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/jing-20181222.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/jsr305-1.3.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/jsr305-1.3.9.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/sac-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/sac-1.3.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/lib/xercesImpl-2.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/lib/xercesImpl-2.9.1.jar -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/licenses/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/licenses/Apache-2.0.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/licenses/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/licenses/BSD-3-Clause.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/licenses/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/licenses/MIT.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/licenses/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/licenses/MPL-2.0.txt -------------------------------------------------------------------------------- /core/epubmaker/epubcheck/licenses/W3C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubcheck/licenses/W3C.txt -------------------------------------------------------------------------------- /core/epubmaker/epubmaker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/epubmaker.rb -------------------------------------------------------------------------------- /core/epubmaker/strip-halftitle.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/strip-halftitle.xsl -------------------------------------------------------------------------------- /core/epubmaker/strip-tocnodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/strip-tocnodes.js -------------------------------------------------------------------------------- /core/epubmaker/zipepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/epubmaker/zipepub.py -------------------------------------------------------------------------------- /core/filearchive/filearchive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/filearchive/filearchive.rb -------------------------------------------------------------------------------- /core/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/header.rb -------------------------------------------------------------------------------- /core/htmlmaker/docxtoxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/docxtoxml.py -------------------------------------------------------------------------------- /core/htmlmaker/evaluate_pis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/evaluate_pis.js -------------------------------------------------------------------------------- /core/htmlmaker/headings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/headings.js -------------------------------------------------------------------------------- /core/htmlmaker/htmlmaker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/htmlmaker.rb -------------------------------------------------------------------------------- /core/htmlmaker/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/inlines.js -------------------------------------------------------------------------------- /core/htmlmaker/preformatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/preformatted.js -------------------------------------------------------------------------------- /core/htmlmaker/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/title.js -------------------------------------------------------------------------------- /core/htmlmaker/version_metatag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/version_metatag.js -------------------------------------------------------------------------------- /core/htmlmaker/wordtohtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/wordtohtml.xsl -------------------------------------------------------------------------------- /core/htmlmaker/xsl_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/htmlmaker/xsl_only.js -------------------------------------------------------------------------------- /core/imagechecker/imagechecker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/imagechecker/imagechecker.rb -------------------------------------------------------------------------------- /core/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/metadata.rb -------------------------------------------------------------------------------- /core/pdfmaker/pdfmaker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/pdfmaker/pdfmaker.rb -------------------------------------------------------------------------------- /core/stylesheets/stylesheets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/stylesheets/stylesheets.rb -------------------------------------------------------------------------------- /core/tmparchive/tmparchive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/tmparchive/tmparchive.rb -------------------------------------------------------------------------------- /core/tmparchive/tmparchive_direct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/tmparchive/tmparchive_direct.rb -------------------------------------------------------------------------------- /core/tmparchive/tmparchive_rsuite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/tmparchive/tmparchive_rsuite.rb -------------------------------------------------------------------------------- /core/utilities/evaltemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/utilities/evaltemplates.js -------------------------------------------------------------------------------- /core/utilities/insertaddon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/utilities/insertaddon.js -------------------------------------------------------------------------------- /core/utilities/mcmlln-tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/utilities/mcmlln-tools.rb -------------------------------------------------------------------------------- /core/utilities/movesection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/core/utilities/movesection.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/index.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/logo.png -------------------------------------------------------------------------------- /m_p_mono_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/m_p_mono_b.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/package.json -------------------------------------------------------------------------------- /unit_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmillanpublishers/bookmaker/HEAD/unit_tests.rb --------------------------------------------------------------------------------