udongo 6.3.2 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/backend/application.js +1 -0
- data/app/assets/javascripts/backend/general.js +6 -0
- data/app/assets/stylesheets/backend/application.scss +1 -0
- data/app/assets/stylesheets/backend/base/_general.scss +7 -0
- data/app/assets/stylesheets/backend/pages/_flexible_content.scss +0 -8
- data/app/assets/stylesheets/backend/udongo.scss +2 -0
- data/app/controllers/backend/content/rows/columns_controller.rb +1 -9
- data/app/controllers/backend/content/rows/slideshows_controller.rb +11 -0
- data/app/controllers/backend/content/rows_controller.rb +16 -0
- data/app/controllers/backend/forms/fields_controller.rb +3 -1
- data/app/controllers/backend/image_collections/base_controller.rb +11 -0
- data/app/controllers/backend/image_collections/images_controller.rb +15 -0
- data/app/controllers/backend/image_collections_controller.rb +50 -0
- data/app/controllers/concerns/backend/content_type_controller.rb +1 -10
- data/app/decorators/content_slideshow_decorator.rb +3 -0
- data/app/models/content_slideshow.rb +9 -0
- data/app/models/image_collection.rb +9 -0
- data/app/views/backend/content/_form.html.erb +1 -1
- data/app/views/backend/content/_rows.html.erb +11 -7
- data/app/views/backend/content/_slideshow.html.erb +6 -0
- data/app/views/backend/content/rows/columns/edit.html.erb +6 -14
- data/app/views/backend/content/rows/columns/new.html.erb +6 -14
- data/app/views/backend/content/rows/edit.html.erb +31 -0
- data/app/views/backend/content/rows/forms/edit.html.erb +4 -12
- data/app/views/backend/content/rows/images/edit.html.erb +12 -20
- data/app/views/backend/content/rows/pictures/edit.html.erb +7 -15
- data/app/views/backend/content/rows/pictures/link_or_upload.html.erb +12 -20
- data/app/views/backend/content/rows/slideshows/edit.html.erb +17 -0
- data/app/views/backend/content/rows/texts/edit.html.erb +2 -10
- data/app/views/backend/content/rows/videos/edit.html.erb +5 -6
- data/app/views/backend/forms/fields/_form.html.erb +1 -0
- data/app/views/backend/image_collections/_form.html.erb +19 -0
- data/app/views/backend/image_collections/_tabs.html.erb +18 -0
- data/app/views/backend/image_collections/edit.html.erb +6 -0
- data/app/views/backend/image_collections/images/index.html.erb +43 -0
- data/app/views/backend/image_collections/index.html.erb +30 -0
- data/app/views/backend/image_collections/new.html.erb +5 -0
- data/app/views/backend/lightbox_saved.html.erb +3 -0
- data/app/views/layouts/backend/_top_navigation.html.erb +1 -0
- data/app/views/layouts/backend/lightbox.html.erb +5 -3
- data/changelog.md +13 -0
- data/config/locales/en_backend.yml +5 -6
- data/config/locales/en_forms.yml +14 -0
- data/config/locales/nl_backend.yml +7 -6
- data/config/locales/nl_forms.yml +13 -0
- data/config/routes.rb +7 -1
- data/db/migrate/20170615113617_create_asset_collections.rb +12 -0
- data/db/migrate/20170615120716_rename_asset_collection_to_image_collection.rb +5 -0
- data/db/migrate/20170615131909_create_content_slideshows.rb +11 -0
- data/db/migrate/20170615184855_add_content_row_margin_padding_and_bg_color.rb +9 -0
- data/db/migrate/20170616114757_add_external_ref_to_form_field.rb +6 -0
- data/lib/udongo/bogus_model.rb +34 -0
- data/lib/udongo/configs/flexible_content.rb +1 -1
- data/lib/udongo/search/result_objects/base.rb +1 -1
- data/lib/udongo/version.rb +1 -1
- data/spec/factories/content_slideshows.rb +5 -0
- data/spec/factories/image_collections.rb +6 -0
- data/vendor/assets/javascripts/backend/lity.js +637 -0
- data/vendor/assets/stylesheets/backend/lity.scss +200 -0
- metadata +30 -2
| @@ -0,0 +1,200 @@ | |
| 1 | 
            +
            /*! Lity - v2.2.2 - 2016-12-14
         | 
| 2 | 
            +
            * http://sorgalla.com/lity/
         | 
| 3 | 
            +
            * Copyright (c) 2015-2016 Jan Sorgalla; Licensed MIT */
         | 
