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
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,778 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'simple-line-icons';
|
3
|
+
src: url('/assetsadmin/fonts-and-icons/fonts/Simple-Line-Icons.eot?v=2.4.0');
|
4
|
+
src: url('/assetsadmin/fonts-and-icons/fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('/assetsadmin/fonts-and-icons/fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('/assetsadmin/fonts-and-icons/fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('/assetsadmin/fonts-and-icons/fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('/assetsadmin/fonts-and-icons/fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg');
|
5
|
+
font-weight: normal;
|
6
|
+
font-style: normal;
|
7
|
+
}
|
8
|
+
/*
|
9
|
+
Use the following CSS code if you want to have a class per icon.
|
10
|
+
Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower:
|
11
|
+
*/
|
12
|
+
.icon-user,
|
13
|
+
.icon-people,
|
14
|
+
.icon-user-female,
|
15
|
+
.icon-user-follow,
|
16
|
+
.icon-user-following,
|
17
|
+
.icon-user-unfollow,
|
18
|
+
.icon-login,
|
19
|
+
.icon-logout,
|
20
|
+
.icon-emotsmile,
|
21
|
+
.icon-phone,
|
22
|
+
.icon-call-end,
|
23
|
+
.icon-call-in,
|
24
|
+
.icon-call-out,
|
25
|
+
.icon-map,
|
26
|
+
.icon-location-pin,
|
27
|
+
.icon-direction,
|
28
|
+
.icon-directions,
|
29
|
+
.icon-compass,
|
30
|
+
.icon-layers,
|
31
|
+
.icon-menu,
|
32
|
+
.icon-list,
|
33
|
+
.icon-options-vertical,
|
34
|
+
.icon-options,
|
35
|
+
.icon-arrow-down,
|
36
|
+
.icon-arrow-left,
|
37
|
+
.icon-arrow-right,
|
38
|
+
.icon-arrow-up,
|
39
|
+
.icon-arrow-up-circle,
|
40
|
+
.icon-arrow-left-circle,
|
41
|
+
.icon-arrow-right-circle,
|
42
|
+
.icon-arrow-down-circle,
|
43
|
+
.icon-check,
|
44
|
+
.icon-clock,
|
45
|
+
.icon-plus,
|
46
|
+
.icon-minus,
|
47
|
+
.icon-close,
|
48
|
+
.icon-event,
|
49
|
+
.icon-exclamation,
|
50
|
+
.icon-organization,
|
51
|
+
.icon-trophy,
|
52
|
+
.icon-screen-smartphone,
|
53
|
+
.icon-screen-desktop,
|
54
|
+
.icon-plane,
|
55
|
+
.icon-notebook,
|
56
|
+
.icon-mustache,
|
57
|
+
.icon-mouse,
|
58
|
+
.icon-magnet,
|
59
|
+
.icon-energy,
|
60
|
+
.icon-disc,
|
61
|
+
.icon-cursor,
|
62
|
+
.icon-cursor-move,
|
63
|
+
.icon-crop,
|
64
|
+
.icon-chemistry,
|
65
|
+
.icon-speedometer,
|
66
|
+
.icon-shield,
|
67
|
+
.icon-screen-tablet,
|
68
|
+
.icon-magic-wand,
|
69
|
+
.icon-hourglass,
|
70
|
+
.icon-graduation,
|
71
|
+
.icon-ghost,
|
72
|
+
.icon-game-controller,
|
73
|
+
.icon-fire,
|
74
|
+
.icon-eyeglass,
|
75
|
+
.icon-envelope-open,
|
76
|
+
.icon-envelope-letter,
|
77
|
+
.icon-bell,
|
78
|
+
.icon-badge,
|
79
|
+
.icon-anchor,
|
80
|
+
.icon-wallet,
|
81
|
+
.icon-vector,
|
82
|
+
.icon-speech,
|
83
|
+
.icon-puzzle,
|
84
|
+
.icon-printer,
|
85
|
+
.icon-present,
|
86
|
+
.icon-playlist,
|
87
|
+
.icon-pin,
|
88
|
+
.icon-picture,
|
89
|
+
.icon-handbag,
|
90
|
+
.icon-globe-alt,
|
91
|
+
.icon-globe,
|
92
|
+
.icon-folder-alt,
|
93
|
+
.icon-folder,
|
94
|
+
.icon-film,
|
95
|
+
.icon-feed,
|
96
|
+
.icon-drop,
|
97
|
+
.icon-drawer,
|
98
|
+
.icon-docs,
|
99
|
+
.icon-doc,
|
100
|
+
.icon-diamond,
|
101
|
+
.icon-cup,
|
102
|
+
.icon-calculator,
|
103
|
+
.icon-bubbles,
|
104
|
+
.icon-briefcase,
|
105
|
+
.icon-book-open,
|
106
|
+
.icon-basket-loaded,
|
107
|
+
.icon-basket,
|
108
|
+
.icon-bag,
|
109
|
+
.icon-action-undo,
|
110
|
+
.icon-action-redo,
|
111
|
+
.icon-wrench,
|
112
|
+
.icon-umbrella,
|
113
|
+
.icon-trash,
|
114
|
+
.icon-tag,
|
115
|
+
.icon-support,
|
116
|
+
.icon-frame,
|
117
|
+
.icon-size-fullscreen,
|
118
|
+
.icon-size-actual,
|
119
|
+
.icon-shuffle,
|
120
|
+
.icon-share-alt,
|
121
|
+
.icon-share,
|
122
|
+
.icon-rocket,
|
123
|
+
.icon-question,
|
124
|
+
.icon-pie-chart,
|
125
|
+
.icon-pencil,
|
126
|
+
.icon-note,
|
127
|
+
.icon-loop,
|
128
|
+
.icon-home,
|
129
|
+
.icon-grid,
|
130
|
+
.icon-graph,
|
131
|
+
.icon-microphone,
|
132
|
+
.icon-music-tone-alt,
|
133
|
+
.icon-music-tone,
|
134
|
+
.icon-earphones-alt,
|
135
|
+
.icon-earphones,
|
136
|
+
.icon-equalizer,
|
137
|
+
.icon-like,
|
138
|
+
.icon-dislike,
|
139
|
+
.icon-control-start,
|
140
|
+
.icon-control-rewind,
|
141
|
+
.icon-control-play,
|
142
|
+
.icon-control-pause,
|
143
|
+
.icon-control-forward,
|
144
|
+
.icon-control-end,
|
145
|
+
.icon-volume-1,
|
146
|
+
.icon-volume-2,
|
147
|
+
.icon-volume-off,
|
148
|
+
.icon-calendar,
|
149
|
+
.icon-bulb,
|
150
|
+
.icon-chart,
|
151
|
+
.icon-ban,
|
152
|
+
.icon-bubble,
|
153
|
+
.icon-camrecorder,
|
154
|
+
.icon-camera,
|
155
|
+
.icon-cloud-download,
|
156
|
+
.icon-cloud-upload,
|
157
|
+
.icon-envelope,
|
158
|
+
.icon-eye,
|
159
|
+
.icon-flag,
|
160
|
+
.icon-heart,
|
161
|
+
.icon-info,
|
162
|
+
.icon-key,
|
163
|
+
.icon-link,
|
164
|
+
.icon-lock,
|
165
|
+
.icon-lock-open,
|
166
|
+
.icon-magnifier,
|
167
|
+
.icon-magnifier-add,
|
168
|
+
.icon-magnifier-remove,
|
169
|
+
.icon-paper-clip,
|
170
|
+
.icon-paper-plane,
|
171
|
+
.icon-power,
|
172
|
+
.icon-refresh,
|
173
|
+
.icon-reload,
|
174
|
+
.icon-settings,
|
175
|
+
.icon-star,
|
176
|
+
.icon-symbol-female,
|
177
|
+
.icon-symbol-male,
|
178
|
+
.icon-target,
|
179
|
+
.icon-credit-card,
|
180
|
+
.icon-paypal,
|
181
|
+
.icon-social-tumblr,
|
182
|
+
.icon-social-twitter,
|
183
|
+
.icon-social-facebook,
|
184
|
+
.icon-social-instagram,
|
185
|
+
.icon-social-linkedin,
|
186
|
+
.icon-social-pinterest,
|
187
|
+
.icon-social-github,
|
188
|
+
.icon-social-google,
|
189
|
+
.icon-social-reddit,
|
190
|
+
.icon-social-skype,
|
191
|
+
.icon-social-dribbble,
|
192
|
+
.icon-social-behance,
|
193
|
+
.icon-social-foursqare,
|
194
|
+
.icon-social-soundcloud,
|
195
|
+
.icon-social-spotify,
|
196
|
+
.icon-social-stumbleupon,
|
197
|
+
.icon-social-youtube,
|
198
|
+
.icon-social-dropbox,
|
199
|
+
.icon-social-vkontakte,
|
200
|
+
.icon-social-steam {
|
201
|
+
font-family: 'simple-line-icons';
|
202
|
+
speak: none;
|
203
|
+
font-style: normal;
|
204
|
+
font-weight: normal;
|
205
|
+
font-variant: normal;
|
206
|
+
text-transform: none;
|
207
|
+
line-height: 1;
|
208
|
+
/* Better Font Rendering =========== */
|
209
|
+
-webkit-font-smoothing: antialiased;
|
210
|
+
-moz-osx-font-smoothing: grayscale;
|
211
|
+
}
|
212
|
+
.icon-user:before {
|
213
|
+
content: "\e005";
|
214
|
+
}
|
215
|
+
.icon-people:before {
|
216
|
+
content: "\e001";
|
217
|
+
}
|
218
|
+
.icon-user-female:before {
|
219
|
+
content: "\e000";
|
220
|
+
}
|
221
|
+
.icon-user-follow:before {
|
222
|
+
content: "\e002";
|
223
|
+
}
|
224
|
+
.icon-user-following:before {
|
225
|
+
content: "\e003";
|
226
|
+
}
|
227
|
+
.icon-user-unfollow:before {
|
228
|
+
content: "\e004";
|
229
|
+
}
|
230
|
+
.icon-login:before {
|
231
|
+
content: "\e066";
|
232
|
+
}
|
233
|
+
.icon-logout:before {
|
234
|
+
content: "\e065";
|
235
|
+
}
|
236
|
+
.icon-emotsmile:before {
|
237
|
+
content: "\e021";
|
238
|
+
}
|
239
|
+
.icon-phone:before {
|
240
|
+
content: "\e600";
|
241
|
+
}
|
242
|
+
.icon-call-end:before {
|
243
|
+
content: "\e048";
|
244
|
+
}
|
245
|
+
.icon-call-in:before {
|
246
|
+
content: "\e047";
|
247
|
+
}
|
248
|
+
.icon-call-out:before {
|
249
|
+
content: "\e046";
|
250
|
+
}
|
251
|
+
.icon-map:before {
|
252
|
+
content: "\e033";
|
253
|
+
}
|
254
|
+
.icon-location-pin:before {
|
255
|
+
content: "\e096";
|
256
|
+
}
|
257
|
+
.icon-direction:before {
|
258
|
+
content: "\e042";
|
259
|
+
}
|
260
|
+
.icon-directions:before {
|
261
|
+
content: "\e041";
|
262
|
+
}
|
263
|
+
.icon-compass:before {
|
264
|
+
content: "\e045";
|
265
|
+
}
|
266
|
+
.icon-layers:before {
|
267
|
+
content: "\e034";
|
268
|
+
}
|
269
|
+
.icon-menu:before {
|
270
|
+
content: "\e601";
|
271
|
+
}
|
272
|
+
.icon-list:before {
|
273
|
+
content: "\e067";
|
274
|
+
}
|
275
|
+
.icon-options-vertical:before {
|
276
|
+
content: "\e602";
|
277
|
+
}
|
278
|
+
.icon-options:before {
|
279
|
+
content: "\e603";
|
280
|
+
}
|
281
|
+
.icon-arrow-down:before {
|
282
|
+
content: "\e604";
|
283
|
+
}
|
284
|
+
.icon-arrow-left:before {
|
285
|
+
content: "\e605";
|
286
|
+
}
|
287
|
+
.icon-arrow-right:before {
|
288
|
+
content: "\e606";
|
289
|
+
}
|
290
|
+
.icon-arrow-up:before {
|
291
|
+
content: "\e607";
|
292
|
+
}
|
293
|
+
.icon-arrow-up-circle:before {
|
294
|
+
content: "\e078";
|
295
|
+
}
|
296
|
+
.icon-arrow-left-circle:before {
|
297
|
+
content: "\e07a";
|
298
|
+
}
|
299
|
+
.icon-arrow-right-circle:before {
|
300
|
+
content: "\e079";
|
301
|
+
}
|
302
|
+
.icon-arrow-down-circle:before {
|
303
|
+
content: "\e07b";
|
304
|
+
}
|
305
|
+
.icon-check:before {
|
306
|
+
content: "\e080";
|
307
|
+
}
|
308
|
+
.icon-clock:before {
|
309
|
+
content: "\e081";
|
310
|
+
}
|
311
|
+
.icon-plus:before {
|
312
|
+
content: "\e095";
|
313
|
+
}
|
314
|
+
.icon-minus:before {
|
315
|
+
content: "\e615";
|
316
|
+
}
|
317
|
+
.icon-close:before {
|
318
|
+
content: "\e082";
|
319
|
+
}
|
320
|
+
.icon-event:before {
|
321
|
+
content: "\e619";
|
322
|
+
}
|
323
|
+
.icon-exclamation:before {
|
324
|
+
content: "\e617";
|
325
|
+
}
|
326
|
+
.icon-organization:before {
|
327
|
+
content: "\e616";
|
328
|
+
}
|
329
|
+
.icon-trophy:before {
|
330
|
+
content: "\e006";
|
331
|
+
}
|
332
|
+
.icon-screen-smartphone:before {
|
333
|
+
content: "\e010";
|
334
|
+
}
|
335
|
+
.icon-screen-desktop:before {
|
336
|
+
content: "\e011";
|
337
|
+
}
|
338
|
+
.icon-plane:before {
|
339
|
+
content: "\e012";
|
340
|
+
}
|
341
|
+
.icon-notebook:before {
|
342
|
+
content: "\e013";
|
343
|
+
}
|
344
|
+
.icon-mustache:before {
|
345
|
+
content: "\e014";
|
346
|
+
}
|
347
|
+
.icon-mouse:before {
|
348
|
+
content: "\e015";
|
349
|
+
}
|
350
|
+
.icon-magnet:before {
|
351
|
+
content: "\e016";
|
352
|
+
}
|
353
|
+
.icon-energy:before {
|
354
|
+
content: "\e020";
|
355
|
+
}
|
356
|
+
.icon-disc:before {
|
357
|
+
content: "\e022";
|
358
|
+
}
|
359
|
+
.icon-cursor:before {
|
360
|
+
content: "\e06e";
|
361
|
+
}
|
362
|
+
.icon-cursor-move:before {
|
363
|
+
content: "\e023";
|
364
|
+
}
|
365
|
+
.icon-crop:before {
|
366
|
+
content: "\e024";
|
367
|
+
}
|
368
|
+
.icon-chemistry:before {
|
369
|
+
content: "\e026";
|
370
|
+
}
|
371
|
+
.icon-speedometer:before {
|
372
|
+
content: "\e007";
|
373
|
+
}
|
374
|
+
.icon-shield:before {
|
375
|
+
content: "\e00e";
|
376
|
+
}
|
377
|
+
.icon-screen-tablet:before {
|
378
|
+
content: "\e00f";
|
379
|
+
}
|
380
|
+
.icon-magic-wand:before {
|
381
|
+
content: "\e017";
|
382
|
+
}
|
383
|
+
.icon-hourglass:before {
|
384
|
+
content: "\e018";
|
385
|
+
}
|
386
|
+
.icon-graduation:before {
|
387
|
+
content: "\e019";
|
388
|
+
}
|
389
|
+
.icon-ghost:before {
|
390
|
+
content: "\e01a";
|
391
|
+
}
|
392
|
+
.icon-game-controller:before {
|
393
|
+
content: "\e01b";
|
394
|
+
}
|
395
|
+
.icon-fire:before {
|
396
|
+
content: "\e01c";
|
397
|
+
}
|
398
|
+
.icon-eyeglass:before {
|
399
|
+
content: "\e01d";
|
400
|
+
}
|
401
|
+
.icon-envelope-open:before {
|
402
|
+
content: "\e01e";
|
403
|
+
}
|
404
|
+
.icon-envelope-letter:before {
|
405
|
+
content: "\e01f";
|
406
|
+
}
|
407
|
+
.icon-bell:before {
|
408
|
+
content: "\e027";
|
409
|
+
}
|
410
|
+
.icon-badge:before {
|
411
|
+
content: "\e028";
|
412
|
+
}
|
413
|
+
.icon-anchor:before {
|
414
|
+
content: "\e029";
|
415
|
+
}
|
416
|
+
.icon-wallet:before {
|
417
|
+
content: "\e02a";
|
418
|
+
}
|
419
|
+
.icon-vector:before {
|
420
|
+
content: "\e02b";
|
421
|
+
}
|
422
|
+
.icon-speech:before {
|
423
|
+
content: "\e02c";
|
424
|
+
}
|
425
|
+
.icon-puzzle:before {
|
426
|
+
content: "\e02d";
|
427
|
+
}
|
428
|
+
.icon-printer:before {
|
429
|
+
content: "\e02e";
|
430
|
+
}
|
431
|
+
.icon-present:before {
|
432
|
+
content: "\e02f";
|
433
|
+
}
|
434
|
+
.icon-playlist:before {
|
435
|
+
content: "\e030";
|
436
|
+
}
|
437
|
+
.icon-pin:before {
|
438
|
+
content: "\e031";
|
439
|
+
}
|
440
|
+
.icon-picture:before {
|
441
|
+
content: "\e032";
|
442
|
+
}
|
443
|
+
.icon-handbag:before {
|
444
|
+
content: "\e035";
|
445
|
+
}
|
446
|
+
.icon-globe-alt:before {
|
447
|
+
content: "\e036";
|
448
|
+
}
|
449
|
+
.icon-globe:before {
|
450
|
+
content: "\e037";
|
451
|
+
}
|
452
|
+
.icon-folder-alt:before {
|
453
|
+
content: "\e039";
|
454
|
+
}
|
455
|
+
.icon-folder:before {
|
456
|
+
content: "\e089";
|
457
|
+
}
|
458
|
+
.icon-film:before {
|
459
|
+
content: "\e03a";
|
460
|
+
}
|
461
|
+
.icon-feed:before {
|
462
|
+
content: "\e03b";
|
463
|
+
}
|
464
|
+
.icon-drop:before {
|
465
|
+
content: "\e03e";
|
466
|
+
}
|
467
|
+
.icon-drawer:before {
|
468
|
+
content: "\e03f";
|
469
|
+
}
|
470
|
+
.icon-docs:before {
|
471
|
+
content: "\e040";
|
472
|
+
}
|
473
|
+
.icon-doc:before {
|
474
|
+
content: "\e085";
|
475
|
+
}
|
476
|
+
.icon-diamond:before {
|
477
|
+
content: "\e043";
|
478
|
+
}
|
479
|
+
.icon-cup:before {
|
480
|
+
content: "\e044";
|
481
|
+
}
|
482
|
+
.icon-calculator:before {
|
483
|
+
content: "\e049";
|
484
|
+
}
|
485
|
+
.icon-bubbles:before {
|
486
|
+
content: "\e04a";
|
487
|
+
}
|
488
|
+
.icon-briefcase:before {
|
489
|
+
content: "\e04b";
|
490
|
+
}
|
491
|
+
.icon-book-open:before {
|
492
|
+
content: "\e04c";
|
493
|
+
}
|
494
|
+
.icon-basket-loaded:before {
|
495
|
+
content: "\e04d";
|
496
|
+
}
|
497
|
+
.icon-basket:before {
|
498
|
+
content: "\e04e";
|
499
|
+
}
|
500
|
+
.icon-bag:before {
|
501
|
+
content: "\e04f";
|
502
|
+
}
|
503
|
+
.icon-action-undo:before {
|
504
|
+
content: "\e050";
|
505
|
+
}
|
506
|
+
.icon-action-redo:before {
|
507
|
+
content: "\e051";
|
508
|
+
}
|
509
|
+
.icon-wrench:before {
|
510
|
+
content: "\e052";
|
511
|
+
}
|
512
|
+
.icon-umbrella:before {
|
513
|
+
content: "\e053";
|
514
|
+
}
|
515
|
+
.icon-trash:before {
|
516
|
+
content: "\e054";
|
517
|
+
}
|
518
|
+
.icon-tag:before {
|
519
|
+
content: "\e055";
|
520
|
+
}
|
521
|
+
.icon-support:before {
|
522
|
+
content: "\e056";
|
523
|
+
}
|
524
|
+
.icon-frame:before {
|
525
|
+
content: "\e038";
|
526
|
+
}
|
527
|
+
.icon-size-fullscreen:before {
|
528
|
+
content: "\e057";
|
529
|
+
}
|
530
|
+
.icon-size-actual:before {
|
531
|
+
content: "\e058";
|
532
|
+
}
|
533
|
+
.icon-shuffle:before {
|
534
|
+
content: "\e059";
|
535
|
+
}
|
536
|
+
.icon-share-alt:before {
|
537
|
+
content: "\e05a";
|
538
|
+
}
|
539
|
+
.icon-share:before {
|
540
|
+
content: "\e05b";
|
541
|
+
}
|
542
|
+
.icon-rocket:before {
|
543
|
+
content: "\e05c";
|
544
|
+
}
|
545
|
+
.icon-question:before {
|
546
|
+
content: "\e05d";
|
547
|
+
}
|
548
|
+
.icon-pie-chart:before {
|
549
|
+
content: "\e05e";
|
550
|
+
}
|
551
|
+
.icon-pencil:before {
|
552
|
+
content: "\e05f";
|
553
|
+
}
|
554
|
+
.icon-note:before {
|
555
|
+
content: "\e060";
|
556
|
+
}
|
557
|
+
.icon-loop:before {
|
558
|
+
content: "\e064";
|
559
|
+
}
|
560
|
+
.icon-home:before {
|
561
|
+
content: "\e069";
|
562
|
+
}
|
563
|
+
.icon-grid:before {
|
564
|
+
content: "\e06a";
|
565
|
+
}
|
566
|
+
.icon-graph:before {
|
567
|
+
content: "\e06b";
|
568
|
+
}
|
569
|
+
.icon-microphone:before {
|
570
|
+
content: "\e063";
|
571
|
+
}
|
572
|
+
.icon-music-tone-alt:before {
|
573
|
+
content: "\e061";
|
574
|
+
}
|
575
|
+
.icon-music-tone:before {
|
576
|
+
content: "\e062";
|
577
|
+
}
|
578
|
+
.icon-earphones-alt:before {
|
579
|
+
content: "\e03c";
|
580
|
+
}
|
581
|
+
.icon-earphones:before {
|
582
|
+
content: "\e03d";
|
583
|
+
}
|
584
|
+
.icon-equalizer:before {
|
585
|
+
content: "\e06c";
|
586
|
+
}
|
587
|
+
.icon-like:before {
|
588
|
+
content: "\e068";
|
589
|
+
}
|
590
|
+
.icon-dislike:before {
|
591
|
+
content: "\e06d";
|
592
|
+
}
|
593
|
+
.icon-control-start:before {
|
594
|
+
content: "\e06f";
|
595
|
+
}
|
596
|
+
.icon-control-rewind:before {
|
597
|
+
content: "\e070";
|
598
|
+
}
|
599
|
+
.icon-control-play:before {
|
600
|
+
content: "\e071";
|
601
|
+
}
|
602
|
+
.icon-control-pause:before {
|
603
|
+
content: "\e072";
|
604
|
+
}
|
605
|
+
.icon-control-forward:before {
|
606
|
+
content: "\e073";
|
607
|
+
}
|
608
|
+
.icon-control-end:before {
|
609
|
+
content: "\e074";
|
610
|
+
}
|
611
|
+
.icon-volume-1:before {
|
612
|
+
content: "\e09f";
|
613
|
+
}
|
614
|
+
.icon-volume-2:before {
|
615
|
+
content: "\e0a0";
|
616
|
+
}
|
617
|
+
.icon-volume-off:before {
|
618
|
+
content: "\e0a1";
|
619
|
+
}
|
620
|
+
.icon-calendar:before {
|
621
|
+
content: "\e075";
|
622
|
+
}
|
623
|
+
.icon-bulb:before {
|
624
|
+
content: "\e076";
|
625
|
+
}
|
626
|
+
.icon-chart:before {
|
627
|
+
content: "\e077";
|
628
|
+
}
|
629
|
+
.icon-ban:before {
|
630
|
+
content: "\e07c";
|
631
|
+
}
|
632
|
+
.icon-bubble:before {
|
633
|
+
content: "\e07d";
|
634
|
+
}
|
635
|
+
.icon-camrecorder:before {
|
636
|
+
content: "\e07e";
|
637
|
+
}
|
638
|
+
.icon-camera:before {
|
639
|
+
content: "\e07f";
|
640
|
+
}
|
641
|
+
.icon-cloud-download:before {
|
642
|
+
content: "\e083";
|
643
|
+
}
|
644
|
+
.icon-cloud-upload:before {
|
645
|
+
content: "\e084";
|
646
|
+
}
|
647
|
+
.icon-envelope:before {
|
648
|
+
content: "\e086";
|
649
|
+
}
|
650
|
+
.icon-eye:before {
|
651
|
+
content: "\e087";
|
652
|
+
}
|
653
|
+
.icon-flag:before {
|
654
|
+
content: "\e088";
|
655
|
+
}
|
656
|
+
.icon-heart:before {
|
657
|
+
content: "\e08a";
|
658
|
+
}
|
659
|
+
.icon-info:before {
|
660
|
+
content: "\e08b";
|
661
|
+
}
|
662
|
+
.icon-key:before {
|
663
|
+
content: "\e08c";
|
664
|
+
}
|
665
|
+
.icon-link:before {
|
666
|
+
content: "\e08d";
|
667
|
+
}
|
668
|
+
.icon-lock:before {
|
669
|
+
content: "\e08e";
|
670
|
+
}
|
671
|
+
.icon-lock-open:before {
|
672
|
+
content: "\e08f";
|
673
|
+
}
|
674
|
+
.icon-magnifier:before {
|
675
|
+
content: "\e090";
|
676
|
+
}
|
677
|
+
.icon-magnifier-add:before {
|
678
|
+
content: "\e091";
|
679
|
+
}
|
680
|
+
.icon-magnifier-remove:before {
|
681
|
+
content: "\e092";
|
682
|
+
}
|
683
|
+
.icon-paper-clip:before {
|
684
|
+
content: "\e093";
|
685
|
+
}
|
686
|
+
.icon-paper-plane:before {
|
687
|
+
content: "\e094";
|
688
|
+
}
|
689
|
+
.icon-power:before {
|
690
|
+
content: "\e097";
|
691
|
+
}
|
692
|
+
.icon-refresh:before {
|
693
|
+
content: "\e098";
|
694
|
+
}
|
695
|
+
.icon-reload:before {
|
696
|
+
content: "\e099";
|
697
|
+
}
|
698
|
+
.icon-settings:before {
|
699
|
+
content: "\e09a";
|
700
|
+
}
|
701
|
+
.icon-star:before {
|
702
|
+
content: "\e09b";
|
703
|
+
}
|
704
|
+
.icon-symbol-female:before {
|
705
|
+
content: "\e09c";
|
706
|
+
}
|
707
|
+
.icon-symbol-male:before {
|
708
|
+
content: "\e09d";
|
709
|
+
}
|
710
|
+
.icon-target:before {
|
711
|
+
content: "\e09e";
|
712
|
+
}
|
713
|
+
.icon-credit-card:before {
|
714
|
+
content: "\e025";
|
715
|
+
}
|
716
|
+
.icon-paypal:before {
|
717
|
+
content: "\e608";
|
718
|
+
}
|
719
|
+
.icon-social-tumblr:before {
|
720
|
+
content: "\e00a";
|
721
|
+
}
|
722
|
+
.icon-social-twitter:before {
|
723
|
+
content: "\e009";
|
724
|
+
}
|
725
|
+
.icon-social-facebook:before {
|
726
|
+
content: "\e00b";
|
727
|
+
}
|
728
|
+
.icon-social-instagram:before {
|
729
|
+
content: "\e609";
|
730
|
+
}
|
731
|
+
.icon-social-linkedin:before {
|
732
|
+
content: "\e60a";
|
733
|
+
}
|
734
|
+
.icon-social-pinterest:before {
|
735
|
+
content: "\e60b";
|
736
|
+
}
|
737
|
+
.icon-social-github:before {
|
738
|
+
content: "\e60c";
|
739
|
+
}
|
740
|
+
.icon-social-google:before {
|
741
|
+
content: "\e60d";
|
742
|
+
}
|
743
|
+
.icon-social-reddit:before {
|
744
|
+
content: "\e60e";
|
745
|
+
}
|
746
|
+
.icon-social-skype:before {
|
747
|
+
content: "\e60f";
|
748
|
+
}
|
749
|
+
.icon-social-dribbble:before {
|
750
|
+
content: "\e00d";
|
751
|
+
}
|
752
|
+
.icon-social-behance:before {
|
753
|
+
content: "\e610";
|
754
|
+
}
|
755
|
+
.icon-social-foursqare:before {
|
756
|
+
content: "\e611";
|
757
|
+
}
|
758
|
+
.icon-social-soundcloud:before {
|
759
|
+
content: "\e612";
|
760
|
+
}
|
761
|
+
.icon-social-spotify:before {
|
762
|
+
content: "\e613";
|
763
|
+
}
|
764
|
+
.icon-social-stumbleupon:before {
|
765
|
+
content: "\e614";
|
766
|
+
}
|
767
|
+
.icon-social-youtube:before {
|
768
|
+
content: "\e008";
|
769
|
+
}
|
770
|
+
.icon-social-dropbox:before {
|
771
|
+
content: "\e00c";
|
772
|
+
}
|
773
|
+
.icon-social-vkontakte:before {
|
774
|
+
content: "\e618";
|
775
|
+
}
|
776
|
+
.icon-social-steam:before {
|
777
|
+
content: "\e620";
|
778
|
+
}
|