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.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/.gitlab-ci.yml +23 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +139 -0
- data/Guardfile +25 -0
- data/LICENSE.txt +205 -0
- data/README.de.md +195 -0
- data/README.md +66 -0
- data/Rakefile +96 -0
- data/app/css/screen.styl +425 -0
- data/app/css/vendor/stackedit.styl +140 -0
- data/app/fonts/Roboto-Italic-webfont.eot +0 -0
- data/app/fonts/Roboto-Italic-webfont.svg +642 -0
- data/app/fonts/Roboto-Italic-webfont.ttf +0 -0
- data/app/fonts/Roboto-Italic-webfont.woff +0 -0
- data/app/fonts/Roboto-Light-webfont.eot +0 -0
- data/app/fonts/Roboto-Light-webfont.svg +641 -0
- data/app/fonts/Roboto-Light-webfont.ttf +0 -0
- data/app/fonts/Roboto-Light-webfont.woff +0 -0
- data/app/fonts/Roboto-LightItalic-webfont.eot +0 -0
- data/app/fonts/Roboto-LightItalic-webfont.svg +641 -0
- data/app/fonts/Roboto-LightItalic-webfont.ttf +0 -0
- data/app/fonts/Roboto-LightItalic-webfont.woff +0 -0
- data/app/fonts/Roboto-Medium-webfont.eot +0 -0
- data/app/fonts/Roboto-Medium-webfont.svg +593 -0
- data/app/fonts/Roboto-Medium-webfont.ttf +0 -0
- data/app/fonts/Roboto-Medium-webfont.woff +0 -0
- data/app/fonts/Roboto-MediumItalic-webfont.eot +0 -0
- data/app/fonts/Roboto-MediumItalic-webfont.svg +642 -0
- data/app/fonts/Roboto-MediumItalic-webfont.ttf +0 -0
- data/app/fonts/Roboto-MediumItalic-webfont.woff +0 -0
- data/app/fonts/Roboto-Regular-webfont.eot +0 -0
- data/app/fonts/Roboto-Regular-webfont.svg +621 -0
- data/app/fonts/Roboto-Regular-webfont.ttf +0 -0
- data/app/fonts/Roboto-Regular-webfont.woff +0 -0
- data/app/fonts/Roboto-Thin-webfont.eot +0 -0
- data/app/fonts/Roboto-Thin-webfont.svg +631 -0
- data/app/fonts/Roboto-Thin-webfont.ttf +0 -0
- data/app/fonts/Roboto-Thin-webfont.woff +0 -0
- data/app/fonts/Roboto-ThinItalic-webfont.eot +0 -0
- data/app/fonts/Roboto-ThinItalic-webfont.svg +631 -0
- data/app/fonts/Roboto-ThinItalic-webfont.ttf +0 -0
- data/app/fonts/Roboto-ThinItalic-webfont.woff +0 -0
- data/app/fonts/droid_sans_regular.typeface.svg +1 -0
- data/app/fonts/fontawesome-webfont.eot +0 -0
- data/app/fonts/fontawesome-webfont.svg +2671 -0
- data/app/fonts/fontawesome-webfont.ttf +0 -0
- data/app/fonts/fontawesome-webfont.woff +0 -0
- data/app/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/js/lib/application.coffee +83 -0
- data/app/js/lib/bootstrap_data.coffee +70 -0
- data/app/js/lib/collections/00_limited_collection.coffee +85 -0
- data/app/js/lib/collections/curves.coffee +3 -0
- data/app/js/lib/collections/named_object_collection.coffee +7 -0
- data/app/js/lib/mathjaxConfig.coffee +241 -0
- data/app/js/lib/models/app.coffee +58 -0
- data/app/js/lib/models/base_app.coffee +62 -0
- data/app/js/lib/models/base_app_model.coffee +61 -0
- data/app/js/lib/models/base_calculator.coffee +212 -0
- data/app/js/lib/models/base_subapp_container.coffee +35 -0
- data/app/js/lib/models/curve.coffee +179 -0
- data/app/js/lib/router.coffee +26 -0
- data/app/js/lib/views/app.coffee +56 -0
- data/app/js/lib/views/base_app.coffee +274 -0
- data/app/js/lib/views/base_aside.coffee +9 -0
- data/app/js/lib/views/base_graph.coffee +477 -0
- data/app/js/lib/views/base_subapp_container.coffee +44 -0
- data/app/js/lib/views/canvas.coffee +73 -0
- data/app/js/lib/views/curve_graph.coffee +163 -0
- data/app/js/lib/views/curves_aside.coffee +21 -0
- data/app/js/lib/views/curves_list_item.coffee +8 -0
- data/app/js/lib/views/grouped_parameters_aside.coffee +14 -0
- data/app/js/lib/views/headup.coffee +15 -0
- data/app/js/lib/views/help.coffee +86 -0
- data/app/js/lib/views/interpolated_graph.coffee +281 -0
- data/app/js/lib/views/legend.coffee +138 -0
- data/app/js/lib/views/legend_handler.coffee +51 -0
- data/app/js/lib/views/overview.coffee +85 -0
- data/app/js/lib/views/overview_tile.coffee +18 -0
- data/app/js/lib/views/parameters_aside.coffee +12 -0
- data/app/js/lib/views/three_graph.coffee +92 -0
- data/app/js/vendor/Markdown.Converter.js +1519 -0
- data/app/js/vendor/Markdown.Extra.js +874 -0
- data/app/js/vendor/Markdown.Toc.coffee +79 -0
- data/app/js/vendor/backbone-1.3.3.min.js +2 -0
- data/app/js/vendor/backbone-validation-0.11.5.js +8 -0
- data/app/js/vendor/backbone.poised/form.coffee +156 -0
- data/app/js/vendor/backbone.poised/form/anchor.coffee +26 -0
- data/app/js/vendor/backbone.poised/form/base_control.coffee +42 -0
- data/app/js/vendor/backbone.poised/form/linked_control.coffee +79 -0
- data/app/js/vendor/backbone.poised/form/linked_number_control.coffee +27 -0
- data/app/js/vendor/backbone.poised/form/linked_range_control.coffee +53 -0
- data/app/js/vendor/backbone.poised/form/linked_select_control.coffee +18 -0
- data/app/js/vendor/backbone.poised/form/linked_string_control.coffee +27 -0
- data/app/js/vendor/backbone.poised/form/number_control.coffee +25 -0
- data/app/js/vendor/backbone.poised/form/range_control.coffee +48 -0
- data/app/js/vendor/backbone.poised/form/select_control.coffee +16 -0
- data/app/js/vendor/backbone.poised/form/selectbox.coffee +78 -0
- data/app/js/vendor/backbone.poised/form/slider.coffee +109 -0
- data/app/js/vendor/backbone.poised/form/string_control.coffee +23 -0
- data/app/js/vendor/backbone.poised/form/submit_control.coffee +39 -0
- data/app/js/vendor/backbone.poised/form/textarea.coffee +36 -0
- data/app/js/vendor/backbone.poised/form/textfield.coffee +86 -0
- data/app/js/vendor/backbone.poised/form/value.coffee +33 -0
- data/app/js/vendor/backbone.poised/form/value_control.coffee +15 -0
- data/app/js/vendor/backbone.poised/linked_form.coffee +43 -0
- data/app/js/vendor/backbone.poised/list.coffee +97 -0
- data/app/js/vendor/backbone.poised/list/add_button.coffee +16 -0
- data/app/js/vendor/backbone.poised/list/anchor.coffee +32 -0
- data/app/js/vendor/backbone.poised/list/item.coffee +68 -0
- data/app/js/vendor/backbone.poised/list/searchfield.coffee +26 -0
- data/app/js/vendor/backbone.poised/list/selectable_item.coffee +65 -0
- data/app/js/vendor/backbone.poised/patches.coffee +6 -0
- data/app/js/vendor/backbone.poised/string_mixin.coffee +23 -0
- data/app/js/vendor/backbone.poised/underscore_ext.coffee +2 -0
- data/app/js/vendor/backbone.poised/view.coffee +59 -0
- data/app/js/vendor/gaussianElimination.coffee +40 -0
- data/app/js/vendor/hammer-2.0.8.min.js +7 -0
- data/app/js/vendor/jquery-3.1.1.min.js +4 -0
- data/app/js/vendor/jquery.after-transition.coffee +20 -0
- data/app/js/vendor/jquery.backbone-hammer.coffee +28 -0
- data/app/js/vendor/jquery.keyboard-modifiers.coffee +22 -0
- data/app/js/vendor/jquery.mark-5.2.3.min.js +7 -0
- data/app/js/vendor/jquery.scrollTo-2.1.2.min.js +7 -0
- data/app/js/vendor/js-yaml-3.4.3.min.js +3 -0
- data/app/js/vendor/markup_text.coffee +95 -0
- data/app/js/vendor/mathjax/MathJax.js +19 -0
- data/app/js/vendor/mathjax/extensions/MathEvents.js +19 -0
- data/app/js/vendor/mathjax/extensions/tex2jax.js +19 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg +765 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg +136 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg +134 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg +319 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg +309 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg +656 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg +374 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg +659 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg +331 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg +331 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg +330 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg +280 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg +245 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg +211 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg +160 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg +110 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg +109 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg +49 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg +102 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg +322 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg +39 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff +0 -0
- data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff +0 -0
- data/app/js/vendor/mathjax/jax/element/mml/jax.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/Arrows.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/BasicLatin.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiacritMarks.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiactForSymbols.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/Dingbats.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/GeneralPunctuation.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/GeometricShapes.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/GreekAndCoptic.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/Latin1Supplement.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/LetterlikeSymbols.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/MathOperators.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/MiscTechnical.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/SpacingModLetters.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/SuppMathOperators.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsA.js +19 -0
- data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsB.js +19 -0
- data/app/js/vendor/mathjax/jax/input/TeX/config.js +19 -0
- data/app/js/vendor/mathjax/jax/input/TeX/jax.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/maction.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/menclose.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mglyph.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/ms.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mtable.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/multiline.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/config.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js +19 -0
- data/app/js/vendor/mathjax/jax/output/CommonHTML/jax.js +19 -0
- data/app/js/vendor/modernizr-custom-3.3.1.min.js +3 -0
- data/app/js/vendor/persistjs-git.js +1136 -0
- data/app/js/vendor/poised/poised.general.coffee +21 -0
- data/app/js/vendor/poised/poised.tabs.coffee +31 -0
- data/app/js/vendor/poised/utils.coffee +11 -0
- data/app/js/vendor/request_animation_frame.coffee +19 -0
- data/app/js/vendor/three-82.min.js +15 -0
- data/app/js/vendor/three-CanvasRenderer-82.js +1118 -0
- data/app/js/vendor/three-Projector-82.js +929 -0
- data/app/js/vendor/underscore-1.8.3.min.js +6 -0
- data/app/js/vendor/webfontloader-1.6.26.min.js +33 -0
- data/app/views/aliasing/legend.jst.hamlc +6 -0
- data/app/views/composites/composites_list_item_label.jst.hamlc +3 -0
- data/app/views/composites/import_composites_aside.jst.hamlc +6 -0
- data/app/views/composites/mix_preset_list_item_label.jst.hamlc +8 -0
- data/app/views/composites/share_aside.jst.hamlc +7 -0
- data/app/views/doc/airplanes_list_item_label.jst.hamlc +3 -0
- data/app/views/doc/import_airplanes_aside.jst.hamlc +6 -0
- data/app/views/doc/share_aside.jst.hamlc +7 -0
- data/app/views/general/app.jst.hamlc +42 -0
- data/app/views/general/curves_list_item_label.jst.hamlc +5 -0
- data/app/views/general/help.jst.hamlc +7 -0
- data/app/views/general/tabs.jst.hamlc +6 -0
- data/app/views/index.haml +24 -0
- data/app/views/overview/app.jst.hamlc +7 -0
- data/app/views/overview/tile.jst.hamlc +4 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/ela.gemspec +50 -0
- data/exe/ela +59 -0
- data/lib/ela.rb +8 -0
- data/lib/ela/jasmine.rb +87 -0
- data/lib/ela/server.rb +136 -0
- data/lib/ela/utils.rb +131 -0
- data/lib/ela/version.rb +3 -0
- data/package-lock.json +899 -0
- data/package.json +11 -0
- data/support/project/Guardfile +64 -0
- data/support/project/jasmine.yml +3 -0
- data/support/server.ru +5 -0
- 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
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
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
|
+

|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+

|
|
43
|
+
|
|
44
|
+

|
|
45
|
+
|
|
46
|
+

|
|
47
|
+
|
|
48
|
+

|
|
49
|
+
|
|
50
|
+

|
|
51
|
+
|
|
52
|
+

|
|
53
|
+
|
|
54
|
+

|
|
55
|
+
|
|
56
|
+

|
|
57
|
+
|
|
58
|
+

|
|
59
|
+
|
|
60
|
+

|
|
61
|
+
|
|
62
|
+

|
|
63
|
+
|
|
64
|
+

|
|
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.
|