| 4 | 
            +
            .lity {
         | 
| 5 | 
            +
              z-index: 9990;
         | 
| 6 | 
            +
              position: fixed;
         | 
| 7 | 
            +
              top: 0;
         | 
| 8 | 
            +
              right: 0;
         | 
| 9 | 
            +
              bottom: 0;
         | 
| 10 | 
            +
              left: 0;
         | 
| 11 | 
            +
              white-space: nowrap;
         | 
| 12 | 
            +
              background: #0b0b0b;
         | 
| 13 | 
            +
              background: rgba(0, 0, 0, 0.9);
         | 
| 14 | 
            +
              outline: none !important;
         | 
| 15 | 
            +
              opacity: 0;
         | 
| 16 | 
            +
              -webkit-transition: opacity 0.3s ease;
         | 
| 17 | 
            +
              -o-transition: opacity 0.3s ease;
         | 
| 18 | 
            +
              transition: opacity 0.3s ease;
         | 
| 19 | 
            +
            }
         | 
| 20 | 
            +
            .lity.lity-opened {
         | 
| 21 | 
            +
              opacity: 1;
         | 
| 22 | 
            +
            }
         | 
| 23 | 
            +
            .lity.lity-closed {
         | 
| 24 | 
            +
              opacity: 0;
         | 
| 25 | 
            +
            }
         | 
| 26 | 
            +
            .lity * {
         | 
| 27 | 
            +
              -webkit-box-sizing: border-box;
         | 
| 28 | 
            +
                 -moz-box-sizing: border-box;
         | 
| 29 | 
            +
                      box-sizing: border-box;
         | 
| 30 | 
            +
            }
         | 
| 31 | 
            +
            .lity-wrap {
         | 
| 32 | 
            +
              z-index: 9990;
         | 
| 33 | 
            +
              position: fixed;
         | 
| 34 | 
            +
              top: 0;
         | 
| 35 | 
            +
              right: 0;
         | 
| 36 | 
            +
              bottom: 0;
         | 
| 37 | 
            +
              left: 0;
         | 
| 38 | 
            +
              text-align: center;
         | 
| 39 | 
            +
              outline: none !important;
         | 
| 40 | 
            +
            }
         | 
| 41 | 
            +
            .lity-wrap:before {
         | 
| 42 | 
            +
              content: '';
         | 
| 43 | 
            +
              display: inline-block;
         | 
| 44 | 
            +
              height: 100%;
         | 
| 45 | 
            +
              vertical-align: middle;
         | 
| 46 | 
            +
              margin-right: -0.25em;
         | 
| 47 | 
            +
            }
         | 
| 48 | 
            +
            .lity-loader {
         | 
| 49 | 
            +
              z-index: 9991;
         | 
| 50 | 
            +
              color: #fff;
         | 
| 51 | 
            +
              position: absolute;
         | 
| 52 | 
            +
              top: 50%;
         | 
| 53 | 
            +
              margin-top: -0.8em;
         | 
| 54 | 
            +
              width: 100%;
         | 
| 55 | 
            +
              text-align: center;
         | 
| 56 | 
            +
              font-size: 14px;
         | 
| 57 | 
            +
              font-family: Arial, Helvetica, sans-serif;
         | 
| 58 | 
            +
              opacity: 0;
         | 
| 59 | 
            +
              -webkit-transition: opacity 0.3s ease;
         | 
| 60 | 
            +
              -o-transition: opacity 0.3s ease;
         | 
| 61 | 
            +
              transition: opacity 0.3s ease;
         | 
| 62 | 
            +
            }
         | 
| 63 | 
            +
            .lity-loading .lity-loader {
         | 
| 64 | 
            +
              opacity: 1;
         | 
| 65 | 
            +
            }
         | 
