gollum 1.3.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gollum might be problematic. Click here for more details.

Files changed (688) hide show
  1. data/HISTORY.md +18 -0
  2. data/README.md +36 -11
  3. data/Rakefile +5 -9
  4. data/gollum.gemspec +34 -623
  5. data/lib/gollum.rb +3 -2
  6. data/lib/gollum/committer.rb +7 -6
  7. data/lib/gollum/frontend/app.rb +11 -5
  8. data/lib/gollum/frontend/public/css/gollum.css +12 -16
  9. data/lib/gollum/frontend/public/css/template.css +103 -38
  10. data/lib/gollum/frontend/public/javascript/editor/gollum.editor.js +294 -282
  11. data/lib/gollum/frontend/public/javascript/editor/langs/asciidoc.js +18 -19
  12. data/lib/gollum/frontend/public/javascript/editor/langs/creole.js +20 -19
  13. data/lib/gollum/frontend/public/javascript/editor/langs/markdown.js +33 -33
  14. data/lib/gollum/frontend/public/javascript/editor/langs/org.js +27 -27
  15. data/lib/gollum/frontend/public/javascript/editor/langs/pod.js +15 -15
  16. data/lib/gollum/frontend/public/javascript/editor/langs/rdoc.js +16 -16
  17. data/lib/gollum/frontend/public/javascript/editor/langs/textile.js +17 -17
  18. data/lib/gollum/frontend/public/javascript/gollum.dialog.js +221 -164
  19. data/lib/gollum/frontend/public/javascript/gollum.js +90 -120
  20. data/lib/gollum/frontend/templates/create.mustache +4 -2
  21. data/lib/gollum/frontend/templates/editor.mustache +1 -1
  22. data/lib/gollum/frontend/templates/history.mustache +1 -1
  23. data/lib/gollum/frontend/templates/page.mustache +0 -2
  24. data/lib/gollum/frontend/views/create.rb +7 -3
  25. data/lib/gollum/frontend/views/page.rb +6 -2
  26. data/lib/gollum/frontend/views/pages.rb +2 -2
  27. data/lib/gollum/frontend/views/search.rb +2 -2
  28. data/lib/gollum/git_access.rb +3 -0
  29. data/lib/gollum/markup.rb +74 -71
  30. data/lib/gollum/page.rb +43 -11
  31. data/lib/gollum/pagination.rb +2 -2
  32. data/lib/gollum/sanitization.rb +58 -31
  33. data/lib/gollum/tex.rb +89 -0
  34. data/lib/gollum/web_sequence_diagram.rb +43 -0
  35. data/lib/gollum/wiki.rb +40 -27
  36. data/test/examples/empty.git/HEAD +1 -0
  37. data/test/examples/empty.git/config +5 -0
  38. data/test/examples/empty.git/description +1 -0
  39. data/test/examples/empty.git/hooks/applypatch-msg.sample +15 -0
  40. data/test/examples/empty.git/hooks/commit-msg.sample +24 -0
  41. data/test/examples/empty.git/hooks/post-commit.sample +8 -0
  42. data/test/examples/empty.git/hooks/post-receive.sample +15 -0
  43. data/test/examples/empty.git/hooks/post-update.sample +8 -0
  44. data/test/examples/empty.git/hooks/pre-applypatch.sample +14 -0
  45. data/test/examples/empty.git/hooks/pre-commit.sample +46 -0
  46. data/test/examples/empty.git/hooks/pre-rebase.sample +169 -0
  47. data/test/examples/empty.git/hooks/prepare-commit-msg.sample +36 -0
  48. data/test/examples/empty.git/hooks/update.sample +128 -0
  49. data/test/examples/empty.git/info/exclude +6 -0
  50. data/test/examples/empty.git/objects/info/.gitkeep +0 -0
  51. data/test/examples/empty.git/objects/pack/.gitkeep +0 -0
  52. data/test/examples/empty.git/refs/heads/.gitkeep +0 -0
  53. data/test/examples/lotr.git/COMMIT_EDITMSG +1 -1
  54. data/test/examples/lotr.git/ORIG_HEAD +1 -0
  55. data/test/examples/lotr.git/index +0 -0
  56. data/test/examples/lotr.git/logs/HEAD +1 -0
  57. data/test/examples/lotr.git/logs/refs/heads/master +1 -0
  58. data/test/examples/lotr.git/objects/12/629d666c5e3178f82f533f543d61b53dc78c0b +0 -0
  59. data/test/examples/lotr.git/objects/1d/b89ebba7e2c14d93b94ff98cfa3708a4f0d4e3 +2 -0
  60. data/test/examples/lotr.git/objects/25/4bdc1ba27d8b8a794538a8522d9a2b56ec2dd9 +0 -0
  61. data/test/examples/lotr.git/objects/a6/59b3763b822dd97544621fd0beef162ea37b14 +4 -0
  62. data/test/examples/lotr.git/objects/bc/4b5fc0ce2c2ba3acef6647e4f67256ee45ab60 +0 -0
  63. data/test/examples/lotr.git/objects/f4/84ebb1f40f8eb20d1bcd8d1d71934d2b8ae961 +0 -0
  64. data/test/examples/lotr.git/refs/heads/master +1 -1
  65. data/test/helper.rb +1 -1
  66. data/test/test_app.rb +25 -0
  67. data/test/test_committer.rb +2 -2
  68. data/test/test_file.rb +1 -1
  69. data/test/test_git_access.rb +2 -2
  70. data/test/test_markup.rb +119 -24
  71. data/test/test_page.rb +20 -0
  72. data/test/test_wiki.rb +112 -7
  73. metadata +89 -672
  74. data/lib/gollum/albino.rb +0 -5
  75. data/lib/gollum/frontend/public/javascript/MathJax/MathJax.js +0 -43
  76. data/lib/gollum/frontend/public/javascript/MathJax/config/MMLorHTML.js +0 -18
  77. data/lib/gollum/frontend/public/javascript/MathJax/config/MathJax.js +0 -590
  78. data/lib/gollum/frontend/public/javascript/MathJax/config/local/local.js +0 -37
  79. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.buildinfo +0 -4
  80. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/CSS-styles.doctree +0 -0
  81. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/HTML-snippets.doctree +0 -0
  82. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/ajax.doctree +0 -0
  83. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/callback.doctree +0 -0
  84. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/elementjax.doctree +0 -0
  85. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/html.doctree +0 -0
  86. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/hub.doctree +0 -0
  87. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/index.doctree +0 -0
  88. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/inputjax.doctree +0 -0
  89. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/jax.doctree +0 -0
  90. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/message.doctree +0 -0
  91. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/object.doctree +0 -0
  92. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/outputjax.doctree +0 -0
  93. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/queue.doctree +0 -0
  94. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/signal.doctree +0 -0
  95. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/api/variable.doctree +0 -0
  96. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/callbacks.doctree +0 -0
  97. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/community.doctree +0 -0
  98. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/configuration.doctree +0 -0
  99. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/dynamic.doctree +0 -0
  100. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/environment.pickle +0 -0
  101. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/glossary.doctree +0 -0
  102. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/index.doctree +0 -0
  103. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/installation.doctree +0 -0
  104. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/jsMath.doctree +0 -0
  105. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/mathjax.doctree +0 -0
  106. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/mathml.doctree +0 -0
  107. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/model.doctree +0 -0
  108. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/FontWarnings.doctree +0 -0
  109. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/HTML-CSS.doctree +0 -0
  110. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/MMLorHTML.doctree +0 -0
  111. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/MathML.doctree +0 -0
  112. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/MathMenu.doctree +0 -0
  113. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/MathZoom.doctree +0 -0
  114. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/NativeMML.doctree +0 -0
  115. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/TeX.doctree +0 -0
  116. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/hub.doctree +0 -0
  117. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/jsMath2jax.doctree +0 -0
  118. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/mml2jax.doctree +0 -0
  119. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/options/tex2jax.doctree +0 -0
  120. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/output.doctree +0 -0
  121. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/platforms/index.doctree +0 -0
  122. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/platforms/movable-type.doctree +0 -0
  123. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/platforms/wordpress.doctree +0 -0
  124. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/queues.doctree +0 -0
  125. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/signals.doctree +0 -0
  126. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/start.doctree +0 -0
  127. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/startup.doctree +0 -0
  128. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/synchronize.doctree +0 -0
  129. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/tex.doctree +0 -0
  130. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/.doctrees/typeset.doctree +0 -0
  131. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/CSS-styles.html +0 -173
  132. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/HTML-snippets.html +0 -170
  133. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_images/badge.gif +0 -0
  134. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_images/mt_head.png +0 -0
  135. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_images/mt_menu.png +0 -0
  136. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_images/mt_templates.png +0 -0
  137. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_images/wp_menu.png +0 -0
  138. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_images/wp_templates.png +0 -0
  139. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/CSS-styles.txt +0 -79
  140. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/HTML-snippets.txt +0 -83
  141. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/ajax.txt +0 -196
  142. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/callback.txt +0 -259
  143. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/elementjax.txt +0 -122
  144. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/html.txt +0 -122
  145. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/hub.txt +0 -330
  146. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/index.txt +0 -44
  147. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/inputjax.txt +0 -86
  148. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/jax.txt +0 -148
  149. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/message.txt +0 -86
  150. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/object.txt +0 -210
  151. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/outputjax.txt +0 -100
  152. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/queue.txt +0 -99
  153. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/signal.txt +0 -154
  154. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/api/variable.txt +0 -83
  155. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/callbacks.txt +0 -228
  156. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/community.txt +0 -60
  157. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/configuration.txt +0 -375
  158. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/dynamic.txt +0 -181
  159. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/glossary.txt +0 -75
  160. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/index.txt +0 -71
  161. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/installation.txt +0 -184
  162. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/jsMath.txt +0 -31
  163. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/mathjax.txt +0 -36
  164. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/mathml.txt +0 -97
  165. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/model.txt +0 -224
  166. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/FontWarnings.txt +0 -140
  167. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/HTML-CSS.txt +0 -119
  168. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/MMLorHTML.txt +0 -42
  169. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/MathML.txt +0 -27
  170. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/MathMenu.txt +0 -79
  171. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/MathZoom.txt +0 -42
  172. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/NativeMML.txt +0 -61
  173. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/TeX.txt +0 -67
  174. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/hub.txt +0 -209
  175. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/jsMath2jax.txt +0 -53
  176. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/mml2jax.txt +0 -53
  177. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/options/tex2jax.txt +0 -137
  178. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/output.txt +0 -126
  179. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/platforms/index.txt +0 -65
  180. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/platforms/movable-type.txt +0 -41
  181. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/platforms/wordpress.txt +0 -42
  182. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/queues.txt +0 -254
  183. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/signals.txt +0 -161
  184. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/start.txt +0 -314
  185. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/startup.txt +0 -152
  186. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/synchronize.txt +0 -65
  187. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/tex.txt +0 -1090
  188. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_sources/typeset.txt +0 -229
  189. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/basic.css +0 -509
  190. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/doctools.js +0 -247
  191. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/file.png +0 -0
  192. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/jquery.js +0 -154
  193. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/mathjax_mathml.user.js +0 -22
  194. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/mathjax_wikipedia.user.js +0 -35
  195. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/minus.png +0 -0
  196. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/mj.css +0 -223
  197. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/plus.png +0 -0
  198. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/pygments.css +0 -61
  199. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/searchtools.js +0 -505
  200. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/_static/underscore.js +0 -16
  201. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/ajax.html +0 -406
  202. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/callback.html +0 -435
  203. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/elementjax.html +0 -283
  204. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/html.html +0 -292
  205. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/hub.html +0 -674
  206. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/index.html +0 -144
  207. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/inputjax.html +0 -221
  208. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/jax.html +0 -319
  209. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/message.html +0 -224
  210. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/object.html +0 -356
  211. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/outputjax.html +0 -246
  212. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/queue.html +0 -247
  213. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/signal.html +0 -334
  214. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/api/variable.html +0 -220
  215. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/callbacks.html +0 -305
  216. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/community.html +0 -155
  217. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/configuration.html +0 -434
  218. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/dynamic.html +0 -274
  219. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/genindex.html +0 -295
  220. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/glossary.html +0 -160
  221. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/index.html +0 -177
  222. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/installation.html +0 -262
  223. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/jsMath.html +0 -128
  224. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/mathjax.html +0 -137
  225. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/mathml.html +0 -194
  226. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/model.html +0 -305
  227. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/objects.inv +0 -0
  228. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/FontWarnings.html +0 -264
  229. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/HTML-CSS.html +0 -241
  230. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/MMLorHTML.html +0 -143
  231. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/MathML.html +0 -132
  232. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/MathMenu.html +0 -194
  233. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/MathZoom.html +0 -147
  234. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/NativeMML.html +0 -171
  235. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/TeX.html +0 -175
  236. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/hub.html +0 -342
  237. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/jsMath2jax.html +0 -154
  238. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/mml2jax.html +0 -154
  239. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/options/tex2jax.html +0 -249
  240. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/output.html +0 -218
  241. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/platforms/index.html +0 -168
  242. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/platforms/movable-type.html +0 -145
  243. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/platforms/wordpress.html +0 -146
  244. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/queues.html +0 -334
  245. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/search.html +0 -95
  246. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/searchindex.js +0 -1
  247. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/signals.html +0 -257
  248. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/start.html +0 -374
  249. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/startup.html +0 -239
  250. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/synchronize.html +0 -161
  251. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/tex.html +0 -1152
  252. data/lib/gollum/frontend/public/javascript/MathJax/docs/html/typeset.html +0 -318
  253. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/CSS-styles.rst +0 -79
  254. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/HTML-snippets.rst +0 -83
  255. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/_static/mathjax_mathml.user.js +0 -22
  256. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/_static/mathjax_wikipedia.user.js +0 -35
  257. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/ajax.rst +0 -196
  258. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/callback.rst +0 -259
  259. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/elementjax.rst +0 -122
  260. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/html.rst +0 -122
  261. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/hub.rst +0 -330
  262. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/index.rst +0 -44
  263. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/inputjax.rst +0 -86
  264. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/jax.rst +0 -148
  265. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/message.rst +0 -86
  266. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/object.rst +0 -210
  267. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/outputjax.rst +0 -100
  268. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/queue.rst +0 -99
  269. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/signal.rst +0 -154
  270. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/api/variable.rst +0 -83
  271. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/callbacks.rst +0 -228
  272. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/community.rst +0 -60
  273. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/conf.py +0 -198
  274. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/configuration.rst +0 -375
  275. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/dynamic.rst +0 -181
  276. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/glossary.rst +0 -75
  277. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/images/mt_head.png +0 -0
  278. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/images/mt_menu.png +0 -0
  279. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/images/mt_templates.png +0 -0
  280. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/images/wp_menu.png +0 -0
  281. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/images/wp_templates.png +0 -0
  282. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/index.rst +0 -71
  283. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/installation.rst +0 -184
  284. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/jsMath.rst +0 -31
  285. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/mathjax.rst +0 -36
  286. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/mathml.rst +0 -97
  287. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/mjtheme/static/mj.css_t +0 -256
  288. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/mjtheme/theme.conf +0 -30
  289. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/model.rst +0 -224
  290. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/FontWarnings.rst +0 -140
  291. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/HTML-CSS.rst +0 -119
  292. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/MMLorHTML.rst +0 -42
  293. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/MathML.rst +0 -27
  294. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/MathMenu.rst +0 -79
  295. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/MathZoom.rst +0 -42
  296. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/NativeMML.rst +0 -61
  297. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/TeX.rst +0 -67
  298. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/hub.rst +0 -209
  299. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/jsMath2jax.rst +0 -53
  300. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/mml2jax.rst +0 -53
  301. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/options/tex2jax.rst +0 -137
  302. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/output.rst +0 -126
  303. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/platforms/index.rst +0 -65
  304. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/platforms/movable-type.rst +0 -41
  305. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/platforms/wordpress.rst +0 -42
  306. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/queues.rst +0 -254
  307. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/signals.rst +0 -161
  308. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/start.rst +0 -314
  309. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/startup.rst +0 -152
  310. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/synchronize.rst +0 -65
  311. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/tex.rst +0 -1090
  312. data/lib/gollum/frontend/public/javascript/MathJax/docs/rst/typeset.rst +0 -229
  313. data/lib/gollum/frontend/public/javascript/MathJax/extensions/FontWarnings.js +0 -18
  314. data/lib/gollum/frontend/public/javascript/MathJax/extensions/MathMenu.js +0 -18
  315. data/lib/gollum/frontend/public/javascript/MathJax/extensions/MathZoom.js +0 -18
  316. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/AMSmath.js +0 -18
  317. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/AMSsymbols.js +0 -18
  318. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/autobold.js +0 -18
  319. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/boldsymbol.js +0 -18
  320. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/mathchoice.js +0 -18
  321. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/newcommand.js +0 -18
  322. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/noErrors.js +0 -18
  323. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/noUndefined.js +0 -18
  324. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/unicode.js +0 -18
  325. data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/verb.js +0 -18
  326. data/lib/gollum/frontend/public/javascript/MathJax/extensions/jsMath2jax.js +0 -18
  327. data/lib/gollum/frontend/public/javascript/MathJax/extensions/mml2jax.js +0 -18
  328. data/lib/gollum/frontend/public/javascript/MathJax/extensions/tex2jax.js +0 -18
  329. data/lib/gollum/frontend/public/javascript/MathJax/extensions/toMathML.js +0 -18
  330. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/jax.js +0 -19
  331. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/Arrows.js +0 -18
  332. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/BasicLatin.js +0 -18
  333. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/CombDiacritMarks.js +0 -18
  334. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/CombDiactForSymbols.js +0 -18
  335. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/Dingbats.js +0 -18
  336. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/GeneralPunctuation.js +0 -18
  337. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/GeometricShapes.js +0 -18
  338. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/GreekAndCoptic.js +0 -18
  339. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/Latin1Supplement.js +0 -18
  340. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/LetterlikeSymbols.js +0 -18
  341. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MathOperators.js +0 -18
  342. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js +0 -18
  343. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js +0 -18
  344. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MiscTechnical.js +0 -18
  345. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/SpacingModLetters.js +0 -18
  346. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/SuppMathOperators.js +0 -18
  347. data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/SupplementalArrowsB.js +0 -18
  348. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/config.js +0 -18
  349. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/a.js +0 -18
  350. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/b.js +0 -18
  351. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/c.js +0 -18
  352. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/d.js +0 -18
  353. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/e.js +0 -18
  354. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/f.js +0 -18
  355. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/fr.js +0 -18
  356. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/g.js +0 -18
  357. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/h.js +0 -18
  358. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/i.js +0 -18
  359. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/j.js +0 -18
  360. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/k.js +0 -18
  361. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/l.js +0 -18
  362. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/m.js +0 -18
  363. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/n.js +0 -18
  364. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/o.js +0 -18
  365. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/opf.js +0 -18
  366. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/p.js +0 -18
  367. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/q.js +0 -18
  368. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/r.js +0 -18
  369. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/s.js +0 -18
  370. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/scr.js +0 -18
  371. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/t.js +0 -18
  372. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/u.js +0 -18
  373. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/v.js +0 -18
  374. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/w.js +0 -18
  375. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/x.js +0 -18
  376. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/y.js +0 -18
  377. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/z.js +0 -18
  378. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/jax.js +0 -18
  379. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/TeX/config.js +0 -18
  380. data/lib/gollum/frontend/public/javascript/MathJax/jax/input/TeX/jax.js +0 -19
  381. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/maction.js +0 -18
  382. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/menclose.js +0 -18
  383. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/mglyph.js +0 -18
  384. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js +0 -18
  385. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/ms.js +0 -18
  386. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/mtable.js +0 -18
  387. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/multiline.js +0 -18
  388. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/config.js +0 -18
  389. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js +0 -18
  390. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js +0 -18
  391. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js +0 -18
  392. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js +0 -18
  393. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js +0 -18
  394. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js +0 -18
  395. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js +0 -18
  396. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js +0 -18
  397. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js +0 -18
  398. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js +0 -18
  399. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js +0 -18
  400. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js +0 -18
  401. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js +0 -18
  402. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js +0 -18
  403. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js +0 -18
  404. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js +0 -18
  405. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js +0 -18
  406. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js +0 -18
  407. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js +0 -18
  408. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js +0 -18
  409. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js +0 -18
  410. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js +0 -18
  411. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js +0 -18
  412. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js +0 -18
  413. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js +0 -18
  414. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js +0 -18
  415. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js +0 -18
  416. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js +0 -18
  417. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js +0 -18
  418. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js +0 -18
  419. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js +0 -18
  420. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js +0 -18
  421. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js +0 -18
  422. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js +0 -18
  423. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js +0 -18
  424. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js +0 -18
  425. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js +0 -18
  426. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js +0 -18
  427. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js +0 -18
  428. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js +0 -18
  429. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js +0 -18
  430. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js +0 -18
  431. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js +0 -18
  432. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js +0 -18
  433. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js +0 -18
  434. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js +0 -18
  435. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js +0 -18
  436. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js +0 -18
  437. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js +0 -18
  438. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js +0 -18
  439. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js +0 -18
  440. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js +0 -18
  441. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js +0 -18
  442. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js +0 -18
  443. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js +0 -18
  444. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js +0 -18
  445. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js +0 -18
  446. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js +0 -18
  447. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js +0 -18
  448. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js +0 -18
  449. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js +0 -18
  450. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js +0 -18
  451. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js +0 -18
  452. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js +0 -18
  453. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js +0 -18
  454. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js +0 -18
  455. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js +0 -18
  456. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js +0 -18
  457. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js +0 -18
  458. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js +0 -18
  459. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js +0 -18
  460. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js +0 -18
  461. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js +0 -18
  462. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js +0 -18
  463. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js +0 -18
  464. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js +0 -18
  465. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js +0 -18
  466. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js +0 -18
  467. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js +0 -18
  468. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js +0 -18
  469. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js +0 -18
  470. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js +0 -18
  471. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js +0 -18
  472. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js +0 -18
  473. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js +0 -18
  474. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js +0 -18
  475. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js +0 -18
  476. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js +0 -18
  477. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js +0 -18
  478. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js +0 -18
  479. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js +0 -18
  480. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js +0 -18
  481. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js +0 -18
  482. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js +0 -18
  483. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js +0 -18
  484. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js +0 -18
  485. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js +0 -18
  486. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js +0 -18
  487. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js +0 -18
  488. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js +0 -18
  489. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js +0 -18
  490. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js +0 -18
  491. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js +0 -18
  492. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js +0 -18
  493. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js +0 -18
  494. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js +0 -18
  495. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js +0 -18
  496. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js +0 -18
  497. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js +0 -18
  498. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js +0 -18
  499. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js +0 -18
  500. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js +0 -18
  501. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js +0 -18
  502. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js +0 -18
  503. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js +0 -18
  504. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js +0 -18
  505. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js +0 -18
  506. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js +0 -18
  507. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js +0 -18
  508. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js +0 -18
  509. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js +0 -18
  510. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js +0 -18
  511. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js +0 -18
  512. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js +0 -18
  513. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js +0 -18
  514. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js +0 -18
  515. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js +0 -18
  516. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js +0 -18
  517. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js +0 -18
  518. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js +0 -18
  519. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js +0 -18
  520. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js +0 -18
  521. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js +0 -18
  522. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js +0 -18
  523. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js +0 -18
  524. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js +0 -18
  525. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js +0 -18
  526. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js +0 -18
  527. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js +0 -18
  528. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js +0 -18
  529. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js +0 -18
  530. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js +0 -18
  531. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js +0 -18
  532. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js +0 -18
  533. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js +0 -18
  534. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js +0 -18
  535. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js +0 -18
  536. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js +0 -18
  537. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js +0 -18
  538. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js +0 -18
  539. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js +0 -18
  540. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js +0 -18
  541. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js +0 -18
  542. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js +0 -18
  543. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js +0 -18
  544. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js +0 -18
  545. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js +0 -18
  546. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js +0 -18
  547. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js +0 -18
  548. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js +0 -18
  549. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js +0 -18
  550. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js +0 -18
  551. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js +0 -18
  552. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js +0 -18
  553. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js +0 -18
  554. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js +0 -18
  555. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js +0 -18
  556. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js +0 -18
  557. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js +0 -18
  558. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js +0 -18
  559. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js +0 -18
  560. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js +0 -18
  561. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js +0 -18
  562. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js +0 -18
  563. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js +0 -18
  564. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js +0 -18
  565. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js +0 -18
  566. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js +0 -18
  567. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js +0 -18
  568. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js +0 -18
  569. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js +0 -18
  570. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js +0 -18
  571. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js +0 -18
  572. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata.js +0 -19
  573. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js +0 -18
  574. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js +0 -18
  575. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js +0 -18
  576. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js +0 -18
  577. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js +0 -18
  578. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js +0 -18
  579. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js +0 -18
  580. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js +0 -18
  581. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js +0 -18
  582. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js +0 -18
  583. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js +0 -18
  584. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js +0 -18
  585. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js +0 -18
  586. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js +0 -18
  587. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js +0 -18
  588. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js +0 -18
  589. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js +0 -18
  590. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js +0 -18
  591. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js +0 -18
  592. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js +0 -18
  593. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js +0 -18
  594. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js +0 -18
  595. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js +0 -18
  596. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js +0 -18
  597. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js +0 -18
  598. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js +0 -18
  599. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js +0 -18
  600. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js +0 -18
  601. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js +0 -18
  602. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js +0 -18
  603. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js +0 -18
  604. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js +0 -18
  605. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js +0 -18
  606. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js +0 -18
  607. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js +0 -18
  608. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js +0 -18
  609. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js +0 -18
  610. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GreekAndCoptic.js +0 -18
  611. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js +0 -18
  612. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js +0 -18
  613. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js +0 -18
  614. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js +0 -18
  615. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js +0 -18
  616. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js +0 -18
  617. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js +0 -18
  618. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js +0 -18
  619. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js +0 -18
  620. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js +0 -18
  621. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js +0 -18
  622. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js +0 -18
  623. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js +0 -18
  624. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js +0 -18
  625. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GreekAndCoptic.js +0 -18
  626. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js +0 -18
  627. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedA.js +0 -18
  628. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedB.js +0 -18
  629. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js +0 -18
  630. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js +0 -18
  631. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Arrows.js +0 -18
  632. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js +0 -18
  633. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiactForSymbols.js +0 -18
  634. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeneralPunctuation.js +0 -18
  635. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js +0 -18
  636. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GreekAndCoptic.js +0 -18
  637. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Latin1Supplement.js +0 -18
  638. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedA.js +0 -18
  639. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedB.js +0 -18
  640. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LetterlikeSymbols.js +0 -18
  641. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js +0 -18
  642. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MathOperators.js +0 -18
  643. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscMathSymbolsA.js +0 -18
  644. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js +0 -18
  645. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscTechnical.js +0 -18
  646. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SuppMathOperators.js +0 -18
  647. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SupplementalArrowsA.js +0 -18
  648. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js +0 -18
  649. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js +0 -18
  650. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js +0 -18
  651. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js +0 -18
  652. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js +0 -18
  653. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js +0 -18
  654. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js +0 -18
  655. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js +0 -18
  656. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js +0 -18
  657. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js +0 -18
  658. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js +0 -18
  659. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js +0 -18
  660. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js +0 -18
  661. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js +0 -18
  662. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js +0 -18
  663. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js +0 -18
  664. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js +0 -18
  665. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js +0 -18
  666. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js +0 -18
  667. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js +0 -18
  668. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js +0 -18
  669. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js +0 -18
  670. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js +0 -18
  671. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js +0 -18
  672. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js +0 -18
  673. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js +0 -18
  674. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js +0 -18
  675. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js +0 -18
  676. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js +0 -19
  677. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/imageFonts.js +0 -18
  678. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/jax.js +0 -19
  679. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/NativeMML/config.js +0 -18
  680. data/lib/gollum/frontend/public/javascript/MathJax/jax/output/NativeMML/jax.js +0 -18
  681. data/lib/gollum/frontend/public/javascript/MathJax/test/index-images.html +0 -127
  682. data/lib/gollum/frontend/public/javascript/MathJax/test/index.html +0 -177
  683. data/lib/gollum/frontend/public/javascript/MathJax/test/sample-dynamic.html +0 -54
  684. data/lib/gollum/frontend/public/javascript/MathJax/test/sample-mml.html +0 -44
  685. data/lib/gollum/frontend/public/javascript/MathJax/test/sample-signals.html +0 -121
  686. data/lib/gollum/frontend/public/javascript/MathJax/test/sample-tex.html +0 -22
  687. data/lib/gollum/frontend/public/javascript/MathJax/test/sample-tex2mml.html +0 -23
  688. data/lib/gollum/frontend/public/javascript/MathJax/test/sample.html +0 -99
