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,101 @@
|
|
1
|
+
%script{src:"https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"}
|
2
|
+
%body
|
3
|
+
.permission_denied
|
4
|
+
#particles-js
|
5
|
+
.denied__wrapper
|
6
|
+
%h1 404
|
7
|
+
%h3
|
8
|
+
Looks like this page doesn't exist
|
9
|
+
%svg#astronaut{:height => "448.5px", :space => "preserve", style: "enable-background:new 0 0 302.6 448.5;", :version => "1.1", :viewbox => "0 0 302.6 448.5", :width => "302.6px", :x => "0px", :xmlns => "http://www.w3.org/2000/svg", "xmlns:a" => "http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/", "xmlns:xlink" => "http://www.w3.org/1999/xlink", :y => "0px"}
|
10
|
+
:css
|
11
|
+
.st00{fill:#D3D3D3;}
|
12
|
+
.st11{fill:#544E4A;stroke:#544E4A;stroke-miterlimit:10;}
|
13
|
+
.st22{fill:#B2AFA2;stroke:#B2AFA2;stroke-miterlimit:10;}
|
14
|
+
.st33{fill:#FFFFFF;}
|
15
|
+
.st44{fill:#544E4A;}
|
16
|
+
.st55{fill:#F06349;}
|
17
|
+
.st66{fill:#DAE7BE;}
|
18
|
+
.st77{fill:#CFE1AF;}
|
19
|
+
%defs
|
20
|
+
%path.st00{:d => "M242.1,439.6H60.6V209.4c0-14,11.4-25.4,25.4-25.4h130.7c14,0,25.4,11.4,25.4,25.4V439.6z"}
|
21
|
+
%path.st11{:d => "M242.1,434.6H60.7l5,5V314.5v-80v-21.4c0-10.3,3.9-20.3,15-23.3c6.4-1.8,14.2-0.7,20.7-0.7h112.4\n\tc3.3,0,6.5,0,9.7,1.1c8.3,2.9,13.5,10.7,13.7,19.3c0.1,4.1,0,8.3,0,12.5v217.7c0,6.4,10,6.4,10,0v-130v-79.5v-19.1\n\tc-0.1-13.8-7.6-26-21-30.5c-7.2-2.4-15.8-1.5-23.3-1.5H88.6c-14.8,0-28.7,8.4-32,23.6c-1.1,5.2-0.8,10.8-0.8,16.1v220.8\n\tc0,2.7,2.3,5,5,5h181.4C248.5,444.6,248.5,434.6,242.1,434.6z"}
|
22
|
+
%path.st00{:d => "M60.6,214.9v120.3c0,6-4.9,11-11,11c-17.6,0-31.9-14.4-31.9-31.9V236c0-17.6,14.4-31.9,31.9-31.9\n\tc3,0,5.8,1.2,7.7,3.2C59.4,209.1,60.6,211.8,60.6,214.9L60.6,214.9z"}
|
23
|
+
%path.st11{:d => "M55.6,214.9V324c0,3.9,1.3,10.8-1,14.3c-4.4,7-17.5,0.4-22.1-3.4c-6.2-5.2-9.7-12.7-9.8-20.8\n\tc-0.3-17.8,0-35.6,0-53.3c0-8.3-0.1-16.5,0-24.8c0.1-7.7,3.1-14.9,8.9-20.1C36.3,211.6,54.8,202.7,55.6,214.9c0.4,6.4,10.4,6.4,10,0\n\tc-1.7-24.7-33-15.8-43.8-3.2c-7.7,9-9.1,19.5-9.1,30.8v68.7c0,13.3,4.7,25.4,15.8,33.3c12.2,8.7,36.4,10.9,37.1-9.5\n\tc0.7-19.1,0-38.3,0-57.4V215C65.6,208.4,55.6,208.4,55.6,214.9L55.6,214.9z"}
|
24
|
+
%path.st11{:d => "M17.7,304.4h42.9c6.4,0,6.4-10,0-10H17.7C11.3,294.4,11.3,304.4,17.7,304.4z"}
|
25
|
+
%path.st22{:d => "M240.1,205.6v235.9h-36V196.7c0-4.8-2.2-9.2-5.9-12.8h11.7C226.5,184,240.1,193.7,240.1,205.6L240.1,205.6z"}
|
26
|
+
%path.st00{:d => "M271.7,125.8c0,66.4-53.9,120.3-120.3,120.3S31.1,192.2,31.1,125.8c0-40.5,20-76.2,50.6-98.1\n\tc19.7-14,43.7-22.2,69.7-22.2s50,8.2,69.7,22.2C251.7,49.5,271.7,85.3,271.7,125.8z"}
|
27
|
+
%path.st11{:d => "M266.7,125.8c-0.3,45-26.7,86.2-67.7,105.1c-40.7,18.7-90.5,11.1-123.9-18.6c-34.7-30.8-47.8-80.2-32.7-124.2\n\tc4-11.7,10-22.7,17.5-32.5c3.6-4.7,7.6-9.1,11.9-13.2c1.8-1.7,3.6-3.3,5.4-4.9c1.1-0.9,2.2-1.9,3.4-2.8c0.8-0.6,1.6-1.3,2.5-1.9\n\tc-1.8-0.1-1.8-0.2,0-0.4c21.7-16.2,50.1-23.6,77-21.8C219.7,14.9,266.3,66.4,266.7,125.8c0,6.4,10,6.4,10,0\n\tC276.3,70,238.6,19.6,184.4,4.9c-28.7-7.8-59.6-5-86.4,7.5c-3.2,1.5-6.3,3.1-9.3,4.9c-1.6,0.9-3.2,1.9-4.8,2.9\n\tc-0.6,0.4-1.4,0.8-2,1.3c-0.4,0.3-0.9,0.6-1.3,0.9c0.4,0.1,0.8,0.2,1.2,0.2c-0.3,0.3-1.5,0.2-1.9,0.4l-2.4,1.5\n\tc-1.1,0.8-2.2,1.7-3.3,2.6c-2.7,2.1-5.3,4.3-7.8,6.6c-9.6,8.9-17.9,19.4-24.2,30.8c-25.2,45-19.6,102,13.3,141.5\n\tc31.5,37.9,84.1,53.8,131.4,39.9c46.1-13.6,81.7-53.9,88.6-101.6c0.9-6.2,1.4-12.4,1.4-18.7C276.7,119.3,266.7,119.3,266.7,125.8\n\tL266.7,125.8z"}
|
28
|
+
%path.st33{:d => "M145.3,442.7H48.9c-2.7,0-4.8-2.2-4.8-4.8v-10.8c0-27.2,22.3-49.5,49.5-49.5h7c27.2,0,49.5,22.3,49.5,49.5v10.8\n\tC150.2,440.6,148,442.7,145.3,442.7z"}
|
29
|
+
%path.st11{:d => "M145.3,437.7H52c-0.5,0-2.7,0.3-3.1,0c-0.6-0.5,0.1-7.8,0.1-9.1c0-5.4,0.6-10.5,2.3-15.7\n\tc7.9-23.8,32.9-33.6,56.2-29.8c14.4,2.3,26.9,11.8,33.2,24.9c2.9,6.1,4.3,12.7,4.3,19.4v6.1c0,2,0.8,4.2-1.2,4.5\n\tc-6.3,0.9-3.6,10.5,2.7,9.6c6.8-0.9,8.5-6.9,8.5-12.8c0-5.1,0.1-10.2-0.6-15.3c-2-14.6-10.1-27.7-21.9-36.4\n\tc-21.6-15.9-55.8-14.2-75.7,3.7c-11.2,10.1-17.6,24.6-17.9,39.6c-0.2,8.4-1.6,20.7,10,21.3c15.1,0.8,30.4,0,45.5,0h50.7\n\tC151.8,447.7,151.8,437.7,145.3,437.7L145.3,437.7z"}
|
30
|
+
%path.st33{:d => "M253.9,442.7h-96.6c-2.6,0-4.7-2.1-4.7-4.7v-9.6c0-28,22.9-50.8,50.8-50.8h4.4c28,0,50.8,22.9,50.8,50.8v9.6\n\tC258.6,440.6,256.5,442.7,253.9,442.7L253.9,442.7z"}
|
31
|
+
%path.st11{:d => "M253.9,437.7h-92.7c-0.8,0-3.1,0.4-3.8,0c0,0,0.2-6.4,0.2-7.6c0-5.2,0.5-10.1,2-15.1\n\tc7.3-24,32.6-36.2,56.4-31.7c14,2.7,26,11.7,32.6,24.3c3.2,6.2,4.9,13.1,5,20.1v5.5c0,2.1,0.8,4.4-1,4.7c-6.3,0.9-3.6,10.5,2.7,9.6\n\tc6.6-0.9,8.4-6.7,8.4-12.5c0-5.4,0.1-10.8-0.8-16.2c-2.4-14.4-10.8-27.2-22.5-35.8c-22.3-16.2-56.2-13.8-75.9,5.4\n\tc-10.5,10.3-16.6,24.5-16.9,39.2c-0.1,8.3-1.2,19.4,10,20c15.4,0.9,31.1,0,46.5,0h49.8C260.3,447.7,260.3,437.7,253.9,437.7\n\tL253.9,437.7z"}
|
32
|
+
%path.st33{:d => "M193.5,331h-84.4c-6.6,0-12-5.4-12-12v-47c0-6.6,5.4-12,12-12h84.4c6.6,0,12,5.4,12,12v47\n\tC205.5,325.6,200.1,331,193.5,331z"}
|
33
|
+
%path.st44{:d => "M193.5,326h-62.4c-7.3,0-14.8,0.6-22,0c-6.3-0.5-7-5.6-7-10.6V298v-19.2c0-3.5-0.8-8.4,1.6-11.3\n\tc2.4-2.8,5.8-2.5,9-2.5h53.6c8.8,0,17.7-0.5,26.5,0c5.5,0.3,7.5,4.1,7.5,9.1v39.6C200.5,318.9,200.9,325.6,193.5,326\n\tc-6.4,0.3-6.4,10.3,0,10c9.7-0.5,16.6-7.6,17-17.2c0.2-4.7,0-9.4,0-14V282c0-4.1,0.4-8.5-0.2-12.5c-1.3-8.5-8.6-14.1-17-14.4\n\tc-3.4-0.1-6.8,0-10.3,0h-43c-10.1,0-20.2-0.3-30.3,0c-8,0.3-15.1,5-17.1,13.1c-1,4.1-0.5,8.8-0.5,13c0,12.5-0.4,25,0,37.5\n\tc0.3,8.4,5.8,15.8,14.4,17.2c3.1,0.5,6.3,0.2,9.4,0.2h77.7C200,336,200,326,193.5,326L193.5,326z"}
|
34
|
+
%circle.st55{:cx => "126.4", :cy => "281.3", :r => "10.4"}
|
35
|
+
%circle.st55{:cx => "126.4", :cy => "309.8", :r => "10.4"}
|
36
|
+
%path.st22{:d => "M267.4,124.9c-0.2,47-28.6,87.5-69.2,106.2c21.1-26.3,34.4-60.1,34.4-98.5c0-49.8-21.3-91.8-54.5-118.6\n\tc-1-0.8-2.3-0.5-3.3-1.3c15.7,3.5,30,10,42.7,19C247.5,53.1,267.5,86.4,267.4,124.9z"}
|
37
|
+
%path.st44{:d => "M139.5,51.6h26.1c6.4,0,6.4-10,0-10h-26.1C133.1,41.6,133,51.6,139.5,51.6L139.5,51.6z"}
|
38
|
+
%path.st44{:d => "M246.7,122.4c0,24.5-9.3,46.9-24.5,63.8c-2.7,2.9-6.4,4.6-10.4,4.6l-120.4,0.4c-4,0-7.8-1.6-10.4-4.5\n\tc-15.5-16.9-24.9-39.5-24.9-64.2c0-20.7,6.6-39.8,17.7-55.4c2.7-3.7,7-6,11.6-6h132c4.6,0,8.9,2.2,11.5,6\n\tC240.1,82.6,246.7,101.7,246.7,122.4z"}
|
39
|
+
%path.st44{:d => "M241.7,122.4c-0.1,14.7-3.5,29.2-10.4,42.2c-3.9,7.4-10.6,20.9-20,21.2c-10.5,0.3-21.1,0.1-31.6,0.1\n\tc-28.8,0.1-57.7,0.5-86.5,0.3c-8.6-0.1-13.5-8.5-17.8-15.1c-7.9-12.3-12.8-26.5-13.9-41.2c-1.2-14.9,1.2-30,7.2-43.7\n\tc3.4-7.7,8.1-20,17.8-20.2c27.6-0.6,55.2,0,82.7,0h41.2c2.3,0,4.8-0.2,7.1,0c7,0.5,10.2,7.5,13.2,13c3.6,6.5,6.3,13.4,8.2,20.6\n\tC240.7,107.1,241.6,114.7,241.7,122.4c0.1,6.4,10.1,6.4,10,0c-0.1-15.9-3.8-31.4-10.9-45.6c-5.1-10.1-11.3-20.5-23.9-20.8\n\tc-11.1-0.2-22.3,0-33.4,0H88c-7.1,0-13.5,2-18.1,7.9C60.4,76.4,54.4,92,52.2,107.5c-2.3,15.6-1,31.8,4.1,46.7\n\tc2.4,7.2,5.6,14.1,9.6,20.5c3.7,6,8.2,12.9,13.8,17.3c4.8,3.8,10.3,4.1,16.1,4c5.9,0,11.9,0,17.8-0.1c18.4-0.1,36.9-0.1,55.3-0.2\n\tc13.5,0,27.1-0.1,40.6-0.1c8.6,0,14.4-3.5,19.8-10.2c9.4-11.7,16.3-25.3,19.7-40c1.8-7.6,2.6-15.4,2.7-23.2\n\tC251.7,116,241.7,116,241.7,122.4L241.7,122.4z"}
|
40
|
+
%path.st22{:d => "M77.3,76.4c-4.1,7.1-7.1,14.7-8.6,22.8c-1.7,8.6,11.5,12.3,13.2,3.6c1.4-7,3.7-13.3,7.3-19.5\n\tC93.6,75.7,81.7,68.8,77.3,76.4z M78.1,131c-0.4-3-0.5-6.5-0.4-9.8c0.1-3.7-3.2-6.9-6.9-6.9c-3.8,0-6.7,3.1-6.9,6.9\n\tc-0.2,4.5,0.2,8.9,0.9,13.4c0.5,3.7,5.2,5.7,8.4,4.8C77.2,138.3,78.6,134.6,78.1,131z"}
|
41
|
+
%path.st22{:d => "M253.6,429.6v1c0.6,8.8,1.5,7.2-8.3,7.1h-7.8c1.5-1.9,1.8-2.4,1.8-5.1v-1.1c0-14.1-5.3-26.9-13.7-36.2\n\tc-5.5-6-12.3-10.3-19.8-12.7c0.8,0,1.6,0.1,2.4,0.1c13.1,0.8,25.1,6,33.2,14.6S253.6,416.8,253.6,429.6L253.6,429.6z"}
|
42
|
+
%path.st00{:d => "M258.2,346.1h1.8c13.8,0,25.1-11.3,25.1-25.1v-92.1c0-13.8-11.3-25.1-25.1-25.1h-6.5c-6.3,0-11.4,5.1-11.4,11.4\n\tV330C242.1,338.9,249.3,346.1,258.2,346.1L258.2,346.1z"}
|
43
|
+
%path.st11{:d => "M258.2,351.1c17.5,0,31.5-12.6,31.9-30.4c0.2-8.2,0-16.4,0-24.6c0-22.3,0.5-44.6,0-66.8\n\tc-0.3-17.1-13.6-30.3-30.8-30.4c-7.6-0.1-15.3,0.4-19.7,7.7c-2.1,3.5-2.4,7.2-2.4,11V324c0,2-0.1,4,0,6\n\tC237.5,341.8,246.4,350.6,258.2,351.1c6.4,0.3,6.4-9.7,0-10c-10.8-0.5-11.1-10-11.1-18.1v-28.5v-69c0-4.8-1.6-13.9,3.9-16.2\n\tc5-2.1,14.1-0.4,18.5,2c6.6,3.6,10.4,10.4,10.5,17.8c0.4,18.6,0,37.2,0,55.8v32.6c0,3.5,0.1,6.8-1.1,10.2\n\tc-3.2,9.1-11.6,13.5-20.7,13.5C251.7,341.1,251.7,351.1,258.2,351.1L258.2,351.1z"}
|
44
|
+
%path.st22{:d => "M280.2,233.9v80.5c1.6,20.1-11.2,27.9-24.1,26.2c-1.5-0.2-3-0.4-4.3-1.2c11.2-3.6,19.4-15.1,19.4-28.6v-73\n\tc0-13.5-8.2-25-19.4-28.6c2.3-0.9,2.8-1.2,4.3-1.2C270.9,208.1,281.3,218.4,280.2,233.9z"}
|
45
|
+
%path.st66{:d => "M267.3,93.5l25.1-23.8"}
|
46
|
+
%path.st44{:d => "M270.8,97c8.4-7.9,16.7-15.8,25.1-23.8c4.7-4.4-2.4-11.5-7.1-7.1c-8.4,7.9-16.7,15.8-25.1,23.8\n\tC259.1,94.4,266.1,101.4,270.8,97z"}
|
47
|
+
%path.st11{:d => "M35.4,93.5L10.3,69.7"}
|
48
|
+
%path.st11{:d => "M39,89.9C30.6,82,22.3,74.1,13.9,66.1c-4.7-4.4-11.8,2.6-7.1,7.1C15.2,81.1,23.5,89,31.9,97\n\tC36.6,101.4,43.6,94.4,39,89.9L39,89.9z"}
|
49
|
+
%circle.st11{:cx => "10.3", :cy => "69.7", :r => "4.8"}
|
50
|
+
%path.st11{:d => "M10.1,69.7c0-0.5,0.1-0.1-0.1,0.2c0.1-0.2,0.5-0.7,0.1-0.3c-0.4,0.4,0.1,0,0.2-0.1c0.3-0.2-0.7,0,0,0\n\tc0.5,0,0.1,0.1-0.2-0.1c0.2,0.1,0.7,0.5,0.3,0.1c-0.5-0.5,0.2,0.2,0.1,0.2c0.1,0.2,0.1,0.2,0-0.1c-0.1-0.3-0.1-0.3,0,0.1\n\tc0,0.7,0.1-0.2,0.1-0.2c0.1,0.1-0.2,0.4-0.3,0.5c0.5-0.7,0.2-0.3,0-0.1c-0.3,0.2,0.5,0,0.2-0.1c-0.6-0.1-0.4-0.1,0,0.1\n\tc-0.2-0.1-0.3-0.1-0.5-0.3C10.6,70.2,10.2,69.7,10.1,69.7C10,69.5,10,69.5,10.1,69.7C10.2,70.1,10.2,70.1,10.1,69.7\n\tc0.1,2.7,2.2,5,5,5c2.6,0,5.1-2.3,5-5c-0.3-5.3-4.3-9.8-9.8-9.8c-5.4,0-9.7,4.5-9.8,9.8C0.4,75,4.9,79.3,10,79.5\n\tc5.6,0.2,9.8-4.4,10-9.8c0.1-2.7-2.4-5-5-5C12.3,64.7,10.3,67,10.1,69.7L10.1,69.7z"}
|
51
|
+
%circle.st77{:cx => "292.4", :cy => "69.7", :r => "4.8"}
|
52
|
+
%path.st11{:d => "M292.1,69.7c0-0.5,0.1-0.1-0.1,0.2c0.1-0.2,0.5-0.7,0.1-0.3c-0.4,0.4,0.1,0,0.2-0.1c0.3-0.2-0.7,0,0,0\n\tc0.5,0,0.1,0.1-0.2-0.1c0.2,0.1,0.7,0.5,0.3,0.1c-0.5-0.5,0.2,0.2,0.1,0.2c0.1,0.2,0.1,0.2,0-0.1c-0.1-0.3-0.1-0.3,0,0.1\n\tc0,0.7,0.1-0.2,0.1-0.2c0.1,0.1-0.2,0.4-0.3,0.5c0.5-0.7,0.2-0.3,0-0.1c-0.3,0.2,0.5,0,0.2-0.1c-0.6-0.1-0.4-0.1,0,0.1\n\tc-0.2-0.1-0.3-0.1-0.5-0.3C292.6,70.2,292.2,69.7,292.1,69.7C292.1,69.5,292.1,69.5,292.1,69.7C292.2,70.1,292.2,70.1,292.1,69.7\n\tc0.1,2.7,2.2,5,5,5c2.6,0,5.1-2.3,5-5c-0.3-5.3-4.3-9.8-9.8-9.8c-5.4,0-9.7,4.5-9.8,9.8c-0.1,5.3,4.4,9.6,9.5,9.8\n\tc5.6,0.2,9.8-4.4,10-9.8c0.1-2.7-2.4-5-5-5C294.3,64.7,292.3,67,292.1,69.7L292.1,69.7z"}
|
53
|
+
%g
|
54
|
+
%path.st44{:d => "M203.3,361.8h4.6c2.6,0,5.1-2.3,5-5s-2.2-5-5-5h-4.6c-2.6,0-5.1,2.3-5,5S200.5,361.8,203.3,361.8z"}
|
55
|
+
%g
|
56
|
+
%path.st44{:d => "M94.9,361.8h4.6c2.6,0,5.1-2.3,5-5s-2.2-5-5-5h-4.6c-2.6,0-5.1,2.3-5,5S92.1,361.8,94.9,361.8z"}
|
57
|
+
%g
|
58
|
+
%path.st22{:d => "M145.2,429.6v1c0.6,8.8,1.5,7.2-8.3,7.1h-7.8c1.5-1.9,1.8-2.4,1.8-5.1v-1.1c0-14.1-5.3-26.9-13.7-36.2\n\t\tc-5.5-6-12.3-10.3-19.8-12.7c0.8,0,1.6,0.1,2.4,0.1c13.1,0.8,26.6,5.6,34.7,14.2C142.6,405.5,145.2,416.8,145.2,429.6L145.2,429.6z\n\t\t"}
|
59
|
+
%path.st11{:d => "M242.1,308.5H285c6.4,0,6.4-10,0-10h-42.9C235.7,298.5,235.6,308.5,242.1,308.5z"}
|
60
|
+
.svg-planet
|
61
|
+
%svg{:height => "347.2px", :space => "preserve", style: "enable-background:new 0 0 348.5 347.2;", :version => "1.1", :viewbox => "0 0 348.5 347.2", :width => "348.5px", :x => "0px", :xmlns => "http://www.w3.org/2000/svg", "xmlns:a" => "http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/", "xmlns:xlink" => "http://www.w3.org/1999/xlink", :y => "0px"}
|
62
|
+
:css
|
63
|
+
.st0{fill:#F44336;}
|
64
|
+
.st1{fill:#BF302C;}
|
65
|
+
.st2{fill:#A52926;}
|
66
|
+
.st3{opacity:0.15;enable-background:new ;}
|
67
|
+
.st4{opacity:0.2;enable-background:new ;}
|
68
|
+
.st5{opacity:0.1;enable-background:new ;}
|
69
|
+
.st6{fill:#FFFFFF;}
|
70
|
+
%defs
|
71
|
+
%circle.saturn.st0{:cx => "157.9", :cy => "197.6", :r => "149.5"}
|
72
|
+
%g.saturn-2
|
73
|
+
%path.st1{:d => "M11.3,227.2c42.5,1.4,157.9-2.6,289.5-73.8c-5.1-16.4-13-31.9-23.3-45.6C234.7,137.2,137,191.7,9,184.1\n\t\tC7.6,198.7,8.5,213.2,11.3,227.2L11.3,227.2z M302.6,235.2c4-15.3,5.4-30.7,4.6-45.7c-33.8,25.3-137.2,92.4-277.6,84.9\n\t\tc6.5,10.9,14.4,20.9,23.5,29.9c44.4,0.3,137.7-6.4,245.9-57.2C300.4,243.3,301.6,239.3,302.6,235.2L302.6,235.2z M147.4,346.8\n\t\tc35.4,2.5,69.8-7.7,97.5-27.6C216.9,330.8,184.1,341,147.4,346.8L147.4,346.8z M249.9,79.7c-15.6-12.2-34-21.5-54.4-26.8\n\t\tc-71.9-18.7-145.1,18.3-174.3,84C70.2,135.2,154.3,124.7,249.9,79.7L249.9,79.7z"}
|
74
|
+
%circle.st2{:cx => "221.1", :cy => "149.7", :r => "28.4"}
|
75
|
+
%path.st3{:d => "M233.1,131.1c6,1.6,11.1,5,14.8,9.5c-3-8.7-10.1-15.8-19.7-18.3c-15.2-3.9-30.7,5.2-34.6,20.3\n\tc-2.4,9.1,0,18.4,5.5,25.2c-1.7-5.1-2-10.7-0.6-16.3C202.5,136.3,218,127.2,233.1,131.1z"}
|
76
|
+
%circle.st2{:cx => "136.4", :cy => "215.6", :r => "19.4"}
|
77
|
+
%path.st4{:d => "M144.6,203c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C123.7,206.5,134.2,200.3,144.6,203L144.6,203z"}
|
78
|
+
%circle.st2{:cx => "209.4", :cy => "85.9", :r => "12.6"}
|
79
|
+
%path.st4{:d => "M214.7,77.6c2.7,0.7,4.9,2.2,6.6,4.2c-1.3-3.9-4.5-7-8.8-8.1c-6.7-1.7-13.6,2.3-15.3,9c-1.1,4.1,0,8.1,2.5,11.2\n\tc-0.8-2.3-0.9-4.7-0.3-7.2C201.1,79.9,208,75.9,214.7,77.6z"}
|
80
|
+
%circle.st2{:cx => "65.2", :cy => "197.1", :r => "19.4"}
|
81
|
+
%path.st4{:d => "M73.4,184.5c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C52.5,188,63.1,181.8,73.4,184.5L73.4,184.5z"}
|
82
|
+
%circle.st2{:cx => "132.5", :cy => "307.6", :r => "19.4"}
|
83
|
+
%path.st4{:d => "M140.7,294.9c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C119.8,298.4,130.4,292.2,140.7,294.9L140.7,294.9z"}
|
84
|
+
%circle.st2{:cx => "204.1", :cy => "295.4", :r => "19.4"}
|
85
|
+
%path.st4{:d => "M212.4,282.8c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C191.4,286.3,202,280.1,212.4,282.8L212.4,282.8z"}
|
86
|
+
%circle.st2{:cx => "260.7", :cy => "226.5", :r => "11.1"}
|
87
|
+
%path.st4{:d => "M265.4,219.2c2.4,0.6,4.3,1.9,5.8,3.7c-1.2-3.4-4-6.2-7.7-7.2c-5.9-1.5-12,2-13.5,7.9c-0.9,3.6,0,7.2,2.2,9.8\n\tc-0.7-2-0.8-4.2-0.2-6.4C253.5,221.3,259.5,217.7,265.4,219.2L265.4,219.2z"}
|
88
|
+
%circle.st2{:cx => "122.4", :cy => "98.1", :r => "11.1"}
|
89
|
+
%path.st4{:d => "M127.1,90.8c2.4,0.6,4.3,1.9,5.8,3.7c-1.2-3.4-4-6.2-7.7-7.2c-5.9-1.5-12,2-13.5,7.9c-0.9,3.6,0,7.2,2.2,9.8\n\tc-0.7-2-0.8-4.2-0.2-6.4C115.1,92.8,121.1,89.3,127.1,90.8L127.1,90.8z"}
|
90
|
+
%circle.st2{:cx => "55.9", :cy => "113.4", :r => "5.8"}
|
91
|
+
%path.st4{:d => "M58.4,109.6c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.2-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C52.1,110.6,55.3,108.8,58.4,109.6L58.4,109.6z"}
|
92
|
+
%circle.st2{:cx => "293.3", :cy => "193", :r => "5.8"}
|
93
|
+
%path.st4{:d => "M295.8,189.1c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.2-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C289.5,190.2,292.6,188.3,295.8,189.1L295.8,189.1z"}
|
94
|
+
%circle.st2{:cx => "47", :cy => "244.1", :r => "5.8"}
|
95
|
+
%path.st5{:d => "M49.4,240.3c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.2-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C43.2,241.4,46.3,239.5,49.4,240.3L49.4,240.3z"}
|
96
|
+
%circle.st2{:cx => "89.2", :cy => "296.9", :r => "5.8"}
|
97
|
+
%path.st4{:d => "M91.7,293.1c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.3-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C85.4,294.2,88.6,292.3,91.7,293.1L91.7,293.1z"}
|
98
|
+
%path.st5{:d => "M253.2,82.4c10.2,27.7,12.4,58.6,4.5,89.4C236.9,251.7,155.3,299.7,75.4,279c-21.9-5.7-41.4-16-57.8-29.5\n\tc16.4,44.3,53.5,80.2,102.7,92.9c79.9,20.8,161.6-27.2,182.3-107.1C317.7,177.2,296.5,118.3,253.2,82.4L253.2,82.4z"}
|
99
|
+
= link_to :back do
|
100
|
+
%button.denied__link Back to admin
|
101
|
+
= javascript_include_tag 'errors/application', 'data-turbolinks-track' => true
|
@@ -0,0 +1,50 @@
|
|
1
|
+
%script{src:"https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"}
|
2
|
+
%body
|
3
|
+
.permission_denied
|
4
|
+
#particles-js
|
5
|
+
.denied__wrapper
|
6
|
+
%h1 422
|
7
|
+
%h3
|
8
|
+
Unprocessable
|
9
|
+
.svg-planet
|
10
|
+
%svg{:height => "347.2px", :space => "preserve", style: "enable-background:new 0 0 348.5 347.2;", :version => "1.1", :viewbox => "0 0 348.5 347.2", :width => "348.5px", :x => "0px", :xmlns => "http://www.w3.org/2000/svg", "xmlns:a" => "http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/", "xmlns:xlink" => "http://www.w3.org/1999/xlink", :y => "0px"}
|
11
|
+
:css
|
12
|
+
.st0{fill:#F44336;}
|
13
|
+
.st1{fill:#BF302C;}
|
14
|
+
.st2{fill:#A52926;}
|
15
|
+
.st3{opacity:0.15;enable-background:new ;}
|
16
|
+
.st4{opacity:0.2;enable-background:new ;}
|
17
|
+
.st5{opacity:0.1;enable-background:new ;}
|
18
|
+
.st6{fill:#FFFFFF;}
|
19
|
+
%defs
|
20
|
+
%circle.saturn.st0{:cx => "157.9", :cy => "197.6", :r => "149.5"}
|
21
|
+
%g.saturn-2
|
22
|
+
%path.st1{:d => "M11.3,227.2c42.5,1.4,157.9-2.6,289.5-73.8c-5.1-16.4-13-31.9-23.3-45.6C234.7,137.2,137,191.7,9,184.1\n\t\tC7.6,198.7,8.5,213.2,11.3,227.2L11.3,227.2z M302.6,235.2c4-15.3,5.4-30.7,4.6-45.7c-33.8,25.3-137.2,92.4-277.6,84.9\n\t\tc6.5,10.9,14.4,20.9,23.5,29.9c44.4,0.3,137.7-6.4,245.9-57.2C300.4,243.3,301.6,239.3,302.6,235.2L302.6,235.2z M147.4,346.8\n\t\tc35.4,2.5,69.8-7.7,97.5-27.6C216.9,330.8,184.1,341,147.4,346.8L147.4,346.8z M249.9,79.7c-15.6-12.2-34-21.5-54.4-26.8\n\t\tc-71.9-18.7-145.1,18.3-174.3,84C70.2,135.2,154.3,124.7,249.9,79.7L249.9,79.7z"}
|
23
|
+
%circle.st2{:cx => "221.1", :cy => "149.7", :r => "28.4"}
|
24
|
+
%path.st3{:d => "M233.1,131.1c6,1.6,11.1,5,14.8,9.5c-3-8.7-10.1-15.8-19.7-18.3c-15.2-3.9-30.7,5.2-34.6,20.3\n\tc-2.4,9.1,0,18.4,5.5,25.2c-1.7-5.1-2-10.7-0.6-16.3C202.5,136.3,218,127.2,233.1,131.1z"}
|
25
|
+
%circle.st2{:cx => "136.4", :cy => "215.6", :r => "19.4"}
|
26
|
+
%path.st4{:d => "M144.6,203c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C123.7,206.5,134.2,200.3,144.6,203L144.6,203z"}
|
27
|
+
%circle.st2{:cx => "209.4", :cy => "85.9", :r => "12.6"}
|
28
|
+
%path.st4{:d => "M214.7,77.6c2.7,0.7,4.9,2.2,6.6,4.2c-1.3-3.9-4.5-7-8.8-8.1c-6.7-1.7-13.6,2.3-15.3,9c-1.1,4.1,0,8.1,2.5,11.2\n\tc-0.8-2.3-0.9-4.7-0.3-7.2C201.1,79.9,208,75.9,214.7,77.6z"}
|
29
|
+
%circle.st2{:cx => "65.2", :cy => "197.1", :r => "19.4"}
|
30
|
+
%path.st4{:d => "M73.4,184.5c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C52.5,188,63.1,181.8,73.4,184.5L73.4,184.5z"}
|
31
|
+
%circle.st2{:cx => "132.5", :cy => "307.6", :r => "19.4"}
|
32
|
+
%path.st4{:d => "M140.7,294.9c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C119.8,298.4,130.4,292.2,140.7,294.9L140.7,294.9z"}
|
33
|
+
%circle.st2{:cx => "204.1", :cy => "295.4", :r => "19.4"}
|
34
|
+
%path.st4{:d => "M212.4,282.8c4.1,1.1,7.6,3.4,10.1,6.4c-2-6-6.9-10.8-13.5-12.5c-10.3-2.7-20.9,3.5-23.6,13.9\n\tc-1.6,6.2,0,12.5,3.8,17.2c-1.2-3.5-1.4-7.3-0.4-11.1C191.4,286.3,202,280.1,212.4,282.8L212.4,282.8z"}
|
35
|
+
%circle.st2{:cx => "260.7", :cy => "226.5", :r => "11.1"}
|
36
|
+
%path.st4{:d => "M265.4,219.2c2.4,0.6,4.3,1.9,5.8,3.7c-1.2-3.4-4-6.2-7.7-7.2c-5.9-1.5-12,2-13.5,7.9c-0.9,3.6,0,7.2,2.2,9.8\n\tc-0.7-2-0.8-4.2-0.2-6.4C253.5,221.3,259.5,217.7,265.4,219.2L265.4,219.2z"}
|
37
|
+
%circle.st2{:cx => "122.4", :cy => "98.1", :r => "11.1"}
|
38
|
+
%path.st4{:d => "M127.1,90.8c2.4,0.6,4.3,1.9,5.8,3.7c-1.2-3.4-4-6.2-7.7-7.2c-5.9-1.5-12,2-13.5,7.9c-0.9,3.6,0,7.2,2.2,9.8\n\tc-0.7-2-0.8-4.2-0.2-6.4C115.1,92.8,121.1,89.3,127.1,90.8L127.1,90.8z"}
|
39
|
+
%circle.st2{:cx => "55.9", :cy => "113.4", :r => "5.8"}
|
40
|
+
%path.st4{:d => "M58.4,109.6c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.2-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C52.1,110.6,55.3,108.8,58.4,109.6L58.4,109.6z"}
|
41
|
+
%circle.st2{:cx => "293.3", :cy => "193", :r => "5.8"}
|
42
|
+
%path.st4{:d => "M295.8,189.1c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.2-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C289.5,190.2,292.6,188.3,295.8,189.1L295.8,189.1z"}
|
43
|
+
%circle.st2{:cx => "47", :cy => "244.1", :r => "5.8"}
|
44
|
+
%path.st5{:d => "M49.4,240.3c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.2-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C43.2,241.4,46.3,239.5,49.4,240.3L49.4,240.3z"}
|
45
|
+
%circle.st2{:cx => "89.2", :cy => "296.9", :r => "5.8"}
|
46
|
+
%path.st4{:d => "M91.7,293.1c1.2,0.3,2.3,1,3,1.9c-0.6-1.8-2.1-3.3-4-3.8c-3.1-0.8-6.3,1.1-7.1,4.2c-0.5,1.9,0,3.8,1.1,5.2\n\tc-0.4-1-0.4-2.2-0.1-3.3C85.4,294.2,88.6,292.3,91.7,293.1L91.7,293.1z"}
|
47
|
+
%path.st5{:d => "M253.2,82.4c10.2,27.7,12.4,58.6,4.5,89.4C236.9,251.7,155.3,299.7,75.4,279c-21.9-5.7-41.4-16-57.8-29.5\n\tc16.4,44.3,53.5,80.2,102.7,92.9c79.9,20.8,161.6-27.2,182.3-107.1C317.7,177.2,296.5,118.3,253.2,82.4L253.2,82.4z"}
|
48
|
+
= link_to :back do
|
49
|
+
%button.denied__link Back to admin
|
50
|
+
= javascript_include_tag 'errors/application', 'data-turbolinks-track' => true
|
@@ -0,0 +1,11 @@
|
|
1
|
+
-# Link to the "First" page
|
2
|
+
-# available local variables
|
3
|
+
-# url: url to the first page
|
4
|
+
-# current_page: a page object for the currently displayed page
|
5
|
+
-# total_pages: total number of pages
|
6
|
+
-# per_page: number of items to fetch per page
|
7
|
+
-# remote: data-remote
|
8
|
+
%span.first
|
9
|
+
- unless current_page.first?
|
10
|
+
= link_to url, :remote => remote, class: "btn-pag", title: 'First page' do
|
11
|
+
%i.fa.fa-angle-double-left
|
@@ -0,0 +1,8 @@
|
|
1
|
+
-# Non-link tag that stands for skipped pages...
|
2
|
+
-# available local variables
|
3
|
+
-# current_page: a page object for the currently displayed page
|
4
|
+
-# total_pages: total number of pages
|
5
|
+
-# per_page: number of items to fetch per page
|
6
|
+
-# remote: data-remote
|
7
|
+
%span.page.gap
|
8
|
+
= #"...".html_safe
|
@@ -0,0 +1,11 @@
|
|
1
|
+
-# Link to the "Last" page
|
2
|
+
-# available local variables
|
3
|
+
-# url: url to the last page
|
4
|
+
-# current_page: a page object for the currently displayed page
|
5
|
+
-# total_pages: total number of pages
|
6
|
+
-# per_page: number of items to fetch per page
|
7
|
+
-# remote: data-remote
|
8
|
+
%span.last
|
9
|
+
- unless current_page.last?
|
10
|
+
= link_to url, :remote => remote, class: "btn-pag", title: 'Last page' do
|
11
|
+
%i.fa.fa-angle-double-right
|
@@ -0,0 +1,11 @@
|
|
1
|
+
-# Link to the "Next" page
|
2
|
+
-# available local variables
|
3
|
+
-# url: url to the next page
|
4
|
+
-# current_page: a page object for the currently displayed page
|
5
|
+
-# total_pages: total number of pages
|
6
|
+
-# per_page: number of items to fetch per page
|
7
|
+
-# remote: data-remote
|
8
|
+
%span.next
|
9
|
+
- unless current_page.last?
|
10
|
+
= link_to url, rel: 'next', remote: remote, class: 'btn-pag', title: 'Next' do
|
11
|
+
%i.icon-arrow-right
|
@@ -0,0 +1,10 @@
|
|
1
|
+
-# Link showing page number
|
2
|
+
-# available local variables
|
3
|
+
-# page: a page object for "this" page
|
4
|
+
-# url: url to this page
|
5
|
+
-# current_page: a page object for the currently displayed page
|
6
|
+
-# total_pages: total number of pages
|
7
|
+
-# per_page: number of items to fetch per page
|
8
|
+
-# remote: data-remote
|
9
|
+
%span{:class => page.current? ? "btn-pag bg-current" : "btn-pag bg-not"}
|
10
|
+
= link_to_unless page.current?, page, url, {:remote => remote, rel: page.next? ? 'next' : page.prev? ? 'prev' : nil, :class => page.current? ? "btn-pag bg-current" : "btn-pag bg-not" }
|
@@ -0,0 +1,18 @@
|
|
1
|
+
-# The container tag
|
2
|
+
-# available local variables
|
3
|
+
-# current_page: a page object for the currently displayed page
|
4
|
+
-# total_pages: total number of pages
|
5
|
+
-# per_page: number of items to fetch per page
|
6
|
+
-# remote: data-remote
|
7
|
+
-# paginator: the paginator that renders the pagination tags inside
|
8
|
+
= paginator.render do
|
9
|
+
.pagination
|
10
|
+
= first_page_tag unless current_page.first?
|
11
|
+
-# = prev_page_tag unless current_page.first?
|
12
|
+
- each_page do |page|
|
13
|
+
- if page.left_outer? || page.right_outer? || page.inside_window?
|
14
|
+
= page_tag page
|
15
|
+
- elsif !page.was_truncated?
|
16
|
+
= gap_tag
|
17
|
+
-# = next_page_tag unless current_page.last?
|
18
|
+
= last_page_tag unless current_page.last?
|
@@ -0,0 +1,11 @@
|
|
1
|
+
-# Link to the "Previous" page
|
2
|
+
-# available local variables
|
3
|
+
-# url: url to the previous page
|
4
|
+
-# current_page: a page object for the currently displayed page
|
5
|
+
-# total_pages: total number of pages
|
6
|
+
-# per_page: number of items to fetch per page
|
7
|
+
-# remote: data-remote
|
8
|
+
%span.prev
|
9
|
+
- unless current_page.first?
|
10
|
+
= link_to url, rel: 'prev', :remote => remote, class: "btn-pag", title: 'Preview' do
|
11
|
+
%i.icon-arrow-left
|
@@ -0,0 +1 @@
|
|
1
|
+
= yield
|
@@ -0,0 +1 @@
|
|
1
|
+
= yield
|
@@ -0,0 +1,44 @@
|
|
1
|
+
-# .collection-item.avatar
|
2
|
+
-# -# -# = material_icon.md_24.add.css_class("circle")
|
3
|
+
-# %b
|
4
|
+
-# = activity.owner.name if activity.owner
|
5
|
+
-# = t('keppler.messages.has')
|
6
|
+
-# = t('keppler.actions.created').downcase
|
7
|
+
-# = t("keppler.models.singularize.#{activity.trackable_type.underscore}").humanize
|
8
|
+
|
9
|
+
-# - if activity.trackable
|
10
|
+
-# = t('keppler.messages.to')
|
11
|
+
-# %b
|
12
|
+
-# = activity.trackable.send(method)
|
13
|
+
-# = t('keppler.messages.at')
|
14
|
+
-# = activity.created_at
|
15
|
+
-# - else
|
16
|
+
-# = t('keppler.messages.at')
|
17
|
+
-# = activity.created_at
|
18
|
+
-# = t('keppler.messages.since_been_removed')
|
19
|
+
.timeline-item
|
20
|
+
|
21
|
+
%h6.timeline-header.no-border
|
22
|
+
%small
|
23
|
+
%b
|
24
|
+
= activity.owner&.name
|
25
|
+
%small
|
26
|
+
= t('keppler.messages.has')
|
27
|
+
= t('keppler.actions.created').downcase
|
28
|
+
= t("keppler.models.singularize.#{activity.trackable_type.underscore.split('/').last}").humanize
|
29
|
+
%b
|
30
|
+
= activity.trackable.send(method) if activity.trackable
|
31
|
+
- if activity.trackable
|
32
|
+
%span.time
|
33
|
+
%i.icon-clock
|
34
|
+
= t('keppler.messages.at')
|
35
|
+
= activity.created_at.to_formatted_s(:time)
|
36
|
+
= t('keppler.messages.to')
|
37
|
+
= activity.created_at.to_formatted_s(:day)
|
38
|
+
- else
|
39
|
+
%span.time
|
40
|
+
%i.icon-clock
|
41
|
+
= t('keppler.messages.at')
|
42
|
+
= activity.created_at.to_formatted_s(:time)
|
43
|
+
= t('keppler.messages.to')
|
44
|
+
= activity.created_at.to_formatted_s(:day)
|
@@ -0,0 +1,15 @@
|
|
1
|
+
.timeline-item
|
2
|
+
%h6.timeline-header.no-border
|
3
|
+
%small
|
4
|
+
%b
|
5
|
+
= activity.owner&.name
|
6
|
+
%small
|
7
|
+
= t('keppler.messages.has')
|
8
|
+
= t('keppler.actions.deleted').downcase
|
9
|
+
= activity.trackable_type.underscore.split('/').last.humanize
|
10
|
+
%span.time
|
11
|
+
%i.icon-clock
|
12
|
+
= t('keppler.messages.at')
|
13
|
+
= activity.created_at.to_formatted_s(:time)
|
14
|
+
= t('keppler.messages.to')
|
15
|
+
= activity.created_at.to_formatted_s(:day)
|
@@ -0,0 +1,44 @@
|
|
1
|
+
-# .collection-item.avatar
|
2
|
+
-# -# -# = material_icon.md_24.create.css_class("circle")
|
3
|
+
-# %b
|
4
|
+
-# = activity.owner.name if activity.owner
|
5
|
+
-# = t('keppler.messages.has')
|
6
|
+
-# = t('keppler.actions.updated').downcase
|
7
|
+
-# = t("keppler.models.singularize.#{activity.trackable_type.underscore}").humanize
|
8
|
+
|
9
|
+
-# - if activity.trackable
|
10
|
+
-# = t('keppler.messages.to')
|
11
|
+
-# %b
|
12
|
+
-# = activity.trackable.send(method)
|
13
|
+
-# = t('keppler.messages.at')
|
14
|
+
-# = activity.created_at
|
15
|
+
-# - else
|
16
|
+
-# = t('keppler.messages.at')
|
17
|
+
-# = activity.created_at
|
18
|
+
-# = t('keppler.messages.since_been_removed')
|
19
|
+
.timeline-item
|
20
|
+
|
21
|
+
%h6.timeline-header.no-border
|
22
|
+
%small
|
23
|
+
%b
|
24
|
+
= activity.owner&.name
|
25
|
+
%small
|
26
|
+
= t('keppler.messages.has')
|
27
|
+
= t('keppler.actions.updated').downcase
|
28
|
+
= t("keppler.models.singularize.#{activity.trackable_type.underscore.split('/').last}").humanize
|
29
|
+
%b
|
30
|
+
= activity.trackable.send(method) if activity.trackable
|
31
|
+
- if activity.trackable
|
32
|
+
%span.time
|
33
|
+
%i.icon-clock
|
34
|
+
= t('keppler.messages.at')
|
35
|
+
= activity.created_at.to_formatted_s(:time)
|
36
|
+
= t('keppler.messages.to')
|
37
|
+
= activity.created_at.to_formatted_s(:day)
|
38
|
+
- else
|
39
|
+
%span.time
|
40
|
+
%i.icon-clock
|
41
|
+
= t('keppler.messages.at')
|
42
|
+
= activity.created_at.to_formatted_s(:time)
|
43
|
+
= t('keppler.messages.to')
|
44
|
+
= activity.created_at.to_formatted_s(:day)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
.timeline-item
|
2
|
+
%h6.timeline-header.no-border
|
3
|
+
%small
|
4
|
+
%b
|
5
|
+
= activity.owner.name if activity.owner
|
6
|
+
%small
|
7
|
+
= t('keppler.messages.login_in_activity')
|
8
|
+
%span.time
|
9
|
+
%i.icon-clock
|
10
|
+
= t('keppler.messages.at')
|
11
|
+
= activity.created_at.to_formatted_s(:time)
|
12
|
+
= t('keppler.messages.to')
|
13
|
+
= activity.created_at.to_formatted_s(:day)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
.timeline-item
|
2
|
+
%h6.timeline-header.no-border
|
3
|
+
%small
|
4
|
+
%b
|
5
|
+
= activity.owner.name if activity.owner
|
6
|
+
%small
|
7
|
+
= t('keppler.messages.logout_in_activity')
|
8
|
+
%span.time
|
9
|
+
%i.icon-clock
|
10
|
+
= t('keppler.messages.at')
|
11
|
+
= activity.created_at.to_formatted_s(:time)
|
12
|
+
= t('keppler.messages.to')
|
13
|
+
= activity.created_at.to_formatted_s(:day)
|
@@ -0,0 +1,9 @@
|
|
1
|
+
-# Link to the "First" page
|
2
|
+
-# available local variables
|
3
|
+
-# url: url to the first page
|
4
|
+
-# current_page: a page object for the currently displayed page
|
5
|
+
-# total_pages: total number of pages
|
6
|
+
-# per_page: number of items to fetch per page
|
7
|
+
-# remote: data-remote
|
8
|
+
%span.first
|
9
|
+
= link_to_unless current_page.first?, "<i class='fa fa-angle-double-left'></i>".html_safe, url, :remote => remote, class: "btn btn-page"
|
@@ -0,0 +1,8 @@
|
|
1
|
+
-# Non-link tag that stands for skipped pages...
|
2
|
+
-# available local variables
|
3
|
+
-# current_page: a page object for the currently displayed page
|
4
|
+
-# total_pages: total number of pages
|
5
|
+
-# per_page: number of items to fetch per page
|
6
|
+
-# remote: data-remote
|
7
|
+
%span.page.gap
|
8
|
+
= #"...".html_safe
|
@@ -0,0 +1,9 @@
|
|
1
|
+
-# Link to the "Last" page
|
2
|
+
-# available local variables
|
3
|
+
-# url: url to the last page
|
4
|
+
-# current_page: a page object for the currently displayed page
|
5
|
+
-# total_pages: total number of pages
|
6
|
+
-# per_page: number of items to fetch per page
|
7
|
+
-# remote: data-remote
|
8
|
+
%span.last
|
9
|
+
= link_to_unless current_page.last?, "<i class='fa fa-angle-double-right'></i>".html_safe, url, :remote => remote, class: "btn btn-page"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
-# Link to the "Next" page
|
2
|
+
-# available local variables
|
3
|
+
-# url: url to the next page
|
4
|
+
-# current_page: a page object for the currently displayed page
|
5
|
+
-# total_pages: total number of pages
|
6
|
+
-# per_page: number of items to fetch per page
|
7
|
+
-# remote: data-remote
|
8
|
+
%span.next
|
9
|
+
= link_to_unless current_page.last?, "<i class='fa fa-angle-right'></i>".html_safe, url, rel: 'next', :remote => remote, class: "btn btn-page"
|