softcover 0.0.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (716) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +9 -0
  3. data/.pull_requests/1371777843 +0 -0
  4. data/.pull_requests/1371928784 +0 -0
  5. data/.pull_requests/1372807241 +0 -0
  6. data/.pull_requests/1374784202 +0 -0
  7. data/.pull_requests/1375325174 +0 -0
  8. data/.pull_requests/1375410822 +0 -0
  9. data/.pull_requests/1375469799 +0 -0
  10. data/.pull_requests/1375490251 +0 -0
  11. data/.pull_requests/1375493726 +0 -0
  12. data/.pull_requests/1375496302 +0 -0
  13. data/.pull_requests/1375496370 +0 -0
  14. data/.pull_requests/1375576640 +0 -0
  15. data/.pull_requests/1375841865 +0 -0
  16. data/.pull_requests/1376353301 +0 -0
  17. data/.pull_requests/1376358293 +0 -0
  18. data/.pull_requests/1376358392 +0 -0
  19. data/.pull_requests/1376451118 +0 -0
  20. data/.pull_requests/1376508357 +0 -0
  21. data/.pull_requests/1376513848 +0 -0
  22. data/.pull_requests/1376626000 +0 -0
  23. data/.pull_requests/1376626358 +0 -0
  24. data/.pull_requests/1376694273 +0 -0
  25. data/.pull_requests/1376696608 +0 -0
  26. data/.pull_requests/1376701133 +0 -0
  27. data/.pull_requests/1376705147 +0 -0
  28. data/.pull_requests/1377192571 +0 -0
  29. data/.pull_requests/1377195255 +0 -0
  30. data/.pull_requests/1377227817 +0 -0
  31. data/.pull_requests/1378780517 +0 -0
  32. data/.pull_requests/1379022091 +0 -0
  33. data/.pull_requests/1379023124 +0 -0
  34. data/.pull_requests/1379355960 +0 -0
  35. data/.pull_requests/1379457178 +0 -0
  36. data/.pull_requests/1379471050 +0 -0
  37. data/.pull_requests/1379630778 +0 -0
  38. data/.pull_requests/1380079375 +0 -0
  39. data/.pull_requests/1380081971 +0 -0
  40. data/.pull_requests/1380222458 +0 -0
  41. data/.pull_requests/1380229616 +0 -0
  42. data/.pull_requests/1380321946 +0 -0
  43. data/.pull_requests/1380587638 +0 -0
  44. data/.pull_requests/1380673383 +0 -0
  45. data/.pull_requests/1380675541 +0 -0
  46. data/.pull_requests/1380676529 +0 -0
  47. data/.pull_requests/1380944160 +0 -0
  48. data/.pull_requests/1381001404 +0 -0
  49. data/.pull_requests/1381001955 +0 -0
  50. data/.pull_requests/1381005206 +0 -0
  51. data/.pull_requests/1381103407 +0 -0
  52. data/.pull_requests/1381265319 +0 -0
  53. data/.pull_requests/1381276823 +0 -0
  54. data/.pull_requests/1381344368 +0 -0
  55. data/.pull_requests/1381385299 +0 -0
  56. data/.pull_requests/1381429963 +0 -0
  57. data/.pull_requests/1381532321 +0 -0
  58. data/.pull_requests/1381635684 +0 -0
  59. data/.pull_requests/1381875886 +0 -0
  60. data/.pull_requests/1382040914 +0 -0
  61. data/.pull_requests/1382056382 +0 -0
  62. data/.pull_requests/1382229425 +0 -0
  63. data/.pull_requests/1382501299 +0 -0
  64. data/.pull_requests/1382559045 +0 -0
  65. data/.pull_requests/1382569908 +0 -0
  66. data/.pull_requests/1382643470 +0 -0
  67. data/.pull_requests/1382660994 +0 -0
  68. data/.pull_requests/1382815660 +0 -0
  69. data/.pull_requests/1383162273 +0 -0
  70. data/.pull_requests/1383274302 +0 -0
  71. data/.pull_requests/1383274901 +0 -0
  72. data/.pull_requests/1383336387 +0 -0
  73. data/.pull_requests/1383420874 +0 -0
  74. data/.pull_requests/1383707748 +0 -0
  75. data/.pull_requests/1384207054 +0 -0
  76. data/.pull_requests/1384304643 +0 -0
  77. data/.rspec +1 -0
  78. data/.ruby-gemset +1 -0
  79. data/.ruby-version +1 -0
  80. data/Gemfile +12 -1
  81. data/LICENSE.txt +2 -2
  82. data/README.md +25 -8
  83. data/Rakefile +1 -0
  84. data/bin/sc +4 -0
  85. data/bin/softcover +4 -0
  86. data/lib/softcover.rb +59 -2
  87. data/lib/softcover/book.rb +190 -0
  88. data/lib/softcover/book_manifest.rb +237 -0
  89. data/lib/softcover/builder.rb +51 -0
  90. data/lib/softcover/builders/epub.rb +436 -0
  91. data/lib/softcover/builders/html.rb +214 -0
  92. data/lib/softcover/builders/mobi.rb +30 -0
  93. data/lib/softcover/builders/pdf.rb +110 -0
  94. data/lib/softcover/builders/preview.rb +34 -0
  95. data/lib/softcover/builders/utils/page.js +62 -0
  96. data/lib/softcover/cli.rb +236 -0
  97. data/lib/softcover/client.rb +113 -0
  98. data/lib/softcover/commands/auth.rb +18 -0
  99. data/lib/softcover/commands/build.rb +51 -0
  100. data/lib/softcover/commands/deployment.rb +42 -0
  101. data/lib/softcover/commands/deployment_spec.rb +21 -0
  102. data/lib/softcover/commands/epub_validator.rb +32 -0
  103. data/lib/softcover/commands/generator.rb +148 -0
  104. data/lib/softcover/commands/opener.rb +13 -0
  105. data/lib/softcover/commands/publisher.rb +106 -0
  106. data/lib/softcover/commands/server.rb +46 -0
  107. data/lib/softcover/config.rb +58 -0
  108. data/lib/softcover/formats.rb +5 -0
  109. data/lib/softcover/mathjax.rb +75 -0
  110. data/lib/softcover/output.rb +39 -0
  111. data/lib/softcover/rails/railtie.rb +9 -0
  112. data/lib/softcover/sanitizer.rb +41 -0
  113. data/lib/softcover/server/app.rb +101 -0
  114. data/lib/softcover/server/assets/bg.gif +0 -0
  115. data/lib/softcover/server/assets/icons.png +0 -0
  116. data/lib/softcover/server/assets/main.css +189 -0
  117. data/lib/softcover/server/assets/underscore-min.js +6 -0
  118. data/lib/softcover/server/assets/underscore-min.map +1 -0
  119. data/lib/softcover/server/views/book.html.erb +54 -0
  120. data/lib/softcover/server/views/main.js.erb +58 -0
  121. data/lib/softcover/template/.softcover-deploy +6 -0
  122. data/lib/softcover/template/Book.txt +9 -0
  123. data/lib/softcover/template/book.tex +21 -0
  124. data/lib/softcover/template/book.yml.erb +11 -0
  125. data/lib/softcover/template/chapters/a_chapter.md +118 -0
  126. data/lib/softcover/template/chapters/a_chapter.tex +191 -0
  127. data/lib/softcover/template/chapters/another_chapter.md +5 -0
  128. data/lib/softcover/template/chapters/another_chapter.tex +4 -0
  129. data/lib/softcover/template/chapters/preface.md +3 -0
  130. data/lib/softcover/template/chapters/preface.tex +3 -0
  131. data/lib/softcover/template/chapters/yet_another_chapter.md +3 -0
  132. data/lib/softcover/template/chapters/yet_another_chapter.tex +6 -0
  133. data/lib/softcover/template/custom.sty +16 -0
  134. data/lib/softcover/template/epub/OEBPS/styles/.gitkeep +0 -0
  135. data/lib/softcover/template/epub/OEBPS/styles/epub.css +10 -0
  136. data/lib/softcover/template/epub/OEBPS/styles/page-template.xpgt +49 -0
  137. data/lib/softcover/template/framed.sty +548 -0
  138. data/lib/softcover/template/generated_polytex/.gitkeep +0 -0
  139. data/lib/softcover/template/gitignore +32 -0
  140. data/lib/softcover/template/html/.gitkeep +0 -0
  141. data/lib/softcover/template/html/MathJax/MathJax.js +30 -0
  142. data/lib/softcover/template/html/MathJax/config/TeX-AMS-MML_SVG.js +68 -0
  143. data/lib/softcover/template/html/MathJax/config/TeX-AMS_HTML.js +59 -0
  144. data/lib/softcover/template/html/MathJax/extensions/FontWarnings.js +16 -0
  145. data/lib/softcover/template/html/MathJax/extensions/HTML-CSS/handle-floats.js +16 -0
  146. data/lib/softcover/template/html/MathJax/extensions/HelpDialog.js +16 -0
  147. data/lib/softcover/template/html/MathJax/extensions/MathEvents.js +16 -0
  148. data/lib/softcover/template/html/MathJax/extensions/MathML/content-mathml.js +16 -0
  149. data/lib/softcover/template/html/MathJax/extensions/MathMenu.js +16 -0
  150. data/lib/softcover/template/html/MathJax/extensions/MathZoom.js +16 -0
  151. data/lib/softcover/template/html/MathJax/extensions/Safe.js +16 -0
  152. data/lib/softcover/template/html/MathJax/extensions/TeX/AMScd.js +16 -0
  153. data/lib/softcover/template/html/MathJax/extensions/TeX/AMSmath.js +16 -0
  154. data/lib/softcover/template/html/MathJax/extensions/TeX/AMSsymbols.js +16 -0
  155. data/lib/softcover/template/html/MathJax/extensions/TeX/HTML.js +16 -0
  156. data/lib/softcover/template/html/MathJax/extensions/TeX/action.js +16 -0
  157. data/lib/softcover/template/html/MathJax/extensions/TeX/autobold.js +16 -0
  158. data/lib/softcover/template/html/MathJax/extensions/TeX/autoload-all.js +16 -0
  159. data/lib/softcover/template/html/MathJax/extensions/TeX/bbox.js +16 -0
  160. data/lib/softcover/template/html/MathJax/extensions/TeX/begingroup.js +16 -0
  161. data/lib/softcover/template/html/MathJax/extensions/TeX/boldsymbol.js +16 -0
  162. data/lib/softcover/template/html/MathJax/extensions/TeX/cancel.js +16 -0
  163. data/lib/softcover/template/html/MathJax/extensions/TeX/color.js +16 -0
  164. data/lib/softcover/template/html/MathJax/extensions/TeX/enclose.js +16 -0
  165. data/lib/softcover/template/html/MathJax/extensions/TeX/extpfeil.js +16 -0
  166. data/lib/softcover/template/html/MathJax/extensions/TeX/mathchoice.js +16 -0
  167. data/lib/softcover/template/html/MathJax/extensions/TeX/mhchem.js +16 -0
  168. data/lib/softcover/template/html/MathJax/extensions/TeX/newcommand.js +16 -0
  169. data/lib/softcover/template/html/MathJax/extensions/TeX/noErrors.js +16 -0
  170. data/lib/softcover/template/html/MathJax/extensions/TeX/noUndefined.js +16 -0
  171. data/lib/softcover/template/html/MathJax/extensions/TeX/unicode.js +16 -0
  172. data/lib/softcover/template/html/MathJax/extensions/TeX/verb.js +16 -0
  173. data/lib/softcover/template/html/MathJax/extensions/asciimath2jax.js +16 -0
  174. data/lib/softcover/template/html/MathJax/extensions/jsMath2jax.js +16 -0
  175. data/lib/softcover/template/html/MathJax/extensions/mml2jax.js +16 -0
  176. data/lib/softcover/template/html/MathJax/extensions/tex2jax.js +16 -0
  177. data/lib/softcover/template/html/MathJax/extensions/toMathML.js +16 -0
  178. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff +0 -0
  179. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff +0 -0
  180. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff +0 -0
  181. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff +0 -0
  182. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff +0 -0
  183. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff +0 -0
  184. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff +0 -0
  185. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff +0 -0
  186. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff +0 -0
  187. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff +0 -0
  188. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff +0 -0
  189. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff +0 -0
  190. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff +0 -0
  191. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff +0 -0
  192. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff +0 -0
  193. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff +0 -0
  194. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff +0 -0
  195. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff +0 -0
  196. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff +0 -0
  197. data/lib/softcover/template/html/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff +0 -0
  198. data/lib/softcover/template/html/MathJax/images/CloseX-31.png +0 -0
  199. data/lib/softcover/template/html/MathJax/images/MenuArrow-15.png +0 -0
  200. data/lib/softcover/template/html/MathJax/jax/element/mml/jax.js +16 -0
  201. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/Arrows.js +16 -0
  202. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/BasicLatin.js +16 -0
  203. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/CombDiacritMarks.js +16 -0
  204. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/CombDiactForSymbols.js +16 -0
  205. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/Dingbats.js +16 -0
  206. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/GeneralPunctuation.js +16 -0
  207. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/GeometricShapes.js +16 -0
  208. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/GreekAndCoptic.js +16 -0
  209. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/Latin1Supplement.js +16 -0
  210. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/LetterlikeSymbols.js +16 -0
  211. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/MathOperators.js +16 -0
  212. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js +16 -0
  213. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js +16 -0
  214. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js +16 -0
  215. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/MiscTechnical.js +16 -0
  216. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/SpacingModLetters.js +16 -0
  217. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/SuppMathOperators.js +16 -0
  218. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/SupplementalArrowsA.js +16 -0
  219. data/lib/softcover/template/html/MathJax/jax/element/mml/optable/SupplementalArrowsB.js +16 -0
  220. data/lib/softcover/template/html/MathJax/jax/input/AsciiMath/config.js +16 -0
  221. data/lib/softcover/template/html/MathJax/jax/input/AsciiMath/jax.js +16 -0
  222. data/lib/softcover/template/html/MathJax/jax/input/MathML/config.js +16 -0
  223. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/a.js +16 -0
  224. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/b.js +16 -0
  225. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/c.js +16 -0
  226. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/d.js +16 -0
  227. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/e.js +16 -0
  228. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/f.js +16 -0
  229. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/fr.js +16 -0
  230. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/g.js +16 -0
  231. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/h.js +16 -0
  232. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/i.js +16 -0
  233. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/j.js +16 -0
  234. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/k.js +16 -0
  235. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/l.js +16 -0
  236. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/m.js +16 -0
  237. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/n.js +16 -0
  238. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/o.js +16 -0
  239. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/opf.js +16 -0
  240. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/p.js +16 -0
  241. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/q.js +16 -0
  242. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/r.js +16 -0
  243. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/s.js +16 -0
  244. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/scr.js +16 -0
  245. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/t.js +16 -0
  246. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/u.js +16 -0
  247. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/v.js +16 -0
  248. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/w.js +16 -0
  249. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/x.js +16 -0
  250. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/y.js +16 -0
  251. data/lib/softcover/template/html/MathJax/jax/input/MathML/entities/z.js +16 -0
  252. data/lib/softcover/template/html/MathJax/jax/input/MathML/jax.js +16 -0
  253. data/lib/softcover/template/html/MathJax/jax/input/TeX/config.js +16 -0
  254. data/lib/softcover/template/html/MathJax/jax/input/TeX/jax.js +16 -0
  255. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/annotation-xml.js +16 -0
  256. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/maction.js +16 -0
  257. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/menclose.js +16 -0
  258. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/mglyph.js +16 -0
  259. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js +16 -0
  260. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/ms.js +16 -0
  261. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/mtable.js +16 -0
  262. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/autoload/multiline.js +16 -0
  263. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/config.js +16 -0
  264. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js +16 -0
  265. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js +16 -0
  266. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js +16 -0
  267. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js +16 -0
  268. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js +16 -0
  269. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js +16 -0
  270. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js +16 -0
  271. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js +16 -0
  272. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js +16 -0
  273. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js +16 -0
  274. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js +16 -0
  275. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js +16 -0
  276. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js +16 -0
  277. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js +16 -0
  278. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js +16 -0
  279. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js +16 -0
  280. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js +16 -0
  281. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js +16 -0
  282. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js +16 -0
  283. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js +16 -0
  284. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js +16 -0
  285. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js +16 -0
  286. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js +16 -0
  287. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js +16 -0
  288. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js +16 -0
  289. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js +16 -0
  290. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js +16 -0
  291. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js +16 -0
  292. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js +16 -0
  293. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js +16 -0
  294. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js +16 -0
  295. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js +16 -0
  296. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js +16 -0
  297. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js +16 -0
  298. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js +16 -0
  299. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js +16 -0
  300. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js +16 -0
  301. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js +16 -0
  302. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js +16 -0
  303. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js +16 -0
  304. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js +16 -0
  305. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js +16 -0
  306. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js +16 -0
  307. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js +16 -0
  308. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js +16 -0
  309. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js +16 -0
  310. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js +16 -0
  311. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js +16 -0
  312. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js +16 -0
  313. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js +16 -0
  314. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js +16 -0
  315. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js +16 -0
  316. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js +16 -0
  317. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js +16 -0
  318. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js +16 -0
  319. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js +16 -0
  320. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js +16 -0
  321. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js +16 -0
  322. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js +16 -0
  323. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js +16 -0
  324. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js +16 -0
  325. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js +16 -0
  326. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js +16 -0
  327. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js +16 -0
  328. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js +16 -0
  329. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js +16 -0
  330. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js +16 -0
  331. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js +16 -0
  332. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js +16 -0
  333. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js +16 -0
  334. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js +16 -0
  335. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js +16 -0
  336. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js +16 -0
  337. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js +16 -0
  338. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js +16 -0
  339. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js +16 -0
  340. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js +16 -0
  341. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js +16 -0
  342. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js +16 -0
  343. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js +16 -0
  344. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js +16 -0
  345. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js +16 -0
  346. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js +16 -0
  347. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js +16 -0
  348. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js +16 -0
  349. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js +16 -0
  350. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js +16 -0
  351. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js +16 -0
  352. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js +16 -0
  353. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js +16 -0
  354. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js +16 -0
  355. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js +16 -0
  356. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js +16 -0
  357. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js +16 -0
  358. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js +16 -0
  359. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js +16 -0
  360. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js +16 -0
  361. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js +16 -0
  362. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js +16 -0
  363. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js +16 -0
  364. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js +16 -0
  365. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js +16 -0
  366. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js +16 -0
  367. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js +16 -0
  368. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js +16 -0
  369. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js +16 -0
  370. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js +16 -0
  371. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js +16 -0
  372. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js +16 -0
  373. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js +16 -0
  374. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js +16 -0
  375. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js +16 -0
  376. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js +16 -0
  377. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js +16 -0
  378. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js +16 -0
  379. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js +16 -0
  380. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js +16 -0
  381. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js +16 -0
  382. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js +16 -0
  383. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js +16 -0
  384. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js +16 -0
  385. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js +16 -0
  386. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js +16 -0
  387. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js +16 -0
  388. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js +16 -0
  389. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js +16 -0
  390. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js +16 -0
  391. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js +16 -0
  392. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js +16 -0
  393. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js +16 -0
  394. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js +16 -0
  395. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js +16 -0
  396. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js +16 -0
  397. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js +16 -0
  398. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js +16 -0
  399. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js +16 -0
  400. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js +16 -0
  401. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js +16 -0
  402. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js +16 -0
  403. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js +16 -0
  404. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js +16 -0
  405. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js +16 -0
  406. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js +16 -0
  407. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js +16 -0
  408. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js +16 -0
  409. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js +16 -0
  410. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js +16 -0
  411. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js +16 -0
  412. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js +16 -0
  413. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js +16 -0
  414. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js +16 -0
  415. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js +16 -0
  416. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js +16 -0
  417. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js +16 -0
  418. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js +16 -0
  419. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js +16 -0
  420. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js +16 -0
  421. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js +16 -0
  422. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js +16 -0
  423. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js +16 -0
  424. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js +16 -0
  425. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js +16 -0
  426. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js +16 -0
  427. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js +16 -0
  428. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js +16 -0
  429. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js +16 -0
  430. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js +16 -0
  431. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js +16 -0
  432. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js +16 -0
  433. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js +16 -0
  434. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js +16 -0
  435. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js +16 -0
  436. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js +16 -0
  437. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js +16 -0
  438. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js +16 -0
  439. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js +16 -0
  440. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js +16 -0
  441. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js +16 -0
  442. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js +16 -0
  443. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js +16 -0
  444. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js +16 -0
  445. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js +16 -0
  446. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js +16 -0
  447. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js +16 -0
  448. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js +16 -0
  449. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js +16 -0
  450. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js +16 -0
  451. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js +16 -0
  452. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js +16 -0
  453. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata.js +16 -0
  454. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js +16 -0
  455. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js +16 -0
  456. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js +16 -0
  457. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js +16 -0
  458. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js +16 -0
  459. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js +16 -0
  460. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js +16 -0
  461. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js +16 -0
  462. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js +16 -0
  463. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js +16 -0
  464. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js +16 -0
  465. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js +16 -0
  466. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js +16 -0
  467. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js +16 -0
  468. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js +16 -0
  469. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js +16 -0
  470. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js +16 -0
  471. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js +16 -0
  472. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js +16 -0
  473. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js +16 -0
  474. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js +16 -0
  475. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js +16 -0
  476. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js +16 -0
  477. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js +16 -0
  478. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js +16 -0
  479. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js +16 -0
  480. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js +16 -0
  481. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js +16 -0
  482. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js +16 -0
  483. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js +16 -0
  484. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js +16 -0
  485. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js +16 -0
  486. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js +16 -0
  487. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js +16 -0
  488. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js +16 -0
  489. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js +16 -0
  490. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js +16 -0
  491. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js +16 -0
  492. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js +16 -0
  493. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js +16 -0
  494. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js +16 -0
  495. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js +16 -0
  496. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js +16 -0
  497. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js +16 -0
  498. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js +16 -0
  499. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js +16 -0
  500. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js +16 -0
  501. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js +16 -0
  502. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js +16 -0
  503. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js +16 -0
  504. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js +16 -0
  505. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js +16 -0
  506. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js +16 -0
  507. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js +16 -0
  508. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js +16 -0
  509. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js +16 -0
  510. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js +16 -0
  511. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js +16 -0
  512. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js +16 -0
  513. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js +16 -0
  514. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js +16 -0
  515. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js +16 -0
  516. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js +16 -0
  517. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js +16 -0
  518. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js +16 -0
  519. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js +16 -0
  520. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js +16 -0
  521. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js +16 -0
  522. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js +16 -0
  523. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js +16 -0
  524. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js +16 -0
  525. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js +16 -0
  526. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js +16 -0
  527. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js +16 -0
  528. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js +16 -0
  529. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js +16 -0
  530. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js +16 -0
  531. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js +16 -0
  532. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js +16 -0
  533. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js +16 -0
  534. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js +16 -0
  535. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js +16 -0
  536. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js +16 -0
  537. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js +16 -0
  538. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js +16 -0
  539. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js +16 -0
  540. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js +16 -0
  541. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js +16 -0
  542. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js +16 -0
  543. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js +16 -0
  544. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js +16 -0
  545. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js +16 -0
  546. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/imageFonts.js +16 -0
  547. data/lib/softcover/template/html/MathJax/jax/output/HTML-CSS/jax.js +16 -0
  548. data/lib/softcover/template/html/MathJax/jax/output/NativeMML/config.js +16 -0
  549. data/lib/softcover/template/html/MathJax/jax/output/NativeMML/jax.js +16 -0
  550. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/annotation-xml.js +16 -0
  551. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/maction.js +16 -0
  552. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/menclose.js +16 -0
  553. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/mglyph.js +16 -0
  554. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/mmultiscripts.js +16 -0
  555. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/ms.js +16 -0
  556. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/mtable.js +16 -0
  557. data/lib/softcover/template/html/MathJax/jax/output/SVG/autoload/multiline.js +16 -0
  558. data/lib/softcover/template/html/MathJax/jax/output/SVG/config.js +16 -0
  559. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js +16 -0
  560. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js +16 -0
  561. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js +16 -0
  562. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js +16 -0
  563. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js +16 -0
  564. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js +16 -0
  565. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js +16 -0
  566. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js +16 -0
  567. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js +16 -0
  568. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js +16 -0
  569. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js +16 -0
  570. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js +16 -0
  571. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js +16 -0
  572. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js +16 -0
  573. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js +16 -0
  574. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js +16 -0
  575. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js +16 -0
  576. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js +16 -0
  577. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js +16 -0
  578. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js +16 -0
  579. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js +16 -0
  580. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js +16 -0
  581. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js +16 -0
  582. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js +16 -0
  583. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js +16 -0
  584. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js +16 -0
  585. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js +16 -0
  586. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js +16 -0
  587. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js +16 -0
  588. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js +16 -0
  589. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js +16 -0
  590. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js +16 -0
  591. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js +16 -0
  592. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js +16 -0
  593. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js +16 -0
  594. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js +16 -0
  595. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js +16 -0
  596. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js +16 -0
  597. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js +16 -0
  598. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js +16 -0
  599. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js +16 -0
  600. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js +16 -0
  601. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js +16 -0
  602. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js +16 -0
  603. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js +16 -0
  604. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js +16 -0
  605. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js +16 -0
  606. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js +16 -0
  607. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js +16 -0
  608. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js +16 -0
  609. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js +16 -0
  610. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js +16 -0
  611. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js +16 -0
  612. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js +16 -0
  613. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js +16 -0
  614. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js +16 -0
  615. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js +16 -0
  616. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js +16 -0
  617. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js +16 -0
  618. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js +16 -0
  619. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js +16 -0
  620. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js +16 -0
  621. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js +16 -0
  622. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js +16 -0
  623. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js +16 -0
  624. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js +16 -0
  625. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js +16 -0
  626. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js +16 -0
  627. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js +16 -0
  628. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js +16 -0
  629. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js +16 -0
  630. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js +16 -0
  631. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js +16 -0
  632. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js +16 -0
  633. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js +16 -0
  634. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js +16 -0
  635. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js +16 -0
  636. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js +16 -0
  637. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js +16 -0
  638. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js +16 -0
  639. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js +16 -0
  640. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js +16 -0
  641. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js +16 -0
  642. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js +16 -0
  643. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js +16 -0
  644. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js +16 -0
  645. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js +16 -0
  646. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js +16 -0
  647. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js +16 -0
  648. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js +16 -0
  649. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js +16 -0
  650. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js +16 -0
  651. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js +16 -0
  652. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/fontdata-extra.js +16 -0
  653. data/lib/softcover/template/html/MathJax/jax/output/SVG/fonts/TeX/fontdata.js +16 -0
  654. data/lib/softcover/template/html/MathJax/jax/output/SVG/jax.js +16 -0
  655. data/lib/softcover/template/html/MathJax/localization/de/FontWarnings.js +16 -0
  656. data/lib/softcover/template/html/MathJax/localization/de/HTML-CSS.js +16 -0
  657. data/lib/softcover/template/html/MathJax/localization/de/HelpDialog.js +16 -0
  658. data/lib/softcover/template/html/MathJax/localization/de/MathML.js +16 -0
  659. data/lib/softcover/template/html/MathJax/localization/de/MathMenu.js +16 -0
  660. data/lib/softcover/template/html/MathJax/localization/de/TeX.js +16 -0
  661. data/lib/softcover/template/html/MathJax/localization/de/de.js +16 -0
  662. data/lib/softcover/template/html/MathJax/localization/en/FontWarnings.js +16 -0
  663. data/lib/softcover/template/html/MathJax/localization/en/HTML-CSS.js +16 -0
  664. data/lib/softcover/template/html/MathJax/localization/en/HelpDialog.js +16 -0
  665. data/lib/softcover/template/html/MathJax/localization/en/MathML.js +16 -0
  666. data/lib/softcover/template/html/MathJax/localization/en/MathMenu.js +16 -0
  667. data/lib/softcover/template/html/MathJax/localization/en/TeX.js +16 -0
  668. data/lib/softcover/template/html/MathJax/localization/en/en.js +16 -0
  669. data/lib/softcover/template/html/MathJax/localization/fr/FontWarnings.js +16 -0
  670. data/lib/softcover/template/html/MathJax/localization/fr/HTML-CSS.js +16 -0
  671. data/lib/softcover/template/html/MathJax/localization/fr/HelpDialog.js +16 -0
  672. data/lib/softcover/template/html/MathJax/localization/fr/MathML.js +16 -0
  673. data/lib/softcover/template/html/MathJax/localization/fr/MathMenu.js +16 -0
  674. data/lib/softcover/template/html/MathJax/localization/fr/TeX.js +16 -0
  675. data/lib/softcover/template/html/MathJax/localization/fr/fr.js +16 -0
  676. data/lib/softcover/template/html/jquery/1.10.2/jquery-1.10.2.js +9789 -0
  677. data/lib/softcover/template/html/jquery/1.10.2/jquery-1.10.2.min.map +1 -0
  678. data/lib/softcover/template/html/stylesheets/.gitkeep +0 -0
  679. data/lib/softcover/template/html/stylesheets/softcover.css +417 -0
  680. data/lib/softcover/template/images/.gitkeep +0 -0
  681. data/lib/softcover/template/images/2011_michael_hartl.png +0 -0
  682. data/lib/softcover/template/images/cover.pdf +0 -0
  683. data/lib/softcover/template/images/cover.png +0 -0
  684. data/lib/softcover/template/images/figures/.gitkeep +0 -0
  685. data/lib/softcover/template/polytexnic_commands.sty +1 -0
  686. data/lib/softcover/template/simple_book.tex +14 -0
  687. data/lib/softcover/template/softcover.sty +130 -0
  688. data/lib/softcover/template/upquote.sty +76 -0
  689. data/lib/softcover/uploader.rb +81 -0
  690. data/lib/softcover/utils.rb +131 -0
  691. data/lib/softcover/version.rb +1 -1
  692. data/softcover.gemspec +34 -16
  693. data/spec/app_spec.rb +100 -0
  694. data/spec/auth_spec.rb +44 -0
  695. data/spec/book_manifest_spec.rb +58 -0
  696. data/spec/book_spec.rb +33 -0
  697. data/spec/builder_spec.rb +10 -0
  698. data/spec/builders/epub_spec.rb +203 -0
  699. data/spec/builders/html_spec.rb +136 -0
  700. data/spec/builders/mobi_spec.rb +47 -0
  701. data/spec/builders/pdf_spec.rb +80 -0
  702. data/spec/builders/preview_spec.rb +60 -0
  703. data/spec/cli_spec.rb +130 -0
  704. data/spec/commands/build_spec.rb +50 -0
  705. data/spec/commands/generator_spec.rb +260 -0
  706. data/spec/commands/opener_spec.rb +17 -0
  707. data/spec/commands/publisher_spec.rb +108 -0
  708. data/spec/commands/server_spec.rb +21 -0
  709. data/spec/mathjax_spec.rb +61 -0
  710. data/spec/output_spec.rb +41 -0
  711. data/spec/sanitizer_spec.rb +35 -0
  712. data/spec/spec_helper.rb +52 -0
  713. data/spec/support/exist_matcher.rb +7 -0
  714. data/spec/webmock_helpers.rb +183 -0
  715. data/tasks/run_specs.rake +5 -0
  716. metadata +982 -12
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+
3
+ describe Softcover::Commands::Deployment do
4
+
5
+ describe "default commands" do
6
+ subject { Softcover::Commands::Deployment.default_commands }
7
+
8
+ it { should match /softcover build:all/ }
9
+ it { should match /softcover build:preview/ }
10
+ it { should match /softcover publish/ }
11
+ end
12
+
13
+ describe "commands helper" do
14
+ let(:lines) { ['foo', ' # bar', 'baz'] }
15
+ subject { Softcover::Commands::Deployment.commands(lines) }
16
+
17
+ it { should match /foo/ }
18
+ it { should_not match /bar/ }
19
+ it { should match /baz/ }
20
+ end
21
+ end
@@ -0,0 +1,32 @@
1
+ module Softcover
2
+ module Commands
3
+ module EpubValidator
4
+ extend Softcover::Utils
5
+ extend self
6
+
7
+ # Validates a book according to the EPUB standard.
8
+ def validate!
9
+ epub = Dir.glob('ebooks/*.epub').first
10
+ puts "Validating EPUB..."
11
+ system("#{java} -jar #{epubcheck} #{epub}")
12
+ end
13
+
14
+ private
15
+
16
+ def java
17
+ filename = `which java`.chomp
18
+ url = 'http://www.java.com/en/download/help/index_installing.xml'
19
+ message = "Install Java (#{url})"
20
+ @java ||= executable(filename, message)
21
+ end
22
+
23
+ def epubcheck
24
+ filename = File.join(Dir.home, 'epubcheck-3.0', 'epubcheck-3.0.jar')
25
+ url = 'https://code.google.com/p/epubcheck/downloads/' +
26
+ 'detail?name=epubcheck-3.0.zip'
27
+ message = "Put EpubCheck (#{url}) in your home directory"
28
+ @epubcheck ||= executable(filename, message).inspect
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,148 @@
1
+ require 'erb'
2
+ module Softcover
3
+ module Commands
4
+ module Generator
5
+ include Softcover::Output
6
+ extend self
7
+
8
+ # Generates the default book file tree.
9
+ def generate_file_tree(name, options = {})
10
+ @name = name
11
+ @markdown = options[:markdown]
12
+ @simple = options[:simple]
13
+
14
+ thor = Thor::Shell::Basic.new
15
+
16
+ puts "Generating directory: #{name}"
17
+
18
+ overwrite_all = false
19
+
20
+ FileUtils.mkdir name unless File.exist?(name)
21
+ Dir.chdir name
22
+
23
+ # Create the directories.
24
+ # There was some trouble with MathJax where it was trying to copy a
25
+ # file before the directory had been created, so we now create all
26
+ # the directories first.
27
+ directories.each do |path|
28
+ next if path =~ /\/simple_book/ && !@simple
29
+ next if path =~ /\/book/ && @simple
30
+ (cp_path = path.dup).slice! template_dir + "/"
31
+ unless File.exist?(cp_path)
32
+ puts "Creating #{cp_path}" unless cp_path =~ /MathJax/
33
+ FileUtils.mkdir cp_path
34
+ end
35
+ end
36
+
37
+ # Create the files.
38
+ files.each do |path|
39
+ next if path =~ /\/.$|\/..$/
40
+
41
+ (cp_path = path.dup).slice! template_dir + "/"
42
+
43
+ if path =~ /book\.tex/
44
+ cp_path = "#{name}.tex"
45
+ elsif path =~ /\.erb/
46
+ cp_path = File.basename path.dup, '.erb'
47
+ elsif path =~ /gitignore/
48
+ cp_path = '.gitignore'
49
+ end
50
+
51
+ display_path = File.join name, cp_path
52
+
53
+ if File.exist?(cp_path) && !overwrite_all
54
+ res = thor.ask "#{display_path} already exists. " \
55
+ "Overwrite? (yes,no,all):"
56
+
57
+ overwrite = case res
58
+ when /y|yes/ then true
59
+ when /n|no/ then false
60
+ when /a|all/ then
61
+ overwrite_all = true
62
+ true
63
+ end
64
+
65
+ next unless overwrite
66
+ end
67
+
68
+ puts "Creating #{cp_path}" unless cp_path =~ /MathJax/
69
+ if path =~ /\.erb/
70
+ erb = ERB.new(File.read(path)).result(binding)
71
+ File.open(cp_path, 'w') { |f| f.write erb }
72
+ else
73
+ FileUtils.cp path, cp_path
74
+ end
75
+ end
76
+
77
+ # Symlink the images directory.
78
+ Dir.chdir "html"
79
+ FileUtils.rm_f("images") if File.directory?("images")
80
+ File.symlink("../images", "images")
81
+
82
+ Dir.chdir "../.."
83
+ puts "Done. Please update book.yml"
84
+ end
85
+
86
+ def template_dir
87
+ File.expand_path File.join File.dirname(__FILE__), "../template"
88
+ end
89
+
90
+ # Returns true for a simple book (no frontmatter, etc.).
91
+ def simple?
92
+ @simple
93
+ end
94
+
95
+ # Returns a list of all the files and directories used to build the book.
96
+ def all_files_and_directories
97
+ f = files_directories_maybe_markdown
98
+ simple? ? f.reject { |p| p =~ /\/book\.tex/ || p =~ /preface/ }
99
+ : f.reject { |p| p =~ /simple/ }
100
+ end
101
+
102
+ # Returns the files and directories based on the input format.
103
+ def files_directories_maybe_markdown
104
+ fds = Dir.glob(File.join(template_dir, "**/*"), File::FNM_DOTMATCH)
105
+ if markdown?
106
+ # Skip the PolyTeX chapter files, which will be generated later.
107
+ fds.reject { |e| e =~ /\/chapters\/.*\.tex/ }
108
+ else
109
+ # Skip the Markdown files & Book.txt.
110
+ fds.reject { |e| e =~ /(chapters\/.*\.md|Book\.txt)/ }
111
+ end
112
+ end
113
+
114
+ # Returns just the directories used for building the book.
115
+ def directories
116
+ all_files_and_directories.select { |path| File.directory?(path) }
117
+ end
118
+
119
+ # Returns just the files (not directories) used for building the book.
120
+ def files
121
+ all_files_and_directories.reject { |path| File.directory?(path) }
122
+ end
123
+
124
+ def markdown?
125
+ @markdown
126
+ end
127
+
128
+ def verify!
129
+ generated_files = Dir.glob("**/*", File::FNM_DOTMATCH).map do |f|
130
+ File.basename(f)
131
+ end
132
+
133
+ Softcover::Commands::Generator.all_files_and_directories.each do |file|
134
+ path = if file =~ /book\.tex/
135
+ "#{@name}.tex"
136
+ elsif file =~ /\.erb/
137
+ File.basename(file, '.erb')
138
+ elsif file =~ /gitignore/
139
+ '.gitignore'
140
+ else
141
+ File.basename(file)
142
+ end
143
+ raise "missing #{file}" unless generated_files.include?(path)
144
+ end
145
+ end
146
+ end
147
+ end
148
+ end
@@ -0,0 +1,13 @@
1
+ module Softcover
2
+ module Commands
3
+ module Opener
4
+ extend self
5
+
6
+ def open!
7
+ book = Softcover::Book.new
8
+ book.open_in_browser
9
+ end
10
+
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,106 @@
1
+ module Softcover::Commands::Publisher
2
+ include Softcover::Utils
3
+ include Softcover::Output
4
+
5
+ extend self
6
+
7
+ def publish!(options={})
8
+ return false unless current_book
9
+
10
+ if current_book.create_or_update
11
+ require 'ruby-progressbar'
12
+ require 'curb'
13
+ unless options[:quiet] || options[:silent]
14
+ puts "Uploading #{current_book.uploader.file_count} files " \
15
+ "(#{as_size current_book.uploader.total_size}):"
16
+ end
17
+ url = current_book.upload!(options)
18
+ unless options[:quiet] || options[:silent]
19
+ puts "Published! #{url}"
20
+ end
21
+ else
22
+ puts "Errors: #{current_book.errors}"
23
+ return false
24
+ end
25
+
26
+ true
27
+ rescue Softcover::BookManifest::NotFound => e
28
+ puts e.message
29
+ false
30
+ rescue Softcover::Book::UploadError => e
31
+ puts e.message
32
+ false
33
+ end
34
+
35
+ # TODO: refactor this flow out of file?
36
+ def publish_screencasts!(options={})
37
+ return false unless current_book
38
+
39
+ current_book.screencasts_dir = options[:dir] ||
40
+ Softcover::Book::DEFAULT_SCREENCASTS_DIR
41
+
42
+ @watch = options[:watch]
43
+
44
+ if options[:daemon]
45
+ pid = fork do
46
+ run_publish_screencasts
47
+ end
48
+
49
+ puts "Daemonized, pid: #{pid}"
50
+ else
51
+ run_publish_screencasts
52
+ end
53
+
54
+ current_book
55
+ end
56
+
57
+ def run_publish_screencasts
58
+ if @watch
59
+ puts "Watching..."
60
+
61
+ Signal.trap("TERM") do
62
+ puts "SIGTERM received."
63
+ exit_with_message
64
+ end
65
+
66
+ begin
67
+ loop do
68
+ process_screencasts
69
+ sleep 1
70
+ end
71
+ rescue Interrupt
72
+ puts " Interrupt Received."
73
+ exit_with_message
74
+ end
75
+ else
76
+ process_screencasts
77
+ exit_with_message
78
+ end
79
+ end
80
+
81
+ def process_screencasts
82
+ current_book.process_screencasts
83
+ end
84
+
85
+ def exit_with_message
86
+ puts "Processed #{current_book.processed_screencasts.size} screencasts."
87
+ end
88
+
89
+ def unpublish!
90
+ return false unless current_book
91
+ if current_book.destroy
92
+ Softcover::BookConfig.remove
93
+ puts "Done!"
94
+ return true
95
+ else
96
+ puts "Errors: #{current_book.errors}"
97
+ return false
98
+ end
99
+ rescue RestClient::ResourceNotFound
100
+ puts "Book with ID=#{current_book.id} not found under this account."
101
+ false
102
+ rescue Softcover::BookManifest::NotFound => e
103
+ puts e.message
104
+ false
105
+ end
106
+ end
@@ -0,0 +1,46 @@
1
+ require 'listen'
2
+
3
+ module Softcover::Commands::Server
4
+ include Softcover::Output
5
+ include Softcover::Utils
6
+ attr_accessor :no_listener
7
+ extend self
8
+
9
+ # Listens for changes to the book's source files.
10
+ def listen_for_changes
11
+ return if defined?(@no_listener) && @no_listener
12
+ server_pid = Process.pid
13
+ directories = ['.', 'chapters']
14
+ @listener = Listen.to(*directories)
15
+ @listener.filter(/(\.tex|\.md|custom\.sty)$/)
16
+ @listener.change do |modified|
17
+ rebuild modified.try(:first)
18
+ Process.kill("HUP", server_pid)
19
+ end
20
+ @listener.start
21
+ end
22
+
23
+ def rebuild(modified=nil)
24
+ printf modified ? "=> #{File.basename modified} changed, rebuilding... " :
25
+ 'Building...'
26
+ t = Time.now
27
+ Softcover::Builders::Html.new.build
28
+ puts "Done. (#{(Time.now - t).round(2)}s)"
29
+
30
+ rescue Softcover::BookManifest::NotFound => e
31
+ puts e.message
32
+ end
33
+
34
+ def start_server(port)
35
+ require 'softcover/server/app'
36
+ rebuild
37
+ puts "Running Softcover server on http://localhost:#{port}"
38
+ Softcover::App.set :port, port
39
+ Softcover::App.run!
40
+ end
41
+
42
+ def run(port)
43
+ listen_for_changes
44
+ start_server port
45
+ end
46
+ end
@@ -0,0 +1,58 @@
1
+ module Softcover
2
+ class BaseConfig
3
+
4
+ DEFAULTS = {
5
+ host: 'https://www.softcover.io'
6
+ }
7
+
8
+ PATH = '.'
9
+
10
+ class << self
11
+ def [](key)
12
+ store.transaction do
13
+ store[key]
14
+ end || DEFAULTS[key.to_sym]
15
+ end
16
+
17
+ def []=(key, value)
18
+ store.transaction do
19
+ store[key] = value
20
+ end
21
+ end
22
+
23
+ def read
24
+ puts `cat #{file_path}`
25
+ end
26
+
27
+ def remove
28
+ File.delete(file_path) if exists?
29
+ end
30
+
31
+ def exists?
32
+ File.exists?(file_path)
33
+ end
34
+
35
+ protected
36
+ def store
37
+ require 'yaml/store'
38
+ @store ||= begin
39
+ YAML::Store.new(file_path)
40
+ end
41
+ end
42
+
43
+ def file_path
44
+ File.expand_path(self::PATH).tap do |path|
45
+ path.gsub!(/$/,"-test") if Softcover::test?
46
+ end
47
+ end
48
+ end
49
+ end
50
+
51
+ class BookConfig < BaseConfig
52
+ PATH = ".softcover-book"
53
+ end
54
+
55
+ class Config < BaseConfig
56
+ PATH = "~/.softcover"
57
+ end
58
+ end
@@ -0,0 +1,5 @@
1
+ module Softcover
2
+ FORMATS = %w{html epub mobi pdf}
3
+ # mobi calls epub, which calls html, so "all formats" is just mobi & pdf.
4
+ BUILD_ALL_FORMATS = %w{mobi pdf}
5
+ end
@@ -0,0 +1,75 @@
1
+ module Softcover
2
+ module Mathjax
3
+
4
+ # Returns the MathJax configuration.
5
+ def self.config(options = {})
6
+ chapter_number = if options[:chapter_number]
7
+ options[:chapter_number].inspect.inspect
8
+ else
9
+ '#{chapter_number}'
10
+ end
11
+ <<-EOS
12
+ MathJax.Hub.Config({
13
+ "HTML-CSS": {
14
+ availableFonts: ["TeX"],
15
+ },
16
+ TeX: {
17
+ extensions: ["AMSmath.js", "AMSsymbols.js"],
18
+ equationNumbers: {
19
+ autoNumber: "AMS",
20
+ formatNumber: function (n) { return #{chapter_number} + '.' + n }
21
+ },
22
+ Macros: {
23
+ PolyTeX: "Poly{\\\\TeX}",
24
+ PolyTeXnic: "Poly{\\\\TeX}nic",
25
+ #{custom_macros}
26
+ }
27
+ },
28
+ showProcessingMessages: false,
29
+ messageStyle: "none",
30
+ imageFont: null
31
+ });
32
+ EOS
33
+ end
34
+
35
+ # Rerturns a version of the MathJax configuration escaped for the server.
36
+ # There's an extra interpolation somewhere between here and the server,
37
+ # which this method corrects for.
38
+ def self.escaped_config
39
+ self.config.gsub('\\', '\\\\\\\\')
40
+ end
41
+
42
+ MATHJAX = 'MathJax/MathJax.js?config='
43
+ AMS_HTML = '/' + MATHJAX + 'TeX-AMS_HTML'
44
+ AMS_SVG = MATHJAX + 'TeX-AMS-MML_SVG'
45
+
46
+
47
+ private
48
+
49
+ # Returns the custom macros as defined in the custom style file.
50
+ def self.custom_macros
51
+ extract_macros(Softcover.custom_styles)
52
+ end
53
+
54
+ # Extracts and formats the macros from the given string of style commands.
55
+ # The output format is compatible with the macro configuration described
56
+ # at http://docs.mathjax.org/en/latest/tex.html.
57
+ def self.extract_macros(styles)
58
+ # For some reason, \ensuremath doesn't work in MathJax, so remove it.
59
+ styles.gsub!('\ensuremath', '')
60
+ # First extract commands with no arguments.
61
+ cmd_no_args = /^\s*\\newcommand\{\\(.*?)\}\{(.*)\}/
62
+ cna = styles.scan(cmd_no_args).map do |name, definition|
63
+ escaped_definition = definition.gsub('\\', '\\\\\\\\')
64
+ %(#{name}: "#{escaped_definition}")
65
+ end
66
+ # Then grab the commands with arguments.
67
+ cmd_with_args = /^\s*\\newcommand\{\\(.*?)\}\[(\d+)\]\{(.*)\}/
68
+ cwa = styles.scan(cmd_with_args).map do |name, number, definition|
69
+ escaped_definition = definition.gsub('\\', '\\\\\\\\')
70
+ %(#{name}: ["#{escaped_definition}", #{number}])
71
+ end
72
+ (cna + cwa).join(",\n")
73
+ end
74
+ end
75
+ end