ela 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (300) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/.gitlab-ci.yml +23 -0
  4. data/Gemfile +7 -0
  5. data/Gemfile.lock +139 -0
  6. data/Guardfile +25 -0
  7. data/LICENSE.txt +205 -0
  8. data/README.de.md +195 -0
  9. data/README.md +66 -0
  10. data/Rakefile +96 -0
  11. data/app/css/screen.styl +425 -0
  12. data/app/css/vendor/stackedit.styl +140 -0
  13. data/app/fonts/Roboto-Italic-webfont.eot +0 -0
  14. data/app/fonts/Roboto-Italic-webfont.svg +642 -0
  15. data/app/fonts/Roboto-Italic-webfont.ttf +0 -0
  16. data/app/fonts/Roboto-Italic-webfont.woff +0 -0
  17. data/app/fonts/Roboto-Light-webfont.eot +0 -0
  18. data/app/fonts/Roboto-Light-webfont.svg +641 -0
  19. data/app/fonts/Roboto-Light-webfont.ttf +0 -0
  20. data/app/fonts/Roboto-Light-webfont.woff +0 -0
  21. data/app/fonts/Roboto-LightItalic-webfont.eot +0 -0
  22. data/app/fonts/Roboto-LightItalic-webfont.svg +641 -0
  23. data/app/fonts/Roboto-LightItalic-webfont.ttf +0 -0
  24. data/app/fonts/Roboto-LightItalic-webfont.woff +0 -0
  25. data/app/fonts/Roboto-Medium-webfont.eot +0 -0
  26. data/app/fonts/Roboto-Medium-webfont.svg +593 -0
  27. data/app/fonts/Roboto-Medium-webfont.ttf +0 -0
  28. data/app/fonts/Roboto-Medium-webfont.woff +0 -0
  29. data/app/fonts/Roboto-MediumItalic-webfont.eot +0 -0
  30. data/app/fonts/Roboto-MediumItalic-webfont.svg +642 -0
  31. data/app/fonts/Roboto-MediumItalic-webfont.ttf +0 -0
  32. data/app/fonts/Roboto-MediumItalic-webfont.woff +0 -0
  33. data/app/fonts/Roboto-Regular-webfont.eot +0 -0
  34. data/app/fonts/Roboto-Regular-webfont.svg +621 -0
  35. data/app/fonts/Roboto-Regular-webfont.ttf +0 -0
  36. data/app/fonts/Roboto-Regular-webfont.woff +0 -0
  37. data/app/fonts/Roboto-Thin-webfont.eot +0 -0
  38. data/app/fonts/Roboto-Thin-webfont.svg +631 -0
  39. data/app/fonts/Roboto-Thin-webfont.ttf +0 -0
  40. data/app/fonts/Roboto-Thin-webfont.woff +0 -0
  41. data/app/fonts/Roboto-ThinItalic-webfont.eot +0 -0
  42. data/app/fonts/Roboto-ThinItalic-webfont.svg +631 -0
  43. data/app/fonts/Roboto-ThinItalic-webfont.ttf +0 -0
  44. data/app/fonts/Roboto-ThinItalic-webfont.woff +0 -0
  45. data/app/fonts/droid_sans_regular.typeface.svg +1 -0
  46. data/app/fonts/fontawesome-webfont.eot +0 -0
  47. data/app/fonts/fontawesome-webfont.svg +2671 -0
  48. data/app/fonts/fontawesome-webfont.ttf +0 -0
  49. data/app/fonts/fontawesome-webfont.woff +0 -0
  50. data/app/fonts/fontawesome-webfont.woff2 +0 -0
  51. data/app/js/lib/application.coffee +83 -0
  52. data/app/js/lib/bootstrap_data.coffee +70 -0
  53. data/app/js/lib/collections/00_limited_collection.coffee +85 -0
  54. data/app/js/lib/collections/curves.coffee +3 -0
  55. data/app/js/lib/collections/named_object_collection.coffee +7 -0
  56. data/app/js/lib/mathjaxConfig.coffee +241 -0
  57. data/app/js/lib/models/app.coffee +58 -0
  58. data/app/js/lib/models/base_app.coffee +62 -0
  59. data/app/js/lib/models/base_app_model.coffee +61 -0
  60. data/app/js/lib/models/base_calculator.coffee +212 -0
  61. data/app/js/lib/models/base_subapp_container.coffee +35 -0
  62. data/app/js/lib/models/curve.coffee +179 -0
  63. data/app/js/lib/router.coffee +26 -0
  64. data/app/js/lib/views/app.coffee +56 -0
  65. data/app/js/lib/views/base_app.coffee +274 -0
  66. data/app/js/lib/views/base_aside.coffee +9 -0
  67. data/app/js/lib/views/base_graph.coffee +477 -0
  68. data/app/js/lib/views/base_subapp_container.coffee +44 -0
  69. data/app/js/lib/views/canvas.coffee +73 -0
  70. data/app/js/lib/views/curve_graph.coffee +163 -0
  71. data/app/js/lib/views/curves_aside.coffee +21 -0
  72. data/app/js/lib/views/curves_list_item.coffee +8 -0
  73. data/app/js/lib/views/grouped_parameters_aside.coffee +14 -0
  74. data/app/js/lib/views/headup.coffee +15 -0
  75. data/app/js/lib/views/help.coffee +86 -0
  76. data/app/js/lib/views/interpolated_graph.coffee +281 -0
  77. data/app/js/lib/views/legend.coffee +138 -0
  78. data/app/js/lib/views/legend_handler.coffee +51 -0
  79. data/app/js/lib/views/overview.coffee +85 -0
  80. data/app/js/lib/views/overview_tile.coffee +18 -0
  81. data/app/js/lib/views/parameters_aside.coffee +12 -0
  82. data/app/js/lib/views/three_graph.coffee +92 -0
  83. data/app/js/vendor/Markdown.Converter.js +1519 -0
  84. data/app/js/vendor/Markdown.Extra.js +874 -0
  85. data/app/js/vendor/Markdown.Toc.coffee +79 -0
  86. data/app/js/vendor/backbone-1.3.3.min.js +2 -0
  87. data/app/js/vendor/backbone-validation-0.11.5.js +8 -0
  88. data/app/js/vendor/backbone.poised/form.coffee +156 -0
  89. data/app/js/vendor/backbone.poised/form/anchor.coffee +26 -0
  90. data/app/js/vendor/backbone.poised/form/base_control.coffee +42 -0
  91. data/app/js/vendor/backbone.poised/form/linked_control.coffee +79 -0
  92. data/app/js/vendor/backbone.poised/form/linked_number_control.coffee +27 -0
  93. data/app/js/vendor/backbone.poised/form/linked_range_control.coffee +53 -0
  94. data/app/js/vendor/backbone.poised/form/linked_select_control.coffee +18 -0
  95. data/app/js/vendor/backbone.poised/form/linked_string_control.coffee +27 -0
  96. data/app/js/vendor/backbone.poised/form/number_control.coffee +25 -0
  97. data/app/js/vendor/backbone.poised/form/range_control.coffee +48 -0
  98. data/app/js/vendor/backbone.poised/form/select_control.coffee +16 -0
  99. data/app/js/vendor/backbone.poised/form/selectbox.coffee +78 -0
  100. data/app/js/vendor/backbone.poised/form/slider.coffee +109 -0
  101. data/app/js/vendor/backbone.poised/form/string_control.coffee +23 -0
  102. data/app/js/vendor/backbone.poised/form/submit_control.coffee +39 -0
  103. data/app/js/vendor/backbone.poised/form/textarea.coffee +36 -0
  104. data/app/js/vendor/backbone.poised/form/textfield.coffee +86 -0
  105. data/app/js/vendor/backbone.poised/form/value.coffee +33 -0
  106. data/app/js/vendor/backbone.poised/form/value_control.coffee +15 -0
  107. data/app/js/vendor/backbone.poised/linked_form.coffee +43 -0
  108. data/app/js/vendor/backbone.poised/list.coffee +97 -0
  109. data/app/js/vendor/backbone.poised/list/add_button.coffee +16 -0
  110. data/app/js/vendor/backbone.poised/list/anchor.coffee +32 -0
  111. data/app/js/vendor/backbone.poised/list/item.coffee +68 -0
  112. data/app/js/vendor/backbone.poised/list/searchfield.coffee +26 -0
  113. data/app/js/vendor/backbone.poised/list/selectable_item.coffee +65 -0
  114. data/app/js/vendor/backbone.poised/patches.coffee +6 -0
  115. data/app/js/vendor/backbone.poised/string_mixin.coffee +23 -0
  116. data/app/js/vendor/backbone.poised/underscore_ext.coffee +2 -0
  117. data/app/js/vendor/backbone.poised/view.coffee +59 -0
  118. data/app/js/vendor/gaussianElimination.coffee +40 -0
  119. data/app/js/vendor/hammer-2.0.8.min.js +7 -0
  120. data/app/js/vendor/jquery-3.1.1.min.js +4 -0
  121. data/app/js/vendor/jquery.after-transition.coffee +20 -0
  122. data/app/js/vendor/jquery.backbone-hammer.coffee +28 -0
  123. data/app/js/vendor/jquery.keyboard-modifiers.coffee +22 -0
  124. data/app/js/vendor/jquery.mark-5.2.3.min.js +7 -0
  125. data/app/js/vendor/jquery.scrollTo-2.1.2.min.js +7 -0
  126. data/app/js/vendor/js-yaml-3.4.3.min.js +3 -0
  127. data/app/js/vendor/markup_text.coffee +95 -0
  128. data/app/js/vendor/mathjax/MathJax.js +19 -0
  129. data/app/js/vendor/mathjax/extensions/MathEvents.js +19 -0
  130. data/app/js/vendor/mathjax/extensions/tex2jax.js +19 -0
  131. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot +0 -0
  132. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot +0 -0
  133. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot +0 -0
  134. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot +0 -0
  135. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot +0 -0
  136. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot +0 -0
  137. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot +0 -0
  138. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot +0 -0
  139. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot +0 -0
  140. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot +0 -0
  141. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot +0 -0
  142. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot +0 -0
  143. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot +0 -0
  144. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot +0 -0
  145. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot +0 -0
  146. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot +0 -0
  147. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot +0 -0
  148. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot +0 -0
  149. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot +0 -0
  150. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot +0 -0
  151. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot +0 -0
  152. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf +0 -0
  153. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf +0 -0
  154. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf +0 -0
  155. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf +0 -0
  156. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf +0 -0
  157. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf +0 -0
  158. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf +0 -0
  159. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf +0 -0
  160. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf +0 -0
  161. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf +0 -0
  162. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf +0 -0
  163. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf +0 -0
  164. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf +0 -0
  165. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf +0 -0
  166. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf +0 -0
  167. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf +0 -0
  168. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf +0 -0
  169. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf +0 -0
  170. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf +0 -0
  171. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf +0 -0
  172. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf +0 -0
  173. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf +0 -0
  174. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg +765 -0
  175. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg +136 -0
  176. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg +134 -0
  177. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg +319 -0
  178. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg +309 -0
  179. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg +656 -0
  180. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg +374 -0
  181. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg +659 -0
  182. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg +331 -0
  183. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg +331 -0
  184. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg +330 -0
  185. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg +280 -0
  186. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg +245 -0
  187. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg +211 -0
  188. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg +160 -0
  189. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg +110 -0
  190. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg +109 -0
  191. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg +49 -0
  192. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg +102 -0
  193. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg +322 -0
  194. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg +39 -0
  195. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff +0 -0
  196. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff +0 -0
  197. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff +0 -0
  198. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff +0 -0
  199. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff +0 -0
  200. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff +0 -0
  201. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff +0 -0
  202. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff +0 -0
  203. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff +0 -0
  204. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff +0 -0
  205. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff +0 -0
  206. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff +0 -0
  207. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff +0 -0
  208. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff +0 -0
  209. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff +0 -0
  210. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff +0 -0
  211. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff +0 -0
  212. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff +0 -0
  213. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff +0 -0
  214. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff +0 -0
  215. data/app/js/vendor/mathjax/jax/element/mml/jax.js +19 -0
  216. data/app/js/vendor/mathjax/jax/element/mml/optable/Arrows.js +19 -0
  217. data/app/js/vendor/mathjax/jax/element/mml/optable/BasicLatin.js +19 -0
  218. data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiacritMarks.js +19 -0
  219. data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiactForSymbols.js +19 -0
  220. data/app/js/vendor/mathjax/jax/element/mml/optable/Dingbats.js +19 -0
  221. data/app/js/vendor/mathjax/jax/element/mml/optable/GeneralPunctuation.js +19 -0
  222. data/app/js/vendor/mathjax/jax/element/mml/optable/GeometricShapes.js +19 -0
  223. data/app/js/vendor/mathjax/jax/element/mml/optable/GreekAndCoptic.js +19 -0
  224. data/app/js/vendor/mathjax/jax/element/mml/optable/Latin1Supplement.js +19 -0
  225. data/app/js/vendor/mathjax/jax/element/mml/optable/LetterlikeSymbols.js +19 -0
  226. data/app/js/vendor/mathjax/jax/element/mml/optable/MathOperators.js +19 -0
  227. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js +19 -0
  228. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js +19 -0
  229. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js +19 -0
  230. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscTechnical.js +19 -0
  231. data/app/js/vendor/mathjax/jax/element/mml/optable/SpacingModLetters.js +19 -0
  232. data/app/js/vendor/mathjax/jax/element/mml/optable/SuppMathOperators.js +19 -0
  233. data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsA.js +19 -0
  234. data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsB.js +19 -0
  235. data/app/js/vendor/mathjax/jax/input/TeX/config.js +19 -0
  236. data/app/js/vendor/mathjax/jax/input/TeX/jax.js +19 -0
  237. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js +19 -0
  238. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/maction.js +19 -0
  239. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/menclose.js +19 -0
  240. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mglyph.js +19 -0
  241. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js +19 -0
  242. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/ms.js +19 -0
  243. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mtable.js +19 -0
  244. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/multiline.js +19 -0
  245. data/app/js/vendor/mathjax/jax/output/CommonHTML/config.js +19 -0
  246. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js +19 -0
  247. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js +19 -0
  248. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js +19 -0
  249. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js +19 -0
  250. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js +19 -0
  251. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js +19 -0
  252. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js +19 -0
  253. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js +19 -0
  254. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js +19 -0
  255. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js +19 -0
  256. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js +19 -0
  257. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js +19 -0
  258. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js +19 -0
  259. data/app/js/vendor/mathjax/jax/output/CommonHTML/jax.js +19 -0
  260. data/app/js/vendor/modernizr-custom-3.3.1.min.js +3 -0
  261. data/app/js/vendor/persistjs-git.js +1136 -0
  262. data/app/js/vendor/poised/poised.general.coffee +21 -0
  263. data/app/js/vendor/poised/poised.tabs.coffee +31 -0
  264. data/app/js/vendor/poised/utils.coffee +11 -0
  265. data/app/js/vendor/request_animation_frame.coffee +19 -0
  266. data/app/js/vendor/three-82.min.js +15 -0
  267. data/app/js/vendor/three-CanvasRenderer-82.js +1118 -0
  268. data/app/js/vendor/three-Projector-82.js +929 -0
  269. data/app/js/vendor/underscore-1.8.3.min.js +6 -0
  270. data/app/js/vendor/webfontloader-1.6.26.min.js +33 -0
  271. data/app/views/aliasing/legend.jst.hamlc +6 -0
  272. data/app/views/composites/composites_list_item_label.jst.hamlc +3 -0
  273. data/app/views/composites/import_composites_aside.jst.hamlc +6 -0
  274. data/app/views/composites/mix_preset_list_item_label.jst.hamlc +8 -0
  275. data/app/views/composites/share_aside.jst.hamlc +7 -0
  276. data/app/views/doc/airplanes_list_item_label.jst.hamlc +3 -0
  277. data/app/views/doc/import_airplanes_aside.jst.hamlc +6 -0
  278. data/app/views/doc/share_aside.jst.hamlc +7 -0
  279. data/app/views/general/app.jst.hamlc +42 -0
  280. data/app/views/general/curves_list_item_label.jst.hamlc +5 -0
  281. data/app/views/general/help.jst.hamlc +7 -0
  282. data/app/views/general/tabs.jst.hamlc +6 -0
  283. data/app/views/index.haml +24 -0
  284. data/app/views/overview/app.jst.hamlc +7 -0
  285. data/app/views/overview/tile.jst.hamlc +4 -0
  286. data/bin/console +14 -0
  287. data/bin/setup +8 -0
  288. data/ela.gemspec +50 -0
  289. data/exe/ela +59 -0
  290. data/lib/ela.rb +8 -0
  291. data/lib/ela/jasmine.rb +87 -0
  292. data/lib/ela/server.rb +136 -0
  293. data/lib/ela/utils.rb +131 -0
  294. data/lib/ela/version.rb +3 -0
  295. data/package-lock.json +899 -0
  296. data/package.json +11 -0
  297. data/support/project/Guardfile +64 -0
  298. data/support/project/jasmine.yml +3 -0
  299. data/support/server.ru +5 -0
  300. metadata +4365 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c15b734be84e2dddf4635beb7aa6abe1f47fc239