| 66 | 
            +
            .lity-container {
         | 
| 67 | 
            +
              z-index: 9992;
         | 
| 68 | 
            +
              position: relative;
         | 
| 69 | 
            +
              text-align: left;
         | 
| 70 | 
            +
              vertical-align: middle;
         | 
| 71 | 
            +
              display: inline-block;
         | 
| 72 | 
            +
              white-space: normal;
         | 
| 73 | 
            +
              max-width: 100%;
         | 
| 74 | 
            +
              max-height: 100%;
         | 
| 75 | 
            +
              outline: none !important;
         | 
| 76 | 
            +
            }
         | 
| 77 | 
            +
            .lity-content {
         | 
| 78 | 
            +
              z-index: 9993;
         | 
| 79 | 
            +
              width: 100%;
         | 
| 80 | 
            +
              -webkit-transform: scale(1);
         | 
| 81 | 
            +
                  -ms-transform: scale(1);
         | 
| 82 | 
            +
                   -o-transform: scale(1);
         | 
| 83 | 
            +
                      transform: scale(1);
         | 
| 84 | 
            +
              -webkit-transition: -webkit-transform 0.3s ease;
         | 
| 85 | 
            +
              transition: -webkit-transform 0.3s ease;
         | 
| 86 | 
            +
              -o-transition: -o-transform 0.3s ease;
         | 
| 87 | 
            +
              transition: transform 0.3s ease;
         | 
| 88 | 
            +
              transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
         | 
| 89 | 
            +
            }
         | 
| 90 | 
            +
            .lity-loading .lity-content,
         | 
| 91 | 
            +
            .lity-closed .lity-content {
         | 
| 92 | 
            +
              -webkit-transform: scale(0.8);
         | 
| 93 | 
            +
                  -ms-transform: scale(0.8);
         | 
| 94 | 
            +
                   -o-transform: scale(0.8);
         | 
| 95 | 
            +
                      transform: scale(0.8);
         | 
| 96 | 
            +
            }
         | 
| 97 | 
            +
            .lity-content:after {
         | 
| 98 | 
            +
              content: '';
         | 
| 99 | 
            +
              position: absolute;
         | 
| 100 | 
            +
              left: 0;
         | 
| 101 | 
            +
              top: 0;
         | 
| 102 | 
            +
              bottom: 0;
         | 
| 103 | 
            +
              display: block;
         | 
| 104 | 
            +
              right: 0;
         | 
| 105 | 
            +
              width: auto;
         | 
| 106 | 
            +
              height: auto;
         | 
| 107 | 
            +
              z-index: -1;
         | 
| 108 | 
            +
              -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
         | 
| 109 | 
            +
                      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
         | 
| 110 | 
            +
            }
         | 
| 111 | 
            +
            .lity-close {
         | 
| 112 | 
            +
              z-index: 9994;
         | 
| 113 | 
            +
              width: 35px;
         | 
| 114 | 
            +
              height: 35px;
         | 
| 115 | 
            +
              position: fixed;
         | 
| 116 | 
            +
              right: 0;
         | 
| 117 | 
            +
              top: 0;
         | 
| 118 | 
            +
              -webkit-appearance: none;
         | 
| 119 | 
            +
              cursor: pointer;
         | 
| 120 | 
            +
              text-decoration: none;
         | 
| 121 | 
            +
              text-align: center;
         | 
| 122 | 
            +
              padding: 0;
         | 
| 123 | 
            +
              color: #fff;
         | 
| 124 | 
            +
              font-style: normal;
         | 
| 125 | 
            +
              font-size: 35px;
         | 
| 126 | 
            +
              font-family: Arial, Baskerville, monospace;
         | 
| 127 | 
            +
              line-height: 35px;
         | 
| 128 | 
            +
              text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
         | 
| 129 | 
            +
              border: 0;
         | 
| 130 | 
            +
              background: none;
         | 
| 131 | 
            +
              outline: none;
         | 
| 132 | 
            +
              -webkit-box-shadow: none;
         | 
| 133 | 
            +
                      box-shadow: none;
         | 
| 134 | 
            +
            }
         | 