@@ -1,42 +0,0 @@
1
- .. _platform-wordpress:
2
-
3
- ===============================
4
- Installing MathJax in WordPress
5
- ===============================
6
-
7
- These instructions assume you already have placed the MathJax files on
8
- your server (see :ref:`Installing MathJax <installation>`).
9
-
10
- 1. Open the WordPress admin interface.
11
-
12
- 2. In the administration menu on the left, open up the `Appearance`
13
- menu and click on the `Editor` submenu option.
14
-
15
- .. image:: ../images/wp_menu.png
16
-
17
- When you click on the editor option, WordPress should open up the
18
- first stylesheet in the current theme.
19
-
20
- 3. In the template list on the right side of the page, click on the
21
- header file (it should be ``header.php``).
22
-
23
- .. image:: ../images/wp_templates.png
24
-
25
- This part depends slightly on how your current theme is written.
26
- In the ``header.php`` file, look for the end-of-head tag,
27
- ``</head>``. If you find it, insert
28
-
29
- .. code-block:: html
30
-
31
- <script type="text/javascript" src="path-to-MathJax/MathJax.js"></script>
32
-
33
- just before that. Otherwise, insert the same code at the very
34
- bottom of the file. Here, ``path-to-MathJax`` should be replaced
35
- by the web-address of the main MathJax directory on your server,
36
- e.g., ``src="/mathjax/MathJax.js"``.
37
-
38
- 4. Save the file. This should enable MathJax, so you should be able to
39
- start adding mathematical content to your pages. Use the
40
- ``config/MathJas.js`` file in the MathJax directory to configure
41
- MathJax to your needs (see :ref:`Configuring MathJax
42
- <configuration>` for details).
@@ -1,254 +0,0 @@
1
- .. _using-queues:
2
-
3
- ************
4
- Using Queues
5
- ************
6
-
7
- The `callback queue` is one of MathJax's main tools for synchronizing
8
- its actions, both internally, and with external programs, like
9
- javascript code that you may write as part of dynamic web pages.
10
- Because many actions in MathJax (like loading files) operate
11
- asynchornously, MathJax needs a way to coordinate those actions so
12
- that they occur in the right order. The
13
- `MathJax.Callback.Queue` object provides that mechanism.
14
-
15
- A `callback queue` is a list of commands that will be performed one at
16
- a time, in order. If the return value of one of the commands is a
17
- `Callback` object, processing is suspended until that callback is
18
- called, and then processing of the commands is resumed. In this way,
19
- if a command starts an asynchronous operation like loading a file, it
20
- can return the callback for that file-load operation and the queue
21
- will wait until the file has loaded before continuing. Thus a queue
22
- can be used to guarantee that commands don't get performed until other
23
- ones are known to be finished, even if those commands usually operate
24
- asynchronously.
25
-
26
-
27
- Constructing Queues
28
- ===================
29
-
30
- A queue is created via the :meth:`MathJax.Callback.Queue()` command,
31
- which returns a `MathJax.Callback.Queue` object. The queue
32
- itself consists of a series of commands given as callback
33
- specifications (see :ref:`Using Callbacks <using-callbacks>` for
34
- details on callbacks), which allow you to provide functions (together
35
- with their arguments) to be executed. You can provide the collection
36
- of callback specifications when the queue is created by passing them
37
- as arguments to :meth:`MathJax.Callback.Queue()`, or you can create an
38
- empty queue to which commands are added later. Once a
39
- `MathJax.Callback.Queue` object is created, you can push
40
- additional callbacks on the end of the queue; if the queue is empty,
41
- the command will be performed immediately, while if the queue is
42
- waiting for another command to complete, the new command will be
43
- queued for later processing.
44
-
45
- For example,
46
-
47
- .. code-block:: javascript
48
-
49
- function f(x) {alert(x)}
50
- var queue = MathJax.Callback.Queue([f, 15], [f, 10], [f, 5]);
51
- queue.Push([f, 0]);
52
-
53
- would create a queue containing three commands, each calling the
54
- function ``f`` with a different input, that are performed in order. A
55
- fourth command is then added to the queue, to be performed after the
56
- other three. In this case, the result will be four alerts, the first
57
- with the number 15, the second with 10, the third with 5 and the
58
- fourth with 0. Of course ``f`` is not a function that operates
59
- asynchronously, so it would have been easier to just call ``f`` four
60
- times directly. The power of the queue comes from calling commands
61
- that could operate asynchronously. For example:
62
-
63
- .. code-block:: javascript
64
-
65
- function f(x) {alert(x)}
66
- MathJax.Callback.Queue(
67
- [f, 1],
68
- ["Require", MathJax.Ajax, "[MathJax]/extensions/AMSmath.js"],
69
- [f, 2]
70
- );
71
-
72
- Here, the command ``MathJax.Ajax.require("extensions/AMSmath.js")`` is
73
- queued between two calls to ``f``. The first call to ``f(1)`` will be
74
- made immediately, then the :meth:`MathJax.Ajax.Require` statement will
75
- be performed. Since the ``Require`` method loads a file, it operates
76
- asynchronously, and its return value is a `MathJax.Callback`
77
- object that will be called when the file is loaded. The call to
78
- ``f(2)`` will not be made until that callback is performed,
79
- effectively synchronizing the second call to ``f`` with the completion
80
- of the file loading. This is equivalent to
81
-
82
- .. code-block:: javascript
83
-
84
- f(1);
85
- MathJax.Ajax.Require("[MathJax]/extensions/AMSmath.js", [f, 2]);
86
-
87
- since the ``Require()`` command allows you to specify a (single)
88
- callback to be performed on the completion of the file load. Note,
89
- however, that the queue could be used to synchronize several file
90
- loads along with multiple function calls, so is more flexible.
91
-
92
- For example,
93
-
94
- .. code-block:: javascript
95
-
96
- MathJax.Callback.Queue(
97
- ["Require", MathJax.Ajax, "[MathJax]/extensions/AMSmath.js"],
98
- [f, 1],
99
- ["Require", MathJax.Ajax, "[MathJax]/config/local/AMSmathAdditions.js"],
100
- [f, 2]
101
- );
102
-
103
- would load the AMSmath extension, then call ``f(1)`` then load the
104
- local AMSmath modifications, and then call ``f(2)``, with each action
105
- waiting for the previous one to complete before being performed
106
- itself.
107
-
108
-
109
- Callbacks versus Callback Specifications
110
- ========================================
111
-
112
- If one of the callback specifications is an actual callback object
113
- itself, then the queue will wait for that action to be performed
114
- before proceeding. For example,
115
-
116
- .. code-block:: javascript
117
-
118
- MathJax.Callback.Queue(
119
- [f, 1],
120
- MathJax.Ajax.Require("[MathJax]/extensions/AMSmath.js"),
121
- [f, 2],
122
- );
123
-
124
- starts the loading of the AMSmath extension before the queue is
125
- created, and then creates the queue containing the call to ``f``, the
126
- callback for the file load, and the second call to ``f``. The queue
127
- performs ``f(1)``, waits for the file load callback to be called, and
128
- then calls ``f(2)``. The difference between this and the second
129
- example above is that, in this example the file load is started before
130
- the queue is even created, so the file is potentially loaded and
131
- executed before the call to ``f(1)``, while in the example above, the
132
- file load is guaranteed not to begin until after ``f(1)`` is executed.
133
-
134
- As a further example, consider
135
-
136
- .. code-block:: javascript
137
-
138
- MathJax.Callback.Queue(
139
- MathJax.Ajax.Require("[MathJax]/extensions/AMSmath.js"),
140
- [f, 1],
141
- MathJax.Ajax.Require("[MathJax]/config/local/AMSmathAdditions.js"),
142
- [f, 2]
143
- );
144
-
145
- in comparison to the example above that uses ``["Require",
146
- MathJax.Ajax, "[MathJax]/extensions/AMSmath.js"]`` and ``["Require",
147
- MathJax.Ajax, "[MathJax]/config/local/AMSmathAdditions.js"]`` instead. In that
148
- example, ``AMSmath.js`` is loaded, then ``f(1)`` is called, then the
149
- local additions are loaded, then ``f(2)`` is called.
150
-
151
- Here, however, both file loads are started before the queue is
152
- created, and are operating in parallel (rather than sequentially as in
153
- the earlier example). It is possible for the loading of the local
154
- additions to complete before the AMSmath extension is loaded in this
155
- case, which was guaranteed **not** to happen in the other example.
156
- Note, however, that ``f(1)`` is guaranteed not to be performed until
157
- after the AMSmath extensions load, and ``f(2)`` will not occur until
158
- after both files are loaded.
159
-
160
- In this way, it is possible to start asynchronous loading of several
161
- files simultaneously, and wait until all of them are loaded (in
162
- whatever order) to perform some command. For instance,
163
-
164
- .. code-block:: javascript
165
-
166
- MathJax.Callback.Queue(
167
- MathJax.Ajax.Require("file1.js"),
168
- MathJax.Ajax.Require("file2.js"),
169
- MathJax.Ajax.Require("file3.js"),
170
- MathJax.Ajax.Require("file4.js"),
171
- [f, "all done"]
172
- );
173
-
174
- starts four files loading all at once, and waits for all four to
175
- complete before calling ``f("all done")``. The order in which they
176
- complete is immaterial, and they all are being requested
177
- simultaneously.
178
-
179
-
180
- The MathJax Processing Queue
181
- ============================
182
-
183
- MathJax uses a queue stored as ``MathJax.Hub.queue`` to regulate its
184
- own actions so that they operate in the right order even when some
185
- of them include asynchronous operations. You can take advantage of
186
- that queue when you make calls to MathJax methods that need to be
187
- synchronized with the other actions taken by MathJax. It may not
188
- always be apparent, however, which methods fall into that category.
189
-
190
- The main source of asynchronous actions in MathJax is the loading of
191
- external files, so any action that may cause a file to be loaded may
192
- act asynchronously. Many important actions do so, including some that
193
- you might not expect; e.g., typesetting mathematics can cause files to
194
- be loaded. This is because some TeX commands, for example, are rare
195
- enough that they are not included in the core TeX input processor, but
196
- instead are defined in extensions that are loaded automatically when
197
- needed. The typesetting of an expression containing one of these TeX
198
- commands can cause the typesetting process to be suspended while the
199
- file is loaded, and then restarted when the extension has become
200
- evailable.
201
-
202
- As a result, any call to :meth:`MathJax.Hub.Typeset()` (or
203
- :meth:`MathJax.Hub.Process()`, or :meth:`MathJax.Hub.Update()`, etc.)
204
- could return long before the mathematics is actually typeset, and the
205
- rest of your code may run before the mathematics is available. If you
206
- have code that relys on the mathematics being visible on screen, you
207
- will need to break that out into a separate operation that is
208
- synchronized with the typesetting via the MathJax queue.
209
-
210
- Furthermore, your own typesetting calls may need to wait for file loading
211
- to occur that is already underway, so even if you don't need to access
212
- the mathematics after it is typeset, you may still need to queue the
213
- typeset command in order to make sure it is properly synchronized with
214
- *previous* typeset calls. For instance, if an earlier call
215
- started loading an extension and you start another typeset call before
216
- that extension is fully loaded, MathJax's internal state may be in
217
- flux, and it may not be prepared to handle another typeset operation
218
- yet. This is even more important if you are using other libraries
219
- that may call MathJax, in which case your code may not be aware of the
220
- state that MathJax is in.
221
-
222
- For these reasons, it is always best to perform typesetting operations
223
- through the MathJax queue, and the same goes for any other action
224
- that could cause files to load. A good rule of thumb is that, if a
225
- MathJax function includes a callback argument, that function may operate
226
- asynchronously; you should use the MathJax queue to perform it and
227
- any actions that rely on its results.
228
-
229
- To place an action in the MathJax queue, use the
230
- :meth:`MathJax.Hub.Queue()` command. For example
231
-
232
- .. code-block:: javascript
233
-
234
- MathJax.Hub.Queue(["Typeset",MathJax.Hub,"MathDiv"]);
235
-
236
- would queue the command ``MathJax.Hub.Typeset("MathDiv")``, causing
237
- the contents of the DOM element with `id` equal to ``MathDiv`` to be
238
- typeset.
239
-
240
- One of the uses of the MathJax queue is to allow you to synchronize an
241
- action with the startup process for MathJax. If you want to have a
242
- function performed after MathJax has become completely set up (and
243
- performed its initial typesetting of the page), you can push it onto
244
- the ``MathJax.Hub.queue`` so that it won't be performed until MathJax
245
- finishes everything it has queued when it was loaded. For example,
246
-
247
- .. code-block:: html
248
-
249
- <script type="text/javascript" src="/MathJax/MathJax.js"></script>
250
- <script>
251
- MathJax.Hub.Queue(function () {
252
- // ... your startup commands here ...
253
- });
254
- </script>
@@ -1,161 +0,0 @@
1
- .. _using-signals:
2
-
3
- *************
4
- Using Signals
5
- *************
6
-
7
- Because much of MathJax operates asynchronously, it is important for
8
- MathJax to be able to indicated to other components operating on the
9
- page that certain actions have been taken. For example, as MathJax is
10
- starting up, it loads external files such as its configuration files
11
- and the various input and output :term:`jax` that are used on the
12
- page. This means that MathJax may not be ready to run until well
13
- after the ``<script>`` tag that loads ``MathJax.js`` has executed. If
14
- another component on the page needs to call MathJax to process some
15
- mathematics, it will need to know when MathJax is ready to do that.
16
- Thus MathJax needs a way to signal other components that it is
17
- initialized and ready to process mathematics. Other events that might
18
- need to be signaled include the appearance of newly processed
19
- mathematics on the web page, the loading of a new extension, and so
20
- on.
21
-
22
- The mechanism provided by MathJax for handling this type of
23
- communication is the :term:`Callback Signal`. The `Callback Signal`
24
- object provides a standardized mechanism for sending and receiving
25
- messages between MathJax and other code on the page. A signal acts
26
- like a mailbox where MathJax places messages for others to read.
27
- Those interested in seeing the messages can register an interest in
28
- receiving a given signal, and when MathJax posts a message on that
29
- signal, all the interested parties will be notified. No new posts to
30
- the signal will be allowed until everyone who is listening to the
31
- signal has had a chance to receive the first one. If a signal causes
32
- a listener to begin an asynchronous operation (such as loading a
33
- file), the listener can indicate that its reply to the signal is going
34
- to be delayed, and MathJax will wait until the asynchronous action is
35
- complete before allowing additional messages to be posted to this
36
- signal. In this way, posting a signal may itself be an asynchronous
37
- action.
38
-
39
- The posts to a signal are cached so that if a new listener expresses
40
- an interest in the signal, it will receive all the past posts as well
41
- as any future ones. For example, if a component on the page needs to
42
- know when MathJax is set up, it can express an interest in the startup
43
- signal's ``End`` message. If MathJax is not yet set up, the component
44
- will be signaled when MathJax is ready to begin, but if MathJax is
45
- already set up, the component will receive the ``End`` message
46
- immediately, since that message was cached and is available to any new
47
- listeners. In this way, signals can be used to pass messages without
48
- worrying about the timing of when the signaler and listener are ready
49
- to send or receive signals: a listener will receive messages even if
50
- it starts listening after they were sent.
51
-
52
- One way that MathJax makes use of this feature is in configuring its
53
- various extensions. The extension may not be loaded when the user's
54
- configuration code runs, so the configuration code can't modify the
55
- extension because it isn't there yet. Fortunately, most extensions
56
- signal when they are set up via an ``Extension [name] Ready`` message,
57
- so the configuration code can set up a listener for that message, and
58
- have the listener perform the configuration when the message arrives.
59
- But even if the extension *has* already been loaded, this will still
60
- work, because the listener will receive the ready signal even if it
61
- has already been posted. In this way, listening for signals is a
62
- robust method of synchonizing code components no matter when they are
63
- loaded and run.
64
-
65
- In some cases, it may be inappropriate for a new listener to receive
66
- past messages that were sent to a signal object. There are two ways to
67
- handle this: first, a new listener can indicate that it doesn't want
68
- to hear old messages when it attaches itself to a signal object. The
69
- sender can also indicate that past messages are not appropriate for
70
- new listeners. It does this by clearing the message history so that
71
- new listeners have no old posts to hear.
72
-
73
- The actual message passed along the signal can be anything, but is
74
- frequently a string constant indicating the message value. It could
75
- also be a JavaScript array containing data, or an object containing
76
- `key:value` pairs. All the listeners receive the data as part of the
77
- message, and can act on it in whatever ways they see fit.
78
-
79
- Creating a Listener
80
- ===================
81
-
82
- MathJax maintains two separate signal channels: the `startup signal`
83
- and the `processing signal` (or the `hub signal`). The startup signal
84
- is where the messages about different components startup up and
85
- becoming ready appear. The processing signal is where the messages
86
- are sent about processing mathematics, like the ``New Math`` messages
87
- for when newly typeset mathematics appears on the page. The latter is
88
- cleared when a new processing pass is started (so messages from past
89
- processing runs are not kept).
90
-
91
- The easiest way to create a listener is to use either
92
- :meth:`MathJax.Hub.Register.StartupHook()` or
93
- :meth:`MathJax.Hub.Register.MessageHook()`. The first sets a listener
94
- on the startup signal, and the latter on the hub processing signal.
95
- You specify the message you want to listen for, and a callback to be
96
- called when it arrives. For example
97
-
98
- .. code-block:: javascript
99
-
100
- MathJax.Hub.Register.StartupHook("TeX Jax Ready ",function () {
101
- alert("The TeX input jax is loaded and ready!");
102
- });
103
-
104
- See the :ref:`MathJax Startup Sequence <startup-sequence>` page for
105
- details of the messages sent during startup. See also the
106
- ``test/sample-signals.html`` file (and its source) for examples of
107
- using signals. This example lists all the signals that occur while
108
- MathJax is processing that page, so it gives useful information about
109
- the details of the signals produced by variuous components.
110
-
111
- In this example, the listener starts loading an extra configuration
112
- file (from the same directory as the web page). Since it returns
113
- the callback from that request, the signal processing will wait until
114
- that file is completely loaded before it continues; that is, the
115
- configuration process is suspended until the extra configuration file
116
- has loaded.
117
-
118
- .. code-block:: javascript
119
-
120
- MathJax.Hub.Register.StartupHook("Begin Config",
121
- function () {return MathJax.Ajax.Require("myConfig.js")}
122
- );
123
-
124
- Here is an example that produces an alert each time new mathematics
125
- is typeset on the page. The message includes the DOM `id` of the
126
- element on the page that contains the newly typeset mathematics as its
127
- second element, so this listener locates the ``<script>`` tag
128
- for the math, and displays the original source mathematics for it.
129
-
130
- .. code-block:: javascript
131
-
132
- MathJax.Hub.Register.MessageHook("New Math", function (message) {
133
- var script = MathJax.Hub.getJaxFor(message[1]).SourceElement();
134
- alert(message.join(" ")+": '"+script.text+"'");
135
- })
136
-
137
-
138
- Listening for All Messages
139
- ==========================
140
-
141
- If you want to process *every* message that passes through a signal
142
- channel, you can do that by registering an interest in the signal
143
- rather than registering a message hook. You do this by calling the
144
- signal's :meth:`Interest()` method, as in the following example.
145
-
146
- .. code-block:: javascript
147
-
148
- MathJax.Hub.Startup.signal.Interest(
149
- function (message) {alert("Startup: "+message)}
150
- );
151
- MathJax.Hub.signal.Interest(
152
- function (message) {alert("Hub: "+message)}
153
- );
154
-
155
- This will cause an alert for every signal that MathJax produces. You
156
- probably don't want to try this out, since it will produce a *lot* of
157
- them; instead, use the ``test/sample-signals.html`` file, which
158
- displays them in the web page.
159
-
160
- See the :ref:`Signal Object <api-signal>` reference page for details on the
161
- structure and methods of the signal object.