4
+ data.tar.gz: 78645f77c6010b814633efbada7d16ac0aaee886
5
+ SHA512:
6
+ metadata.gz: f1a654e0bd2929e6dc48708fcbee1287201eb21eadb2210b03cd5a9f8aa85321594015437b6b9eac162765b4b7226d0717c22161e6710506bab151978680ae28
7
+ data.tar.gz: 4dab676b14d1335be385368ef38eebb06e1947928faa7c951b6ac182f16a1ebc4e9d3605ebc171ee824d6e6cc96356531dda15c58a96cb78dc1291b1fbe371cc
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ /spec/app_js
2
+ /spec/javascripts/**/*.js
3
+ /node_modules
4
+ /dist
5
+ /ela-*.gem
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,23 @@
1
+ image: registry.vela/velaluqa/gitlab-ci-build-images:ruby-2.3.3-phantomjs-2.1.1
2
+
3
+ cache:
4
+ key: 'ruby233'
5
+ paths:
6
+ - vendor/ruby
7
+ - node_modules
8
+
9
+ before_script:
10
+ - bundle install -j $(nproc) --path vendor
11
+ - npm install
12
+
13
+ stages:
14
+ - deploy
15
+
16
+ run:
17
+ stage: deploy
18
+ script:
19
+ - bundle exec rake test
20
+ - bundle exec rake build
21
+ - export PATH=$PATH:node_modules/.bin
22
+ - bundle exec rake doc
23
+ - bundle exec gitdeploy
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem 'guard-copy3'
7
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,139 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ ela (1.0.4)
5
+ bundler (~> 1.13)
6
+ coffee-script (~> 2.4, >= 2.4.1)
7
+ guard (~> 2.10)
8
+ guard-coffeescript (~> 2.0, >= 2.0.1)
9
+ guard-compat (~> 1.2, >= 1.2.1)
10
+ guard-livereload (~> 2.5, >= 2.5.2)
11
+ guard-process (~> 1.2, >= 1.2.1)
12
+ guard-rack (~> 2.2, >= 2.2.0)
13
+ haml (~> 4.0, >= 4.0.7)
14
+ haml_coffee_assets (~> 1.18, >= 1.18.0)
15
+ jasmine (~> 2.9, >= 2.9.0)
16
+ rake (~> 10.5, >= 10.5.0)
17
+ sinatra (~> 1.4, >= 1.4.8)
18
+ sinatra-assetpack (~> 0.3, >= 0.3.5)
19
+ sinatra-backbone-2 (~> 0.1, >= 0.1.1)
20
+ stylus (~> 1.0, >= 1.0.2)
21
+ uglifier (~> 4.1, >= 4.1.5)
22
+
23
+ GEM
24
+ remote: https://rubygems.org/
25
+ specs:
26
+ coderay (1.1.2)
27
+ coffee-script (2.4.1)
28
+ coffee-script-source
29
+ execjs
30
+ coffee-script-source (1.12.2)
31
+ concurrent-ruby (1.0.5)
32
+ em-websocket (0.5.1)
33
+ eventmachine (>= 0.12.9)
34
+ http_parser.rb (~> 0.6.0)
35
+ eventmachine (1.2.5)
36
+ execjs (2.7.0)
37
+ ffi (1.9.18)
38
+ formatador (0.2.5)
39
+ guard (2.14.1)
40
+ formatador (>= 0.2.4)
41
+ listen (>= 2.7, < 4.0)
42
+ lumberjack (~> 1.0)
43
+ nenv (~> 0.1)
44
+ notiffany (~> 0.0)
45
+ pry (>= 0.9.12)
46
+ shellany (~> 0.0)
47
+ thor (>= 0.18.1)
48
+ guard-coffeescript (2.0.1)
49
+ coffee-script (>= 2.2.0)
50
+ guard (>= 2.1.0)
51
+ guard-compat (~> 1.1)
52
+ guard-compat (1.2.1)
53
+ guard-copy3 (0.5.1.3)
54
+ guard (~> 2.10)
55
+ guard-livereload (2.5.2)
56
+ em-websocket (~> 0.5)
57
+ guard (~> 2.8)
58
+ guard-compat (~> 1.0)
59
+ multi_json (~> 1.8)
60
+ guard-process (1.2.1)
61
+ guard-compat (~> 1.2, >= 1.2.1)
62
+ spoon (~> 0.0.1)
63
+ guard-rack (2.2.0)
64
+ ffi
65
+ guard (~> 2.3)
66
+ spoon
67
+ haml (4.0.7)
68
+ tilt
69
+ haml_coffee_assets (1.18.0)
70
+ coffee-script (>= 2)
71
+ sprockets (>= 2)
72
+ http_parser.rb (0.6.0)
73
+ jasmine (2.9.0)
74
+ jasmine-core (>= 2.9.0, < 3.0.0)
75
+ phantomjs
76
+ rack (>= 1.2.1)
77
+ rake
78
+ jasmine-core (2.9.1)
79
+ jsmin (1.0.1)
80
+ listen (3.1.5)
81
+ rb-fsevent (~> 0.9, >= 0.9.4)
82
+ rb-inotify (~> 0.9, >= 0.9.7)
83
+ ruby_dep (~> 1.2)
84
+ lumberjack (1.0.12)
85
+ method_source (0.9.0)
86
+ multi_json (1.13.1)
87
+ nenv (0.3.0)
88
+ notiffany (0.1.1)
89
+ nenv (~> 0.1)
90
+ shellany (~> 0.0)
91
+ phantomjs (2.1.1.0)
92
+ pry (0.11.3)
93
+ coderay (~> 1.1.0)
94
+ method_source (~> 0.9.0)
95
+ rack (1.6.8)
96
+ rack-protection (1.5.3)
97
+ rack
98
+ rack-test (0.8.2)
99
+ rack (>= 1.0, < 3)
100
+ rake (10.5.0)
101
+ rb-fsevent (0.10.2)
102
+ rb-inotify (0.9.10)
103
+ ffi (>= 0.5.0, < 2)
104
+ ruby_dep (1.5.0)
105
+ shellany (0.0.1)
106
+ sinatra (1.4.8)
107
+ rack (~> 1.5)
108
+ rack-protection (~> 1.4)
109
+ tilt (>= 1.3, < 3)
110
+ sinatra-assetpack (0.3.5)
111
+ jsmin
112
+ rack-test
113
+ sinatra
114
+ tilt (>= 1.3.0, < 2.0)
115
+ sinatra-backbone-2 (0.1.1)
116
+ sinatra
117
+ spoon (0.0.6)
118
+ ffi
119
+ sprockets (3.7.1)
120
+ concurrent-ruby (~> 1.0)
121
+ rack (> 1, < 3)
122
+ stylus (1.0.2)
123
+ execjs
124
+ stylus-source
125
+ stylus-source (0.54.5)
126
+ thor (0.20.0)
127
+ tilt (1.4.1)
128
+ uglifier (4.1.5)
129
+ execjs (>= 0.3.0, < 3)
130
+
131
+ PLATFORMS
132
+ ruby
133
+
134
+ DEPENDENCIES
135
+ ela!
136
+ guard-copy3
137
+
138
+ BUNDLED WITH
139
+ 1.16.0
data/Guardfile ADDED
@@ -0,0 +1,25 @@
1
+ group :development do
2
+ options = {
3
+ input: 'app/js',
4
+ output: 'dist/app_js',
5
+ all_on_start: true,
6
+ patterns: [/^app\/js\/(.+)\.coffee$/]
7
+ }
8
+ guard 'coffeescript', options do
9
+ options[:patterns].each { |pattern| watch(pattern) }
10
+ end
11
+
12
+ options = {
13
+ input: 'spec/coffeescripts/helpers',
14
+ output: 'dist/spec_helpers',
15
+ all_on_start: true,
16
+ patterns: [/^spec\/coffeescripts\/helpers\/(.+)\.coffee$/]
17
+ }
18
+ guard 'coffeescript', options do
19
+ options[:patterns].each { |pattern| watch(pattern) }
20
+ end
21
+
22
+ guard :copy3, from: 'app/js', to: 'dist/app_js' do
23
+ watch(%r{^app\/js\/.+\.js$})
24
+ end
25
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,205 @@
1
+ //////////////////////////////////////////////////////////////////////
2
+
3
+ The following files are licensed under the SIL OFL 1.1
4
+ (http://scripts.sil.org/OFL):
5
+
6
+ - app/fonts/fontawesome-webfont.eot
7
+ - app/fonts/fontawesome-webfont.svg
8
+ - app/fonts/fontawesome-webfont.ttf
9
+ - app/fonts/fontawesome-webfont.woff
10
+
11
+ //////////////////////////////////////////////////////////////////////
12
+
13
+ The following files are licensed under the Apache License 2.0
14
+ (http://www.apache.org/licenses/LICENSE-2.0):
15
+
16
+ - app/fonts/Roboto-Italic-webfont.eot
17
+ - app/fonts/Roboto-Italic-webfont.svg
18
+ - app/fonts/Roboto-Italic-webfont.ttf
19
+ - app/fonts/Roboto-Italic-webfont.woff
20
+ - app/fonts/Roboto-LightItalic-webfont.eot
21
+ - app/fonts/Roboto-LightItalic-webfont.svg
22
+ - app/fonts/Roboto-LightItalic-webfont.ttf
23
+ - app/fonts/Roboto-LightItalic-webfont.woff
24
+ - app/fonts/Roboto-Light-webfont.eot
25
+ - app/fonts/Roboto-Light-webfont.svg
26
+ - app/fonts/Roboto-Light-webfont.ttf
27
+ - app/fonts/Roboto-Light-webfont.woff
28
+ - app/fonts/Roboto-MediumItalic-webfont.eot
29
+ - app/fonts/Roboto-MediumItalic-webfont.svg
30
+ - app/fonts/Roboto-MediumItalic-webfont.ttf
31
+ - app/fonts/Roboto-MediumItalic-webfont.woff
32
+ - app/fonts/Roboto-Medium-webfont.eot
33
+ - app/fonts/Roboto-Medium-webfont.svg
34
+ - app/fonts/Roboto-Medium-webfont.ttf
35
+ - app/fonts/Roboto-Medium-webfont.woff
36
+ - app/fonts/Roboto-Regular-webfont.eot
37
+ - app/fonts/Roboto-Regular-webfont.svg
38
+ - app/fonts/Roboto-Regular-webfont.ttf
39
+ - app/fonts/Roboto-Regular-webfont.woff
40
+ - app/fonts/Roboto-ThinItalic-webfont.eot
41
+ - app/fonts/Roboto-ThinItalic-webfont.svg
42
+ - app/fonts/Roboto-ThinItalic-webfont.ttf
43
+ - app/fonts/Roboto-ThinItalic-webfont.woff
44
+ - app/fonts/Roboto-Thin-webfont.eot
45
+ - app/fonts/Roboto-Thin-webfont.svg
46
+ - app/fonts/Roboto-Thin-webfont.ttf
47
+ - app/fonts/Roboto-Thin-webfont.woff
48
+ - app/js/vendor/mathjax/jax/input/TeX/config.js
49
+ - app/js/vendor/mathjax/jax/input/TeX/jax.js
50
+ - app/js/vendor/mathjax/jax/element/mml/jax.js
51
+ - app/js/vendor/mathjax/jax/element/mml/optable/GreekAndCoptic.js
52
+ - app/js/vendor/mathjax/jax/element/mml/optable/BasicLatin.js
53
+ - app/js/vendor/mathjax/jax/element/mml/optable/MiscTechnical.js
54
+ - app/js/vendor/mathjax/jax/element/mml/optable/CombDiactForSymbols.js
55
+ - app/js/vendor/mathjax/jax/element/mml/optable/Dingbats.js
56
+ - app/js/vendor/mathjax/jax/element/mml/optable/CombDiacritMarks.js
57
+ - app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js
58
+ - app/js/vendor/mathjax/jax/element/mml/optable/LetterlikeSymbols.js
59
+ - app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsA.js
60
+ - app/js/vendor/mathjax/jax/element/mml/optable/GeometricShapes.js
61
+ - app/js/vendor/mathjax/jax/element/mml/optable/MathOperators.js
62
+ - app/js/vendor/mathjax/jax/element/mml/optable/Latin1Supplement.js
63
+ - app/js/vendor/mathjax/jax/element/mml/optable/GeneralPunctuation.js
64
+ - app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js
65
+ - app/js/vendor/mathjax/jax/element/mml/optable/SpacingModLetters.js
66
+ - app/js/vendor/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js
67
+ - app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsB.js
68
+ - app/js/vendor/mathjax/jax/element/mml/optable/SuppMathOperators.js
69
+ - app/js/vendor/mathjax/jax/element/mml/optable/Arrows.js
70
+ - app/js/vendor/mathjax/jax/output/CommonHTML/config.js
71
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js
72
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/ms.js
73
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js
74
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/maction.js
75
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/multiline.js
76
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/menclose.js
77
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mglyph.js
78
+ - app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mtable.js
79
+ - app/js/vendor/mathjax/jax/output/CommonHTML/jax.js
80
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js
81
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js
82
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js
83
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js
84
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js
85
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js
86
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js
87
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js
88
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js
89
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js
90
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js
91
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js
92
+ - app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js
93
+ - app/js/vendor/mathjax/MathJax.js
94
+ - app/js/vendor/mathjax/extensions/tex2jax.js
95
+ - app/js/vendor/mathjax/extensions/MathEvents.js
96
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot
97
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot
98
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot
99
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot
100
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot
101
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot
102
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot
103
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot
104
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot
105
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot
106
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot
107
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot
108
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot
109
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot
110
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot
111
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot
112
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot
113
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot
114
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot
115
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot
116
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot
117
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff
118
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff
119
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff
120
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff
121
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff
122
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff
123
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff
124
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff
125
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff
126
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff
127
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff
128
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff
129
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff
130
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff
131
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff
132
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff
133
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff
134
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff
135
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff
136
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff
137
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg
138
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg
139
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg
140
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg
141
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg
142
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg
143
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg
144
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg
145
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg
146
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg
147
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg
148
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg
149
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg
150
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg
151
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg
152
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg
153
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg
154
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg
155
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg
156
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg
157
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg
158
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf
159
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf
160
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf
161
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf
162
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf
163
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf
164
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf
165
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf
166
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf
167
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf
168
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf
169
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf
170
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf
171
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf
172
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf
173
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf
174
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf
175
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf
176
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf
177
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf
178
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf
179
+ - app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf
180
+
181
+ //////////////////////////////////////////////////////////////////////
182
+
183
+ All other files are licensed under the MIT License (MIT):
184
+
185
+ Copyright (c) 2017 velaluqa GmbH
186
+
187
+ Permission is hereby granted, free of charge, to any person obtaining a copy
188
+ of this software and associated documentation files (the "Software"), to deal
189
+ in the Software without restriction, including without limitation the rights
190
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
191
+ copies of the Software, and to permit persons to whom the Software is
192
+ furnished to do so, subject to the following conditions:
193
+
194
+ The above copyright notice and this permission notice shall be included in
195
+ all copies or substantial portions of the Software.
196
+
197
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
198
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
199
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
200
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
201
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
202
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
203
+ THE SOFTWARE.
204
+
205
+ //////////////////////////////////////////////////////////////////////
data/README.de.md ADDED
@@ -0,0 +1,195 @@
1
+ # ela.js E-Learning-App Framework
2
+
3
+ ela.js ist JavaScript-Framework und Buildumgebung zur Entwicklung von
4
+ HTML5 E-Learning-Apps. Apps visualisieren typischerweise jeweils
5
+ komplexe fachliche Zusammenhänge graphisch.
6
+
7
+ ## Features
8
+
9
+ Die Apps sind vollständig nutzbar auf allen Geräten von Smartphone bis
10
+ Desktop.
11
+
12
+ Die Übersichtsseite listet die einzelnen Apps gruppiert in Kacheln
13
+ auf. Die skizzierten Graphen bieten einen hohen Wiedererkennungswert.
14
+ Eine Suchfunktion steht zur Verfügung.
15
+
16
+ Die einzelnen Apps bestehen aus einem großen Darstellungsbereich und
17
+ einem oder mehreren Asides. Die Nutzung des Darstellungsbereichs
18
+ geschieht von App zu App sehr flexibel - die Screenshots (s.u.) geben
19
+ einen Überblick, was bisher umgesetzt wurde.
20
+
21
+ Die Asides verwalten alle Arten von Einstellungsmöglichkeiten für den
22
+ Darstellungsbereich übersichtlich. Typischerweise gibt es zum Beispiel
23
+ ein Aside, in dem verschiedene Kurven aus- und abgewählt werden können
24
+ sowie ein Aside, in dem Berechnungsparameter verändert werden können.
25
+ Die Aktualisierung des Darstellungsbereichs erfolgt live.
26
+
27
+ Die Möglichkeiten sind auch hier sehr flexibel. Es ist beispielsweise
28
+ auch möglich, über Asides Entitäten wie verschiedene Flugzeugtypen zu
29
+ verwalten und auszuwählen, die der Darstellung zugrunde liegen (siehe
30
+ Screenshots).
31
+
32
+ Die Share-Funktionalität ermöglicht es, einen Link zu erstellen, der
33
+ die aktuelle Ansicht und Parameter enthält, sodass beim Öffnen des
34
+ Links exakt derselbe Zustand wiederhergestellt wird.
35
+
36
+ ## Screenshots
37
+
38
+ ![](screenshots/overview.tablet.png)
39
+
40
+ ![](screenshots/subapps-and-curves-aside.tablet.png)
41
+
42
+ ![](screenshots/airplanes.tablet.png)
43
+
44
+ ![](screenshots/parameters-aside-1.tablet.png)
45
+
46
+ ![](screenshots/parameters-aside-2.tablet.png)
47
+
48
+ ![](screenshots/help.tablet.png)
49
+
50
+ ![](screenshots/airplaneInternalLoads-fuselage.tablet.png)
51
+
52
+ ![](screenshots/airplaneInternalLoads-wing.tablet.png)
53
+
54
+ ![](screenshots/buckling.tablet.png)
55
+
56
+ ![](screenshots/cabinSlendernessRatio.tablet.png)
57
+
58
+ ![](screenshots/laminateDeformation.tablet.png)
59
+
60
+ ![](screenshots/mohrsCircle.tablet.png)
61
+
62
+ ![](screenshots/planeElasticityProblems.tablet.png)
63
+
64
+ ![](screenshots/thrustMatching.tablet.png)
65
+
66
+ ## Installation
67
+
68
+ Da es sich um eine Web-Applikation ohne Backend handelt, kann eine
69
+ beliebige HTTP-Server-Software zur Bereitstellung verwendet werden. Es
70
+ werden serverseitig keine weiteren Technologien benötigt.
71
+
72
+ Ruby, Bundler und Node.js vorausgesetzt sind folgende Schritte zum
73
+ Erstellen des `public`-Ordners notwendig:
74
+
75
+ ```
76
+ npm install nib poised stylus
77
+ bundle install
78
+ bundle exec rake build
79
+ ```
80
+
81
+ Kopieren Sie nun einfach den `public`-Ordner in ein beliebiges
82
+ Verzeichnis auf Ihrem Server, das von der HTTP-Server-Software
83
+ ausgeliefert wird. Die HTTP-Server-Software sollte so konfiguriert
84
+ sein, dass `index.html`-Dateien automatisch geladen werden, wenn der
85
+ Ordner über HTTP aufgerufen wird. Damit ist die Installation komplett.
86
+
87
+ ## Konfiguration und Modifikationen
88
+
89
+ ### App-Hilfen hinzufügen/editieren
90
+
91
+ Die Hilfe-Texte befinden sich im `/help/` und haben den Namen der
92
+ jeweiligen App mit der Dateiendung `.md.txt`.
93
+
94
+ Unterschiedliche Apps werden mit einem "Hash-Pfad" aufgerufen. Wird
95
+ die Aliasing-App aufgerufen, endet die URL in der Adressleiste des
96
+ Browsers mit `#app/aliasing`. Die dazugehörige Hilfetext-Datei muss
97
+ dann in `help/aliasing.md.txt` gespeichert werden.
98
+
99
+ Bei Sub-Apps hat der Hash-Pfad beispielsweise das Format
100
+ `#app/airplaneInternalLoads/wing`. In diesem Fall werden die
101
+ untergliedernden Slashes durch Unterstriche ersetzt und der
102
+ resultierende Pfad für die Hilfetext-Datei ist im Beispiel
103
+ `help/airplaneInternalLoads_wing.md.txt`.
104
+
105
+ Die Hilfetext-Datei, die von der Übersichtsseite aus erreichbar ist,
106
+ muss `about.md.txt` heißen.
107
+
108
+ Für die Bearbeitung dieser Texte empfehlen wir
109
+ [StackEdit](https://stackedit.io/). Dieser zeigt bei der Bearbeitung
110
+ live die HTML-Darstellung an, wie sie dann auch in der App aussehen
111
+ wird.
112
+
113
+ ### Default-Werte anpassen
114
+
115
+ Sämtliche Werte der App sind in die separate Datei
116
+ `settings.default.yml` im YAML-Format ausgelagert. Diese Datei darf
117
+ allerdings nicht verändert werden, weil Veränderungen beim nächsten
118
+ App-Update dann verloren gehen würden. Um Werte anzupassen, muss im
119
+ selben Ordner eine Datei mit dem Namen `settings.default.yml.txt`
120
+ angelegt werden, mit der einzelne Werte überschrieben werden können.
121
+ Diese Datei sollte nur genau die Werte überschreiben, die auch
122
+ tatsächlich geändert werden sollen.
123
+
124
+ Beispiel einer `settings.overwrite.yml.txt`-Datei:
125
+
126
+ ```
127
+ directOperatingCosts:
128
+ airplanes:
129
+ A 300 B4-200:
130
+ speed: 855
131
+ ILR Super Aircraft:
132
+ maxTakeOffMass: 165000
133
+ maxFuelMass: 59646
134
+ operationEmptyMass: 80640
135
+ maxPayload: 45360
136
+ maxRange: 8412
137
+ speed: 2300
138
+ engineCount: 6
139
+ slst: 233
140
+ engine: 6 x 233kN CF6-50C2
141
+ reference: ILR12345
142
+ beamSectionProperties:
143
+ zProfile:
144
+ defaults:
145
+ h: 12.5
146
+ ```
147
+
148
+ Im Kopf der Datei `settings.default.yml` ist beschrieben, wie die
149
+ Einstellungen pro App strukturiert sind und welche Einstellungen
150
+ möglich sind.
151
+
152
+ ### Labels anpassen
153
+
154
+ Sämtliche Labels der App sind in die separate Datei
155
+ `labels.default.yml.txt` im YAML-Format ausgelagert. Diese Datei darf
156
+ allerdings nicht verändert werden, weil Veränderungen beim nächsten
157
+ App-Update dann verloren gehen würden. Um Labels anzupassen, muss im
158
+ selben Ordner eine Datei mit dem Namen `labels.overwrite.yml.txt`
159
+ angelegt werden, mit der einzelne Werte überschrieben werden können.
160
+ Diese Datei sollte nur genau die Werte überschrieben, die auch
161
+ tatsächlich geändert werden sollen.
162
+
163
+ Beispiel einer `labels.overwrite.yml.txt`-Datei:
164
+
165
+ ```
166
+ airplaneInternalLoads:
167
+ fuselage:
168
+ shortTitle: FLL
169
+ mohrsCircle:
170
+ shortTitle: Mohr's Circus
171
+ ```
172
+
173
+ ## Entwicklung
174
+
175
+ Beim Entwickeln liefert Rack (gestarted von Guard) die kompilierten
176
+ Dateien aus:
177
+
178
+ ```
179
+ npm install nib poised stylus
180
+ bundle install
181
+ bundle exec guard
182
+ ```
183
+
184
+ Der Zugriff erfolgt über http://localhost:9292. Parallel wird auch ein
185
+ Jasmine-Server zur Live-Ausführung der Tests gestartet und steht unter
186
+ http://localhost:8888 zur Verfügung.
187
+
188
+ ## Credits
189
+
190
+ Dieses Framework wurde ursprünglich zur Unterstützung der Lehre am
191
+ Fachgebiet Luftfahrzeugbau und Leichtbau am Institut für Luft- und
192
+ Raumfahrt an der Technischen Universität Berlin entwickelt.
193
+
194
+ Die Entwicklung der Apps wurde gefördert vom Bundesministerium für
195
+ Bildung und Forschung.