| 135 | 
            +
            .lity-close::-moz-focus-inner {
         | 
| 136 | 
            +
              border: 0;
         | 
| 137 | 
            +
              padding: 0;
         | 
| 138 | 
            +
            }
         | 
| 139 | 
            +
            .lity-close:hover,
         | 
| 140 | 
            +
            .lity-close:focus,
         | 
| 141 | 
            +
            .lity-close:active,
         | 
| 142 | 
            +
            .lity-close:visited {
         | 
| 143 | 
            +
              text-decoration: none;
         | 
| 144 | 
            +
              text-align: center;
         | 
| 145 | 
            +
              padding: 0;
         | 
| 146 | 
            +
              color: #fff;
         | 
| 147 | 
            +
              font-style: normal;
         | 
| 148 | 
            +
              font-size: 35px;
         | 
| 149 | 
            +
              font-family: Arial, Baskerville, monospace;
         | 
| 150 | 
            +
              line-height: 35px;
         | 
| 151 | 
            +
              text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
         | 
| 152 | 
            +
              border: 0;
         | 
| 153 | 
            +
              background: none;
         | 
| 154 | 
            +
              outline: none;
         | 
| 155 | 
            +
              -webkit-box-shadow: none;
         | 
| 156 | 
            +
                      box-shadow: none;
         | 
| 157 | 
            +
            }
         | 
| 158 | 
            +
            .lity-close:active {
         | 
| 159 | 
            +
              top: 1px;
         | 
| 160 | 
            +
            }
         | 
| 161 | 
            +
            /* Image */
         | 
| 162 | 
            +
            .lity-image img {
         | 
| 163 | 
            +
              max-width: 100%;
         | 
| 164 | 
            +
              display: block;
         | 
| 165 | 
            +
              line-height: 0;
         | 
| 166 | 
            +
              border: 0;
         | 
| 167 | 
            +
            }
         | 
| 168 | 
            +
            /* iFrame */
         | 
| 169 | 
            +
            .lity-iframe .lity-container,
         | 
| 170 | 
            +
            .lity-youtube .lity-container,
         | 
| 171 | 
            +
            .lity-vimeo .lity-container,
         | 
| 172 | 
            +
            .lity-facebookvideo .lity-container,
         | 
| 173 | 
            +
            .lity-googlemaps .lity-container {
         | 
| 174 | 
            +
              width: 100%;
         | 
| 175 | 
            +
              max-width: 964px;
         | 
| 176 | 
            +
            }
         | 
| 177 | 
            +
            .lity-iframe-container {
         | 
| 178 | 
            +
              width: 100%;
         | 
| 179 | 
            +
              height: 0;
         | 
| 180 | 
            +
              padding-top: 56.25%;
         | 
| 181 | 
            +
              overflow: auto;
         | 
| 182 | 
            +
              pointer-events: auto;
         | 
| 183 | 
            +
              -webkit-transform: translateZ(0);
         | 
| 184 | 
            +
                      transform: translateZ(0);
         | 
| 185 | 
            +
              -webkit-overflow-scrolling: touch;
         | 
| 186 | 
            +
            }
         | 
| 187 | 
            +
            .lity-iframe-container iframe {
         | 
| 188 | 
            +
              position: absolute;
         | 
| 189 | 
            +
              display: block;
         | 
| 190 | 
            +
              top: 0;
         | 
| 191 | 
            +
              left: 0;
         | 
| 192 | 
            +
              width: 100%;
         | 
| 193 | 
            +
              height: 100%;
         | 
| 194 | 
            +
              -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
         | 
| 195 | 
            +
                      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
         | 
| 196 | 
            +
              background: #000;
         | 
| 197 | 
            +
            }
         | 
| 198 | 
            +
            .lity-hide {
         | 
| 199 | 
            +
              display: none;
         | 
| 200 | 
            +
            }
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: udongo
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 6. | 
| 4 | 
            +
              version: 6.4.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Davy Hellemans
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2017-06- | 
| 12 | 
            +
            date: 2017-06-16 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: rails
         | 
