keppler 2.1.17 → 2.1.18
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 +4 -4
- data/Gemfile.lock +2 -2
- data/installer/core/.gitignore +88 -0
- data/installer/core/app/views/admin/layouts/_sidebar.html.haml +2 -2
- data/installer/core/rockets/keppler_frontend/app/controllers/keppler_frontend/app/frontend_controller.rb +0 -1
- data/installer/core/rockets/keppler_frontend/app/models/keppler_frontend/view.rb +1 -1
- data/installer/core/rockets/keppler_frontend/config/data/views.yml +1 -1
- data/lib/keppler/version.rb +1 -1
- data/testing-with-2.1.18/.gitignore +88 -0
- data/testing-with-2.1.18/.ruby-version +1 -0
- data/testing-with-2.1.18/Gemfile +149 -0
- data/testing-with-2.1.18/Gemfile.lock +645 -0
- data/testing-with-2.1.18/Guardfile +18 -0
- data/testing-with-2.1.18/LICENSE +674 -0
- data/testing-with-2.1.18/README.md +134 -0
- data/testing-with-2.1.18/Rakefile +6 -0
- data/testing-with-2.1.18/_config.yml +1 -0
- data/testing-with-2.1.18/app/assets/images/.keep +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/astronauta_keppler.svg +123 -0
- data/testing-with-2.1.18/app/assets/images/admin/avatar_keppler.svg +100 -0
- data/testing-with-2.1.18/app/assets/images/admin/en.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/es.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/favicon.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/image_default.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/logo.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/logo2.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/profile-menu.jpg +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/search.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice-icon-orange.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice-icon.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice_white.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Cohete_nubes_new.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Home_Keppler.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Home_Keppler2.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/fondo.svg +19 -0
- data/testing-with-2.1.18/app/assets/images/app/keppler-front.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/slice-front.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/slice.png +0 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/application.coffee +25 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-colorpicker.js +1322 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/fileinput.js +4463 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/locales/LANG.js +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/locales/es.js +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/piexif.js +2471 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/piexif.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/purify.js +812 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/purify.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/sortable.js +1590 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/sortable.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/code_editor.js +94 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/comment/comment.js +209 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/comment/continuecomment.js +78 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/dialog/dialog.css +32 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/dialog/dialog.js +161 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/autorefresh.js +47 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/fullscreen.css +6 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/fullscreen.js +41 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/panel.js +123 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/placeholder.js +63 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/rulers.js +51 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/closebrackets.js +194 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/closetag.js +175 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/continuelist.js +89 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/matchbrackets.js +145 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/matchtags.js +66 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/trailingspace.js +27 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/brace-fold.js +105 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/comment-fold.js +59 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldcode.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldgutter.css +20 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldgutter.js +146 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/indent-fold.js +48 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/markdown-fold.js +49 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/xml-fold.js +184 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/anyword-hint.js +41 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/css-hint.js +60 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/html-hint.js +348 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/javascript-hint.js +157 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/show-hint.css +36 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/show-hint.js +433 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/sql-hint.js +299 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/xml-hint.js +110 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/loadmode.js +64 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/multiplex.js +131 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/overlay.js +90 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/simple.js +216 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/annotatescrollbar.js +122 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/scrollpastend.js +48 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/simplescrollbars.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/jump-to-line.js +49 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/match-highlighter.js +165 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/search.js +252 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/searchcursor.js +293 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/codemirror.js +9683 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/keymap/sublime.js +691 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/css.js +832 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/gss.html +103 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/index.html +75 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/less.html +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/scss.html +157 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/haml/haml.js +161 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/haml/index.html +79 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlembedded/index.html +60 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlmixed/htmlmixed.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlmixed/index.html +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/index.html +114 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/javascript.js +896 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/json-ld.html +72 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/typescript.html +61 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/ruby/index.html +183 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/ruby/ruby.js +296 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/vue/index.html +69 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/vue/vue.js +77 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/xml/index.html +61 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/xml/xml.js +402 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml-frontmatter/index.html +121 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +68 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml/index.html +80 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml/yaml.js +119 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/file_uploader.coffee +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/img_preview.js +32 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/jscolor.js +1855 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/main.coffee +58 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/notification.js +14 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/ruby_console.js +14 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sidebar.js +24 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sort.coffee +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/swal.js +39 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sweetalert2/delete-confirm.js +118 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sweetalert2/sweetalert2.all.min.js +2 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/switch.js +6 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/tooltips.coffee +4 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/upload_records.coffee +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/app/application.js.coffee +9 -0
- data/testing-with-2.1.18/app/assets/javascripts/app/google_analytics.js.coffee +5 -0
- data/testing-with-2.1.18/app/assets/javascripts/ckeditor/config.js +130 -0
- data/testing-with-2.1.18/app/assets/javascripts/errors/application.js.coffee +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/errors/errors.js +113 -0
- data/testing-with-2.1.18/app/assets/javascripts/vue_admin/index.js +111 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/application.scss +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/fileinput-rtl.scss +133 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/fileinput.scss +760 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer-fa/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer-fas/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/comment/comment.js +209 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/comment/continuecomment.js +78 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/dialog/dialog.css +32 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/dialog/dialog.js +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/autorefresh.js +47 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/fullscreen.css +6 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/fullscreen.js +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/panel.js +123 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/placeholder.js +63 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/rulers.js +51 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/closebrackets.js +194 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/closetag.js +175 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/continuelist.js +89 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/matchbrackets.js +145 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/matchtags.js +66 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/trailingspace.js +27 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/brace-fold.js +105 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/comment-fold.js +59 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldcode.js +152 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldgutter.css +20 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldgutter.js +146 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/indent-fold.js +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/markdown-fold.js +49 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/xml-fold.js +184 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/anyword-hint.js +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/css-hint.js +60 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/html-hint.js +348 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/javascript-hint.js +157 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/show-hint.css +36 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/show-hint.js +433 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/sql-hint.js +299 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/xml-hint.js +110 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/annotatescrollbar.js +122 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/scrollpastend.js +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/simplescrollbars.js +152 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/jump-to-line.js +49 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/match-highlighter.js +165 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/search.js +252 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/searchcursor.js +293 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/codemirror.css +366 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/theme/monokai.css +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/layouts/_footer.scss +5 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/layouts/_settings.scss +51 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_navbar.scss +187 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_sidebar.scss +207 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_turbolinks.scss +4 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/paginator/_paginator.scss +53 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/ZXuke1cDvLCKLDcimxB44_lu.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/boxicons.css +2918 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts.css +8 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.eot +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.ttf +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.woff +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.eot +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.svg +808 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.ttf +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.woff +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/icons.css +778 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_appearance.scss +5 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_bootstrap-colorpicker.scss +269 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_customize.scss +22 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_datepicker.scss +1086 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_devise.scss +189 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_files.scss +229 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_form.scss +190 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_index.scss +466 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_listing.scss +40 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_preloader.scss +224 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_rockets.scss +13 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_roles.scss +3 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_search.scss +244 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_show.scss +23 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_switchs.scss +143 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_themes.scss +45 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_timepicker.scss +14 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_user.scss +6 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_base.scss +65 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_mixins.scss +26 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_theme.scss +124 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_variables.scss +109 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/application.scss +30 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/base/_base_project.scss +17 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/base/_typography.scss +1 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_buttons.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_inputs.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_navbar.scss +21 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_container.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_footer.scss +15 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_header.scss +39 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/pages/_front.sass +83 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_bootstrap_override.scss +37 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_font_awesome.scss +2 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_keppler.scss +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_npogress.scss +2 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/utils/_mixins.scss +18 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/utils/_variables.scss +28 -0
- data/testing-with-2.1.18/app/assets/stylesheets/errors/application.scss +3 -0
- data/testing-with-2.1.18/app/assets/stylesheets/errors/errors.scss +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/vendor/admin-lte/_skin-blue.scss +141 -0
- data/testing-with-2.1.18/app/assets/stylesheets/vendor/sweetalert2/sweetalert2.scss +11 -0
- data/testing-with-2.1.18/app/controllers/admin/admin_controller.rb +95 -0
- data/testing-with-2.1.18/app/controllers/admin/meta_tags_controller.rb +118 -0
- data/testing-with-2.1.18/app/controllers/admin/permissions_controller.rb +55 -0
- data/testing-with-2.1.18/app/controllers/admin/rockets_controller.rb +95 -0
- data/testing-with-2.1.18/app/controllers/admin/roles_controller.rb +124 -0
- data/testing-with-2.1.18/app/controllers/admin/scripts_controller.rb +104 -0
- data/testing-with-2.1.18/app/controllers/admin/seos_controller.rb +31 -0
- data/testing-with-2.1.18/app/controllers/admin/settings_controller.rb +131 -0
- data/testing-with-2.1.18/app/controllers/admin/users_controller.rb +122 -0
- data/testing-with-2.1.18/app/controllers/app/app_controller.rb +38 -0
- data/testing-with-2.1.18/app/controllers/app/front_controller.rb +8 -0
- data/testing-with-2.1.18/app/controllers/application_controller.rb +151 -0
- data/testing-with-2.1.18/app/controllers/concerns/.keep +0 -0
- data/testing-with-2.1.18/app/controllers/concerns/devise_params.rb +33 -0
- data/testing-with-2.1.18/app/controllers/concerns/mailer_config.rb +37 -0
- data/testing-with-2.1.18/app/controllers/concerns/object_query.rb +50 -0
- data/testing-with-2.1.18/app/controllers/concerns/settings.rb +105 -0
- data/testing-with-2.1.18/app/controllers/devise/sessions_controller.rb +108 -0
- data/testing-with-2.1.18/app/controllers/errors_controller.rb +30 -0
- data/testing-with-2.1.18/app/helpers/admin_helper.rb +138 -0
- data/testing-with-2.1.18/app/helpers/application_helper.rb +33 -0
- data/testing-with-2.1.18/app/helpers/fronts_helper.rb +38 -0
- data/testing-with-2.1.18/app/helpers/rockets_helper.rb +8 -0
- data/testing-with-2.1.18/app/helpers/roles_helper.rb +5 -0
- data/testing-with-2.1.18/app/helpers/scaffolds_helper.rb +5 -0
- data/testing-with-2.1.18/app/inputs/keppler_boolean_input.rb +52 -0
- data/testing-with-2.1.18/app/inputs/keppler_file_input.rb +124 -0
- data/testing-with-2.1.18/app/mailers/.keep +0 -0
- data/testing-with-2.1.18/app/mailers/application_mailer.rb +42 -0
- data/testing-with-2.1.18/app/models/.keep +0 -0
- data/testing-with-2.1.18/app/models/appearance.rb +7 -0
- data/testing-with-2.1.18/app/models/application_record.rb +6 -0
- data/testing-with-2.1.18/app/models/concerns/.keep +0 -0
- data/testing-with-2.1.18/app/models/concerns/activity_history.rb +11 -0
- data/testing-with-2.1.18/app/models/concerns/clone_record.rb +14 -0
- data/testing-with-2.1.18/app/models/concerns/downloadable.rb +16 -0
- data/testing-with-2.1.18/app/models/concerns/searchable.rb +27 -0
- data/testing-with-2.1.18/app/models/concerns/sortable.rb +13 -0
- data/testing-with-2.1.18/app/models/concerns/uploadable.rb +13 -0
- data/testing-with-2.1.18/app/models/front.rb +5 -0
- data/testing-with-2.1.18/app/models/google_analytics_setting.rb +6 -0
- data/testing-with-2.1.18/app/models/meta_tag.rb +54 -0
- data/testing-with-2.1.18/app/models/permission.rb +6 -0
- data/testing-with-2.1.18/app/models/rocket.rb +105 -0
- data/testing-with-2.1.18/app/models/role.rb +134 -0
- data/testing-with-2.1.18/app/models/script.rb +21 -0
- data/testing-with-2.1.18/app/models/seo.rb +49 -0
- data/testing-with-2.1.18/app/models/setting.rb +19 -0
- data/testing-with-2.1.18/app/models/smtp_setting.rb +7 -0
- data/testing-with-2.1.18/app/models/social_account.rb +6 -0
- data/testing-with-2.1.18/app/models/user.rb +75 -0
- data/testing-with-2.1.18/app/policies/application_policy.rb +18 -0
- data/testing-with-2.1.18/app/policies/controller_policy.rb +59 -0
- data/testing-with-2.1.18/app/policies/meta_tag_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/permission_policy.rb +23 -0
- data/testing-with-2.1.18/app/policies/rocket_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/role_policy.rb +31 -0
- data/testing-with-2.1.18/app/policies/script_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/seo_policy.rb +23 -0
- data/testing-with-2.1.18/app/policies/setting_policy.rb +15 -0
- data/testing-with-2.1.18/app/policies/user_policy.rb +19 -0
- data/testing-with-2.1.18/app/services/admin/appearance_service.rb +49 -0
- data/testing-with-2.1.18/app/services/admin/git_handler.rb +28 -0
- data/testing-with-2.1.18/app/uploaders/attachment_uploader.rb +61 -0
- data/testing-with-2.1.18/app/uploaders/ckeditor_attachment_file_uploader.rb +38 -0
- data/testing-with-2.1.18/app/uploaders/ckeditor_picture_uploader.rb +49 -0
- data/testing-with-2.1.18/app/uploaders/template_uploader.rb +44 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_footer.html.haml +0 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_git_info.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_head.html.haml +7 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_keppler_boolean_script.haml +12 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_listing_preloader.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_messages.html.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_navigation.html.haml +59 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_preloader.html.haml +14 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_sidebar.html.haml +83 -0
- data/testing-with-2.1.18/app/views/admin/layouts/application.html.haml +23 -0
- data/testing-with-2.1.18/app/views/admin/layouts/index/remote_messages.js.haml +9 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_form.html.haml +35 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_listing.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/edit.html.haml +2 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/index.html.haml +69 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/new.html.haml +2 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/show.html.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/permissions/_switch.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/permissions/add.html.haml +95 -0
- data/testing-with-2.1.18/app/views/admin/permissions/create.html.haml +0 -0
- data/testing-with-2.1.18/app/views/admin/permissions/create.js.erb +2 -0
- data/testing-with-2.1.18/app/views/admin/permissions/show.js.erb +2 -0
- data/testing-with-2.1.18/app/views/admin/permissions/toggle_permissions.js.erb +6 -0
- data/testing-with-2.1.18/app/views/admin/rockets/_create_rocket.haml +61 -0
- data/testing-with-2.1.18/app/views/admin/rockets/_install_rocket.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/rockets/rockets.haml +54 -0
- data/testing-with-2.1.18/app/views/admin/roles/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/roles/_form.html.haml +27 -0
- data/testing-with-2.1.18/app/views/admin/roles/_listing.html.haml +42 -0
- data/testing-with-2.1.18/app/views/admin/roles/_switch.html.haml +24 -0
- data/testing-with-2.1.18/app/views/admin/roles/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/roles/index.html.haml +64 -0
- data/testing-with-2.1.18/app/views/admin/roles/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/roles/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/roles/show.html.haml +29 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_form.html.haml +30 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_listing.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/scripts/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/scripts/index.html.haml +70 -0
- data/testing-with-2.1.18/app/views/admin/scripts/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/scripts/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/scripts/show.html.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/seos/robots.html.haml +35 -0
- data/testing-with-2.1.18/app/views/admin/seos/sitemap.html.haml +36 -0
- data/testing-with-2.1.18/app/views/admin/settings/_form.html.haml +10 -0
- data/testing-with-2.1.18/app/views/admin/settings/components/_preview.html.haml +30 -0
- data/testing-with-2.1.18/app/views/admin/settings/edit.html.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_appearance.html.haml +64 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_basic_information.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_email_setting.html.haml +18 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_google_analytics_setting.html.haml +21 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_social_accounts.html.haml +43 -0
- data/testing-with-2.1.18/app/views/admin/users/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/users/_form.html.haml +45 -0
- data/testing-with-2.1.18/app/views/admin/users/_listing.html.haml +47 -0
- data/testing-with-2.1.18/app/views/admin/users/delete_avatar.js.haml +3 -0
- data/testing-with-2.1.18/app/views/admin/users/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/users/filter_by_role.js.erb +9 -0
- data/testing-with-2.1.18/app/views/admin/users/index.html.haml +69 -0
- data/testing-with-2.1.18/app/views/admin/users/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/users/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/users/show.html.haml +34 -0
- data/testing-with-2.1.18/app/views/app/front/index.html.haml +223 -0
- data/testing-with-2.1.18/app/views/app/front/message.haml +1 -0
- data/testing-with-2.1.18/app/views/app/layouts/_footer.html.haml +3 -0
- data/testing-with-2.1.18/app/views/app/layouts/_google_analytics.html.haml +13 -0
- data/testing-with-2.1.18/app/views/app/layouts/_head.html.haml +15 -0
- data/testing-with-2.1.18/app/views/app/layouts/_messages.html.haml +6 -0
- data/testing-with-2.1.18/app/views/app/layouts/_meta_tags.html.haml +40 -0
- data/testing-with-2.1.18/app/views/app/layouts/_navigation.html.haml +13 -0
- data/testing-with-2.1.18/app/views/app/layouts/_navigation_links.html.haml +6 -0
- data/testing-with-2.1.18/app/views/app/layouts/application.html.haml +10 -0
- data/testing-with-2.1.18/app/views/application_mailer/testing.html.haml +1 -0
- data/testing-with-2.1.18/app/views/devise/confirmations/new.html.erb +16 -0
- data/testing-with-2.1.18/app/views/devise/mailer/reset_password_instructions.html.haml +6 -0
- data/testing-with-2.1.18/app/views/devise/passwords/edit.html.haml +31 -0
- data/testing-with-2.1.18/app/views/devise/passwords/new.html.haml +27 -0
- data/testing-with-2.1.18/app/views/devise/registrations/edit.html.erb +48 -0
- data/testing-with-2.1.18/app/views/devise/registrations/new.html.erb +19 -0
- data/testing-with-2.1.18/app/views/devise/sessions/new.html.haml +35 -0
- data/testing-with-2.1.18/app/views/devise/shared/_links.html.erb +21 -0
- data/testing-with-2.1.18/app/views/errors/internal_server_error.html.haml +50 -0
- data/testing-with-2.1.18/app/views/errors/not_authorized.html.haml +76 -0
- data/testing-with-2.1.18/app/views/errors/not_found.html.haml +101 -0
- data/testing-with-2.1.18/app/views/errors/unprocessable.html.haml +50 -0
- data/testing-with-2.1.18/app/views/kaminari/_first_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_gap.html.haml +8 -0
- data/testing-with-2.1.18/app/views/kaminari/_last_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_next_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_page.html.haml +10 -0
- data/testing-with-2.1.18/app/views/kaminari/_paginator.html.haml +18 -0
- data/testing-with-2.1.18/app/views/kaminari/_prev_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/layouts/errors/_head.html.haml +3 -0
- data/testing-with-2.1.18/app/views/layouts/errors/application.html.haml +11 -0
- data/testing-with-2.1.18/app/views/layouts/mailers/mailer.html.haml +3 -0
- data/testing-with-2.1.18/app/views/layouts/mailers/mailer.text.haml +1 -0
- data/testing-with-2.1.18/app/views/layouts/templates/application.html.haml +1 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_create.html.haml +44 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_destroy.html.haml +15 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_update.html.haml +44 -0
- data/testing-with-2.1.18/app/views/public_activity/session/_create.html.haml +13 -0
- data/testing-with-2.1.18/app/views/public_activity/session/_destroy.html.haml +13 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_first_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_gap.html.haml +8 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_last_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_next_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_page.html.haml +10 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_paginator.html.haml +18 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_prev_page.html.haml +9 -0
- data/testing-with-2.1.18/bin/bundle +3 -0
- data/testing-with-2.1.18/bin/rails +4 -0
- data/testing-with-2.1.18/bin/rake +4 -0
- data/testing-with-2.1.18/bin/setup +29 -0
- data/testing-with-2.1.18/bin/spring +15 -0
- data/testing-with-2.1.18/bin/update +31 -0
- data/testing-with-2.1.18/bin/yarn +11 -0
- data/testing-with-2.1.18/config.ru +4 -0
- data/testing-with-2.1.18/config/application.rb +46 -0
- data/testing-with-2.1.18/config/attachments.yml +24 -0
- data/testing-with-2.1.18/config/boot.rb +7 -0
- data/testing-with-2.1.18/config/circleci/db_config.yml +51 -0
- data/testing-with-2.1.18/config/database.yml +25 -0
- data/testing-with-2.1.18/config/environment.rb +10 -0
- data/testing-with-2.1.18/config/environments/development.rb +61 -0
- data/testing-with-2.1.18/config/environments/production.rb +109 -0
- data/testing-with-2.1.18/config/environments/test.rb +45 -0
- data/testing-with-2.1.18/config/gaAuth/gauth_key.p12 +0 -0
- data/testing-with-2.1.18/config/initializers/assets.rb +14 -0
- data/testing-with-2.1.18/config/initializers/carrierwave.rb +12 -0
- data/testing-with-2.1.18/config/initializers/compression.rb +47 -0
- data/testing-with-2.1.18/config/initializers/cookies_serializer.rb +3 -0
- data/testing-with-2.1.18/config/initializers/date_formats.rb +2 -0
- data/testing-with-2.1.18/config/initializers/devise.rb +259 -0
- data/testing-with-2.1.18/config/initializers/filter_parameter_logging.rb +5 -0
- data/testing-with-2.1.18/config/initializers/inflections.rb +16 -0
- data/testing-with-2.1.18/config/initializers/keppler_configuration.rb +9 -0
- data/testing-with-2.1.18/config/initializers/mime_types.rb +6 -0
- data/testing-with-2.1.18/config/initializers/paginate_kaminari_configuration.rb +12 -0
- data/testing-with-2.1.18/config/initializers/ransack.rb +7 -0
- data/testing-with-2.1.18/config/initializers/rolify.rb +10 -0
- data/testing-with-2.1.18/config/initializers/route_traslator.rb +3 -0
- data/testing-with-2.1.18/config/initializers/session_store.rb +5 -0
- data/testing-with-2.1.18/config/initializers/simple_form.rb +170 -0
- data/testing-with-2.1.18/config/initializers/simple_form_bootstrap.rb +174 -0
- data/testing-with-2.1.18/config/initializers/simple_form_components.rb +61 -0
- data/testing-with-2.1.18/config/initializers/time_formats.rb +2 -0
- data/testing-with-2.1.18/config/initializers/wrap_parameters.rb +15 -0
- data/testing-with-2.1.18/config/jshint.yml +21 -0
- data/testing-with-2.1.18/config/locales/devise.en.yml +61 -0
- data/testing-with-2.1.18/config/locales/devise.es.yml +62 -0
- data/testing-with-2.1.18/config/locales/en.yml +477 -0
- data/testing-with-2.1.18/config/locales/es.yml +510 -0
- data/testing-with-2.1.18/config/locales/routes.en.yml +4 -0
- data/testing-with-2.1.18/config/locales/routes.es.yml +5 -0
- data/testing-with-2.1.18/config/locales/simple_form.en.yml +46 -0
- data/testing-with-2.1.18/config/locales/simple_form.es.yml +96 -0
- data/testing-with-2.1.18/config/locales/social_share_button.es.yml +10 -0
- data/testing-with-2.1.18/config/menu.yml +58 -0
- data/testing-with-2.1.18/config/permissions.yml +39 -0
- data/testing-with-2.1.18/config/puma.rb +56 -0
- data/testing-with-2.1.18/config/roles.yml +2 -0
- data/testing-with-2.1.18/config/routes.rb +191 -0
- data/testing-with-2.1.18/config/settings.yml +30 -0
- data/testing-with-2.1.18/config/sitemap.rb +30 -0
- data/testing-with-2.1.18/config/spring.rb +6 -0
- data/testing-with-2.1.18/db/migrate/20140812203549_devise_create_users.rb +50 -0
- data/testing-with-2.1.18/db/migrate/20140812210925_rolify_create_roles.rb +21 -0
- data/testing-with-2.1.18/db/migrate/20151221173228_create_activities.rb +23 -0
- data/testing-with-2.1.18/db/migrate/20160122201215_create_settings.rb +15 -0
- data/testing-with-2.1.18/db/migrate/20160126141856_create_smtp_settings.rb +15 -0
- data/testing-with-2.1.18/db/migrate/20160128131802_create_scripts.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20160128151351_create_google_analytics_settings.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20160128193740_create_social_accounts.rb +26 -0
- data/testing-with-2.1.18/db/migrate/20160201134918_create_meta_tags.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20160201210520_create_appearances.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20171225023933_create_scaffolds.rb +10 -0
- data/testing-with-2.1.18/db/migrate/20180503174351_create_permissions.rb +11 -0
- data/testing-with-2.1.18/db/migrate/20180717160308_create_keppler_frontend_views.keppler_frontend.rb +17 -0
- data/testing-with-2.1.18/db/migrate/20180730194655_create_keppler_frontend_themes.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180802184429_create_keppler_capsules_capsules.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180802184430_create_keppler_capsules_capsule_fields.keppler_capsules.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20180806192023_create_keppler_capsules_capsule_validations.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180806203410_create_keppler_frontend_partials.keppler_frontend.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180807204310_create_keppler_capsules_capsule_associations.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180813160624_create_keppler_languages_languages.keppler_languages.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180813160625_create_keppler_languages_fields.keppler_languages.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180818073305_create_active_storage_tables.active_storage.rb +26 -0
- data/testing-with-2.1.18/db/migrate/20180827120841_create_keppler_frontend_callback_functions.keppler_frontend.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180827154329_create_keppler_frontend_view_callbacks.keppler_frontend.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20180827154647_add_position_to_users_table.rb +5 -0
- data/testing-with-2.1.18/db/migrate/20180830153221_create_keppler_frontend_functions.keppler_frontend.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180830153222_create_keppler_frontend_parameters.keppler_frontend.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180904144238_create_seos.rb +11 -0
- data/testing-with-2.1.18/db/seeds.rb +162 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_core/config +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/editor/resources_editor.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/create_view.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/delete_view.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/delete_view.dia.autosave +0 -0
- data/testing-with-2.1.18/lib/generators/install_rocket/USAGE +44 -0
- data/testing-with-2.1.18/lib/generators/install_rocket/install_rocket_generator.rb +107 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/USAGE +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/keppler_add_module_generator.rb +324 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/controllers/controller.rb +106 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/models/model.rb +29 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/policies/policy.rb +11 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_description.haml +13 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_form.haml +49 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_listing.haml +58 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/edit.haml +1 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/index.haml +70 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/new.haml +1 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/reload.js.haml +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/show.haml +35 -0
- data/testing-with-2.1.18/lib/generators/keppler_delete_module/USAGE +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_delete_module/keppler_delete_module_generator.rb +305 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/keppler_front_generator.rb +139 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/templates/controllers/controller.rb +17 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/templates/views/template.html.haml +225 -0
- data/testing-with-2.1.18/lib/generators/keppler_relation/keppler_relation_generator.rb +219 -0
- data/testing-with-2.1.18/lib/generators/new_rocket/USAGE +44 -0
- data/testing-with-2.1.18/lib/generators/new_rocket/new_rocket_generator.rb +258 -0
- data/testing-with-2.1.18/lib/generators/uninstall_rocket/USAGE +32 -0
- data/testing-with-2.1.18/lib/generators/uninstall_rocket/uninstall_rocket_generator.rb +140 -0
- data/testing-with-2.1.18/lib/keppler_configuration.rb +12 -0
- data/testing-with-2.1.18/lib/plugins/config/locales/en.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/locales/es.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/menu.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/permissions.yml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/keppler_scaffold_generator.rb +223 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/controllers/controller.rb +107 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/models/model.rb +29 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/policies/policy.rb +14 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_description.haml +13 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_form.haml +49 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_listing.haml +58 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/edit.haml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/index.haml +69 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/new.haml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/reload.js.haml +5 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/show.haml +35 -0
- data/testing-with-2.1.18/lib/plugins/install.rb +151 -0
- data/testing-with-2.1.18/lib/plugins/layouts/application.html.haml +23 -0
- data/testing-with-2.1.18/lib/templates/haml/scaffold/_form.html.haml +10 -0
- metadata +564 -3
- data/installer/core/.sass-cache/c3e12133096533fa0f5c2d91446553934f6099d2/(__TEMPLATE__)c +0 -0
@@ -0,0 +1,48 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
function lineIndent(cm, lineNo) {
|
15
|
+
var text = cm.getLine(lineNo)
|
16
|
+
var spaceTo = text.search(/\S/)
|
17
|
+
if (spaceTo == -1 || /\bcomment\b/.test(cm.getTokenTypeAt(CodeMirror.Pos(lineNo, spaceTo + 1))))
|
18
|
+
return -1
|
19
|
+
return CodeMirror.countColumn(text, null, cm.getOption("tabSize"))
|
20
|
+
}
|
21
|
+
|
22
|
+
CodeMirror.registerHelper("fold", "indent", function(cm, start) {
|
23
|
+
var myIndent = lineIndent(cm, start.line)
|
24
|
+
if (myIndent < 0) return
|
25
|
+
var lastLineInFold = null
|
26
|
+
|
27
|
+
// Go through lines until we find a line that definitely doesn't belong in
|
28
|
+
// the block we're folding, or to the end.
|
29
|
+
for (var i = start.line + 1, end = cm.lastLine(); i <= end; ++i) {
|
30
|
+
var indent = lineIndent(cm, i)
|
31
|
+
if (indent == -1) {
|
32
|
+
} else if (indent > myIndent) {
|
33
|
+
// Lines with a greater indent are considered part of the block.
|
34
|
+
lastLineInFold = i;
|
35
|
+
} else {
|
36
|
+
// If this line has non-space, non-comment content, and is
|
37
|
+
// indented less or equal to the start line, it is the start of
|
38
|
+
// another block.
|
39
|
+
break;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
if (lastLineInFold) return {
|
43
|
+
from: CodeMirror.Pos(start.line, cm.getLine(start.line).length),
|
44
|
+
to: CodeMirror.Pos(lastLineInFold, cm.getLine(lastLineInFold).length)
|
45
|
+
};
|
46
|
+
});
|
47
|
+
|
48
|
+
});
|
@@ -0,0 +1,49 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
CodeMirror.registerHelper("fold", "markdown", function(cm, start) {
|
15
|
+
var maxDepth = 100;
|
16
|
+
|
17
|
+
function isHeader(lineNo) {
|
18
|
+
var tokentype = cm.getTokenTypeAt(CodeMirror.Pos(lineNo, 0));
|
19
|
+
return tokentype && /\bheader\b/.test(tokentype);
|
20
|
+
}
|
21
|
+
|
22
|
+
function headerLevel(lineNo, line, nextLine) {
|
23
|
+
var match = line && line.match(/^#+/);
|
24
|
+
if (match && isHeader(lineNo)) return match[0].length;
|
25
|
+
match = nextLine && nextLine.match(/^[=\-]+\s*$/);
|
26
|
+
if (match && isHeader(lineNo + 1)) return nextLine[0] == "=" ? 1 : 2;
|
27
|
+
return maxDepth;
|
28
|
+
}
|
29
|
+
|
30
|
+
var firstLine = cm.getLine(start.line), nextLine = cm.getLine(start.line + 1);
|
31
|
+
var level = headerLevel(start.line, firstLine, nextLine);
|
32
|
+
if (level === maxDepth) return undefined;
|
33
|
+
|
34
|
+
var lastLineNo = cm.lastLine();
|
35
|
+
var end = start.line, nextNextLine = cm.getLine(end + 2);
|
36
|
+
while (end < lastLineNo) {
|
37
|
+
if (headerLevel(end + 1, nextLine, nextNextLine) <= level) break;
|
38
|
+
++end;
|
39
|
+
nextLine = nextNextLine;
|
40
|
+
nextNextLine = cm.getLine(end + 2);
|
41
|
+
}
|
42
|
+
|
43
|
+
return {
|
44
|
+
from: CodeMirror.Pos(start.line, firstLine.length),
|
45
|
+
to: CodeMirror.Pos(end, cm.getLine(end).length)
|
46
|
+
};
|
47
|
+
});
|
48
|
+
|
49
|
+
});
|
@@ -0,0 +1,184 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
var Pos = CodeMirror.Pos;
|
15
|
+
function cmp(a, b) { return a.line - b.line || a.ch - b.ch; }
|
16
|
+
|
17
|
+
var nameStartChar = "A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD";
|
18
|
+
var nameChar = nameStartChar + "\-\:\.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040";
|
19
|
+
var xmlTagStart = new RegExp("<(/?)([" + nameStartChar + "][" + nameChar + "]*)", "g");
|
20
|
+
|
21
|
+
function Iter(cm, line, ch, range) {
|
22
|
+
this.line = line; this.ch = ch;
|
23
|
+
this.cm = cm; this.text = cm.getLine(line);
|
24
|
+
this.min = range ? Math.max(range.from, cm.firstLine()) : cm.firstLine();
|
25
|
+
this.max = range ? Math.min(range.to - 1, cm.lastLine()) : cm.lastLine();
|
26
|
+
}
|
27
|
+
|
28
|
+
function tagAt(iter, ch) {
|
29
|
+
var type = iter.cm.getTokenTypeAt(Pos(iter.line, ch));
|
30
|
+
return type && /\btag\b/.test(type);
|
31
|
+
}
|
32
|
+
|
33
|
+
function nextLine(iter) {
|
34
|
+
if (iter.line >= iter.max) return;
|
35
|
+
iter.ch = 0;
|
36
|
+
iter.text = iter.cm.getLine(++iter.line);
|
37
|
+
return true;
|
38
|
+
}
|
39
|
+
function prevLine(iter) {
|
40
|
+
if (iter.line <= iter.min) return;
|
41
|
+
iter.text = iter.cm.getLine(--iter.line);
|
42
|
+
iter.ch = iter.text.length;
|
43
|
+
return true;
|
44
|
+
}
|
45
|
+
|
46
|
+
function toTagEnd(iter) {
|
47
|
+
for (;;) {
|
48
|
+
var gt = iter.text.indexOf(">", iter.ch);
|
49
|
+
if (gt == -1) { if (nextLine(iter)) continue; else return; }
|
50
|
+
if (!tagAt(iter, gt + 1)) { iter.ch = gt + 1; continue; }
|
51
|
+
var lastSlash = iter.text.lastIndexOf("/", gt);
|
52
|
+
var selfClose = lastSlash > -1 && !/\S/.test(iter.text.slice(lastSlash + 1, gt));
|
53
|
+
iter.ch = gt + 1;
|
54
|
+
return selfClose ? "selfClose" : "regular";
|
55
|
+
}
|
56
|
+
}
|
57
|
+
function toTagStart(iter) {
|
58
|
+
for (;;) {
|
59
|
+
var lt = iter.ch ? iter.text.lastIndexOf("<", iter.ch - 1) : -1;
|
60
|
+
if (lt == -1) { if (prevLine(iter)) continue; else return; }
|
61
|
+
if (!tagAt(iter, lt + 1)) { iter.ch = lt; continue; }
|
62
|
+
xmlTagStart.lastIndex = lt;
|
63
|
+
iter.ch = lt;
|
64
|
+
var match = xmlTagStart.exec(iter.text);
|
65
|
+
if (match && match.index == lt) return match;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
function toNextTag(iter) {
|
70
|
+
for (;;) {
|
71
|
+
xmlTagStart.lastIndex = iter.ch;
|
72
|
+
var found = xmlTagStart.exec(iter.text);
|
73
|
+
if (!found) { if (nextLine(iter)) continue; else return; }
|
74
|
+
if (!tagAt(iter, found.index + 1)) { iter.ch = found.index + 1; continue; }
|
75
|
+
iter.ch = found.index + found[0].length;
|
76
|
+
return found;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
function toPrevTag(iter) {
|
80
|
+
for (;;) {
|
81
|
+
var gt = iter.ch ? iter.text.lastIndexOf(">", iter.ch - 1) : -1;
|
82
|
+
if (gt == -1) { if (prevLine(iter)) continue; else return; }
|
83
|
+
if (!tagAt(iter, gt + 1)) { iter.ch = gt; continue; }
|
84
|
+
var lastSlash = iter.text.lastIndexOf("/", gt);
|
85
|
+
var selfClose = lastSlash > -1 && !/\S/.test(iter.text.slice(lastSlash + 1, gt));
|
86
|
+
iter.ch = gt + 1;
|
87
|
+
return selfClose ? "selfClose" : "regular";
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
91
|
+
function findMatchingClose(iter, tag) {
|
92
|
+
var stack = [];
|
93
|
+
for (;;) {
|
94
|
+
var next = toNextTag(iter), end, startLine = iter.line, startCh = iter.ch - (next ? next[0].length : 0);
|
95
|
+
if (!next || !(end = toTagEnd(iter))) return;
|
96
|
+
if (end == "selfClose") continue;
|
97
|
+
if (next[1]) { // closing tag
|
98
|
+
for (var i = stack.length - 1; i >= 0; --i) if (stack[i] == next[2]) {
|
99
|
+
stack.length = i;
|
100
|
+
break;
|
101
|
+
}
|
102
|
+
if (i < 0 && (!tag || tag == next[2])) return {
|
103
|
+
tag: next[2],
|
104
|
+
from: Pos(startLine, startCh),
|
105
|
+
to: Pos(iter.line, iter.ch)
|
106
|
+
};
|
107
|
+
} else { // opening tag
|
108
|
+
stack.push(next[2]);
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}
|
112
|
+
function findMatchingOpen(iter, tag) {
|
113
|
+
var stack = [];
|
114
|
+
for (;;) {
|
115
|
+
var prev = toPrevTag(iter);
|
116
|
+
if (!prev) return;
|
117
|
+
if (prev == "selfClose") { toTagStart(iter); continue; }
|
118
|
+
var endLine = iter.line, endCh = iter.ch;
|
119
|
+
var start = toTagStart(iter);
|
120
|
+
if (!start) return;
|
121
|
+
if (start[1]) { // closing tag
|
122
|
+
stack.push(start[2]);
|
123
|
+
} else { // opening tag
|
124
|
+
for (var i = stack.length - 1; i >= 0; --i) if (stack[i] == start[2]) {
|
125
|
+
stack.length = i;
|
126
|
+
break;
|
127
|
+
}
|
128
|
+
if (i < 0 && (!tag || tag == start[2])) return {
|
129
|
+
tag: start[2],
|
130
|
+
from: Pos(iter.line, iter.ch),
|
131
|
+
to: Pos(endLine, endCh)
|
132
|
+
};
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
CodeMirror.registerHelper("fold", "xml", function(cm, start) {
|
138
|
+
var iter = new Iter(cm, start.line, 0);
|
139
|
+
for (;;) {
|
140
|
+
var openTag = toNextTag(iter)
|
141
|
+
if (!openTag || iter.line != start.line) return
|
142
|
+
var end = toTagEnd(iter)
|
143
|
+
if (!end) return
|
144
|
+
if (!openTag[1] && end != "selfClose") {
|
145
|
+
var startPos = Pos(iter.line, iter.ch);
|
146
|
+
var endPos = findMatchingClose(iter, openTag[2]);
|
147
|
+
return endPos && cmp(endPos.from, startPos) > 0 ? {from: startPos, to: endPos.from} : null
|
148
|
+
}
|
149
|
+
}
|
150
|
+
});
|
151
|
+
CodeMirror.findMatchingTag = function(cm, pos, range) {
|
152
|
+
var iter = new Iter(cm, pos.line, pos.ch, range);
|
153
|
+
if (iter.text.indexOf(">") == -1 && iter.text.indexOf("<") == -1) return;
|
154
|
+
var end = toTagEnd(iter), to = end && Pos(iter.line, iter.ch);
|
155
|
+
var start = end && toTagStart(iter);
|
156
|
+
if (!end || !start || cmp(iter, pos) > 0) return;
|
157
|
+
var here = {from: Pos(iter.line, iter.ch), to: to, tag: start[2]};
|
158
|
+
if (end == "selfClose") return {open: here, close: null, at: "open"};
|
159
|
+
|
160
|
+
if (start[1]) { // closing tag
|
161
|
+
return {open: findMatchingOpen(iter, start[2]), close: here, at: "close"};
|
162
|
+
} else { // opening tag
|
163
|
+
iter = new Iter(cm, to.line, to.ch, range);
|
164
|
+
return {open: here, close: findMatchingClose(iter, start[2]), at: "open"};
|
165
|
+
}
|
166
|
+
};
|
167
|
+
|
168
|
+
CodeMirror.findEnclosingTag = function(cm, pos, range, tag) {
|
169
|
+
var iter = new Iter(cm, pos.line, pos.ch, range);
|
170
|
+
for (;;) {
|
171
|
+
var open = findMatchingOpen(iter, tag);
|
172
|
+
if (!open) break;
|
173
|
+
var forward = new Iter(cm, pos.line, pos.ch, range);
|
174
|
+
var close = findMatchingClose(forward, open.tag);
|
175
|
+
if (close) return {open: open, close: close};
|
176
|
+
}
|
177
|
+
};
|
178
|
+
|
179
|
+
// Used by addon/edit/closetag.js
|
180
|
+
CodeMirror.scanForClosingTag = function(cm, pos, name, end) {
|
181
|
+
var iter = new Iter(cm, pos.line, pos.ch, end ? {from: 0, to: end} : null);
|
182
|
+
return findMatchingClose(iter, name);
|
183
|
+
};
|
184
|
+
});
|
@@ -0,0 +1,41 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
var WORD = /[\w$]+/, RANGE = 500;
|
15
|
+
|
16
|
+
CodeMirror.registerHelper("hint", "anyword", function(editor, options) {
|
17
|
+
var word = options && options.word || WORD;
|
18
|
+
var range = options && options.range || RANGE;
|
19
|
+
var cur = editor.getCursor(), curLine = editor.getLine(cur.line);
|
20
|
+
var end = cur.ch, start = end;
|
21
|
+
while (start && word.test(curLine.charAt(start - 1))) --start;
|
22
|
+
var curWord = start != end && curLine.slice(start, end);
|
23
|
+
|
24
|
+
var list = options && options.list || [], seen = {};
|
25
|
+
var re = new RegExp(word.source, "g");
|
26
|
+
for (var dir = -1; dir <= 1; dir += 2) {
|
27
|
+
var line = cur.line, endLine = Math.min(Math.max(line + dir * range, editor.firstLine()), editor.lastLine()) + dir;
|
28
|
+
for (; line != endLine; line += dir) {
|
29
|
+
var text = editor.getLine(line), m;
|
30
|
+
while (m = re.exec(text)) {
|
31
|
+
if (line == cur.line && m[0] === curWord) continue;
|
32
|
+
if ((!curWord || m[0].lastIndexOf(curWord, 0) == 0) && !Object.prototype.hasOwnProperty.call(seen, m[0])) {
|
33
|
+
seen[m[0]] = true;
|
34
|
+
list.push(m[0]);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
return {list: list, from: CodeMirror.Pos(cur.line, start), to: CodeMirror.Pos(cur.line, end)};
|
40
|
+
});
|
41
|
+
});
|
@@ -0,0 +1,60 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"), require("../../mode/css/css"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror", "../../mode/css/css"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
var pseudoClasses = {link: 1, visited: 1, active: 1, hover: 1, focus: 1,
|
15
|
+
"first-letter": 1, "first-line": 1, "first-child": 1,
|
16
|
+
before: 1, after: 1, lang: 1};
|
17
|
+
|
18
|
+
CodeMirror.registerHelper("hint", "css", function(cm) {
|
19
|
+
var cur = cm.getCursor(), token = cm.getTokenAt(cur);
|
20
|
+
var inner = CodeMirror.innerMode(cm.getMode(), token.state);
|
21
|
+
if (inner.mode.name != "css") return;
|
22
|
+
|
23
|
+
if (token.type == "keyword" && "!important".indexOf(token.string) == 0)
|
24
|
+
return {list: ["!important"], from: CodeMirror.Pos(cur.line, token.start),
|
25
|
+
to: CodeMirror.Pos(cur.line, token.end)};
|
26
|
+
|
27
|
+
var start = token.start, end = cur.ch, word = token.string.slice(0, end - start);
|
28
|
+
if (/[^\w$_-]/.test(word)) {
|
29
|
+
word = ""; start = end = cur.ch;
|
30
|
+
}
|
31
|
+
|
32
|
+
var spec = CodeMirror.resolveMode("text/css");
|
33
|
+
|
34
|
+
var result = [];
|
35
|
+
function add(keywords) {
|
36
|
+
for (var name in keywords)
|
37
|
+
if (!word || name.lastIndexOf(word, 0) == 0)
|
38
|
+
result.push(name);
|
39
|
+
}
|
40
|
+
|
41
|
+
var st = inner.state.state;
|
42
|
+
if (st == "pseudo" || token.type == "variable-3") {
|
43
|
+
add(pseudoClasses);
|
44
|
+
} else if (st == "block" || st == "maybeprop") {
|
45
|
+
add(spec.propertyKeywords);
|
46
|
+
} else if (st == "prop" || st == "parens" || st == "at" || st == "params") {
|
47
|
+
add(spec.valueKeywords);
|
48
|
+
add(spec.colorKeywords);
|
49
|
+
} else if (st == "media" || st == "media_parens") {
|
50
|
+
add(spec.mediaTypes);
|
51
|
+
add(spec.mediaFeatures);
|
52
|
+
}
|
53
|
+
|
54
|
+
if (result.length) return {
|
55
|
+
list: result,
|
56
|
+
from: CodeMirror.Pos(cur.line, start),
|
57
|
+
to: CodeMirror.Pos(cur.line, end)
|
58
|
+
};
|
59
|
+
});
|
60
|
+
});
|
@@ -0,0 +1,348 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"), require("./xml-hint"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror", "./xml-hint"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
var langs = "ab aa af ak sq am ar an hy as av ae ay az bm ba eu be bn bh bi bs br bg my ca ch ce ny zh cv kw co cr hr cs da dv nl dz en eo et ee fo fj fi fr ff gl ka de el gn gu ht ha he hz hi ho hu ia id ie ga ig ik io is it iu ja jv kl kn kr ks kk km ki rw ky kv kg ko ku kj la lb lg li ln lo lt lu lv gv mk mg ms ml mt mi mr mh mn na nv nb nd ne ng nn no ii nr oc oj cu om or os pa pi fa pl ps pt qu rm rn ro ru sa sc sd se sm sg sr gd sn si sk sl so st es su sw ss sv ta te tg th ti bo tk tl tn to tr ts tt tw ty ug uk ur uz ve vi vo wa cy wo fy xh yi yo za zu".split(" ");
|
15
|
+
var targets = ["_blank", "_self", "_top", "_parent"];
|
16
|
+
var charsets = ["ascii", "utf-8", "utf-16", "latin1", "latin1"];
|
17
|
+
var methods = ["get", "post", "put", "delete"];
|
18
|
+
var encs = ["application/x-www-form-urlencoded", "multipart/form-data", "text/plain"];
|
19
|
+
var media = ["all", "screen", "print", "embossed", "braille", "handheld", "print", "projection", "screen", "tty", "tv", "speech",
|
20
|
+
"3d-glasses", "resolution [>][<][=] [X]", "device-aspect-ratio: X/Y", "orientation:portrait",
|
21
|
+
"orientation:landscape", "device-height: [X]", "device-width: [X]"];
|
22
|
+
var s = { attrs: {} }; // Simple tag, reused for a whole lot of tags
|
23
|
+
|
24
|
+
var data = {
|
25
|
+
a: {
|
26
|
+
attrs: {
|
27
|
+
href: null, ping: null, type: null,
|
28
|
+
media: media,
|
29
|
+
target: targets,
|
30
|
+
hreflang: langs
|
31
|
+
}
|
32
|
+
},
|
33
|
+
abbr: s,
|
34
|
+
acronym: s,
|
35
|
+
address: s,
|
36
|
+
applet: s,
|
37
|
+
area: {
|
38
|
+
attrs: {
|
39
|
+
alt: null, coords: null, href: null, target: null, ping: null,
|
40
|
+
media: media, hreflang: langs, type: null,
|
41
|
+
shape: ["default", "rect", "circle", "poly"]
|
42
|
+
}
|
43
|
+
},
|
44
|
+
article: s,
|
45
|
+
aside: s,
|
46
|
+
audio: {
|
47
|
+
attrs: {
|
48
|
+
src: null, mediagroup: null,
|
49
|
+
crossorigin: ["anonymous", "use-credentials"],
|
50
|
+
preload: ["none", "metadata", "auto"],
|
51
|
+
autoplay: ["", "autoplay"],
|
52
|
+
loop: ["", "loop"],
|
53
|
+
controls: ["", "controls"]
|
54
|
+
}
|
55
|
+
},
|
56
|
+
b: s,
|
57
|
+
base: { attrs: { href: null, target: targets } },
|
58
|
+
basefont: s,
|
59
|
+
bdi: s,
|
60
|
+
bdo: s,
|
61
|
+
big: s,
|
62
|
+
blockquote: { attrs: { cite: null } },
|
63
|
+
body: s,
|
64
|
+
br: s,
|
65
|
+
button: {
|
66
|
+
attrs: {
|
67
|
+
form: null, formaction: null, name: null, value: null,
|
68
|
+
autofocus: ["", "autofocus"],
|
69
|
+
disabled: ["", "autofocus"],
|
70
|
+
formenctype: encs,
|
71
|
+
formmethod: methods,
|
72
|
+
formnovalidate: ["", "novalidate"],
|
73
|
+
formtarget: targets,
|
74
|
+
type: ["submit", "reset", "button"]
|
75
|
+
}
|
76
|
+
},
|
77
|
+
canvas: { attrs: { width: null, height: null } },
|
78
|
+
caption: s,
|
79
|
+
center: s,
|
80
|
+
cite: s,
|
81
|
+
code: s,
|
82
|
+
col: { attrs: { span: null } },
|
83
|
+
colgroup: { attrs: { span: null } },
|
84
|
+
command: {
|
85
|
+
attrs: {
|
86
|
+
type: ["command", "checkbox", "radio"],
|
87
|
+
label: null, icon: null, radiogroup: null, command: null, title: null,
|
88
|
+
disabled: ["", "disabled"],
|
89
|
+
checked: ["", "checked"]
|
90
|
+
}
|
91
|
+
},
|
92
|
+
data: { attrs: { value: null } },
|
93
|
+
datagrid: { attrs: { disabled: ["", "disabled"], multiple: ["", "multiple"] } },
|
94
|
+
datalist: { attrs: { data: null } },
|
95
|
+
dd: s,
|
96
|
+
del: { attrs: { cite: null, datetime: null } },
|
97
|
+
details: { attrs: { open: ["", "open"] } },
|
98
|
+
dfn: s,
|
99
|
+
dir: s,
|
100
|
+
div: s,
|
101
|
+
dl: s,
|
102
|
+
dt: s,
|
103
|
+
em: s,
|
104
|
+
embed: { attrs: { src: null, type: null, width: null, height: null } },
|
105
|
+
eventsource: { attrs: { src: null } },
|
106
|
+
fieldset: { attrs: { disabled: ["", "disabled"], form: null, name: null } },
|
107
|
+
figcaption: s,
|
108
|
+
figure: s,
|
109
|
+
font: s,
|
110
|
+
footer: s,
|
111
|
+
form: {
|
112
|
+
attrs: {
|
113
|
+
action: null, name: null,
|
114
|
+
"accept-charset": charsets,
|
115
|
+
autocomplete: ["on", "off"],
|
116
|
+
enctype: encs,
|
117
|
+
method: methods,
|
118
|
+
novalidate: ["", "novalidate"],
|
119
|
+
target: targets
|
120
|
+
}
|
121
|
+
},
|
122
|
+
frame: s,
|
123
|
+
frameset: s,
|
124
|
+
h1: s, h2: s, h3: s, h4: s, h5: s, h6: s,
|
125
|
+
head: {
|
126
|
+
attrs: {},
|
127
|
+
children: ["title", "base", "link", "style", "meta", "script", "noscript", "command"]
|
128
|
+
},
|
129
|
+
header: s,
|
130
|
+
hgroup: s,
|
131
|
+
hr: s,
|
132
|
+
html: {
|
133
|
+
attrs: { manifest: null },
|
134
|
+
children: ["head", "body"]
|
135
|
+
},
|
136
|
+
i: s,
|
137
|
+
iframe: {
|
138
|
+
attrs: {
|
139
|
+
src: null, srcdoc: null, name: null, width: null, height: null,
|
140
|
+
sandbox: ["allow-top-navigation", "allow-same-origin", "allow-forms", "allow-scripts"],
|
141
|
+
seamless: ["", "seamless"]
|
142
|
+
}
|
143
|
+
},
|
144
|
+
img: {
|
145
|
+
attrs: {
|
146
|
+
alt: null, src: null, ismap: null, usemap: null, width: null, height: null,
|
147
|
+
crossorigin: ["anonymous", "use-credentials"]
|
148
|
+
}
|
149
|
+
},
|
150
|
+
input: {
|
151
|
+
attrs: {
|
152
|
+
alt: null, dirname: null, form: null, formaction: null,
|
153
|
+
height: null, list: null, max: null, maxlength: null, min: null,
|
154
|
+
name: null, pattern: null, placeholder: null, size: null, src: null,
|
155
|
+
step: null, value: null, width: null,
|
156
|
+
accept: ["audio/*", "video/*", "image/*"],
|
157
|
+
autocomplete: ["on", "off"],
|
158
|
+
autofocus: ["", "autofocus"],
|
159
|
+
checked: ["", "checked"],
|
160
|
+
disabled: ["", "disabled"],
|
161
|
+
formenctype: encs,
|
162
|
+
formmethod: methods,
|
163
|
+
formnovalidate: ["", "novalidate"],
|
164
|
+
formtarget: targets,
|
165
|
+
multiple: ["", "multiple"],
|
166
|
+
readonly: ["", "readonly"],
|
167
|
+
required: ["", "required"],
|
168
|
+
type: ["hidden", "text", "search", "tel", "url", "email", "password", "datetime", "date", "month",
|
169
|
+
"week", "time", "datetime-local", "number", "range", "color", "checkbox", "radio",
|
170
|
+
"file", "submit", "image", "reset", "button"]
|
171
|
+
}
|
172
|
+
},
|
173
|
+
ins: { attrs: { cite: null, datetime: null } },
|
174
|
+
kbd: s,
|
175
|
+
keygen: {
|
176
|
+
attrs: {
|
177
|
+
challenge: null, form: null, name: null,
|
178
|
+
autofocus: ["", "autofocus"],
|
179
|
+
disabled: ["", "disabled"],
|
180
|
+
keytype: ["RSA"]
|
181
|
+
}
|
182
|
+
},
|
183
|
+
label: { attrs: { "for": null, form: null } },
|
184
|
+
legend: s,
|
185
|
+
li: { attrs: { value: null } },
|
186
|
+
link: {
|
187
|
+
attrs: {
|
188
|
+
href: null, type: null,
|
189
|
+
hreflang: langs,
|
190
|
+
media: media,
|
191
|
+
sizes: ["all", "16x16", "16x16 32x32", "16x16 32x32 64x64"]
|
192
|
+
}
|
193
|
+
},
|
194
|
+
map: { attrs: { name: null } },
|
195
|
+
mark: s,
|
196
|
+
menu: { attrs: { label: null, type: ["list", "context", "toolbar"] } },
|
197
|
+
meta: {
|
198
|
+
attrs: {
|
199
|
+
content: null,
|
200
|
+
charset: charsets,
|
201
|
+
name: ["viewport", "application-name", "author", "description", "generator", "keywords"],
|
202
|
+
"http-equiv": ["content-language", "content-type", "default-style", "refresh"]
|
203
|
+
}
|
204
|
+
},
|
205
|
+
meter: { attrs: { value: null, min: null, low: null, high: null, max: null, optimum: null } },
|
206
|
+
nav: s,
|
207
|
+
noframes: s,
|
208
|
+
noscript: s,
|
209
|
+
object: {
|
210
|
+
attrs: {
|
211
|
+
data: null, type: null, name: null, usemap: null, form: null, width: null, height: null,
|
212
|
+
typemustmatch: ["", "typemustmatch"]
|
213
|
+
}
|
214
|
+
},
|
215
|
+
ol: { attrs: { reversed: ["", "reversed"], start: null, type: ["1", "a", "A", "i", "I"] } },
|
216
|
+
optgroup: { attrs: { disabled: ["", "disabled"], label: null } },
|
217
|
+
option: { attrs: { disabled: ["", "disabled"], label: null, selected: ["", "selected"], value: null } },
|
218
|
+
output: { attrs: { "for": null, form: null, name: null } },
|
219
|
+
p: s,
|
220
|
+
param: { attrs: { name: null, value: null } },
|
221
|
+
pre: s,
|
222
|
+
progress: { attrs: { value: null, max: null } },
|
223
|
+
q: { attrs: { cite: null } },
|
224
|
+
rp: s,
|
225
|
+
rt: s,
|
226
|
+
ruby: s,
|
227
|
+
s: s,
|
228
|
+
samp: s,
|
229
|
+
script: {
|
230
|
+
attrs: {
|
231
|
+
type: ["text/javascript"],
|
232
|
+
src: null,
|
233
|
+
async: ["", "async"],
|
234
|
+
defer: ["", "defer"],
|
235
|
+
charset: charsets
|
236
|
+
}
|
237
|
+
},
|
238
|
+
section: s,
|
239
|
+
select: {
|
240
|
+
attrs: {
|
241
|
+
form: null, name: null, size: null,
|
242
|
+
autofocus: ["", "autofocus"],
|
243
|
+
disabled: ["", "disabled"],
|
244
|
+
multiple: ["", "multiple"]
|
245
|
+
}
|
246
|
+
},
|
247
|
+
small: s,
|
248
|
+
source: { attrs: { src: null, type: null, media: null } },
|
249
|
+
span: s,
|
250
|
+
strike: s,
|
251
|
+
strong: s,
|
252
|
+
style: {
|
253
|
+
attrs: {
|
254
|
+
type: ["text/css"],
|
255
|
+
media: media,
|
256
|
+
scoped: null
|
257
|
+
}
|
258
|
+
},
|
259
|
+
sub: s,
|
260
|
+
summary: s,
|
261
|
+
sup: s,
|
262
|
+
table: s,
|
263
|
+
tbody: s,
|
264
|
+
td: { attrs: { colspan: null, rowspan: null, headers: null } },
|
265
|
+
textarea: {
|
266
|
+
attrs: {
|
267
|
+
dirname: null, form: null, maxlength: null, name: null, placeholder: null,
|
268
|
+
rows: null, cols: null,
|
269
|
+
autofocus: ["", "autofocus"],
|
270
|
+
disabled: ["", "disabled"],
|
271
|
+
readonly: ["", "readonly"],
|
272
|
+
required: ["", "required"],
|
273
|
+
wrap: ["soft", "hard"]
|
274
|
+
}
|
275
|
+
},
|
276
|
+
tfoot: s,
|
277
|
+
th: { attrs: { colspan: null, rowspan: null, headers: null, scope: ["row", "col", "rowgroup", "colgroup"] } },
|
278
|
+
thead: s,
|
279
|
+
time: { attrs: { datetime: null } },
|
280
|
+
title: s,
|
281
|
+
tr: s,
|
282
|
+
track: {
|
283
|
+
attrs: {
|
284
|
+
src: null, label: null, "default": null,
|
285
|
+
kind: ["subtitles", "captions", "descriptions", "chapters", "metadata"],
|
286
|
+
srclang: langs
|
287
|
+
}
|
288
|
+
},
|
289
|
+
tt: s,
|
290
|
+
u: s,
|
291
|
+
ul: s,
|
292
|
+
"var": s,
|
293
|
+
video: {
|
294
|
+
attrs: {
|
295
|
+
src: null, poster: null, width: null, height: null,
|
296
|
+
crossorigin: ["anonymous", "use-credentials"],
|
297
|
+
preload: ["auto", "metadata", "none"],
|
298
|
+
autoplay: ["", "autoplay"],
|
299
|
+
mediagroup: ["movie"],
|
300
|
+
muted: ["", "muted"],
|
301
|
+
controls: ["", "controls"]
|
302
|
+
}
|
303
|
+
},
|
304
|
+
wbr: s
|
305
|
+
};
|
306
|
+
|
307
|
+
var globalAttrs = {
|
308
|
+
accesskey: ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
|
309
|
+
"class": null,
|
310
|
+
contenteditable: ["true", "false"],
|
311
|
+
contextmenu: null,
|
312
|
+
dir: ["ltr", "rtl", "auto"],
|
313
|
+
draggable: ["true", "false", "auto"],
|
314
|
+
dropzone: ["copy", "move", "link", "string:", "file:"],
|
315
|
+
hidden: ["hidden"],
|
316
|
+
id: null,
|
317
|
+
inert: ["inert"],
|
318
|
+
itemid: null,
|
319
|
+
itemprop: null,
|
320
|
+
itemref: null,
|
321
|
+
itemscope: ["itemscope"],
|
322
|
+
itemtype: null,
|
323
|
+
lang: ["en", "es"],
|
324
|
+
spellcheck: ["true", "false"],
|
325
|
+
style: null,
|
326
|
+
tabindex: ["1", "2", "3", "4", "5", "6", "7", "8", "9"],
|
327
|
+
title: null,
|
328
|
+
translate: ["yes", "no"],
|
329
|
+
onclick: null,
|
330
|
+
rel: ["stylesheet", "alternate", "author", "bookmark", "help", "license", "next", "nofollow", "noreferrer", "prefetch", "prev", "search", "tag"]
|
331
|
+
};
|
332
|
+
function populate(obj) {
|
333
|
+
for (var attr in globalAttrs) if (globalAttrs.hasOwnProperty(attr))
|
334
|
+
obj.attrs[attr] = globalAttrs[attr];
|
335
|
+
}
|
336
|
+
|
337
|
+
populate(s);
|
338
|
+
for (var tag in data) if (data.hasOwnProperty(tag) && data[tag] != s)
|
339
|
+
populate(data[tag]);
|
340
|
+
|
341
|
+
CodeMirror.htmlSchema = data;
|
342
|
+
function htmlHint(cm, options) {
|
343
|
+
var local = {schemaInfo: data};
|
344
|
+
if (options) for (var opt in options) local[opt] = options[opt];
|
345
|
+
return CodeMirror.hint.xml(cm, local);
|
346
|
+
}
|
347
|
+
CodeMirror.registerHelper("hint", "html", htmlHint);
|
348
|
+
});
|