qbrick 2.5.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +423 -0
- data/Rakefile +82 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/LICENSE.txt +674 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/README.md +62 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/dialogs/anchor.js.coffee +81 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/dialogs/link.js.coffee +1353 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/images/anchor.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/images/hidpi/anchor.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/lang/de.js +68 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/lang/en.js +68 -0
- data/app/assets/javascripts/ckeditor/plugins/adv_link/plugin.js.coffee +282 -0
- data/app/assets/javascripts/kuhsaft/application.js.coffee +7 -0
- data/app/assets/javascripts/kuhsaft/cms/application.js.coffee.erb +136 -0
- data/app/assets/javascripts/kuhsaft/views/read_more_view.js.coffee +17 -0
- data/app/assets/stylesheets/kuhsaft/application.css.sass +1 -0
- data/app/assets/stylesheets/kuhsaft/cms/application.css.sass +204 -0
- data/app/assets/stylesheets/kuhsaft/modules/_text_brick.css.sass +16 -0
- data/app/controllers/kuhsaft/api/pages_controller.rb +14 -0
- data/app/controllers/kuhsaft/cms/admin_controller.rb +18 -0
- data/app/controllers/kuhsaft/cms/assets_controller.rb +38 -0
- data/app/controllers/kuhsaft/cms/bricks_controller.rb +61 -0
- data/app/controllers/kuhsaft/cms/ckimages_controller.rb +26 -0
- data/app/controllers/kuhsaft/cms/pages_controller.rb +71 -0
- data/app/controllers/kuhsaft/pages_controller.rb +38 -0
- data/app/controllers/kuhsaft/sitemaps_controller.rb +12 -0
- data/app/helpers/cms_helper.rb +27 -0
- data/app/helpers/kuhsaft/admin_helper.rb +20 -0
- data/app/helpers/kuhsaft/cms/admin_helper.rb +21 -0
- data/app/helpers/kuhsaft/cms/pages_helper.rb +17 -0
- data/app/helpers/pages_helper.rb +49 -0
- data/app/helpers/sitemaps_helper.rb +12 -0
- data/app/models/kuhsaft/accordion_brick.rb +15 -0
- data/app/models/kuhsaft/accordion_item_brick.rb +21 -0
- data/app/models/kuhsaft/anchor_brick.rb +17 -0
- data/app/models/kuhsaft/asset.rb +29 -0
- data/app/models/kuhsaft/asset_brick.rb +26 -0
- data/app/models/kuhsaft/brick.rb +137 -0
- data/app/models/kuhsaft/brick_type.rb +7 -0
- data/app/models/kuhsaft/brick_type_filter.rb +18 -0
- data/app/models/kuhsaft/ckimage.rb +5 -0
- data/app/models/kuhsaft/cms.rb +7 -0
- data/app/models/kuhsaft/column_brick.rb +22 -0
- data/app/models/kuhsaft/image_brick.rb +16 -0
- data/app/models/kuhsaft/image_size.rb +51 -0
- data/app/models/kuhsaft/link_brick.rb +21 -0
- data/app/models/kuhsaft/page.rb +160 -0
- data/app/models/kuhsaft/page_type.rb +11 -0
- data/app/models/kuhsaft/partition.rb +18 -0
- data/app/models/kuhsaft/placeholder_brick.rb +23 -0
- data/app/models/kuhsaft/publish_state.rb +24 -0
- data/app/models/kuhsaft/slider_brick.rb +18 -0
- data/app/models/kuhsaft/text_brick.rb +23 -0
- data/app/models/kuhsaft/two_column_brick.rb +46 -0
- data/app/models/kuhsaft/video_brick.rb +22 -0
- data/app/uploaders/kuhsaft/asset_brick_asset_uploader.rb +43 -0
- data/app/uploaders/kuhsaft/asset_uploader.rb +50 -0
- data/app/uploaders/kuhsaft/ckimage_uploader.rb +16 -0
- data/app/uploaders/kuhsaft/image_brick_image_uploader.rb +35 -0
- data/app/views/kuhsaft/accordion_bricks/_accordion_brick.html.haml +3 -0
- data/app/views/kuhsaft/accordion_bricks/accordion_brick/_edit.html.haml +0 -0
- data/app/views/kuhsaft/accordion_item_bricks/_accordion_item_brick.html.haml +8 -0
- data/app/views/kuhsaft/accordion_item_bricks/accordion_item_brick/_edit.html.haml +1 -0
- data/app/views/kuhsaft/anchor_bricks/_anchor_brick.html.haml +1 -0
- data/app/views/kuhsaft/anchor_bricks/anchor_brick/_edit.html.haml +1 -0
- data/app/views/kuhsaft/asset_bricks/_asset_brick.html.haml +2 -0
- data/app/views/kuhsaft/asset_bricks/asset_brick/_edit.html.haml +8 -0
- data/app/views/kuhsaft/cms/admin/_brick_type_dropdown.html.haml +14 -0
- data/app/views/kuhsaft/cms/admin/_content_language_switch.html.haml +7 -0
- data/app/views/kuhsaft/cms/admin/_empty_state.html.haml +5 -0
- data/app/views/kuhsaft/cms/admin/_flash.html.haml +7 -0
- data/app/views/kuhsaft/cms/admin/_main_navigation.html.haml +6 -0
- data/app/views/kuhsaft/cms/assets/_form.html.haml +15 -0
- data/app/views/kuhsaft/cms/assets/_list.html.haml +11 -0
- data/app/views/kuhsaft/cms/assets/edit.html.haml +2 -0
- data/app/views/kuhsaft/cms/assets/index.html.haml +3 -0
- data/app/views/kuhsaft/cms/assets/new.html.haml +2 -0
- data/app/views/kuhsaft/cms/bricks/_brick_header.html.haml +43 -0
- data/app/views/kuhsaft/cms/bricks/_brick_item.html.haml +25 -0
- data/app/views/kuhsaft/cms/bricks/_brick_list.html.haml +4 -0
- data/app/views/kuhsaft/cms/bricks/_new.html.haml +41 -0
- data/app/views/kuhsaft/cms/bricks/_sort_form.html.haml +3 -0
- data/app/views/kuhsaft/cms/bricks/create.js.erb +11 -0
- data/app/views/kuhsaft/cms/bricks/destroy.js.erb +10 -0
- data/app/views/kuhsaft/cms/bricks/new.js.erb +14 -0
- data/app/views/kuhsaft/cms/bricks/update.js.erb +8 -0
- data/app/views/kuhsaft/cms/ckimages/create.html.haml +11 -0
- data/app/views/kuhsaft/cms/ckimages/destroy.js.erb +2 -0
- data/app/views/kuhsaft/cms/ckimages/index.html.haml +13 -0
- data/app/views/kuhsaft/cms/pages/_branch.html.haml +19 -0
- data/app/views/kuhsaft/cms/pages/_form.html.haml +45 -0
- data/app/views/kuhsaft/cms/pages/edit.html.haml +16 -0
- data/app/views/kuhsaft/cms/pages/index.html.haml +14 -0
- data/app/views/kuhsaft/cms/pages/new.html.haml +1 -0
- data/app/views/kuhsaft/cms/pages/show.html.haml +0 -0
- data/app/views/kuhsaft/cms/pages/sort.js.erb +0 -0
- data/app/views/kuhsaft/column_bricks/_column_brick.html.haml +3 -0
- data/app/views/kuhsaft/column_bricks/column_brick/_edit.html.haml +0 -0
- data/app/views/kuhsaft/image_bricks/_image_brick.html.haml +11 -0
- data/app/views/kuhsaft/image_bricks/image_brick/_edit.html.haml +13 -0
- data/app/views/kuhsaft/link_bricks/_link_brick.html.haml +2 -0
- data/app/views/kuhsaft/link_bricks/link_brick/_edit.html.haml +4 -0
- data/app/views/kuhsaft/pages/index.html.haml +7 -0
- data/app/views/kuhsaft/pages/show.html.haml +11 -0
- data/app/views/kuhsaft/placeholder_bricks/_placeholder_brick.html.haml +2 -0
- data/app/views/kuhsaft/placeholder_bricks/placeholder_brick/_edit.html.haml +1 -0
- data/app/views/kuhsaft/search/_form.html.haml +2 -0
- data/app/views/kuhsaft/search/_results.html.haml +8 -0
- data/app/views/kuhsaft/search/_results_entry.html.haml +13 -0
- data/app/views/kuhsaft/sitemaps/index.xml.haml +9 -0
- data/app/views/kuhsaft/slider_bricks/_slider_brick.html.haml +10 -0
- data/app/views/kuhsaft/slider_bricks/slider_brick/_edit.html.haml +0 -0
- data/app/views/kuhsaft/text_bricks/_text_brick.html.haml +11 -0
- data/app/views/kuhsaft/text_bricks/text_brick/_edit.html.haml +2 -0
- data/app/views/kuhsaft/two_column_bricks/_two_column_brick.html.haml +3 -0
- data/app/views/kuhsaft/two_column_bricks/two_column_brick/_childs.html.haml +5 -0
- data/app/views/kuhsaft/two_column_bricks/two_column_brick/_edit.html.haml +1 -0
- data/app/views/kuhsaft/video_bricks/_video_brick.html.haml +9 -0
- data/app/views/kuhsaft/video_bricks/video_brick/_edit.html.haml +8 -0
- data/app/views/layouts/kuhsaft/cms/application.html.haml +25 -0
- data/app/views/layouts/kuhsaft/cms/ckimages.html.haml +18 -0
- data/config/initializers/simple_form.rb +142 -0
- data/config/initializers/simple_form_bootstrap.rb +45 -0
- data/config/locales/de.yml +207 -0
- data/config/locales/en.yml +211 -0
- data/config/locales/models/kuhsaft/accordion_brick/de.yml +4 -0
- data/config/locales/models/kuhsaft/accordion_brick/en.yml +4 -0
- data/config/locales/models/kuhsaft/accordion_item_brick/de.yml +7 -0
- data/config/locales/models/kuhsaft/accordion_item_brick/en.yml +7 -0
- data/config/locales/models/kuhsaft/anchor_brick/de.yml +7 -0
- data/config/locales/models/kuhsaft/anchor_brick/en.yml +7 -0
- data/config/locales/models/kuhsaft/asset_brick/de.yml +9 -0
- data/config/locales/models/kuhsaft/asset_brick/en.yml +9 -0
- data/config/locales/models/kuhsaft/brick/de.yml +5 -0
- data/config/locales/models/kuhsaft/brick/en.yml +5 -0
- data/config/locales/models/kuhsaft/column_brick/de.yml +4 -0
- data/config/locales/models/kuhsaft/column_brick/en.yml +4 -0
- data/config/locales/models/kuhsaft/image_brick/de.yml +11 -0
- data/config/locales/models/kuhsaft/image_brick/en.yml +11 -0
- data/config/locales/models/kuhsaft/image_size/de.yml +13 -0
- data/config/locales/models/kuhsaft/image_size/en.yml +13 -0
- data/config/locales/models/kuhsaft/link_brick/de.yml +10 -0
- data/config/locales/models/kuhsaft/link_brick/en.yml +10 -0
- data/config/locales/models/kuhsaft/page/de.yml +19 -0
- data/config/locales/models/kuhsaft/page/en.yml +19 -0
- data/config/locales/models/kuhsaft/placeholder_brick/de.yml +8 -0
- data/config/locales/models/kuhsaft/placeholder_brick/en.yml +8 -0
- data/config/locales/models/kuhsaft/slider_brick/de.yml +4 -0
- data/config/locales/models/kuhsaft/slider_brick/en.yml +4 -0
- data/config/locales/models/kuhsaft/text_brick/de.yml +11 -0
- data/config/locales/models/kuhsaft/text_brick/en.yml +11 -0
- data/config/locales/models/kuhsaft/two_column_brick/de.yml +7 -0
- data/config/locales/models/kuhsaft/two_column_brick/en.yml +7 -0
- data/config/locales/models/kuhsaft/video_brick/de.yml +9 -0
- data/config/locales/models/kuhsaft/video_brick/en.yml +9 -0
- data/config/locales/simple_form.en.yml +26 -0
- data/config/locales/views/kuhsaft/cms/admin/de.yml +13 -0
- data/config/locales/views/kuhsaft/cms/admin/en.yml +12 -0
- data/config/locales/views/kuhsaft/cms/bricks/de.yml +18 -0
- data/config/locales/views/kuhsaft/cms/bricks/en.yml +18 -0
- data/config/locales/views/kuhsaft/cms/pages/de.yml +31 -0
- data/config/locales/views/kuhsaft/cms/pages/en.yml +31 -0
- data/config/locales/views/kuhsaft/image_brick/de.yml +6 -0
- data/config/locales/views/kuhsaft/image_brick/en.yml +6 -0
- data/config/locales/views/kuhsaft/search/de.yml +12 -0
- data/config/locales/views/kuhsaft/search/en.yml +12 -0
- data/config/locales/views/kuhsaft/text_brick/de.yml +6 -0
- data/config/locales/views/kuhsaft/text_brick/en.yml +6 -0
- data/config/locales/views/kuhsaft/video_brick/de.yml +7 -0
- data/config/locales/views/kuhsaft/video_brick/en.yml +7 -0
- data/config/routes.rb +30 -0
- data/db/migrate/01_create_kuhsaft_pages.rb +31 -0
- data/db/migrate/02_create_kuhsaft_bricks.rb +23 -0
- data/db/migrate/03_create_kuhsaft_brick_types.rb +12 -0
- data/db/migrate/04_create_kuhsaft_assets.rb +10 -0
- data/db/migrate/05_remove_cms_admin.rb +9 -0
- data/db/migrate/06_add_template_name_to_kuhsaft_bricks.rb +7 -0
- data/db/migrate/07_add_default_value_to_brick_type_enabled.rb +6 -0
- data/db/migrate/08_add_display_styles_to_bricks.rb +5 -0
- data/db/migrate/09_add_additional_fields_to_kuhsaft_bricks.rb +6 -0
- data/db/migrate/10_add_redirect_url_to_kuhsaft_pages.rb +7 -0
- data/db/migrate/11_update_url_and_redirect_url_value.rb +45 -0
- data/db/migrate/12_regenerate_fulltext.rb +12 -0
- data/db/migrate/13_add_page_title_to_pages.rb +7 -0
- data/db/migrate/14_move_kuhsaft_assets.rb +22 -0
- data/db/migrate/15_add_alt_text_to_bricks.rb +5 -0
- data/db/migrate/16_update_default_value_for_page_type.rb +9 -0
- data/db/migrate/17_set_page_type_to_content_for_empty_fields.rb +7 -0
- data/db/migrate/18_add_identifier_to_kuhsaft_pages.rb +6 -0
- data/db/migrate/19_add_col_count_to_bricks.rb +5 -0
- data/db/migrate/20_create_kuhsaft_ckimages.rb +9 -0
- data/db/seeds.rb +20 -0
- data/lib/generators/kuhsaft/assets/install_generator.rb +25 -0
- data/lib/generators/kuhsaft/translations/add_generator.rb +41 -0
- data/lib/kuhsaft.rb +22 -0
- data/lib/kuhsaft/brick_list.rb +87 -0
- data/lib/kuhsaft/engine.rb +27 -0
- data/lib/kuhsaft/gridded.rb +20 -0
- data/lib/kuhsaft/image_uploader_mounting.rb +22 -0
- data/lib/kuhsaft/orderable.rb +71 -0
- data/lib/kuhsaft/page_tree.rb +14 -0
- data/lib/kuhsaft/partial_extractor.rb +21 -0
- data/lib/kuhsaft/searchable.rb +69 -0
- data/lib/kuhsaft/touch_placeholders.rb +31 -0
- data/lib/kuhsaft/translatable.rb +54 -0
- data/lib/kuhsaft/version.rb +3 -0
- data/lib/tasks/kuhsaft_tasks.rake +22 -0
- data/lib/templates/kuhsaft/assets/ck-config.js.coffee +48 -0
- data/lib/templates/kuhsaft/assets/customizations.css.sass +0 -0
- data/lib/templates/kuhsaft/assets/customizations.js.coffee +0 -0
- data/lib/templates/kuhsaft/translations/add_translation.erb +8 -0
- data/spec/controllers/kuhsaft/api/pages_controller_spec.rb +70 -0
- data/spec/controllers/kuhsaft/pages_controller_spec.rb +90 -0
- data/spec/controllers/kuhsaft/sitemaps_controller_spec.rb +13 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/images/spec-image.png +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/javascripts/kuhsaft/cms/ck-config.js.coffee +48 -0
- data/spec/dummy/app/assets/javascripts/kuhsaft/cms/customizations.js.coffee +0 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/assets/stylesheets/kuhsaft/cms/customizations.css.sass +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +4 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +26 -0
- data/spec/dummy/config/boot.rb +3 -0
- data/spec/dummy/config/database.yml +19 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +81 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/kuhsaft.rb +5 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/db/.gitkeep +0 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/stylesheets/.gitkeep +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/factories.rb +26 -0
- data/spec/features/cms_pages_spec.rb +76 -0
- data/spec/features/search_spec.rb +78 -0
- data/spec/helpers/kuhsaft/cms/admin_helper_spec.rb +25 -0
- data/spec/helpers/kuhsaft/cms/pages_helper_spec.rb +46 -0
- data/spec/helpers/kuhsaft/pages_helper_spec.rb +21 -0
- data/spec/kuhsaft_spec.rb +7 -0
- data/spec/lib/brick_list_spec.rb +50 -0
- data/spec/lib/engine_spec.rb +25 -0
- data/spec/lib/gridded_spec.rb +24 -0
- data/spec/lib/image_uploader_mounting_spec.rb +14 -0
- data/spec/lib/page_tree_spec.rb +38 -0
- data/spec/lib/searchable_spec.rb +30 -0
- data/spec/lib/touch_placeholders_spec.rb +44 -0
- data/spec/lib/translatable_spec.rb +155 -0
- data/spec/models/accordion_brick_spec.rb +38 -0
- data/spec/models/accordion_item_brick_spec.rb +50 -0
- data/spec/models/anchor_brick_spec.rb +26 -0
- data/spec/models/asset_brick_spec.rb +45 -0
- data/spec/models/asset_spec.rb +41 -0
- data/spec/models/brick_spec.rb +134 -0
- data/spec/models/brick_type_filter_spec.rb +64 -0
- data/spec/models/column_brick_spec.rb +32 -0
- data/spec/models/image_brick_spec.rb +49 -0
- data/spec/models/image_size_spec.rb +36 -0
- data/spec/models/link_brick_spec.rb +51 -0
- data/spec/models/page_spec.rb +472 -0
- data/spec/models/placeholder_brick_spec.rb +46 -0
- data/spec/models/publish_state_spec.rb +33 -0
- data/spec/models/slider_brick_spec.rb +26 -0
- data/spec/models/text_brick_spec.rb +30 -0
- data/spec/models/two_column_brick_spec.rb +82 -0
- data/spec/models/video_brick_spec.rb +32 -0
- data/spec/spec_helper.rb +81 -0
- data/spec/support/kuhsaft_spec_helper.rb +8 -0
- data/spec/support/write_expectation.rb +57 -0
- data/spec/views/kuhsaft/sitemaps/index.xml.haml_spec.rb +67 -0
- data/vendor/assets/javascripts/bootstrap-modal-v2.js +376 -0
- data/vendor/assets/javascripts/bootstrap-modalmanager.js +423 -0
- data/vendor/assets/javascripts/jquery.nestable.js +485 -0
- data/vendor/assets/stylesheets/bootstrap_modal.css +214 -0
- data/vendor/assets/stylesheets/nestable.css +84 -0
- metadata +870 -0
@@ -0,0 +1,214 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap Modal
|
3
|
+
*
|
4
|
+
* Copyright Jordan Schroter
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
*/
|
9
|
+
|
10
|
+
.modal-open {
|
11
|
+
overflow: hidden;
|
12
|
+
}
|
13
|
+
|
14
|
+
|
15
|
+
/* add a scroll bar to stop page from jerking around */
|
16
|
+
.modal-open.page-overflow .page-container,
|
17
|
+
.modal-open.page-overflow .page-container .navbar-fixed-top,
|
18
|
+
.modal-open.page-overflow .page-container .navbar-fixed-bottom,
|
19
|
+
.modal-open.page-overflow .modal-scrollable {
|
20
|
+
overflow-y: scroll;
|
21
|
+
}
|
22
|
+
|
23
|
+
@media (max-width: 979px) {
|
24
|
+
.modal-open.page-overflow .page-container .navbar-fixed-top,
|
25
|
+
.modal-open.page-overflow .page-container .navbar-fixed-bottom {
|
26
|
+
overflow-y: visible;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
.modal-scrollable {
|
32
|
+
position: fixed;
|
33
|
+
top: 0;
|
34
|
+
bottom: 0;
|
35
|
+
left: 0;
|
36
|
+
right: 0;
|
37
|
+
overflow: auto;
|
38
|
+
}
|
39
|
+
|
40
|
+
.modal {
|
41
|
+
outline: none;
|
42
|
+
position: absolute;
|
43
|
+
margin-top: 0;
|
44
|
+
top: 50%;
|
45
|
+
overflow: visible; /* allow content to popup out (i.e tooltips) */
|
46
|
+
}
|
47
|
+
|
48
|
+
.modal.fade {
|
49
|
+
top: -100%;
|
50
|
+
-webkit-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
|
51
|
+
-moz-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
|
52
|
+
-o-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
|
53
|
+
transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
|
54
|
+
}
|
55
|
+
|
56
|
+
.modal.fade.in {
|
57
|
+
top: 50%;
|
58
|
+
}
|
59
|
+
|
60
|
+
.modal-body {
|
61
|
+
max-height: none;
|
62
|
+
overflow: visible;
|
63
|
+
}
|
64
|
+
|
65
|
+
.modal.modal-absolute {
|
66
|
+
position: absolute;
|
67
|
+
z-index: 950;
|
68
|
+
}
|
69
|
+
|
70
|
+
.modal .loading-mask {
|
71
|
+
position: absolute;
|
72
|
+
top: 0;
|
73
|
+
bottom: 0;
|
74
|
+
left: 0;
|
75
|
+
right: 0;
|
76
|
+
background: #fff;
|
77
|
+
border-radius: 6px;
|
78
|
+
}
|
79
|
+
|
80
|
+
.modal-backdrop.modal-absolute{
|
81
|
+
position: absolute;
|
82
|
+
z-index: 940;
|
83
|
+
}
|
84
|
+
|
85
|
+
.modal-backdrop,
|
86
|
+
.modal-backdrop.fade.in{
|
87
|
+
opacity: 0.5;
|
88
|
+
filter: alpha(opacity=50);
|
89
|
+
background: #000;
|
90
|
+
}
|
91
|
+
|
92
|
+
.modal.container {
|
93
|
+
width: 940px;
|
94
|
+
margin-left: -470px;
|
95
|
+
}
|
96
|
+
|
97
|
+
/* Modal Overflow */
|
98
|
+
|
99
|
+
.modal-overflow.modal {
|
100
|
+
top: 1%;
|
101
|
+
}
|
102
|
+
|
103
|
+
.modal-overflow.modal.fade {
|
104
|
+
top: -100%;
|
105
|
+
}
|
106
|
+
|
107
|
+
.modal-overflow.modal.fade.in {
|
108
|
+
top: 1%;
|
109
|
+
}
|
110
|
+
|
111
|
+
.modal-overflow .modal-body {
|
112
|
+
overflow: auto;
|
113
|
+
-webkit-overflow-scrolling: touch;
|
114
|
+
}
|
115
|
+
|
116
|
+
/* Responsive */
|
117
|
+
|
118
|
+
@media (min-width: 1200px) {
|
119
|
+
.modal.container {
|
120
|
+
width: 1170px;
|
121
|
+
margin-left: -585px;
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
@media (max-width: 979px) {
|
126
|
+
.modal,
|
127
|
+
.modal.container,
|
128
|
+
.modal.modal-overflow {
|
129
|
+
top: 1%;
|
130
|
+
right: 1%;
|
131
|
+
left: 1%;
|
132
|
+
bottom: auto;
|
133
|
+
width: auto !important;
|
134
|
+
height: auto !important;
|
135
|
+
margin: 0 !important;
|
136
|
+
padding: 0 !important;
|
137
|
+
}
|
138
|
+
|
139
|
+
.modal.fade.in,
|
140
|
+
.modal.container.fade.in,
|
141
|
+
.modal.modal-overflow.fade.in {
|
142
|
+
top: 1%;
|
143
|
+
bottom: auto;
|
144
|
+
}
|
145
|
+
|
146
|
+
.modal-body,
|
147
|
+
.modal-overflow .modal-body {
|
148
|
+
position: static;
|
149
|
+
margin: 0;
|
150
|
+
height: auto !important;
|
151
|
+
max-height: none !important;
|
152
|
+
overflow: visible !important;
|
153
|
+
}
|
154
|
+
|
155
|
+
.modal-footer,
|
156
|
+
.modal-overflow .modal-footer {
|
157
|
+
position: static;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
.loading-spinner {
|
162
|
+
position: absolute;
|
163
|
+
top: 50%;
|
164
|
+
left: 50%;
|
165
|
+
margin: -12px 0 0 -12px;
|
166
|
+
}
|
167
|
+
|
168
|
+
/*
|
169
|
+
Animate.css - http://daneden.me/animate
|
170
|
+
Licensed under the ☺ license (http://licence.visualidiot.com/)
|
171
|
+
|
172
|
+
Copyright (c) 2012 Dan Eden*/
|
173
|
+
|
174
|
+
.animated {
|
175
|
+
-webkit-animation-duration: 1s;
|
176
|
+
-moz-animation-duration: 1s;
|
177
|
+
-o-animation-duration: 1s;
|
178
|
+
animation-duration: 1s;
|
179
|
+
-webkit-animation-fill-mode: both;
|
180
|
+
-moz-animation-fill-mode: both;
|
181
|
+
-o-animation-fill-mode: both;
|
182
|
+
animation-fill-mode: both;
|
183
|
+
}
|
184
|
+
|
185
|
+
@-webkit-keyframes shake {
|
186
|
+
0%, 100% {-webkit-transform: translateX(0);}
|
187
|
+
10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
|
188
|
+
20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
|
189
|
+
}
|
190
|
+
|
191
|
+
@-moz-keyframes shake {
|
192
|
+
0%, 100% {-moz-transform: translateX(0);}
|
193
|
+
10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
|
194
|
+
20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
|
195
|
+
}
|
196
|
+
|
197
|
+
@-o-keyframes shake {
|
198
|
+
0%, 100% {-o-transform: translateX(0);}
|
199
|
+
10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
|
200
|
+
20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
|
201
|
+
}
|
202
|
+
|
203
|
+
@keyframes shake {
|
204
|
+
0%, 100% {transform: translateX(0);}
|
205
|
+
10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
|
206
|
+
20%, 40%, 60%, 80% {transform: translateX(10px);}
|
207
|
+
}
|
208
|
+
|
209
|
+
.shake {
|
210
|
+
-webkit-animation-name: shake;
|
211
|
+
-moz-animation-name: shake;
|
212
|
+
-o-animation-name: shake;
|
213
|
+
animation-name: shake;
|
214
|
+
}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
.dd { position: relative; display: block; margin: 0; padding: 0; list-style: none; font-size: 13px; line-height: 20px; }
|
2
|
+
|
3
|
+
.dd-list { display: block; position: relative; margin: 0; padding: 0; list-style: none; }
|
4
|
+
.dd-list .dd-list { padding-left: 30px; }
|
5
|
+
.dd-collapsed .dd-list { display: none; }
|
6
|
+
|
7
|
+
.dd-item,
|
8
|
+
.dd-empty,
|
9
|
+
.dd-placeholder { display: block; position: relative; margin: 0; padding: 0; min-height: 40px; font-size: 13px; line-height: 40px; }
|
10
|
+
|
11
|
+
.dd-handle { display: block; height: 40px; margin: 5px 0; padding: 5px 10px; color: #333; text-decoration: none; font-weight: bold; border: 1px solid #ccc;
|
12
|
+
background: #fafafa;
|
13
|
+
background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
|
14
|
+
background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
|
15
|
+
background: linear-gradient(top, #fafafa 0%, #eee 100%);
|
16
|
+
-webkit-border-radius: 3px;
|
17
|
+
border-radius: 3px;
|
18
|
+
box-sizing: border-box; -moz-box-sizing: border-box;
|
19
|
+
}
|
20
|
+
.dd-handle:hover { color: #2ea8e5; background: #fff; }
|
21
|
+
|
22
|
+
.dd-item > button { display: block; position: relative; cursor: pointer; float: left; width: 25px; height: 30px; margin: 5px 0; padding: 0; white-space: nowrap; overflow: hidden; border: 0; background: transparent; font-size: 12px; line-height: 1; text-align: center; font-weight: bold; }
|
23
|
+
/*.dd-item > button:before { content: ''; display: block; position: absolute; width: 100%; text-align: center; text-indent: 0; }*/
|
24
|
+
/*.dd-item > button[data-action="collapse"]:before { content: ''; }*/
|
25
|
+
|
26
|
+
.dd-placeholder,
|
27
|
+
.dd-empty { margin: 5px 0; padding: 0; min-height: 40px; background: #f2fbff; border: 1px dashed #b6bcbf; box-sizing: border-box; -moz-box-sizing: border-box; }
|
28
|
+
.dd-empty { border: 1px dashed #bbb; min-height: 100px; background-color: #e5e5e5;
|
29
|
+
background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
|
30
|
+
-webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
|
31
|
+
background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
|
32
|
+
-moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
|
33
|
+
background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
|
34
|
+
linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
|
35
|
+
background-size: 60px 60px;
|
36
|
+
background-position: 0 0, 30px 30px;
|
37
|
+
}
|
38
|
+
|
39
|
+
.dd-dragel { position: absolute; pointer-events: none; z-index: 9999; }
|
40
|
+
.dd-dragel > .dd-item .dd-handle { margin-top: 0; }
|
41
|
+
.dd-dragel .dd-handle {
|
42
|
+
-webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
|
43
|
+
box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
|
44
|
+
}
|
45
|
+
|
46
|
+
.dd3-content { display: block; height: 40px; margin: 5px 0; padding: 0px 10px 0px 38px; color: #333; text-decoration: none; font-weight: bold; border: 1px solid #ccc; line-height: 40px;
|
47
|
+
background: #fafafa;
|
48
|
+
background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
|
49
|
+
background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
|
50
|
+
background: linear-gradient(top, #fafafa 0%, #eee 100%);
|
51
|
+
-webkit-border-radius: 3px;
|
52
|
+
border-radius: 3px;
|
53
|
+
box-sizing: border-box; -moz-box-sizing: border-box;
|
54
|
+
}
|
55
|
+
.dd3-content:hover { color: #2ea8e5; background: #fff; }
|
56
|
+
.dd3-content.unpublished { color: #2ea8e5; background: #e9e9e9; }
|
57
|
+
|
58
|
+
.dd-dragel > .dd3-item > .dd3-content { margin: 0; }
|
59
|
+
|
60
|
+
.dd3-item > button { margin-left: 30px; }
|
61
|
+
|
62
|
+
.dd3-handle { position: absolute; margin: 0; left: 0; top: 0; cursor: pointer; width: 30px; text-indent: 100%; white-space: nowrap; overflow: hidden;
|
63
|
+
border: 1px solid #aaa;
|
64
|
+
background: #ddd;
|
65
|
+
background: -webkit-linear-gradient(top, #ddd 0%, #bbb 100%);
|
66
|
+
background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
|
67
|
+
background: linear-gradient(top, #ddd 0%, #bbb 100%);
|
68
|
+
border-top-right-radius: 0;
|
69
|
+
border-bottom-right-radius: 0;
|
70
|
+
}
|
71
|
+
.dd3-handle:before { content: '≡'; display: block; position: absolute; left: 0; top: 0px; width: 100%; text-align: center; text-indent: 0; color: #fff; font-size: 20px; font-weight: normal; }
|
72
|
+
.dd3-handle:hover { background: #ddd; }
|
73
|
+
|
74
|
+
.dd3-content .btn {
|
75
|
+
margin-bottom: 6px;
|
76
|
+
}
|
77
|
+
|
78
|
+
.button-group {
|
79
|
+
float: right;
|
80
|
+
}
|
81
|
+
|
82
|
+
button i {
|
83
|
+
opacity: 0.5;
|
84
|
+
}
|
metadata
ADDED
@@ -0,0 +1,870 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: qbrick
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.5.0.pre
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Immanuel Häussermann
|
8
|
+
- Felipe Kaufmann
|
9
|
+
- Phil Schilter
|
10
|
+
- Donat Baier
|
11
|
+
- Franca Rast
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
date: 2014-07-21 00:00:00.000000000 Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: rspec
|
19
|
+
requirement: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '0'
|
24
|
+
type: :development
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '0'
|
31
|
+
- !ruby/object:Gem::Dependency
|
32
|
+
name: rspec-rails
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - "~>"
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 2.14.2
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - "~>"
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 2.14.2
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: factory_girl_rails
|
47
|
+
requirement: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '0'
|
52
|
+
type: :development
|
53
|
+
prerelease: false
|
54
|
+
version_requirements: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: capybara
|
61
|
+
requirement: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '2.0'
|
66
|
+
type: :development
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '2.0'
|
73
|
+
- !ruby/object:Gem::Dependency
|
74
|
+
name: pg
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
80
|
+
type: :development
|
81
|
+
prerelease: false
|
82
|
+
version_requirements: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
- !ruby/object:Gem::Dependency
|
88
|
+
name: launchy
|
89
|
+
requirement: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
type: :development
|
95
|
+
prerelease: false
|
96
|
+
version_requirements: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
- !ruby/object:Gem::Dependency
|
102
|
+
name: i18n-tasks
|
103
|
+
requirement: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '0'
|
108
|
+
type: :development
|
109
|
+
prerelease: false
|
110
|
+
version_requirements: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - ">="
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0'
|
115
|
+
- !ruby/object:Gem::Dependency
|
116
|
+
name: rake
|
117
|
+
requirement: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
type: :development
|
123
|
+
prerelease: false
|
124
|
+
version_requirements: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0'
|
129
|
+
- !ruby/object:Gem::Dependency
|
130
|
+
name: nyan-cat-formatter
|
131
|
+
requirement: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
type: :development
|
137
|
+
prerelease: false
|
138
|
+
version_requirements: !ruby/object:Gem::Requirement
|
139
|
+
requirements:
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '0'
|
143
|
+
- !ruby/object:Gem::Dependency
|
144
|
+
name: coffee-rails
|
145
|
+
requirement: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
type: :runtime
|
151
|
+
prerelease: false
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
requirements:
|
154
|
+
- - ">="
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: '0'
|
157
|
+
- !ruby/object:Gem::Dependency
|
158
|
+
name: remotipart
|
159
|
+
requirement: !ruby/object:Gem::Requirement
|
160
|
+
requirements:
|
161
|
+
- - ">="
|
162
|
+
- !ruby/object:Gem::Version
|
163
|
+
version: '0'
|
164
|
+
type: :runtime
|
165
|
+
prerelease: false
|
166
|
+
version_requirements: !ruby/object:Gem::Requirement
|
167
|
+
requirements:
|
168
|
+
- - ">="
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: '0'
|
171
|
+
- !ruby/object:Gem::Dependency
|
172
|
+
name: haml
|
173
|
+
requirement: !ruby/object:Gem::Requirement
|
174
|
+
requirements:
|
175
|
+
- - ">="
|
176
|
+
- !ruby/object:Gem::Version
|
177
|
+
version: 4.0.3
|
178
|
+
type: :runtime
|
179
|
+
prerelease: false
|
180
|
+
version_requirements: !ruby/object:Gem::Requirement
|
181
|
+
requirements:
|
182
|
+
- - ">="
|
183
|
+
- !ruby/object:Gem::Version
|
184
|
+
version: 4.0.3
|
185
|
+
- !ruby/object:Gem::Dependency
|
186
|
+
name: carrierwave
|
187
|
+
requirement: !ruby/object:Gem::Requirement
|
188
|
+
requirements:
|
189
|
+
- - ">="
|
190
|
+
- !ruby/object:Gem::Version
|
191
|
+
version: '0'
|
192
|
+
type: :runtime
|
193
|
+
prerelease: false
|
194
|
+
version_requirements: !ruby/object:Gem::Requirement
|
195
|
+
requirements:
|
196
|
+
- - ">="
|
197
|
+
- !ruby/object:Gem::Version
|
198
|
+
version: '0'
|
199
|
+
- !ruby/object:Gem::Dependency
|
200
|
+
name: mini_magick
|
201
|
+
requirement: !ruby/object:Gem::Requirement
|
202
|
+
requirements:
|
203
|
+
- - ">="
|
204
|
+
- !ruby/object:Gem::Version
|
205
|
+
version: '0'
|
206
|
+
type: :runtime
|
207
|
+
prerelease: false
|
208
|
+
version_requirements: !ruby/object:Gem::Requirement
|
209
|
+
requirements:
|
210
|
+
- - ">="
|
211
|
+
- !ruby/object:Gem::Version
|
212
|
+
version: '0'
|
213
|
+
- !ruby/object:Gem::Dependency
|
214
|
+
name: rdiscount
|
215
|
+
requirement: !ruby/object:Gem::Requirement
|
216
|
+
requirements:
|
217
|
+
- - ">="
|
218
|
+
- !ruby/object:Gem::Version
|
219
|
+
version: '0'
|
220
|
+
type: :runtime
|
221
|
+
prerelease: false
|
222
|
+
version_requirements: !ruby/object:Gem::Requirement
|
223
|
+
requirements:
|
224
|
+
- - ">="
|
225
|
+
- !ruby/object:Gem::Version
|
226
|
+
version: '0'
|
227
|
+
- !ruby/object:Gem::Dependency
|
228
|
+
name: ancestry
|
229
|
+
requirement: !ruby/object:Gem::Requirement
|
230
|
+
requirements:
|
231
|
+
- - ">="
|
232
|
+
- !ruby/object:Gem::Version
|
233
|
+
version: '0'
|
234
|
+
type: :runtime
|
235
|
+
prerelease: false
|
236
|
+
version_requirements: !ruby/object:Gem::Requirement
|
237
|
+
requirements:
|
238
|
+
- - ">="
|
239
|
+
- !ruby/object:Gem::Version
|
240
|
+
version: '0'
|
241
|
+
- !ruby/object:Gem::Dependency
|
242
|
+
name: bootstrap-sass
|
243
|
+
requirement: !ruby/object:Gem::Requirement
|
244
|
+
requirements:
|
245
|
+
- - '='
|
246
|
+
- !ruby/object:Gem::Version
|
247
|
+
version: 2.3.2.2
|
248
|
+
type: :runtime
|
249
|
+
prerelease: false
|
250
|
+
version_requirements: !ruby/object:Gem::Requirement
|
251
|
+
requirements:
|
252
|
+
- - '='
|
253
|
+
- !ruby/object:Gem::Version
|
254
|
+
version: 2.3.2.2
|
255
|
+
- !ruby/object:Gem::Dependency
|
256
|
+
name: ckeditor_rails
|
257
|
+
requirement: !ruby/object:Gem::Requirement
|
258
|
+
requirements:
|
259
|
+
- - '='
|
260
|
+
- !ruby/object:Gem::Version
|
261
|
+
version: '4.2'
|
262
|
+
type: :runtime
|
263
|
+
prerelease: false
|
264
|
+
version_requirements: !ruby/object:Gem::Requirement
|
265
|
+
requirements:
|
266
|
+
- - '='
|
267
|
+
- !ruby/object:Gem::Version
|
268
|
+
version: '4.2'
|
269
|
+
- !ruby/object:Gem::Dependency
|
270
|
+
name: pg_search
|
271
|
+
requirement: !ruby/object:Gem::Requirement
|
272
|
+
requirements:
|
273
|
+
- - ">="
|
274
|
+
- !ruby/object:Gem::Version
|
275
|
+
version: '0'
|
276
|
+
type: :runtime
|
277
|
+
prerelease: false
|
278
|
+
version_requirements: !ruby/object:Gem::Requirement
|
279
|
+
requirements:
|
280
|
+
- - ">="
|
281
|
+
- !ruby/object:Gem::Version
|
282
|
+
version: '0'
|
283
|
+
- !ruby/object:Gem::Dependency
|
284
|
+
name: htmlentities
|
285
|
+
requirement: !ruby/object:Gem::Requirement
|
286
|
+
requirements:
|
287
|
+
- - ">="
|
288
|
+
- !ruby/object:Gem::Version
|
289
|
+
version: '0'
|
290
|
+
type: :runtime
|
291
|
+
prerelease: false
|
292
|
+
version_requirements: !ruby/object:Gem::Requirement
|
293
|
+
requirements:
|
294
|
+
- - ">="
|
295
|
+
- !ruby/object:Gem::Version
|
296
|
+
version: '0'
|
297
|
+
- !ruby/object:Gem::Dependency
|
298
|
+
name: jquery-rails
|
299
|
+
requirement: !ruby/object:Gem::Requirement
|
300
|
+
requirements:
|
301
|
+
- - ">="
|
302
|
+
- !ruby/object:Gem::Version
|
303
|
+
version: '0'
|
304
|
+
type: :runtime
|
305
|
+
prerelease: false
|
306
|
+
version_requirements: !ruby/object:Gem::Requirement
|
307
|
+
requirements:
|
308
|
+
- - ">="
|
309
|
+
- !ruby/object:Gem::Version
|
310
|
+
version: '0'
|
311
|
+
- !ruby/object:Gem::Dependency
|
312
|
+
name: database_cleaner
|
313
|
+
requirement: !ruby/object:Gem::Requirement
|
314
|
+
requirements:
|
315
|
+
- - ">="
|
316
|
+
- !ruby/object:Gem::Version
|
317
|
+
version: '0'
|
318
|
+
type: :development
|
319
|
+
prerelease: false
|
320
|
+
version_requirements: !ruby/object:Gem::Requirement
|
321
|
+
requirements:
|
322
|
+
- - ">="
|
323
|
+
- !ruby/object:Gem::Version
|
324
|
+
version: '0'
|
325
|
+
- !ruby/object:Gem::Dependency
|
326
|
+
name: pry-rails
|
327
|
+
requirement: !ruby/object:Gem::Requirement
|
328
|
+
requirements:
|
329
|
+
- - ">="
|
330
|
+
- !ruby/object:Gem::Version
|
331
|
+
version: '0'
|
332
|
+
type: :development
|
333
|
+
prerelease: false
|
334
|
+
version_requirements: !ruby/object:Gem::Requirement
|
335
|
+
requirements:
|
336
|
+
- - ">="
|
337
|
+
- !ruby/object:Gem::Version
|
338
|
+
version: '0'
|
339
|
+
- !ruby/object:Gem::Dependency
|
340
|
+
name: pry-debugger
|
341
|
+
requirement: !ruby/object:Gem::Requirement
|
342
|
+
requirements:
|
343
|
+
- - ">="
|
344
|
+
- !ruby/object:Gem::Version
|
345
|
+
version: '0'
|
346
|
+
type: :development
|
347
|
+
prerelease: false
|
348
|
+
version_requirements: !ruby/object:Gem::Requirement
|
349
|
+
requirements:
|
350
|
+
- - ">="
|
351
|
+
- !ruby/object:Gem::Version
|
352
|
+
version: '0'
|
353
|
+
- !ruby/object:Gem::Dependency
|
354
|
+
name: better_errors
|
355
|
+
requirement: !ruby/object:Gem::Requirement
|
356
|
+
requirements:
|
357
|
+
- - ">="
|
358
|
+
- !ruby/object:Gem::Version
|
359
|
+
version: '0'
|
360
|
+
type: :development
|
361
|
+
prerelease: false
|
362
|
+
version_requirements: !ruby/object:Gem::Requirement
|
363
|
+
requirements:
|
364
|
+
- - ">="
|
365
|
+
- !ruby/object:Gem::Version
|
366
|
+
version: '0'
|
367
|
+
- !ruby/object:Gem::Dependency
|
368
|
+
name: binding_of_caller
|
369
|
+
requirement: !ruby/object:Gem::Requirement
|
370
|
+
requirements:
|
371
|
+
- - ">="
|
372
|
+
- !ruby/object:Gem::Version
|
373
|
+
version: '0'
|
374
|
+
type: :development
|
375
|
+
prerelease: false
|
376
|
+
version_requirements: !ruby/object:Gem::Requirement
|
377
|
+
requirements:
|
378
|
+
- - ">="
|
379
|
+
- !ruby/object:Gem::Version
|
380
|
+
version: '0'
|
381
|
+
- !ruby/object:Gem::Dependency
|
382
|
+
name: rubocop
|
383
|
+
requirement: !ruby/object:Gem::Requirement
|
384
|
+
requirements:
|
385
|
+
- - ">="
|
386
|
+
- !ruby/object:Gem::Version
|
387
|
+
version: '0'
|
388
|
+
type: :development
|
389
|
+
prerelease: false
|
390
|
+
version_requirements: !ruby/object:Gem::Requirement
|
391
|
+
requirements:
|
392
|
+
- - ">="
|
393
|
+
- !ruby/object:Gem::Version
|
394
|
+
version: '0'
|
395
|
+
- !ruby/object:Gem::Dependency
|
396
|
+
name: sass-rails
|
397
|
+
requirement: !ruby/object:Gem::Requirement
|
398
|
+
requirements:
|
399
|
+
- - "~>"
|
400
|
+
- !ruby/object:Gem::Version
|
401
|
+
version: 4.0.2
|
402
|
+
type: :runtime
|
403
|
+
prerelease: false
|
404
|
+
version_requirements: !ruby/object:Gem::Requirement
|
405
|
+
requirements:
|
406
|
+
- - "~>"
|
407
|
+
- !ruby/object:Gem::Version
|
408
|
+
version: 4.0.2
|
409
|
+
- !ruby/object:Gem::Dependency
|
410
|
+
name: rails
|
411
|
+
requirement: !ruby/object:Gem::Requirement
|
412
|
+
requirements:
|
413
|
+
- - "~>"
|
414
|
+
- !ruby/object:Gem::Version
|
415
|
+
version: 4.0.2
|
416
|
+
type: :runtime
|
417
|
+
prerelease: false
|
418
|
+
version_requirements: !ruby/object:Gem::Requirement
|
419
|
+
requirements:
|
420
|
+
- - "~>"
|
421
|
+
- !ruby/object:Gem::Version
|
422
|
+
version: 4.0.2
|
423
|
+
- !ruby/object:Gem::Dependency
|
424
|
+
name: simple_form
|
425
|
+
requirement: !ruby/object:Gem::Requirement
|
426
|
+
requirements:
|
427
|
+
- - "~>"
|
428
|
+
- !ruby/object:Gem::Version
|
429
|
+
version: 3.0.1
|
430
|
+
type: :runtime
|
431
|
+
prerelease: false
|
432
|
+
version_requirements: !ruby/object:Gem::Requirement
|
433
|
+
requirements:
|
434
|
+
- - "~>"
|
435
|
+
- !ruby/object:Gem::Version
|
436
|
+
version: 3.0.1
|
437
|
+
- !ruby/object:Gem::Dependency
|
438
|
+
name: jquery-ui-rails
|
439
|
+
requirement: !ruby/object:Gem::Requirement
|
440
|
+
requirements:
|
441
|
+
- - ">="
|
442
|
+
- !ruby/object:Gem::Version
|
443
|
+
version: '0'
|
444
|
+
type: :runtime
|
445
|
+
prerelease: false
|
446
|
+
version_requirements: !ruby/object:Gem::Requirement
|
447
|
+
requirements:
|
448
|
+
- - ">="
|
449
|
+
- !ruby/object:Gem::Version
|
450
|
+
version: '0'
|
451
|
+
- !ruby/object:Gem::Dependency
|
452
|
+
name: bourbon
|
453
|
+
requirement: !ruby/object:Gem::Requirement
|
454
|
+
requirements:
|
455
|
+
- - ">="
|
456
|
+
- !ruby/object:Gem::Version
|
457
|
+
version: '0'
|
458
|
+
type: :runtime
|
459
|
+
prerelease: false
|
460
|
+
version_requirements: !ruby/object:Gem::Requirement
|
461
|
+
requirements:
|
462
|
+
- - ">="
|
463
|
+
- !ruby/object:Gem::Version
|
464
|
+
version: '0'
|
465
|
+
description: Kuhsaft is a Rails engine that offers a simple CMS.
|
466
|
+
email: developers@screenconcept.ch
|
467
|
+
executables: []
|
468
|
+
extensions: []
|
469
|
+
extra_rdoc_files: []
|
470
|
+
files:
|
471
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/dialogs/anchor.js.coffee
|
472
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/dialogs/link.js.coffee
|
473
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/images/anchor.png
|
474
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/images/hidpi/anchor.png
|
475
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/lang/de.js
|
476
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/lang/en.js
|
477
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/LICENSE.txt
|
478
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/plugin.js.coffee
|
479
|
+
- app/assets/javascripts/ckeditor/plugins/adv_link/README.md
|
480
|
+
- app/assets/javascripts/kuhsaft/application.js.coffee
|
481
|
+
- app/assets/javascripts/kuhsaft/cms/application.js.coffee.erb
|
482
|
+
- app/assets/javascripts/kuhsaft/views/read_more_view.js.coffee
|
483
|
+
- app/assets/stylesheets/kuhsaft/application.css.sass
|
484
|
+
- app/assets/stylesheets/kuhsaft/cms/application.css.sass
|
485
|
+
- app/assets/stylesheets/kuhsaft/modules/_text_brick.css.sass
|
486
|
+
- app/controllers/kuhsaft/api/pages_controller.rb
|
487
|
+
- app/controllers/kuhsaft/cms/admin_controller.rb
|
488
|
+
- app/controllers/kuhsaft/cms/assets_controller.rb
|
489
|
+
- app/controllers/kuhsaft/cms/bricks_controller.rb
|
490
|
+
- app/controllers/kuhsaft/cms/ckimages_controller.rb
|
491
|
+
- app/controllers/kuhsaft/cms/pages_controller.rb
|
492
|
+
- app/controllers/kuhsaft/pages_controller.rb
|
493
|
+
- app/controllers/kuhsaft/sitemaps_controller.rb
|
494
|
+
- app/helpers/cms_helper.rb
|
495
|
+
- app/helpers/kuhsaft/admin_helper.rb
|
496
|
+
- app/helpers/kuhsaft/cms/admin_helper.rb
|
497
|
+
- app/helpers/kuhsaft/cms/pages_helper.rb
|
498
|
+
- app/helpers/pages_helper.rb
|
499
|
+
- app/helpers/sitemaps_helper.rb
|
500
|
+
- app/models/kuhsaft/accordion_brick.rb
|
501
|
+
- app/models/kuhsaft/accordion_item_brick.rb
|
502
|
+
- app/models/kuhsaft/anchor_brick.rb
|
503
|
+
- app/models/kuhsaft/asset.rb
|
504
|
+
- app/models/kuhsaft/asset_brick.rb
|
505
|
+
- app/models/kuhsaft/brick.rb
|
506
|
+
- app/models/kuhsaft/brick_type.rb
|
507
|
+
- app/models/kuhsaft/brick_type_filter.rb
|
508
|
+
- app/models/kuhsaft/ckimage.rb
|
509
|
+
- app/models/kuhsaft/cms.rb
|
510
|
+
- app/models/kuhsaft/column_brick.rb
|
511
|
+
- app/models/kuhsaft/image_brick.rb
|
512
|
+
- app/models/kuhsaft/image_size.rb
|
513
|
+
- app/models/kuhsaft/link_brick.rb
|
514
|
+
- app/models/kuhsaft/page.rb
|
515
|
+
- app/models/kuhsaft/page_type.rb
|
516
|
+
- app/models/kuhsaft/partition.rb
|
517
|
+
- app/models/kuhsaft/placeholder_brick.rb
|
518
|
+
- app/models/kuhsaft/publish_state.rb
|
519
|
+
- app/models/kuhsaft/slider_brick.rb
|
520
|
+
- app/models/kuhsaft/text_brick.rb
|
521
|
+
- app/models/kuhsaft/two_column_brick.rb
|
522
|
+
- app/models/kuhsaft/video_brick.rb
|
523
|
+
- app/uploaders/kuhsaft/asset_brick_asset_uploader.rb
|
524
|
+
- app/uploaders/kuhsaft/asset_uploader.rb
|
525
|
+
- app/uploaders/kuhsaft/ckimage_uploader.rb
|
526
|
+
- app/uploaders/kuhsaft/image_brick_image_uploader.rb
|
527
|
+
- app/views/kuhsaft/accordion_bricks/_accordion_brick.html.haml
|
528
|
+
- app/views/kuhsaft/accordion_bricks/accordion_brick/_edit.html.haml
|
529
|
+
- app/views/kuhsaft/accordion_item_bricks/_accordion_item_brick.html.haml
|
530
|
+
- app/views/kuhsaft/accordion_item_bricks/accordion_item_brick/_edit.html.haml
|
531
|
+
- app/views/kuhsaft/anchor_bricks/_anchor_brick.html.haml
|
532
|
+
- app/views/kuhsaft/anchor_bricks/anchor_brick/_edit.html.haml
|
533
|
+
- app/views/kuhsaft/asset_bricks/_asset_brick.html.haml
|
534
|
+
- app/views/kuhsaft/asset_bricks/asset_brick/_edit.html.haml
|
535
|
+
- app/views/kuhsaft/cms/admin/_brick_type_dropdown.html.haml
|
536
|
+
- app/views/kuhsaft/cms/admin/_content_language_switch.html.haml
|
537
|
+
- app/views/kuhsaft/cms/admin/_empty_state.html.haml
|
538
|
+
- app/views/kuhsaft/cms/admin/_flash.html.haml
|
539
|
+
- app/views/kuhsaft/cms/admin/_main_navigation.html.haml
|
540
|
+
- app/views/kuhsaft/cms/assets/_form.html.haml
|
541
|
+
- app/views/kuhsaft/cms/assets/_list.html.haml
|
542
|
+
- app/views/kuhsaft/cms/assets/edit.html.haml
|
543
|
+
- app/views/kuhsaft/cms/assets/index.html.haml
|
544
|
+
- app/views/kuhsaft/cms/assets/new.html.haml
|
545
|
+
- app/views/kuhsaft/cms/bricks/_brick_header.html.haml
|
546
|
+
- app/views/kuhsaft/cms/bricks/_brick_item.html.haml
|
547
|
+
- app/views/kuhsaft/cms/bricks/_brick_list.html.haml
|
548
|
+
- app/views/kuhsaft/cms/bricks/_new.html.haml
|
549
|
+
- app/views/kuhsaft/cms/bricks/_sort_form.html.haml
|
550
|
+
- app/views/kuhsaft/cms/bricks/create.js.erb
|
551
|
+
- app/views/kuhsaft/cms/bricks/destroy.js.erb
|
552
|
+
- app/views/kuhsaft/cms/bricks/new.js.erb
|
553
|
+
- app/views/kuhsaft/cms/bricks/update.js.erb
|
554
|
+
- app/views/kuhsaft/cms/ckimages/create.html.haml
|
555
|
+
- app/views/kuhsaft/cms/ckimages/destroy.js.erb
|
556
|
+
- app/views/kuhsaft/cms/ckimages/index.html.haml
|
557
|
+
- app/views/kuhsaft/cms/pages/_branch.html.haml
|
558
|
+
- app/views/kuhsaft/cms/pages/_form.html.haml
|
559
|
+
- app/views/kuhsaft/cms/pages/edit.html.haml
|
560
|
+
- app/views/kuhsaft/cms/pages/index.html.haml
|
561
|
+
- app/views/kuhsaft/cms/pages/new.html.haml
|
562
|
+
- app/views/kuhsaft/cms/pages/show.html.haml
|
563
|
+
- app/views/kuhsaft/cms/pages/sort.js.erb
|
564
|
+
- app/views/kuhsaft/column_bricks/_column_brick.html.haml
|
565
|
+
- app/views/kuhsaft/column_bricks/column_brick/_edit.html.haml
|
566
|
+
- app/views/kuhsaft/image_bricks/_image_brick.html.haml
|
567
|
+
- app/views/kuhsaft/image_bricks/image_brick/_edit.html.haml
|
568
|
+
- app/views/kuhsaft/link_bricks/_link_brick.html.haml
|
569
|
+
- app/views/kuhsaft/link_bricks/link_brick/_edit.html.haml
|
570
|
+
- app/views/kuhsaft/pages/index.html.haml
|
571
|
+
- app/views/kuhsaft/pages/show.html.haml
|
572
|
+
- app/views/kuhsaft/placeholder_bricks/_placeholder_brick.html.haml
|
573
|
+
- app/views/kuhsaft/placeholder_bricks/placeholder_brick/_edit.html.haml
|
574
|
+
- app/views/kuhsaft/search/_form.html.haml
|
575
|
+
- app/views/kuhsaft/search/_results.html.haml
|
576
|
+
- app/views/kuhsaft/search/_results_entry.html.haml
|
577
|
+
- app/views/kuhsaft/sitemaps/index.xml.haml
|
578
|
+
- app/views/kuhsaft/slider_bricks/_slider_brick.html.haml
|
579
|
+
- app/views/kuhsaft/slider_bricks/slider_brick/_edit.html.haml
|
580
|
+
- app/views/kuhsaft/text_bricks/_text_brick.html.haml
|
581
|
+
- app/views/kuhsaft/text_bricks/text_brick/_edit.html.haml
|
582
|
+
- app/views/kuhsaft/two_column_bricks/_two_column_brick.html.haml
|
583
|
+
- app/views/kuhsaft/two_column_bricks/two_column_brick/_childs.html.haml
|
584
|
+
- app/views/kuhsaft/two_column_bricks/two_column_brick/_edit.html.haml
|
585
|
+
- app/views/kuhsaft/video_bricks/_video_brick.html.haml
|
586
|
+
- app/views/kuhsaft/video_bricks/video_brick/_edit.html.haml
|
587
|
+
- app/views/layouts/kuhsaft/cms/application.html.haml
|
588
|
+
- app/views/layouts/kuhsaft/cms/ckimages.html.haml
|
589
|
+
- config/initializers/simple_form.rb
|
590
|
+
- config/initializers/simple_form_bootstrap.rb
|
591
|
+
- config/locales/de.yml
|
592
|
+
- config/locales/en.yml
|
593
|
+
- config/locales/models/kuhsaft/accordion_brick/de.yml
|
594
|
+
- config/locales/models/kuhsaft/accordion_brick/en.yml
|
595
|
+
- config/locales/models/kuhsaft/accordion_item_brick/de.yml
|
596
|
+
- config/locales/models/kuhsaft/accordion_item_brick/en.yml
|
597
|
+
- config/locales/models/kuhsaft/anchor_brick/de.yml
|
598
|
+
- config/locales/models/kuhsaft/anchor_brick/en.yml
|
599
|
+
- config/locales/models/kuhsaft/asset_brick/de.yml
|
600
|
+
- config/locales/models/kuhsaft/asset_brick/en.yml
|
601
|
+
- config/locales/models/kuhsaft/brick/de.yml
|
602
|
+
- config/locales/models/kuhsaft/brick/en.yml
|
603
|
+
- config/locales/models/kuhsaft/column_brick/de.yml
|
604
|
+
- config/locales/models/kuhsaft/column_brick/en.yml
|
605
|
+
- config/locales/models/kuhsaft/image_brick/de.yml
|
606
|
+
- config/locales/models/kuhsaft/image_brick/en.yml
|
607
|
+
- config/locales/models/kuhsaft/image_size/de.yml
|
608
|
+
- config/locales/models/kuhsaft/image_size/en.yml
|
609
|
+
- config/locales/models/kuhsaft/link_brick/de.yml
|
610
|
+
- config/locales/models/kuhsaft/link_brick/en.yml
|
611
|
+
- config/locales/models/kuhsaft/page/de.yml
|
612
|
+
- config/locales/models/kuhsaft/page/en.yml
|
613
|
+
- config/locales/models/kuhsaft/placeholder_brick/de.yml
|
614
|
+
- config/locales/models/kuhsaft/placeholder_brick/en.yml
|
615
|
+
- config/locales/models/kuhsaft/slider_brick/de.yml
|
616
|
+
- config/locales/models/kuhsaft/slider_brick/en.yml
|
617
|
+
- config/locales/models/kuhsaft/text_brick/de.yml
|
618
|
+
- config/locales/models/kuhsaft/text_brick/en.yml
|
619
|
+
- config/locales/models/kuhsaft/two_column_brick/de.yml
|
620
|
+
- config/locales/models/kuhsaft/two_column_brick/en.yml
|
621
|
+
- config/locales/models/kuhsaft/video_brick/de.yml
|
622
|
+
- config/locales/models/kuhsaft/video_brick/en.yml
|
623
|
+
- config/locales/simple_form.en.yml
|
624
|
+
- config/locales/views/kuhsaft/cms/admin/de.yml
|
625
|
+
- config/locales/views/kuhsaft/cms/admin/en.yml
|
626
|
+
- config/locales/views/kuhsaft/cms/bricks/de.yml
|
627
|
+
- config/locales/views/kuhsaft/cms/bricks/en.yml
|
628
|
+
- config/locales/views/kuhsaft/cms/pages/de.yml
|
629
|
+
- config/locales/views/kuhsaft/cms/pages/en.yml
|
630
|
+
- config/locales/views/kuhsaft/image_brick/de.yml
|
631
|
+
- config/locales/views/kuhsaft/image_brick/en.yml
|
632
|
+
- config/locales/views/kuhsaft/search/de.yml
|
633
|
+
- config/locales/views/kuhsaft/search/en.yml
|
634
|
+
- config/locales/views/kuhsaft/text_brick/de.yml
|
635
|
+
- config/locales/views/kuhsaft/text_brick/en.yml
|
636
|
+
- config/locales/views/kuhsaft/video_brick/de.yml
|
637
|
+
- config/locales/views/kuhsaft/video_brick/en.yml
|
638
|
+
- config/routes.rb
|
639
|
+
- db/migrate/01_create_kuhsaft_pages.rb
|
640
|
+
- db/migrate/02_create_kuhsaft_bricks.rb
|
641
|
+
- db/migrate/03_create_kuhsaft_brick_types.rb
|
642
|
+
- db/migrate/04_create_kuhsaft_assets.rb
|
643
|
+
- db/migrate/05_remove_cms_admin.rb
|
644
|
+
- db/migrate/06_add_template_name_to_kuhsaft_bricks.rb
|
645
|
+
- db/migrate/07_add_default_value_to_brick_type_enabled.rb
|
646
|
+
- db/migrate/08_add_display_styles_to_bricks.rb
|
647
|
+
- db/migrate/09_add_additional_fields_to_kuhsaft_bricks.rb
|
648
|
+
- db/migrate/10_add_redirect_url_to_kuhsaft_pages.rb
|
649
|
+
- db/migrate/11_update_url_and_redirect_url_value.rb
|
650
|
+
- db/migrate/12_regenerate_fulltext.rb
|
651
|
+
- db/migrate/13_add_page_title_to_pages.rb
|
652
|
+
- db/migrate/14_move_kuhsaft_assets.rb
|
653
|
+
- db/migrate/15_add_alt_text_to_bricks.rb
|
654
|
+
- db/migrate/16_update_default_value_for_page_type.rb
|
655
|
+
- db/migrate/17_set_page_type_to_content_for_empty_fields.rb
|
656
|
+
- db/migrate/18_add_identifier_to_kuhsaft_pages.rb
|
657
|
+
- db/migrate/19_add_col_count_to_bricks.rb
|
658
|
+
- db/migrate/20_create_kuhsaft_ckimages.rb
|
659
|
+
- db/seeds.rb
|
660
|
+
- lib/generators/kuhsaft/assets/install_generator.rb
|
661
|
+
- lib/generators/kuhsaft/translations/add_generator.rb
|
662
|
+
- lib/kuhsaft/brick_list.rb
|
663
|
+
- lib/kuhsaft/engine.rb
|
664
|
+
- lib/kuhsaft/gridded.rb
|
665
|
+
- lib/kuhsaft/image_uploader_mounting.rb
|
666
|
+
- lib/kuhsaft/orderable.rb
|
667
|
+
- lib/kuhsaft/page_tree.rb
|
668
|
+
- lib/kuhsaft/partial_extractor.rb
|
669
|
+
- lib/kuhsaft/searchable.rb
|
670
|
+
- lib/kuhsaft/touch_placeholders.rb
|
671
|
+
- lib/kuhsaft/translatable.rb
|
672
|
+
- lib/kuhsaft/version.rb
|
673
|
+
- lib/kuhsaft.rb
|
674
|
+
- lib/tasks/kuhsaft_tasks.rake
|
675
|
+
- lib/templates/kuhsaft/assets/ck-config.js.coffee
|
676
|
+
- lib/templates/kuhsaft/assets/customizations.css.sass
|
677
|
+
- lib/templates/kuhsaft/assets/customizations.js.coffee
|
678
|
+
- lib/templates/kuhsaft/translations/add_translation.erb
|
679
|
+
- vendor/assets/javascripts/bootstrap-modal-v2.js
|
680
|
+
- vendor/assets/javascripts/bootstrap-modalmanager.js
|
681
|
+
- vendor/assets/javascripts/jquery.nestable.js
|
682
|
+
- vendor/assets/stylesheets/bootstrap_modal.css
|
683
|
+
- vendor/assets/stylesheets/nestable.css
|
684
|
+
- Rakefile
|
685
|
+
- README.md
|
686
|
+
- spec/controllers/kuhsaft/api/pages_controller_spec.rb
|
687
|
+
- spec/controllers/kuhsaft/pages_controller_spec.rb
|
688
|
+
- spec/controllers/kuhsaft/sitemaps_controller_spec.rb
|
689
|
+
- spec/dummy/Rakefile
|
690
|
+
- spec/dummy/app/assets/images/spec-image.png
|
691
|
+
- spec/dummy/app/assets/javascripts/application.js
|
692
|
+
- spec/dummy/app/assets/javascripts/kuhsaft/cms/ck-config.js.coffee
|
693
|
+
- spec/dummy/app/assets/javascripts/kuhsaft/cms/customizations.js.coffee
|
694
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
695
|
+
- spec/dummy/app/assets/stylesheets/kuhsaft/cms/customizations.css.sass
|
696
|
+
- spec/dummy/app/controllers/application_controller.rb
|
697
|
+
- spec/dummy/app/helpers/application_helper.rb
|
698
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
699
|
+
- spec/dummy/bin/bundle
|
700
|
+
- spec/dummy/bin/rails
|
701
|
+
- spec/dummy/bin/rake
|
702
|
+
- spec/dummy/config.ru
|
703
|
+
- spec/dummy/config/application.rb
|
704
|
+
- spec/dummy/config/boot.rb
|
705
|
+
- spec/dummy/config/database.yml
|
706
|
+
- spec/dummy/config/environment.rb
|
707
|
+
- spec/dummy/config/environments/development.rb
|
708
|
+
- spec/dummy/config/environments/production.rb
|
709
|
+
- spec/dummy/config/environments/test.rb
|
710
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
711
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
712
|
+
- spec/dummy/config/initializers/inflections.rb
|
713
|
+
- spec/dummy/config/initializers/kuhsaft.rb
|
714
|
+
- spec/dummy/config/initializers/mime_types.rb
|
715
|
+
- spec/dummy/config/initializers/secret_token.rb
|
716
|
+
- spec/dummy/config/initializers/session_store.rb
|
717
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
718
|
+
- spec/dummy/config/locales/en.yml
|
719
|
+
- spec/dummy/config/routes.rb
|
720
|
+
- spec/dummy/db/.gitkeep
|
721
|
+
- spec/dummy/lib/assets/.gitkeep
|
722
|
+
- spec/dummy/log/.gitkeep
|
723
|
+
- spec/dummy/public/404.html
|
724
|
+
- spec/dummy/public/422.html
|
725
|
+
- spec/dummy/public/500.html
|
726
|
+
- spec/dummy/public/favicon.ico
|
727
|
+
- spec/dummy/public/stylesheets/.gitkeep
|
728
|
+
- spec/dummy/script/rails
|
729
|
+
- spec/factories.rb
|
730
|
+
- spec/features/cms_pages_spec.rb
|
731
|
+
- spec/features/search_spec.rb
|
732
|
+
- spec/helpers/kuhsaft/cms/admin_helper_spec.rb
|
733
|
+
- spec/helpers/kuhsaft/cms/pages_helper_spec.rb
|
734
|
+
- spec/helpers/kuhsaft/pages_helper_spec.rb
|
735
|
+
- spec/kuhsaft_spec.rb
|
736
|
+
- spec/lib/brick_list_spec.rb
|
737
|
+
- spec/lib/engine_spec.rb
|
738
|
+
- spec/lib/gridded_spec.rb
|
739
|
+
- spec/lib/image_uploader_mounting_spec.rb
|
740
|
+
- spec/lib/page_tree_spec.rb
|
741
|
+
- spec/lib/searchable_spec.rb
|
742
|
+
- spec/lib/touch_placeholders_spec.rb
|
743
|
+
- spec/lib/translatable_spec.rb
|
744
|
+
- spec/models/accordion_brick_spec.rb
|
745
|
+
- spec/models/accordion_item_brick_spec.rb
|
746
|
+
- spec/models/anchor_brick_spec.rb
|
747
|
+
- spec/models/asset_brick_spec.rb
|
748
|
+
- spec/models/asset_spec.rb
|
749
|
+
- spec/models/brick_spec.rb
|
750
|
+
- spec/models/brick_type_filter_spec.rb
|
751
|
+
- spec/models/column_brick_spec.rb
|
752
|
+
- spec/models/image_brick_spec.rb
|
753
|
+
- spec/models/image_size_spec.rb
|
754
|
+
- spec/models/link_brick_spec.rb
|
755
|
+
- spec/models/page_spec.rb
|
756
|
+
- spec/models/placeholder_brick_spec.rb
|
757
|
+
- spec/models/publish_state_spec.rb
|
758
|
+
- spec/models/slider_brick_spec.rb
|
759
|
+
- spec/models/text_brick_spec.rb
|
760
|
+
- spec/models/two_column_brick_spec.rb
|
761
|
+
- spec/models/video_brick_spec.rb
|
762
|
+
- spec/spec_helper.rb
|
763
|
+
- spec/support/kuhsaft_spec_helper.rb
|
764
|
+
- spec/support/write_expectation.rb
|
765
|
+
- spec/views/kuhsaft/sitemaps/index.xml.haml_spec.rb
|
766
|
+
homepage: http://github.com/screenconcept/kuhsaft
|
767
|
+
licenses:
|
768
|
+
- MIT
|
769
|
+
metadata: {}
|
770
|
+
post_install_message:
|
771
|
+
rdoc_options: []
|
772
|
+
require_paths:
|
773
|
+
- lib
|
774
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
775
|
+
requirements:
|
776
|
+
- - ">="
|
777
|
+
- !ruby/object:Gem::Version
|
778
|
+
version: '0'
|
779
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
780
|
+
requirements:
|
781
|
+
- - ">"
|
782
|
+
- !ruby/object:Gem::Version
|
783
|
+
version: 1.3.1
|
784
|
+
requirements: []
|
785
|
+
rubyforge_project: kuhsaft
|
786
|
+
rubygems_version: 2.1.10
|
787
|
+
signing_key:
|
788
|
+
specification_version: 4
|
789
|
+
summary: A tool that helps you to manage your content within your app.
|
790
|
+
test_files:
|
791
|
+
- spec/controllers/kuhsaft/api/pages_controller_spec.rb
|
792
|
+
- spec/controllers/kuhsaft/pages_controller_spec.rb
|
793
|
+
- spec/controllers/kuhsaft/sitemaps_controller_spec.rb
|
794
|
+
- spec/dummy/Rakefile
|
795
|
+
- spec/dummy/app/assets/images/spec-image.png
|
796
|
+
- spec/dummy/app/assets/javascripts/application.js
|
797
|
+
- spec/dummy/app/assets/javascripts/kuhsaft/cms/ck-config.js.coffee
|
798
|
+
- spec/dummy/app/assets/javascripts/kuhsaft/cms/customizations.js.coffee
|
799
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
800
|
+
- spec/dummy/app/assets/stylesheets/kuhsaft/cms/customizations.css.sass
|
801
|
+
- spec/dummy/app/controllers/application_controller.rb
|
802
|
+
- spec/dummy/app/helpers/application_helper.rb
|
803
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
804
|
+
- spec/dummy/bin/bundle
|
805
|
+
- spec/dummy/bin/rails
|
806
|
+
- spec/dummy/bin/rake
|
807
|
+
- spec/dummy/config.ru
|
808
|
+
- spec/dummy/config/application.rb
|
809
|
+
- spec/dummy/config/boot.rb
|
810
|
+
- spec/dummy/config/database.yml
|
811
|
+
- spec/dummy/config/environment.rb
|
812
|
+
- spec/dummy/config/environments/development.rb
|
813
|
+
- spec/dummy/config/environments/production.rb
|
814
|
+
- spec/dummy/config/environments/test.rb
|
815
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
816
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
817
|
+
- spec/dummy/config/initializers/inflections.rb
|
818
|
+
- spec/dummy/config/initializers/kuhsaft.rb
|
819
|
+
- spec/dummy/config/initializers/mime_types.rb
|
820
|
+
- spec/dummy/config/initializers/secret_token.rb
|
821
|
+
- spec/dummy/config/initializers/session_store.rb
|
822
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
823
|
+
- spec/dummy/config/locales/en.yml
|
824
|
+
- spec/dummy/config/routes.rb
|
825
|
+
- spec/dummy/db/.gitkeep
|
826
|
+
- spec/dummy/lib/assets/.gitkeep
|
827
|
+
- spec/dummy/log/.gitkeep
|
828
|
+
- spec/dummy/public/404.html
|
829
|
+
- spec/dummy/public/422.html
|
830
|
+
- spec/dummy/public/500.html
|
831
|
+
- spec/dummy/public/favicon.ico
|
832
|
+
- spec/dummy/public/stylesheets/.gitkeep
|
833
|
+
- spec/dummy/script/rails
|
834
|
+
- spec/factories.rb
|
835
|
+
- spec/features/cms_pages_spec.rb
|
836
|
+
- spec/features/search_spec.rb
|
837
|
+
- spec/helpers/kuhsaft/cms/admin_helper_spec.rb
|
838
|
+
- spec/helpers/kuhsaft/cms/pages_helper_spec.rb
|
839
|
+
- spec/helpers/kuhsaft/pages_helper_spec.rb
|
840
|
+
- spec/kuhsaft_spec.rb
|
841
|
+
- spec/lib/brick_list_spec.rb
|
842
|
+
- spec/lib/engine_spec.rb
|
843
|
+
- spec/lib/gridded_spec.rb
|
844
|
+
- spec/lib/image_uploader_mounting_spec.rb
|
845
|
+
- spec/lib/page_tree_spec.rb
|
846
|
+
- spec/lib/searchable_spec.rb
|
847
|
+
- spec/lib/touch_placeholders_spec.rb
|
848
|
+
- spec/lib/translatable_spec.rb
|
849
|
+
- spec/models/accordion_brick_spec.rb
|
850
|
+
- spec/models/accordion_item_brick_spec.rb
|
851
|
+
- spec/models/anchor_brick_spec.rb
|
852
|
+
- spec/models/asset_brick_spec.rb
|
853
|
+
- spec/models/asset_spec.rb
|
854
|
+
- spec/models/brick_spec.rb
|
855
|
+
- spec/models/brick_type_filter_spec.rb
|
856
|
+
- spec/models/column_brick_spec.rb
|
857
|
+
- spec/models/image_brick_spec.rb
|
858
|
+
- spec/models/image_size_spec.rb
|
859
|
+
- spec/models/link_brick_spec.rb
|
860
|
+
- spec/models/page_spec.rb
|
861
|
+
- spec/models/placeholder_brick_spec.rb
|
862
|
+
- spec/models/publish_state_spec.rb
|
863
|
+
- spec/models/slider_brick_spec.rb
|
864
|
+
- spec/models/text_brick_spec.rb
|
865
|
+
- spec/models/two_column_brick_spec.rb
|
866
|
+
- spec/models/video_brick_spec.rb
|
867
|
+
- spec/spec_helper.rb
|
868
|
+
- spec/support/kuhsaft_spec_helper.rb
|
869
|
+
- spec/support/write_expectation.rb
|
870
|
+
- spec/views/kuhsaft/sitemaps/index.xml.haml_spec.rb
|