| @@ -439,6 +439,7 @@ files: | |
| 439 439 | 
             
            - app/assets/javascripts/backend/tags.js
         | 
| 440 440 | 
             
            - app/assets/javascripts/backend/tree.js
         | 
| 441 441 | 
             
            - app/assets/stylesheets/backend/application.scss
         | 
| 442 | 
            +
            - app/assets/stylesheets/backend/base/_general.scss
         | 
| 442 443 | 
             
            - app/assets/stylesheets/backend/bootstrap.scss
         | 
| 443 444 | 
             
            - app/assets/stylesheets/backend/components/_abbreviated_tooltip.scss
         | 
| 444 445 | 
             
            - app/assets/stylesheets/backend/components/_breadcrumb.scss
         | 
| @@ -465,6 +466,7 @@ files: | |
| 465 466 | 
             
            - app/controllers/backend/content/rows/forms_controller.rb
         | 
| 466 467 | 
             
            - app/controllers/backend/content/rows/images_controller.rb
         | 
| 467 468 | 
             
            - app/controllers/backend/content/rows/pictures_controller.rb
         | 
| 469 | 
            +
            - app/controllers/backend/content/rows/slideshows_controller.rb
         | 
| 468 470 | 
             
            - app/controllers/backend/content/rows/texts_controller.rb
         | 
| 469 471 | 
             
            - app/controllers/backend/content/rows/videos_controller.rb
         | 
| 470 472 | 
             
            - app/controllers/backend/content/rows_controller.rb
         | 
| @@ -475,6 +477,9 @@ files: | |
| 475 477 | 
             
            - app/controllers/backend/forms/fields_controller.rb
         | 
| 476 478 | 
             
            - app/controllers/backend/forms/submissions_controller.rb
         | 
| 477 479 | 
             
            - app/controllers/backend/forms_controller.rb
         | 
| 480 | 
            +
            - app/controllers/backend/image_collections/base_controller.rb
         | 
| 481 | 
            +
            - app/controllers/backend/image_collections/images_controller.rb
         | 
| 482 | 
            +
            - app/controllers/backend/image_collections_controller.rb
         | 
| 478 483 | 
             
            - app/controllers/backend/images_controller.rb
         | 
| 479 484 | 
             
            - app/controllers/backend/navigation/items_controller.rb
         | 
| 480 485 | 
             
            - app/controllers/backend/navigations_controller.rb
         | 
| @@ -500,6 +505,7 @@ files: | |
| 500 505 | 
             
            - app/decorators/content_image_decorator.rb
         | 
| 501 506 | 
             
            - app/decorators/content_picture_decorator.rb
         | 
| 502 507 | 
             
            - app/decorators/content_row_decorator.rb
         | 
| 508 | 
            +
            - app/decorators/content_slideshow_decorator.rb
         | 
| 503 509 | 
             
            - app/decorators/content_text_decorator.rb
         | 
| 504 510 | 
             
            - app/decorators/content_video_decorator.rb
         | 
| 505 511 | 
             
            - app/decorators/form_decorator.rb
         | 
| @@ -571,6 +577,7 @@ files: | |
| 571 577 | 
             
            - app/models/content_image.rb
         | 
| 572 578 | 
             
            - app/models/content_picture.rb
         | 
| 573 579 | 
             
            - app/models/content_row.rb
         | 
| 580 | 
            +
            - app/models/content_slideshow.rb
         | 
| 574 581 | 
             
            - app/models/content_text.rb
         | 
| 575 582 | 
             
            - app/models/content_video.rb
         | 
| 576 583 | 
             
            - app/models/email.rb
         | 
| @@ -580,6 +587,7 @@ files: | |
| 580 587 | 
             
            - app/models/form_submission.rb
         | 
| 581 588 | 
             
            - app/models/form_submission_data.rb
         | 
| 582 589 | 
             
            - app/models/image.rb
         | 
| 590 | 
            +
            - app/models/image_collection.rb
         | 
| 583 591 | 
             
            - app/models/log.rb
         | 
| 584 592 | 
             
            - app/models/meta.rb
         | 
| 585 593 | 
             
            - app/models/navigation.rb
         | 
| @@ -632,17 +640,20 @@ files: | |
| 632 640 | 
             
            - app/views/backend/content/_image.html.erb
         | 
| 633 641 | 
             
            - app/views/backend/content/_picture.html.erb
         | 
| 634 642 | 
             
            - app/views/backend/content/_rows.html.erb
         | 
| 643 | 
            +
            - app/views/backend/content/_slideshow.html.erb
         | 
| 635 644 | 
             
            - app/views/backend/content/_text.html.erb
         | 
| 636 645 | 
             
            - app/views/backend/content/_video.html.erb
         | 
| 637 646 | 
             
            - app/views/backend/content/rows/columns/_column_width_explanation.html.erb
         | 
| 638 647 | 
             
            - app/views/backend/content/rows/columns/_dimension_fields.html.erb
         | 
| 639 648 | 
             
            - app/views/backend/content/rows/columns/edit.html.erb
         | 
| 640 649 | 
             
            - app/views/backend/content/rows/columns/new.html.erb
         | 
| 650 | 
            +
            - app/views/backend/content/rows/edit.html.erb
         | 
| 641 651 | 
             
            - app/views/backend/content/rows/forms/edit.html.erb
         | 
| 642 652 | 
             
            - app/views/backend/content/rows/images/edit.html.erb
         | 
| 643 653 | 
             
            - app/views/backend/content/rows/pictures/_filter.html.erb
         | 
| 644 654 | 
             
            - app/views/backend/content/rows/pictures/edit.html.erb
         | 
| 645 655 | 
             
            - app/views/backend/content/rows/pictures/link_or_upload.html.erb
         | 
| 656 | 
            +
            - app/views/backend/content/rows/slideshows/edit.html.erb
         | 
| 646 657 | 
             
            - app/views/backend/content/rows/texts/edit.html.erb
         | 
| 647 658 | 
             
            - app/views/backend/content/rows/videos/edit.html.erb
         | 
| 648 659 | 
             
            - app/views/backend/dashboard/show.html.erb
         | 
| @@ -670,9 +681,16 @@ files: | |
| 670 681 | 
             
            - app/views/backend/forms/submissions/_form.html.erb
         | 
| 671 682 | 
             
            - app/views/backend/forms/submissions/index.html.erb
         | 
| 672 683 | 
             
            - app/views/backend/forms/submissions/show.html.erb
         | 
| 684 | 
            +
            - app/views/backend/image_collections/_form.html.erb
         | 
| 685 | 
            +
            - app/views/backend/image_collections/_tabs.html.erb
         | 
| 686 | 
            +
            - app/views/backend/image_collections/edit.html.erb
         | 
| 687 | 
            +
            - app/views/backend/image_collections/images/index.html.erb
         | 
| 688 | 
            +
            - app/views/backend/image_collections/index.html.erb
         | 
| 689 | 
            +
            - app/views/backend/image_collections/new.html.erb
         | 
| 673 690 | 
             
            - app/views/backend/images/_filter.html.erb
         | 
| 674 691 | 
             
            - app/views/backend/images/index.html.erb
         | 
| 675 692 | 
             
            - app/views/backend/images/new.html.erb
         | 
| 693 | 
            +
            - app/views/backend/lightbox_saved.html.erb
         | 
| 676 694 | 
             
            - app/views/backend/navigation/items/_form.html.erb
         | 
| 677 695 | 
             
            - app/views/backend/navigation/items/_tabs.html.erb
         | 
| 678 696 | 
             
            - app/views/backend/navigation/items/edit.html.erb
         | 
| @@ -824,6 +842,11 @@ files: | |
| 824 842 | 
             
            - db/migrate/20170507163532_create_content_videos.rb
         | 
| 825 843 | 
             
            - db/migrate/20170516092845_add_sitemap_to_page.rb
         | 
| 826 844 | 
             
            - db/migrate/20170602114411_create_content_forms.rb
         | 
| 845 | 
            +
            - db/migrate/20170615113617_create_asset_collections.rb
         | 
| 846 | 
            +
            - db/migrate/20170615120716_rename_asset_collection_to_image_collection.rb
         | 
| 847 | 
            +
            - db/migrate/20170615131909_create_content_slideshows.rb
         | 
| 848 | 
            +
            - db/migrate/20170615184855_add_content_row_margin_padding_and_bg_color.rb
         | 
| 849 | 
            +
            - db/migrate/20170616114757_add_external_ref_to_form_field.rb
         | 
| 827 850 | 
             
            - lib/tasks/task_extras.rb
         | 
| 828 851 | 
             
            - lib/tasks/udongo_tasks.rake
         | 
| 829 852 | 
             
            - lib/udongo.rb
         | 
| @@ -831,6 +854,7 @@ files: | |
| 831 854 | 
             
            - lib/udongo/assets/loader.rb
         | 
| 832 855 | 
             
            - lib/udongo/assets/precompiler.rb
         | 
| 833 856 | 
             
            - lib/udongo/assets/resizer.rb
         | 
| 857 | 
            +
            - lib/udongo/bogus_model.rb
         | 
| 834 858 | 
             
            - lib/udongo/breadcrumb.rb
         | 
| 835 859 | 
             
            - lib/udongo/config.rb
         | 
| 836 860 | 
             
            - lib/udongo/configs/articles.rb
         | 
| @@ -879,6 +903,7 @@ files: | |
| 879 903 | 
             
            - spec/factories/content_images.rb
         | 
| 880 904 | 
             
            - spec/factories/content_pictures.rb
         | 
| 881 905 | 
             
            - spec/factories/content_rows.rb
         | 
| 906 | 
            +
            - spec/factories/content_slideshows.rb
         | 
| 882 907 | 
             
            - spec/factories/content_texts.rb
         | 
| 883 908 | 
             
            - spec/factories/content_videos.rb
         | 
| 884 909 | 
             
            - spec/factories/email_templates.rb
         | 
| @@ -887,6 +912,7 @@ files: | |
| 887 912 | 
             
            - spec/factories/form_submission_data.rb
         | 
| 888 913 | 
             
            - spec/factories/form_submissions.rb
         | 
| 889 914 | 
             
            - spec/factories/forms.rb
         | 
| 915 | 
            +
            - spec/factories/image_collections.rb
         | 
| 890 916 | 
             
            - spec/factories/images.rb
         | 
| 891 917 | 
             
            - spec/factories/logs.rb
         | 
| 892 918 | 
             
            - spec/factories/meta.rb
         | 
| @@ -934,6 +960,7 @@ files: | |
| 934 960 | 
             
            - vendor/assets/javascripts/backend/jquery.throttle-debounce.min.js
         | 
| 935 961 | 
             
            - vendor/assets/javascripts/backend/jstree/jstree.min.js
         | 
| 936 962 | 
             
            - vendor/assets/javascripts/backend/jstree/libs/require.js
         | 
| 963 | 
            +
            - vendor/assets/javascripts/backend/lity.js
         | 
| 937 964 | 
             
            - vendor/assets/javascripts/backend/select2.min.js
         | 
| 938 965 | 
             
            - vendor/assets/javascripts/backend/tagit.min.js
         | 
| 939 966 | 
             
            - vendor/assets/javascripts/backend/tether.min.js
         | 
| @@ -942,6 +969,7 @@ files: | |
| 942 969 | 
             
            - vendor/assets/stylesheets/backend/bootstrap-datepicker.scss
         | 
| 943 970 | 
             
            - vendor/assets/stylesheets/backend/jstree/default/style.min.scss
         | 
| 944 971 | 
             
            - vendor/assets/stylesheets/backend/jstree/default/style.scss
         | 
| 972 | 
            +
            - vendor/assets/stylesheets/backend/lity.scss
         | 
| 945 973 | 
             
            - vendor/assets/stylesheets/backend/select2.min.scss
         | 
| 946 974 | 
             
            - vendor/assets/stylesheets/backend/tagit/_autocomplete.scss
         | 
| 947 975 | 
             
            - vendor/assets/stylesheets/backend/tagit/_base.scss
         |