amalgam 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +27 -0
- data/app/assets/images/amalgam/admin/bg.png +0 -0
- data/app/assets/images/amalgam/admin/tree-last-node-bg.gif +0 -0
- data/app/assets/images/amalgam/admin/tree-node-bg.gif +0 -0
- data/app/assets/javascripts/amalgam/admin.js +19 -0
- data/app/assets/javascripts/amalgam/admin/app.js.coffee +70 -0
- data/app/assets/javascripts/amalgam/admin/popover.js.coffee +79 -0
- data/app/assets/javascripts/amalgam/admin/tree.js.coffee +66 -0
- data/app/assets/javascripts/amalgam/application.js +15 -0
- data/app/assets/javascripts/amalgam/editor.js.coffee +161 -0
- data/app/assets/javascripts/amalgam/extra.js +0 -0
- data/app/assets/javascripts/amalgam/mercury.js +456 -0
- data/app/assets/javascripts/amalgam/mercury/locales/zh-CN.locale.js.coffee +196 -0
- data/app/assets/stylesheets/amalgam/admin.css +5 -0
- data/app/assets/stylesheets/amalgam/admin/_mixins.css.scss +58 -0
- data/app/assets/stylesheets/amalgam/admin/layout.css.scss +261 -0
- data/app/assets/stylesheets/amalgam/admin/login.css.scss +19 -0
- data/app/assets/stylesheets/amalgam/application.css +13 -0
- data/app/assets/stylesheets/amalgam/editor.css.scss +53 -0
- data/app/assets/stylesheets/amalgam/extra.css +0 -0
- data/app/controllers/amalgam/admin/base_controller.rb +6 -0
- data/app/controllers/amalgam/admin/editor_controller.rb +24 -0
- data/app/controllers/amalgam/admin/groups_controller.rb +55 -0
- data/app/controllers/amalgam/admin/pages_controller.rb +75 -0
- data/app/controllers/amalgam/application_controller.rb +7 -0
- data/app/controllers/amalgam/registrations_controller.rb +34 -0
- data/app/controllers/amalgam/sessions_controller.rb +31 -0
- data/app/helpers/amalgam/admin/layout_helper.rb +72 -0
- data/app/helpers/amalgam/application_helper.rb +4 -0
- data/app/helpers/amalgam/attachments_helper.rb +20 -0
- data/app/helpers/amalgam/editor/editor_helper.rb +39 -0
- data/app/helpers/amalgam/editor/properties_builder_helper.rb +143 -0
- data/app/helpers/amalgam/pages_helper.rb +14 -0
- data/app/helpers/amalgam/url_helper.rb +48 -0
- data/app/views/amalgam/admin/_nav_bar.html.haml +28 -0
- data/app/views/amalgam/admin/groups/_form.html.haml +9 -0
- data/app/views/amalgam/admin/groups/edit.html.haml +1 -0
- data/app/views/amalgam/admin/groups/index.html.haml +19 -0
- data/app/views/amalgam/admin/groups/new.html.haml +1 -0
- data/app/views/amalgam/admin/pages/_fields.html.haml +10 -0
- data/app/views/amalgam/admin/pages/_form.html.haml +9 -0
- data/app/views/amalgam/admin/pages/_inline_form.html.haml +6 -0
- data/app/views/amalgam/admin/pages/_tree_inner.html.haml +24 -0
- data/app/views/amalgam/admin/pages/create.js.erb +1 -0
- data/app/views/amalgam/admin/pages/destroy.js.erb +1 -0
- data/app/views/amalgam/admin/pages/edit.html.haml +2 -0
- data/app/views/amalgam/admin/pages/index.html.haml +6 -0
- data/app/views/amalgam/admin/pages/new.html.haml +2 -0
- data/app/views/amalgam/admin/pages/update.js.erb +1 -0
- data/app/views/amalgam/admin/tree/_create.js.erb +19 -0
- data/app/views/amalgam/admin/tree/_destroy.js.erb +6 -0
- data/app/views/amalgam/admin/tree/_list.html.haml +5 -0
- data/app/views/amalgam/admin/tree/_node.html.haml +3 -0
- data/app/views/amalgam/admin/tree/_update.js.erb +11 -0
- data/app/views/amalgam/registrations/edit.html.haml +28 -0
- data/app/views/amalgam/sessions/new.html.haml +25 -0
- data/app/views/layouts/amalgam/admin/application.html.haml +15 -0
- data/app/views/layouts/amalgam/admin/editor.html.haml +11 -0
- data/app/views/layouts/amalgam/admin/login.html.haml +10 -0
- data/app/views/layouts/amalgam/application.html.erb +14 -0
- data/app/views/mercury/modals/link.html +86 -0
- data/app/views/mercury/modals/media.html +86 -0
- data/app/views/mercury/panels/properties.html +3 -0
- data/config/locales/en.yml +91 -0
- data/config/locales/zh-CN.yml +93 -0
- data/config/routes.rb +48 -0
- data/lib/amalgam.rb +91 -0
- data/lib/amalgam/authorities/controllers/helpers.rb +115 -0
- data/lib/amalgam/authorities/model.rb +41 -0
- data/lib/amalgam/authorities/models/active_record.rb +49 -0
- data/lib/amalgam/content_persistence.rb +40 -0
- data/lib/amalgam/editable.rb +20 -0
- data/lib/amalgam/engine.rb +46 -0
- data/lib/amalgam/globalize.rb +6 -0
- data/lib/amalgam/globalize/helpers.rb +44 -0
- data/lib/amalgam/models/attachable.rb +51 -0
- data/lib/amalgam/models/base_group.rb +14 -0
- data/lib/amalgam/models/group.rb +15 -0
- data/lib/amalgam/models/groupable.rb +16 -0
- data/lib/amalgam/models/hierarchical.rb +71 -0
- data/lib/amalgam/models/page.rb +13 -0
- data/lib/amalgam/models/templatable.rb +16 -0
- data/lib/amalgam/template_finder.rb +122 -0
- data/lib/amalgam/tree/exportable.rb +46 -0
- data/lib/amalgam/tree/importable.rb +46 -0
- data/lib/amalgam/validators/slug.rb +10 -0
- data/lib/amalgam/version.rb +3 -0
- data/lib/page_routes.rb +18 -0
- data/lib/tasks/amalgam_tasks.rake +4 -0
- data/lib/tasks/dump.rake +9 -0
- data/lib/tasks/load.rake +13 -0
- data/script/rails +8 -0
- data/spec/app/views/test_pages/@group1.html.erb +0 -0
- data/spec/app/views/test_pages/@group1/&1.html.erb +0 -0
- data/spec/app/views/test_pages/@group1/&2.html.erb +0 -0
- data/spec/app/views/test_pages/@group10.html.erb +0 -0
- data/spec/app/views/test_pages/default/&1.html.erb +0 -0
- data/spec/app/views/test_pages/default/&2.html.erb +0 -0
- data/spec/app/views/test_pages/show.html.erb +0 -0
- data/spec/app/views/test_pages/slug2.html.erb +0 -0
- data/spec/app/views/test_pages/slug2/@group3.html.erb +0 -0
- data/spec/app/views/test_pages/slug2/slug3@group3.html.erb +0 -0
- data/spec/app/views/test_pages/slug2@group1.html.erb +0 -0
- data/spec/app/views/test_pages/slug5/@group1.html.erb +0 -0
- data/spec/app/views/test_pages/slug5/@group2/@group1.html.erb +0 -0
- data/spec/app/views/test_pages/slug6/default.html.erb +0 -0
- data/spec/content_persistence_spec.rb +93 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/amalgam/admin/session_boxs_controller.rb +11 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/pages_controller.rb +10 -0
- data/spec/dummy/app/controllers/posts_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/admin_user.rb +3 -0
- data/spec/dummy/app/models/attachment.rb +35 -0
- data/spec/dummy/app/models/page.rb +10 -0
- data/spec/dummy/app/models/post.rb +3 -0
- data/spec/dummy/app/models/session_boxs.rb +2 -0
- data/spec/dummy/app/uploaders/attachment_uploader.rb +38 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/pages/show.html.haml +12 -0
- data/spec/dummy/app/views/pages/test123.html.haml +6 -0
- data/spec/dummy/app/views/posts/show.html.haml +1 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +73 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/i18n_locales_list.yml +1 -0
- data/spec/dummy/config/initializers/amalgam.rb +15 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/locales/zh-CN.yml +18 -0
- data/spec/dummy/config/routes.rb +8 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20120824071117_create_pages.rb +19 -0
- data/spec/dummy/db/migrate/20120904075542_create_posts.rb +10 -0
- data/spec/dummy/db/migrate/20120913061406_create_admins.rb +12 -0
- data/spec/dummy/db/migrate/20120920033135_create_attachments.rb +15 -0
- data/spec/dummy/db/migrate/20121219062850_create_groups.rb +10 -0
- data/spec/dummy/db/migrate/20121219062901_create_base_groups.rb +12 -0
- data/spec/dummy/db/pages.yml +262 -0
- data/spec/dummy/db/schema.rb +81 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +339740 -0
- data/spec/dummy/log/test.log +63208 -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/uploads/attachment/1/e2ff.gif +0 -0
- data/spec/dummy/public/uploads/attachment/1/f582.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/1/preview_e2ff.gif +0 -0
- data/spec/dummy/public/uploads/attachment/1/preview_f582.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/1/thumb_e2ff.gif +0 -0
- data/spec/dummy/public/uploads/attachment/1/thumb_f582.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/2/c7c7.gif +0 -0
- data/spec/dummy/public/uploads/attachment/2/ee57.png +0 -0
- data/spec/dummy/public/uploads/attachment/2/preview_c7c7.gif +0 -0
- data/spec/dummy/public/uploads/attachment/2/preview_ee57.png +0 -0
- data/spec/dummy/public/uploads/attachment/2/thumb_c7c7.gif +0 -0
- data/spec/dummy/public/uploads/attachment/2/thumb_ee57.png +0 -0
- data/spec/dummy/public/uploads/attachment/3/004c.pdf +0 -0
- data/spec/dummy/public/uploads/attachment/3/711c.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/3/preview_711c.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/3/thumb_711c.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/4/8fae.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/4/preview_8fae.jpg +0 -0
- data/spec/dummy/public/uploads/attachment/4/thumb_8fae.jpg +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/tmp/cache/assets/BFE/110/sprockets%2F741f81260849a3151c5f742198b58955 +0 -0
- data/spec/dummy/tmp/cache/assets/C24/220/sprockets%2F4078446bd698a67513559e55f123301a +0 -0
- data/spec/dummy/tmp/cache/assets/C2C/440/sprockets%2F592974c469130daa2948a294107c4679 +0 -0
- data/spec/dummy/tmp/cache/assets/C53/2E0/sprockets%2F0647d3840be61720252b9f742846c5b9 +0 -0
- data/spec/dummy/tmp/cache/assets/C58/360/sprockets%2Fd70d7d09f7c543961a832525a4057765 +0 -0
- data/spec/dummy/tmp/cache/assets/C5B/5B0/sprockets%2F2ed1e82828401788f208f72d438a6742 +0 -0
- data/spec/dummy/tmp/cache/assets/C60/490/sprockets%2F5698175a9c988c40691a61c9111c936b +0 -0
- data/spec/dummy/tmp/cache/assets/C65/D90/sprockets%2F778981d002f7645776a9e786bc73a115 +0 -0
- data/spec/dummy/tmp/cache/assets/C74/B00/sprockets%2Fd113953516073be0084309a4b935d1ff +0 -0
- data/spec/dummy/tmp/cache/assets/C74/FF0/sprockets%2F9835c246232df220b44742dd5b41681a +0 -0
- data/spec/dummy/tmp/cache/assets/C78/FF0/sprockets%2F6dd8db7321e52a4686404a22b5258416 +0 -0
- data/spec/dummy/tmp/cache/assets/C80/140/sprockets%2F29d3786161a63135c12654cca286b9f5 +0 -0
- data/spec/dummy/tmp/cache/assets/C80/BC0/sprockets%2Fe44a62348383735a723819f2abaf6236 +0 -0
- data/spec/dummy/tmp/cache/assets/C81/260/sprockets%2F5a7830b2e1f1f96e4013966569f23b22 +0 -0
- data/spec/dummy/tmp/cache/assets/C82/540/sprockets%2F63a36c57823d752717535db46c125ea8 +0 -0
- data/spec/dummy/tmp/cache/assets/C86/7F0/sprockets%2F6f542d22a765f6fa98dd003574188215 +0 -0
- data/spec/dummy/tmp/cache/assets/C86/B20/sprockets%2F908ac5f9983f05152b04a6742f61f553 +0 -0
- data/spec/dummy/tmp/cache/assets/C88/F70/sprockets%2F7071fff4752940f61683282371e45abf +0 -0
- data/spec/dummy/tmp/cache/assets/C8D/E90/sprockets%2Fc40f127f0984461ed5c4f86389e56421 +0 -0
- data/spec/dummy/tmp/cache/assets/C8F/E90/sprockets%2F79494794613aa994ee442a2d46e8522a +0 -0
- data/spec/dummy/tmp/cache/assets/C94/450/sprockets%2F291b255f25caf077f544788a0829769e +0 -0
- data/spec/dummy/tmp/cache/assets/C96/E20/sprockets%2F1016d04371c4bf510b2e448236d0c77a +0 -0
- data/spec/dummy/tmp/cache/assets/C9A/2A0/sprockets%2F67c1f84497e5d261509295f7016e5e9f +0 -0
- data/spec/dummy/tmp/cache/assets/CA1/600/sprockets%2F5188c3bf07e1f044d29a03d16024f453 +0 -0
- data/spec/dummy/tmp/cache/assets/CA2/550/sprockets%2Fb71e5844762b26443452df0c3dd403c1 +0 -0
- data/spec/dummy/tmp/cache/assets/CA5/910/sprockets%2F04185e34a7f03db34495ca8d30344f34 +0 -0
- data/spec/dummy/tmp/cache/assets/CAB/B40/sprockets%2F3a5d588a18086d2624328dc1255ed4d1 +0 -0
- data/spec/dummy/tmp/cache/assets/CAC/E00/sprockets%2F1121f251881caf77f241a8461a366e8f +0 -0
- data/spec/dummy/tmp/cache/assets/CB1/650/sprockets%2Fbf9784552f2d3a243b45f9202d715e44 +0 -0
- data/spec/dummy/tmp/cache/assets/CB3/C40/sprockets%2F2b2a45721c4c6419c75a95f427d964e2 +0 -0
- data/spec/dummy/tmp/cache/assets/CBA/660/sprockets%2F7497670f00f7f5e27ad5d016f13e7492 +0 -0
- data/spec/dummy/tmp/cache/assets/CBD/2D0/sprockets%2Fa4e95535619535e62a5e68c0c5b559e4 +0 -0
- data/spec/dummy/tmp/cache/assets/CC2/D70/sprockets%2F2b2090fb1c1c1390731566f2ab1380fa +0 -0
- data/spec/dummy/tmp/cache/assets/CC5/750/sprockets%2F4c596252a719258c6d554fbc7fd12989 +0 -0
- data/spec/dummy/tmp/cache/assets/CC6/260/sprockets%2F664715277b72f8b5939d706f9e22b7ae +0 -0
- data/spec/dummy/tmp/cache/assets/CC7/E70/sprockets%2F8f7bf771b9fa1166269619049e7752dc +0 -0
- data/spec/dummy/tmp/cache/assets/CC8/740/sprockets%2F624609703a2441b00dfd1a539b1ba87c +0 -0
- data/spec/dummy/tmp/cache/assets/CC8/DA0/sprockets%2F50f88c887eb8957909417352af037dbd +0 -0
- data/spec/dummy/tmp/cache/assets/CCB/A50/sprockets%2Fdcfe40462219fb0ea740fa2201518176 +0 -0
- data/spec/dummy/tmp/cache/assets/CCC/D20/sprockets%2F2c4b202cde474c09d063716c6a3c7332 +0 -0
- data/spec/dummy/tmp/cache/assets/CD0/6C0/sprockets%2Fa3681a07ddc61ec6d2153a51762807e0 +0 -0
- data/spec/dummy/tmp/cache/assets/CD4/460/sprockets%2F5c30c404c8d3dba3319126f2f34c7089 +0 -0
- data/spec/dummy/tmp/cache/assets/CD4/5C0/sprockets%2F99679443bdf010a6a23343aa6c6227ad +0 -0
- data/spec/dummy/tmp/cache/assets/CD8/9E0/sprockets%2F49b52a664350bbe3be436b0c3579028f +0 -0
- data/spec/dummy/tmp/cache/assets/CDA/9E0/sprockets%2Ff3188d432180dff427fc090c5d150c55 +0 -0
- data/spec/dummy/tmp/cache/assets/CDC/4E0/sprockets%2Fc838aa9d2c0055c60c6219376ad1f486 +0 -0
- data/spec/dummy/tmp/cache/assets/CDC/D40/sprockets%2Fe11aeaf4c9048d6589035a17320d2e78 +0 -0
- data/spec/dummy/tmp/cache/assets/CDD/100/sprockets%2Fb07931646d646ee95310ec0ac141c9e8 +0 -0
- data/spec/dummy/tmp/cache/assets/CE1/510/sprockets%2Fa938ef564111d7d092e6a09e52523e6c +0 -0
- data/spec/dummy/tmp/cache/assets/CE1/660/sprockets%2F11ef2996170ba4b455a2084a8b79e74e +0 -0
- data/spec/dummy/tmp/cache/assets/CE2/A90/sprockets%2F950d363c9e753da911ee22692b57a0f4 +0 -0
- data/spec/dummy/tmp/cache/assets/CE3/210/sprockets%2F458fc151db77a67e52f0b0520f56686d +0 -0
- data/spec/dummy/tmp/cache/assets/CE5/D30/sprockets%2Fa8b2ce32c8448680e86419ae373d85a0 +0 -0
- data/spec/dummy/tmp/cache/assets/CE6/670/sprockets%2F59ce49b728a902931713d0df5abf7931 +0 -0
- data/spec/dummy/tmp/cache/assets/CE7/7A0/sprockets%2Facac2f098936ea9209250992def75044 +0 -0
- data/spec/dummy/tmp/cache/assets/CE8/0F0/sprockets%2F17d4249b09080893e06b7e6b65cff91a +0 -0
- data/spec/dummy/tmp/cache/assets/CE9/740/sprockets%2Fae2e598bb6526d763ff6f1332718a670 +0 -0
- data/spec/dummy/tmp/cache/assets/CEB/D90/sprockets%2Fdd6c71b803d84d05bc47897d12e79075 +0 -0
- data/spec/dummy/tmp/cache/assets/CEC/480/sprockets%2F35a19bd6fd97613463a55f86ce086c62 +0 -0
- data/spec/dummy/tmp/cache/assets/CED/7E0/sprockets%2F918f7d077916b440c4e7a25f7eb5e535 +0 -0
- data/spec/dummy/tmp/cache/assets/CEF/6E0/sprockets%2F96ebdd205193869f500d8f49762ba2c9 +0 -0
- data/spec/dummy/tmp/cache/assets/CEF/A30/sprockets%2Fe79393de73e0b03643338fd9539da36e +0 -0
- data/spec/dummy/tmp/cache/assets/CEF/B00/sprockets%2F9518382687c84984bc2c6c7e340ac3fc +0 -0
- data/spec/dummy/tmp/cache/assets/CF1/3F0/sprockets%2F37842acf58edff73176fe247819f4203 +0 -0
- data/spec/dummy/tmp/cache/assets/CF3/710/sprockets%2Fb9e52159c19947809da909ede2cd6254 +0 -0
- data/spec/dummy/tmp/cache/assets/CFB/5F0/sprockets%2F77c7d377904208d548e68cadf777ac48 +0 -0
- data/spec/dummy/tmp/cache/assets/CFC/CF0/sprockets%2F4113c0ae5ae66875ac91832a48111bcc +0 -0
- data/spec/dummy/tmp/cache/assets/D01/FB0/sprockets%2F49c2bbde5f1342b70039a855c91c7a10 +0 -0
- data/spec/dummy/tmp/cache/assets/D02/1E0/sprockets%2Fd522765c0695d600d55e0a4b3ba5fb63 +0 -0
- data/spec/dummy/tmp/cache/assets/D02/380/sprockets%2Fb13e41ee1816773d0b6c0211c954e7dc +0 -0
- data/spec/dummy/tmp/cache/assets/D02/E50/sprockets%2Fc49caac6f0a5717352c2ae50637864a0 +0 -0
- data/spec/dummy/tmp/cache/assets/D04/980/sprockets%2F5b5b8d27d2443d108513f7a9b21c8bc2 +0 -0
- data/spec/dummy/tmp/cache/assets/D06/FB0/sprockets%2F994ca106b1c2bc799ad9006d6444ab33 +0 -0
- data/spec/dummy/tmp/cache/assets/D07/4F0/sprockets%2F89db66eb537f4d5f62aa80b1181b0116 +0 -0
- data/spec/dummy/tmp/cache/assets/D09/7D0/sprockets%2F49660b80a3e76cd585e20c6aa30cb863 +0 -0
- data/spec/dummy/tmp/cache/assets/D0A/200/sprockets%2F50b374320de449095bee6e8542b4f3ba +0 -0
- data/spec/dummy/tmp/cache/assets/D0E/900/sprockets%2F24c195216f1a8c6e1085b7ac563f77db +0 -0
- data/spec/dummy/tmp/cache/assets/D0F/760/sprockets%2Fb4737b2f5235f1bcf91f8c22e839511b +0 -0
- data/spec/dummy/tmp/cache/assets/D0F/C60/sprockets%2F21584e7371cf8fce9f21c036016cd53e +0 -0
- data/spec/dummy/tmp/cache/assets/D10/B80/sprockets%2Ff215394828cd9b946f7b00dc46ab243c +0 -0
- data/spec/dummy/tmp/cache/assets/D12/020/sprockets%2F8dd72e4e192e21f86b4e93d0022458af +0 -0
- data/spec/dummy/tmp/cache/assets/D12/750/sprockets%2F1f24a1ca8e18b6b638c5e168433c578e +0 -0
- data/spec/dummy/tmp/cache/assets/D12/A70/sprockets%2F685aa56aa5e3a6654894c4382bb42a9d +0 -0
- data/spec/dummy/tmp/cache/assets/D13/9E0/sprockets%2Fe3eab71719736a77ca9bc38e31b90437 +0 -0
- data/spec/dummy/tmp/cache/assets/D14/700/sprockets%2Fe7d51253e102dd7d9b48144e59fc545c +0 -0
- data/spec/dummy/tmp/cache/assets/D14/FC0/sprockets%2F72ba03304b682e717b5dc8c98657c2ef +0 -0
- data/spec/dummy/tmp/cache/assets/D15/180/sprockets%2F21da349d3de4905553f2ed6293e5c78a +0 -0
- data/spec/dummy/tmp/cache/assets/D16/E70/sprockets%2F3f7e1988ab4f26cc524654c0e6a6e705 +0 -0
- data/spec/dummy/tmp/cache/assets/D17/F10/sprockets%2F088abf7abdf0841b1896141953985ecb +0 -0
- data/spec/dummy/tmp/cache/assets/D18/C20/sprockets%2Ff54ff37933fccc28e3470688f03ca108 +0 -0
- data/spec/dummy/tmp/cache/assets/D19/900/sprockets%2F7a1ad7eff2736e168109f126d544fb87 +0 -0
- data/spec/dummy/tmp/cache/assets/D1A/440/sprockets%2Fe375d06592fd34b8548243c6d5eae5f3 +0 -0
- data/spec/dummy/tmp/cache/assets/D1D/000/sprockets%2Fdfc98c87d52484fd6a1c1314d5f05929 +0 -0
- data/spec/dummy/tmp/cache/assets/D1E/EB0/sprockets%2Fb8aa5f60149d568fa9c07b883ab28668 +0 -0
- data/spec/dummy/tmp/cache/assets/D21/E30/sprockets%2Fc30e400e947be3006b2138eb2a118cea +0 -0
- data/spec/dummy/tmp/cache/assets/D23/070/sprockets%2F0ad36b9a9e965ef66871cd465849b21d +0 -0
- data/spec/dummy/tmp/cache/assets/D24/760/sprockets%2F8303b5bc419bf07aaf03cd3aa0436049 +0 -0
- data/spec/dummy/tmp/cache/assets/D26/0C0/sprockets%2F8c0b57be976d698c1c6c8655786f2ca0 +0 -0
- data/spec/dummy/tmp/cache/assets/D2D/A70/sprockets%2F00632ff0a7171cfef0280be7b06c816c +0 -0
- data/spec/dummy/tmp/cache/assets/D30/850/sprockets%2F9cf873e6bbad214c1327db2110b7d473 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/370/sprockets%2Fabcc7db1b3b2458a1d123f36793707b7 +0 -0
- data/spec/dummy/tmp/cache/assets/D34/DD0/sprockets%2F97b052906124e7bc05c3722ec5abc8be +0 -0
- data/spec/dummy/tmp/cache/assets/D36/6C0/sprockets%2F504cde3ce0d273b7392d5624e63a4c6b +0 -0
- data/spec/dummy/tmp/cache/assets/D36/A90/sprockets%2Fa310632f1f06b37e3722fc27f5e39afc +0 -0
- data/spec/dummy/tmp/cache/assets/D37/D00/sprockets%2Fd91049a9cca358600e5e6b1a4bb3e376 +0 -0
- data/spec/dummy/tmp/cache/assets/D39/270/sprockets%2F04297bee1e87b1bd9e225c042f443b6d +0 -0
- data/spec/dummy/tmp/cache/assets/D3B/770/sprockets%2F2cff431ebf16d661e2e77606136a0dd8 +0 -0
- data/spec/dummy/tmp/cache/assets/D3B/BF0/sprockets%2F2fd45727318f2d35da3508a9f2afba81 +0 -0
- data/spec/dummy/tmp/cache/assets/D3B/C20/sprockets%2F083fdf43c74230f83dbc4bc4a75b5573 +0 -0
- data/spec/dummy/tmp/cache/assets/D3C/0C0/sprockets%2F138c3c31ce060e19769e43cbef05a88b +0 -0
- data/spec/dummy/tmp/cache/assets/D3D/E70/sprockets%2F6d71b922b6979fa55b2cbc22c07ec660 +0 -0
- data/spec/dummy/tmp/cache/assets/D3E/4E0/sprockets%2F49f381c19815ab7e04774ccf11c9dbc0 +0 -0
- data/spec/dummy/tmp/cache/assets/D40/D00/sprockets%2F7ee6278dd364bccd3148dd0436db9601 +0 -0
- data/spec/dummy/tmp/cache/assets/D42/0A0/sprockets%2F3926b2152fc6077a67c0393dd1fde5ff +0 -0
- data/spec/dummy/tmp/cache/assets/D42/6C0/sprockets%2F03848ab37827dec48d7da96dabc21391 +0 -0
- data/spec/dummy/tmp/cache/assets/D42/710/sprockets%2Fd686370f5a50a7b4e72c7ce2a1fa4994 +0 -0
- data/spec/dummy/tmp/cache/assets/D44/C40/sprockets%2F605f2716c99ad07e6557e3c11afe2d5f +0 -0
- data/spec/dummy/tmp/cache/assets/D48/030/sprockets%2Fc40ee9f1b6195d2b1c688b1b76a298d8 +0 -0
- data/spec/dummy/tmp/cache/assets/D49/8B0/sprockets%2F7cb6398fa76dfd0c23c320c4f6679e61 +0 -0
- data/spec/dummy/tmp/cache/assets/D4A/A50/sprockets%2Fd2508f9dc10d480fe0e96295d1bff396 +0 -0
- data/spec/dummy/tmp/cache/assets/D4E/810/sprockets%2Ff12e8e91de7a8141f5c683ad7a4e2788 +0 -0
- data/spec/dummy/tmp/cache/assets/D53/140/sprockets%2F163d881988dbb2e1afaf609ede199728 +0 -0
- data/spec/dummy/tmp/cache/assets/D57/7D0/sprockets%2F77ad64276f587f3d4939fcfc43ac390f +0 -0
- data/spec/dummy/tmp/cache/assets/D58/050/sprockets%2F5ebe40a16ad45f3c1a1074ecc446a292 +0 -0
- data/spec/dummy/tmp/cache/assets/D58/A20/sprockets%2F1eb6b3cf6044c4f45f401620dc32dcb4 +0 -0
- data/spec/dummy/tmp/cache/assets/D59/480/sprockets%2Fdd1552b23d46a3e5023ccc43cd14e8a6 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/0C0/sprockets%2F8d2ad7f5c2e34f43bcf2003055ea54b0 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/DE0/sprockets%2Fba56c872020d81adefc1a14d1a4a9915 +0 -0
- data/spec/dummy/tmp/cache/assets/D5E/050/sprockets%2Fe702fcfb1a2b3a9c7c7133734add0338 +0 -0
- data/spec/dummy/tmp/cache/assets/D5E/A60/sprockets%2F5d5889179e40a94d598d5aaef5e8ee07 +0 -0
- data/spec/dummy/tmp/cache/assets/D5F/110/sprockets%2Ff60880c0b15a4b40a1ff1dd84c4d418f +0 -0
- data/spec/dummy/tmp/cache/assets/D63/6B0/sprockets%2Fca3181abfdd31a22eb404ae76970e687 +0 -0
- data/spec/dummy/tmp/cache/assets/D65/EA0/sprockets%2Fdb95545103d8bda2a981abbd60598d0b +0 -0
- data/spec/dummy/tmp/cache/assets/D66/090/sprockets%2F5f23fb3b3620e42770a222dcffc3fe68 +0 -0
- data/spec/dummy/tmp/cache/assets/D66/4A0/sprockets%2F1ac93156ae46673c2e4ba7ebd8043a9a +0 -0
- data/spec/dummy/tmp/cache/assets/D66/E40/sprockets%2Fbc274bea451a3e63277a834da4e2f4b8 +0 -0
- data/spec/dummy/tmp/cache/assets/D68/3D0/sprockets%2F31c1a6f065dfda1dec7659153b2fe490 +0 -0
- data/spec/dummy/tmp/cache/assets/D68/D10/sprockets%2Fb2f1cbe194eb34e1b59f21e551fc3574 +0 -0
- data/spec/dummy/tmp/cache/assets/D69/C60/sprockets%2F03bfc608c93aa93a2c256fcec50c5874 +0 -0
- data/spec/dummy/tmp/cache/assets/D6C/900/sprockets%2F4b3d80c1c3945f3d066afd6866bf41bb +0 -0
- data/spec/dummy/tmp/cache/assets/D6D/A80/sprockets%2F2b7d49e95ce028a708cb5bcc42e636a3 +0 -0
- data/spec/dummy/tmp/cache/assets/D6E/1D0/sprockets%2Febe8b91ab292681b3aa9b2919bcb9309 +0 -0
- data/spec/dummy/tmp/cache/assets/D6E/C60/sprockets%2F8e87ddaee33f8186012822fcc103df2e +0 -0
- data/spec/dummy/tmp/cache/assets/D6F/BB0/sprockets%2F5d2d21e6cde758d2c0bd1fe4c1976742 +0 -0
- data/spec/dummy/tmp/cache/assets/D70/5E0/sprockets%2Fa3ae8bf758d0039d588053ebed90da70 +0 -0
- data/spec/dummy/tmp/cache/assets/D72/710/sprockets%2F79bac7d1795bf8754bb0fbba67e00770 +0 -0
- data/spec/dummy/tmp/cache/assets/D73/960/sprockets%2F181dab5ecaf89764c5467b65e23bba56 +0 -0
- data/spec/dummy/tmp/cache/assets/D74/490/sprockets%2F648cf9e0488a2f7626ace8ebad1f4122 +0 -0
- data/spec/dummy/tmp/cache/assets/D74/6B0/sprockets%2Fa08fbd7af9855772d668a08ff02ca13c +0 -0
- data/spec/dummy/tmp/cache/assets/D74/DC0/sprockets%2Fe265bb7bbe258b662d4f40f26e529ef3 +0 -0
- data/spec/dummy/tmp/cache/assets/D74/EB0/sprockets%2F693c9ecc1e41b6cb892d4ddd3c907550 +0 -0
- data/spec/dummy/tmp/cache/assets/D76/580/sprockets%2F74dc711f9d61a7533e8586e2fb5c3abe +0 -0
- data/spec/dummy/tmp/cache/assets/D76/FC0/sprockets%2F7ae697fb2502f9128fd86add032ad9f2 +0 -0
- data/spec/dummy/tmp/cache/assets/D77/730/sprockets%2F665c2d33686edda640646ef56cafa9c2 +0 -0
- data/spec/dummy/tmp/cache/assets/D77/A00/sprockets%2F8ce80cb4c6b710afda9ec656197458e2 +0 -0
- data/spec/dummy/tmp/cache/assets/D77/FB0/sprockets%2F3ab88055d76438c1d45e9accbb79cd55 +0 -0
- data/spec/dummy/tmp/cache/assets/D79/1D0/sprockets%2F7abdc027647b84c4f53cb3d2b8d96f77 +0 -0
- data/spec/dummy/tmp/cache/assets/D7B/150/sprockets%2Fd9fa9f45aa3f6724017e189a5c7a9b7c +0 -0
- data/spec/dummy/tmp/cache/assets/D7C/300/sprockets%2F1d6b390990b7c7b9ed499e2d01dea7c8 +0 -0
- data/spec/dummy/tmp/cache/assets/D7D/BD0/sprockets%2Fea81f82f5cff518d0c44d7543c77e5e4 +0 -0
- data/spec/dummy/tmp/cache/assets/D7D/FF0/sprockets%2F4c3966e119bbb65deceab8e7e8973126 +0 -0
- data/spec/dummy/tmp/cache/assets/D7F/600/sprockets%2Fe39484299c25cdfefefc7d33e741b325 +0 -0
- data/spec/dummy/tmp/cache/assets/D80/410/sprockets%2F2f90a1502bced530cfe43d52401ae4da +0 -0
- data/spec/dummy/tmp/cache/assets/D80/FD0/sprockets%2F728a58fa544e4efd983fad0456e463ed +0 -0
- data/spec/dummy/tmp/cache/assets/D81/8C0/sprockets%2F9cc8d4f6431e7e2ee2dc27e59c26b388 +0 -0
- data/spec/dummy/tmp/cache/assets/D88/600/sprockets%2Fcf9142cde71894eae6379dd48c37db96 +0 -0
- data/spec/dummy/tmp/cache/assets/D89/260/sprockets%2Fd301f60bda3bd4ed3d9ba69a61240a38 +0 -0
- data/spec/dummy/tmp/cache/assets/D89/9C0/sprockets%2Fe9f82dbde6002e4034513caad34d17ba +0 -0
- data/spec/dummy/tmp/cache/assets/D8D/3A0/sprockets%2Fecd5384bfb53f02ad91442b321fa1fd4 +0 -0
- data/spec/dummy/tmp/cache/assets/D8D/420/sprockets%2F7467447671cf6b9acbb94e9fd8ff6c08 +0 -0
- data/spec/dummy/tmp/cache/assets/D8D/CF0/sprockets%2Fbdb1f63b098352e751a0beb16b4be08d +0 -0
- data/spec/dummy/tmp/cache/assets/D91/1E0/sprockets%2Fbc1a8eab372e58fd252aa253e43336de +0 -0
- data/spec/dummy/tmp/cache/assets/D93/CE0/sprockets%2Fd9b8a6bb3a8a311ce98f75da01ca3434 +0 -0
- data/spec/dummy/tmp/cache/assets/D94/C30/sprockets%2Fb7fa94e617e70031daa94006f53cceea +0 -0
- data/spec/dummy/tmp/cache/assets/D95/EC0/sprockets%2Fe145e85edd68680ed88e3f3e8f9e51f8 +0 -0
- data/spec/dummy/tmp/cache/assets/D96/090/sprockets%2Fad332c8d6e4424da09ac1e55ed0b9d65 +0 -0
- data/spec/dummy/tmp/cache/assets/D96/8A0/sprockets%2Fe0a190e3e0da0e9f68d00ec71f85a75b +0 -0
- data/spec/dummy/tmp/cache/assets/D96/E10/sprockets%2F33e5a45c911eb718fea3c6ec42a832eb +0 -0
- data/spec/dummy/tmp/cache/assets/D98/950/sprockets%2F93a3b56babd39d715f71a970cb77bbb1 +0 -0
- data/spec/dummy/tmp/cache/assets/D98/F60/sprockets%2F9ab95efc5aa0eb2460668878baa0c22d +0 -0
- data/spec/dummy/tmp/cache/assets/D99/560/sprockets%2Fbbab097d388443baa6cbfd49b33b4475 +0 -0
- data/spec/dummy/tmp/cache/assets/D99/610/sprockets%2Fdd28851baa7a8a58e4c1d3257b2a76dc +0 -0
- data/spec/dummy/tmp/cache/assets/D99/AE0/sprockets%2F3e5bc199b14be3f6d01cc980ec2c69a2 +0 -0
- data/spec/dummy/tmp/cache/assets/D9A/600/sprockets%2F17951cd6fff06d13da3f6f1b40e309ce +0 -0
- data/spec/dummy/tmp/cache/assets/D9A/EA0/sprockets%2Fc33093eedea1f8d41a3c191b94f18f6a +0 -0
- data/spec/dummy/tmp/cache/assets/D9B/BF0/sprockets%2Fe0b11f8a26c196cc9e085fdf1cb029d6 +0 -0
- data/spec/dummy/tmp/cache/assets/D9B/C40/sprockets%2Fb56a9cad8972f42d5b1e880a18cea1c2 +0 -0
- data/spec/dummy/tmp/cache/assets/D9C/2D0/sprockets%2F091dee17d79da1264db1fabe58ab5259 +0 -0
- data/spec/dummy/tmp/cache/assets/D9C/5B0/sprockets%2Fa9e4927e3a4aeab27dd9bdc11a744934 +0 -0
- data/spec/dummy/tmp/cache/assets/D9E/410/sprockets%2F3c3eed64613c6bd970835b6ea2c1f6ce +0 -0
- data/spec/dummy/tmp/cache/assets/D9F/350/sprockets%2F6398e1e2bee52bf2783ed2b6a8f2d1c1 +0 -0
- data/spec/dummy/tmp/cache/assets/DA0/310/sprockets%2Fee7ff6d0499cd1f8952ac0f0a221dc55 +0 -0
- data/spec/dummy/tmp/cache/assets/DA2/180/sprockets%2Fbfafc9261998007eab2d57ecf0147dd5 +0 -0
- data/spec/dummy/tmp/cache/assets/DA2/510/sprockets%2Fffb4e28a83d3a3602896aaaede28149f +0 -0
- data/spec/dummy/tmp/cache/assets/DA2/E60/sprockets%2F58cc6e0c3efbde98de62aa3b07970219 +0 -0
- data/spec/dummy/tmp/cache/assets/DA2/FE0/sprockets%2Fd1c3f7352aba9ec1eee709f4764dc805 +0 -0
- data/spec/dummy/tmp/cache/assets/DA3/5F0/sprockets%2Ff1714849b6d37eb8a95079befa2ba1be +0 -0
- data/spec/dummy/tmp/cache/assets/DA4/870/sprockets%2Fe50d3fc5f7c551f0e8707bbd3ed5f761 +0 -0
- data/spec/dummy/tmp/cache/assets/DA6/F20/sprockets%2F1f52d853eac4e4ea08c9b05b7f648d8d +0 -0
- data/spec/dummy/tmp/cache/assets/DA9/390/sprockets%2Fba8d66e733696ec3fc844f23e3a8c0fb +0 -0
- data/spec/dummy/tmp/cache/assets/DA9/B00/sprockets%2F679d1c18f398cf0a6d18bea88ebb41f3 +0 -0
- data/spec/dummy/tmp/cache/assets/DAC/820/sprockets%2Fbec425c925dc8fae9187da93d25c8d81 +0 -0
- data/spec/dummy/tmp/cache/assets/DAF/670/sprockets%2Ff997be298da2fc0143b7abe6d75d8f36 +0 -0
- data/spec/dummy/tmp/cache/assets/DAF/D20/sprockets%2F97a19eb371b8ebfea86d4abd5165797d +0 -0
- data/spec/dummy/tmp/cache/assets/DAF/EB0/sprockets%2F280e1d09ef0a9f79f58d116a8dfe3df7 +0 -0
- data/spec/dummy/tmp/cache/assets/DB0/9B0/sprockets%2F6f666c02872c71ab5477e97fceaf7ade +0 -0
- data/spec/dummy/tmp/cache/assets/DB2/1E0/sprockets%2F2ed4cc57940e14d3b9bdfdc9e788e852 +0 -0
- data/spec/dummy/tmp/cache/assets/DB2/8F0/sprockets%2F406e919de63de77edf457f864c0f0fbc +0 -0
- data/spec/dummy/tmp/cache/assets/DBB/680/sprockets%2Ff15fbbc346c6414546dac4a2af74b2ba +0 -0
- data/spec/dummy/tmp/cache/assets/DBC/E30/sprockets%2Fedf6a0b56fde4bdc2a5002a27855b31e +0 -0
- data/spec/dummy/tmp/cache/assets/DBE/480/sprockets%2Ffb2e0f29761a2d3dcfa5cc33044bfb90 +0 -0
- data/spec/dummy/tmp/cache/assets/DC6/0C0/sprockets%2Fce8e75caa306b3a8bcb1c2e4623de658 +0 -0
- data/spec/dummy/tmp/cache/assets/DC6/230/sprockets%2Fd111840b917b593beadee27c2faee07e +0 -0
- data/spec/dummy/tmp/cache/assets/DC6/680/sprockets%2Fd9f1b4d0bf60ca6a1f09c8ee881e205a +0 -0
- data/spec/dummy/tmp/cache/assets/DC6/870/sprockets%2F350a15a94eda815505d7dbcdda5d59dc +0 -0
- data/spec/dummy/tmp/cache/assets/DC6/960/sprockets%2Ffead4b816a34baa067257a14bfd469ed +0 -0
- data/spec/dummy/tmp/cache/assets/DC7/930/sprockets%2F603c75dedfb626e7b0f2d1d0bfb3d790 +0 -0
- data/spec/dummy/tmp/cache/assets/DC8/C40/sprockets%2F40ead92705912acec7feedb56112ee7b +0 -0
- data/spec/dummy/tmp/cache/assets/DC9/B10/sprockets%2F3d1b2e8424e53e20f79b1fbb8bc8eaf2 +0 -0
- data/spec/dummy/tmp/cache/assets/DCB/270/sprockets%2F59626b1b2c5e74b0d6ce9abfc7ce34c2 +0 -0
- data/spec/dummy/tmp/cache/assets/DCD/350/sprockets%2Fefe1d037a6f235acf2fb648a482cc29e +0 -0
- data/spec/dummy/tmp/cache/assets/DCD/780/sprockets%2F8ea4837f3bab7d843c630d3bec62bd9a +0 -0
- data/spec/dummy/tmp/cache/assets/DCF/AB0/sprockets%2F4a57c94dc9f8ad22a5ba7e0a76b195dc +0 -0
- data/spec/dummy/tmp/cache/assets/DD1/2E0/sprockets%2Fde5b118ac7e596969a504cf7d5cabc0c +0 -0
- data/spec/dummy/tmp/cache/assets/DD2/6D0/sprockets%2F8af46a137b3db7af99c7c98ba4fe1d01 +0 -0
- data/spec/dummy/tmp/cache/assets/DD5/CA0/sprockets%2Fbb945ca5e6d777f5c4d305b0cfe66be5 +0 -0
- data/spec/dummy/tmp/cache/assets/DDA/160/sprockets%2Fe83a02feabcdb566ed2d4d996f3b9646 +0 -0
- data/spec/dummy/tmp/cache/assets/DDF/C30/sprockets%2F91731613dfffcc928fba82975adfb4ff +0 -0
- data/spec/dummy/tmp/cache/assets/DDF/CA0/sprockets%2F79e095ac769fbef92d74261db9ecaea2 +0 -0
- data/spec/dummy/tmp/cache/assets/DE2/620/sprockets%2F7efcee84eefdb62f5029662b966fe24a +0 -0
- data/spec/dummy/tmp/cache/assets/DE2/D70/sprockets%2F8849f51dedcfdc1e897a359a1d6ad5a9 +0 -0
- data/spec/dummy/tmp/cache/assets/DE3/4D0/sprockets%2F96058ff0b86ebf599b9ac53bfd88bc0c +0 -0
- data/spec/dummy/tmp/cache/assets/DE4/DA0/sprockets%2F14b1df157404b0dccba1e2fed9bab904 +0 -0
- data/spec/dummy/tmp/cache/assets/DE7/F20/sprockets%2Fe0b4544b613e6a0f72c3adfeaae55d0a +0 -0
- data/spec/dummy/tmp/cache/assets/DE8/520/sprockets%2F4ce4c3d8226a403bfea5c021acf98aba +0 -0
- data/spec/dummy/tmp/cache/assets/DEC/C60/sprockets%2Fc4f5dcbaec305c20428f1a3cab39fa85 +0 -0
- data/spec/dummy/tmp/cache/assets/DEC/E10/sprockets%2F3bd5bc2022ca2f6d42c81d9efdbea173 +0 -0
- data/spec/dummy/tmp/cache/assets/DED/450/sprockets%2Fca1b006daa72e1bebd67f0920fd92fd5 +0 -0
- data/spec/dummy/tmp/cache/assets/DF0/430/sprockets%2F4e6e49bfdcb2dff35b612b3bba2131d8 +0 -0
- data/spec/dummy/tmp/cache/assets/DF2/A00/sprockets%2Fdca5550fd00901735cb59dae8afdbd2d +0 -0
- data/spec/dummy/tmp/cache/assets/DF5/8B0/sprockets%2F6ac23ce25bde19ba520fdc64bd890a8e +0 -0
- data/spec/dummy/tmp/cache/assets/DF6/DE0/sprockets%2F490d27cff133bedabb9ddde84a2f1316 +0 -0
- data/spec/dummy/tmp/cache/assets/DF9/300/sprockets%2F3fd9c2e7afb65bbc5e74b1b60473e5ba +0 -0
- data/spec/dummy/tmp/cache/assets/DFA/5E0/sprockets%2Fd0da91a89bbf83c0f735b95dfa7d2ba1 +0 -0
- data/spec/dummy/tmp/cache/assets/DFC/5F0/sprockets%2F0b7de140dc7f0afc2199920f8ecbfda8 +0 -0
- data/spec/dummy/tmp/cache/assets/DFC/8A0/sprockets%2Fc0affaeb55a22bcee24f78686ce138f1 +0 -0
- data/spec/dummy/tmp/cache/assets/E00/030/sprockets%2F3d20bdd129376f6c5a1afbef1fed5f97 +0 -0
- data/spec/dummy/tmp/cache/assets/E00/AC0/sprockets%2F0e39fdfc12c1c6fed9e0cb138666abf7 +0 -0
- data/spec/dummy/tmp/cache/assets/E08/7F0/sprockets%2F55b64acc3aefafc79d25671e990eec7b +0 -0
- data/spec/dummy/tmp/cache/assets/E0D/A50/sprockets%2Fdd8b5fab1dd4cd799e62585f35da49cb +0 -0
- data/spec/dummy/tmp/cache/assets/E14/3A0/sprockets%2Fac9b7cde37f5929e46ff6d9b2daa773d +0 -0
- data/spec/dummy/tmp/cache/assets/E15/450/sprockets%2F73ccebb07acba8fbdaad31f4173e4600 +0 -0
- data/spec/dummy/tmp/cache/assets/E16/D40/sprockets%2F9dfea9ec8cff54ba5abb286c91f71879 +0 -0
- data/spec/dummy/tmp/cache/assets/E20/530/sprockets%2Fa027fa4713d59f7cc060b1aaaedeeb9e +0 -0
- data/spec/dummy/tmp/cache/assets/E26/750/sprockets%2Faaa76cdb66120383db0fbaefeb659f5d +0 -0
- data/spec/dummy/tmp/cache/assets/E28/160/sprockets%2F4fc48abbb4e106d9d4a285bea7e0efd4 +0 -0
- data/spec/dummy/tmp/cache/assets/E2E/950/sprockets%2Ffd20bf9d9aaac4a84d5e38f605bff0d5 +0 -0
- data/spec/dummy/tmp/cache/assets/E2F/9F0/sprockets%2F59570fc13c52b6fbdb0aeea98eebf6f1 +0 -0
- data/spec/dummy/tmp/cache/assets/E31/5D0/sprockets%2F46cbf84ed6c51af7e031dadf896ecc0d +0 -0
- data/spec/dummy/tmp/cache/assets/E38/200/sprockets%2F25542fbbdeb80e9439fd4e8cafedb45f +0 -0
- data/spec/dummy/tmp/cache/assets/E38/AE0/sprockets%2Ffea1e8c6ea7bfb94c347ad4eec06f738 +0 -0
- data/spec/dummy/tmp/cache/assets/E39/FE0/sprockets%2F9e8ce0a11b64a68d7873cae7e9ecefab +0 -0
- data/spec/dummy/tmp/cache/assets/E77/530/sprockets%2Fbbf58cbd41a1abc2319e8cbf3da3d1af +0 -0
- data/spec/dummy/tmp/cache/assets/EBD/E20/sprockets%2Fb9cfb8a94c54abb1dfdac6fd7cea93e0 +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/accordion.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/alerts.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/bootstrap.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/breadcrumbs.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/button-groups.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/buttons.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/carousel.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/close.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/code.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/component-animations.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/dropdowns.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/forms.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/grid.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/hero-unit.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/labels-badges.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/layouts.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/mixins.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/modals.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/navbar.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/navs.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/pager.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/pagination.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/popovers.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/progress-bars.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/reset.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/responsive-1200px-min.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/responsive-767px-max.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/responsive-768px-979px.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/responsive-navbar.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/responsive-utilities.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/responsive.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/scaffolding.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/sprites.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/tables.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/thumbnails.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/tooltip.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/type.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/utilities.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/variables.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/83beff91c6a328e38af6564bb868a6f695f56b00/wells.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/ac3a301b70655436b0c6093da0999a0fe5bfe6ce/editor.css.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/d13116538a2d1c1c59dcf0e4d4ccff3b2d5cf475/_mixins.css.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/d13116538a2d1c1c59dcf0e4d4ccff3b2d5cf475/layout.css.scssc +0 -0
- data/spec/dummy/tmp/cache/sass/d13116538a2d1c1c59dcf0e4d4ccff3b2d5cf475/login.css.scssc +0 -0
- data/spec/models/page_spec.rb +17 -0
- data/spec/rule_spec.rb +129 -0
- data/spec/spec_helper.rb +61 -0
- data/spec/support/tree_macro.rb +44 -0
- data/vendor/assets/javascripts/jquery.scrollto.js +218 -0
- data/vendor/assets/javascripts/jquery.ui.nestedSortable.js +391 -0
- metadata +916 -0
File without changes
|
@@ -0,0 +1,456 @@
|
|
1
|
+
/*!
|
2
|
+
* Mercury Editor is a CoffeeScript and jQuery based WYSIWYG editor. Documentation and other useful information can be
|
3
|
+
* found at https://github.com/jejacks0n/mercury
|
4
|
+
*
|
5
|
+
*= require_self
|
6
|
+
*
|
7
|
+
* You can include the Rails jQuery ujs script here to get some nicer behaviors in modals, panels and lightviews when
|
8
|
+
* using :remote => true within the contents rendered in them.
|
9
|
+
*= require jquery_ujs
|
10
|
+
*
|
11
|
+
* Add any requires for the support libraries that integrate nicely with Mercury Editor.
|
12
|
+
* require mercury/support/history
|
13
|
+
*
|
14
|
+
* Require Mercury Editor itself.
|
15
|
+
*= require mercury/mercury
|
16
|
+
*
|
17
|
+
*
|
18
|
+
* Require any localizations you wish to support
|
19
|
+
* Example: es.locale, or fr.locale -- regional dialects are in each language file so never en_US for instance.
|
20
|
+
*= require amalgam/mercury/locales/zh-CN.locale
|
21
|
+
*
|
22
|
+
* Add all requires for plugins that extend or change the behavior of Mercury Editor.
|
23
|
+
* require mercury/plugins/save_as_xml/plugin.js
|
24
|
+
*
|
25
|
+
* Require any files you want to use that either extend, or change the default Mercury behavior.
|
26
|
+
* require mercury_overrides
|
27
|
+
*/
|
28
|
+
var mercury_prefix = function() {
|
29
|
+
if (typeof MERCURY_PREFIX !== "undefined" && MERCURY_PREFIX !== null) {
|
30
|
+
return MERCURY_PREFIX;
|
31
|
+
} else {
|
32
|
+
return "";
|
33
|
+
}
|
34
|
+
};
|
35
|
+
|
36
|
+
window.Mercury = {
|
37
|
+
|
38
|
+
// # Mercury Configuration
|
39
|
+
config: {
|
40
|
+
// ## Toolbars
|
41
|
+
//
|
42
|
+
// This is where you can customize the toolbars by adding or removing buttons, or changing them and their
|
43
|
+
// behaviors. Any top level object put here will create a new toolbar. Buttons are simply nested inside the
|
44
|
+
// toolbars, along with button groups.
|
45
|
+
//
|
46
|
+
// Some toolbars are custom (the snippets toolbar for instance), and to denote that use _custom: true. You can then
|
47
|
+
// build the toolbar yourself with it's own behavior.
|
48
|
+
//
|
49
|
+
// Buttons can be grouped, and a button group is simply a way to wrap buttons for styling -- they can also handle
|
50
|
+
// enabling or disabling all the buttons within it by using a context. The table button group is a good example of
|
51
|
+
// this.
|
52
|
+
//
|
53
|
+
// It's important to note that each of the button names (keys), in each toolbar object must be unique, regardless of
|
54
|
+
// if it's in a button group, or nested, etc. This is because styling is applied to them by name, and because their
|
55
|
+
// name is used in the event that's fired when you click on them.
|
56
|
+
//
|
57
|
+
// Button format: `[label, description, {type: action, type: action, etc}]`
|
58
|
+
//
|
59
|
+
// ### The available button types are:
|
60
|
+
//
|
61
|
+
// - toggle: toggles on or off when clicked, otherwise behaves like a button
|
62
|
+
// - modal: opens a modal window, expects the action to be one of:
|
63
|
+
// 1. a string url
|
64
|
+
// 2. a function that returns a string url
|
65
|
+
// - lightview: opens a lightview window (like modal, but different UI), expects the action to be one of:
|
66
|
+
// 1. a string url
|
67
|
+
// 2. a function that returns a string url
|
68
|
+
// - panel: opens a panel dialog, expects the action to be one of:
|
69
|
+
// 1. a string url
|
70
|
+
// 2. a function that returns a string url
|
71
|
+
// - palette: opens a palette window, expects the action to be one of:
|
72
|
+
// 1. a string url
|
73
|
+
// 2. a function that returns a string url
|
74
|
+
// - select: opens a pulldown style window, expects the action to be one of:
|
75
|
+
// 1. a string url
|
76
|
+
// 2. a function that returns a string url
|
77
|
+
// - context: calls a callback function, expects the action to be:
|
78
|
+
// 1. a function that returns a boolean to highlight the button
|
79
|
+
// note: if a function isn't provided, the key will be passed to the contextHandler, in which case a default
|
80
|
+
// context will be used (for more info read the Contexts section below)
|
81
|
+
// - mode: toggle a given mode in the editor, expects the action to be:
|
82
|
+
// 1. a string, denoting the name of the mode
|
83
|
+
// note: it's assumed that when a specific mode is turned on, all other modes will be turned off, which happens
|
84
|
+
// automatically, thus putting the editor into a specific "state"
|
85
|
+
// - regions: allows buttons to be enabled/disabled based on what region type has focus, expects:
|
86
|
+
// 1. an array of region types (eg. ['full', 'markdown'])
|
87
|
+
// - preload: allows some dialog views to be loaded when the button is created instead of on first open, expects:
|
88
|
+
// 1. a boolean true / false
|
89
|
+
// note: this is only used by panels, selects, and palettes
|
90
|
+
//
|
91
|
+
// Separators are any "button" that's not an array, and are expected to be a string. You can use two different
|
92
|
+
// separator styles: line ('-'), and spacer (' ').
|
93
|
+
//
|
94
|
+
// ### Adding Contexts
|
95
|
+
//
|
96
|
+
// Contexts are used callback functions used for highlighting and disabling/enabling buttons and buttongroups. When
|
97
|
+
// the cursor enters an element within an html region for instance we want to disable or highlight buttons based on
|
98
|
+
// the properties of the given node. You can see examples of contexts in, and add your own to:
|
99
|
+
// `Mercury.Toolbar.Button.contexts` and `Mercury.Toolbar.ButtonGroup.contexts`
|
100
|
+
toolbars: {
|
101
|
+
primary: {
|
102
|
+
save: ['Save', 'Save this page'],
|
103
|
+
preview: ['Preview', 'Preview this page', { toggle: true, mode: true }],
|
104
|
+
sep1: ' ',
|
105
|
+
undoredo: {
|
106
|
+
undo: ['Undo', 'Undo your last action'],
|
107
|
+
redo: ['Redo', 'Redo your last action'],
|
108
|
+
sep: ' '
|
109
|
+
},
|
110
|
+
insertLink: ['Link', 'Insert Link', { modal: '/mercury/modals/link.html', regions: ['full', 'markdown'] }],
|
111
|
+
insertMedia: ['Media', 'Insert Media (images and videos)', { modal: '/mercury/modals/media.html', regions: ['full', 'markdown'] }],
|
112
|
+
insertTable: ['Table', 'Insert Table', { modal: '/mercury/modals/table.html', regions: ['full', 'markdown'] }],
|
113
|
+
insertCharacter: ['Character', 'Special Characters', { modal: '/mercury/modals/character.html', regions: ['full', 'markdown'] }],
|
114
|
+
sep2: ' ',
|
115
|
+
editproperties: ['Properties', 'Edit Properties', {panel: '/mercury/panels/properties.html', preload: true}]
|
116
|
+
},
|
117
|
+
|
118
|
+
editable: {
|
119
|
+
_regions: ['full', 'markdown'],
|
120
|
+
predefined: {
|
121
|
+
style: ['Style', null, { select: '/mercury/selects/style.html', preload: true }],
|
122
|
+
sep1: ' ',
|
123
|
+
formatblock: ['Block Format', null, { select: '/mercury/selects/formatblock.html', preload: true }],
|
124
|
+
sep2: '-'
|
125
|
+
},
|
126
|
+
colors: {
|
127
|
+
backColor: ['Background Color', null, { palette: '/mercury/palettes/backcolor.html', context: true, preload: true, regions: ['full'] }],
|
128
|
+
sep1: ' ',
|
129
|
+
foreColor: ['Text Color', null, { palette: '/mercury/palettes/forecolor.html', context: true, preload: true, regions: ['full'] }],
|
130
|
+
sep2: '-'
|
131
|
+
},
|
132
|
+
decoration: {
|
133
|
+
bold: ['Bold', null, { context: true }],
|
134
|
+
italic: ['Italicize', null, { context: true }],
|
135
|
+
overline: ['Overline', null, { context: true, regions: ['full'] }],
|
136
|
+
strikethrough: ['Strikethrough', null, { context: true, regions: ['full'] }],
|
137
|
+
underline: ['Underline', null, { context: true, regions: ['full'] }],
|
138
|
+
sep: '-'
|
139
|
+
},
|
140
|
+
script: {
|
141
|
+
subscript: ['Subscript', null, { context: true }],
|
142
|
+
superscript: ['Superscript', null, { context: true }],
|
143
|
+
sep: '-'
|
144
|
+
},
|
145
|
+
justify: {
|
146
|
+
justifyLeft: ['Align Left', null, { context: true, regions: ['full'] }],
|
147
|
+
justifyCenter: ['Center', null, { context: true, regions: ['full'] }],
|
148
|
+
justifyRight: ['Align Right', null, { context: true, regions: ['full'] }],
|
149
|
+
justifyFull: ['Justify Full', null, { context: true, regions: ['full'] }],
|
150
|
+
sep: '-'
|
151
|
+
},
|
152
|
+
list: {
|
153
|
+
insertUnorderedList: ['Unordered List', null, { context: true }],
|
154
|
+
insertOrderedList: ['Numbered List', null, { context: true }],
|
155
|
+
sep: '-'
|
156
|
+
},
|
157
|
+
indent: {
|
158
|
+
outdent: ['Decrease Indentation'],
|
159
|
+
indent: ['Increase Indentation'],
|
160
|
+
sep: '-'
|
161
|
+
},
|
162
|
+
table: {
|
163
|
+
_context: true,
|
164
|
+
insertRowBefore: ['Insert Table Row', 'Insert a table row before the cursor', { regions: ['full'] }],
|
165
|
+
insertRowAfter: ['Insert Table Row', 'Insert a table row after the cursor', { regions: ['full'] }],
|
166
|
+
deleteRow: ['Delete Table Row', 'Delete this table row', { regions: ['full'] }],
|
167
|
+
insertColumnBefore: ['Insert Table Column', 'Insert a table column before the cursor', { regions: ['full'] }],
|
168
|
+
insertColumnAfter: ['Insert Table Column', 'Insert a table column after the cursor', { regions: ['full'] }],
|
169
|
+
deleteColumn: ['Delete Table Column', 'Delete this table column', { regions: ['full'] }],
|
170
|
+
sep1: ' ',
|
171
|
+
increaseColspan: ['Increase Cell Columns', 'Increase the cells colspan'],
|
172
|
+
decreaseColspan: ['Decrease Cell Columns', 'Decrease the cells colspan and add a new cell'],
|
173
|
+
increaseRowspan: ['Increase Cell Rows', 'Increase the cells rowspan'],
|
174
|
+
decreaseRowspan: ['Decrease Cell Rows', 'Decrease the cells rowspan and add a new cell'],
|
175
|
+
sep2: '-'
|
176
|
+
},
|
177
|
+
rules: {
|
178
|
+
horizontalRule: ['Horizontal Rule', 'Insert a horizontal rule'],
|
179
|
+
sep1: '-'
|
180
|
+
},
|
181
|
+
formatting: {
|
182
|
+
removeFormatting: ['Remove Formatting', 'Remove formatting for the selection', { regions: ['full'] }],
|
183
|
+
sep2: ' '
|
184
|
+
},
|
185
|
+
editors: {
|
186
|
+
htmlEditor: ['Edit HTML', 'Edit the HTML content', { regions: ['full'] }]
|
187
|
+
}
|
188
|
+
},
|
189
|
+
|
190
|
+
snippets: {
|
191
|
+
_custom: true,
|
192
|
+
actions: {
|
193
|
+
editSnippet: ['Edit Snippet Settings'],
|
194
|
+
sep1: ' ',
|
195
|
+
removeSnippet: ['Remove Snippet']
|
196
|
+
}
|
197
|
+
}
|
198
|
+
},
|
199
|
+
|
200
|
+
|
201
|
+
// ## Region Options
|
202
|
+
//
|
203
|
+
// You can customize some aspects of how regions are found, identified, and saved.
|
204
|
+
//
|
205
|
+
// attribute: Mercury identifies editable regions by a data-mercury attribute. This attribute has to be added in
|
206
|
+
// your HTML in advance, and is the only real code/naming exposed in the implementation of Mercury. To allow this
|
207
|
+
// to be as configurable as possible, you can set the name of this attribute. If you change this, you should adjust
|
208
|
+
// the injected styles as well.
|
209
|
+
//
|
210
|
+
// identifier: This is used as a unique identifier for any given region (and thus should be unique to the page).
|
211
|
+
// By default this is the id attribute but can be changed to a data attribute should you want to use something
|
212
|
+
// custom instead.
|
213
|
+
//
|
214
|
+
// dataAttributes: The dataAttributes is an array of data attributes that will be serialized and returned to the
|
215
|
+
// server upon saving. These attributes, when applied to a Mercury region element, will be automatically serialized
|
216
|
+
// and submitted with the AJAX request sent when a page is saved. These are expected to be HTML5 data attributes,
|
217
|
+
// and 'data-' will automatically be prepended to each item in this directive. (ex. ['scope', 'version'])
|
218
|
+
//
|
219
|
+
// determineType: This function is called after checking the data-type attribute for the correct field type. Use
|
220
|
+
// it if you want to dynamically set the type based on inspection of the region.
|
221
|
+
regions: {
|
222
|
+
attribute: 'data-mercury',
|
223
|
+
identifier: 'data-id',
|
224
|
+
dataAttributes: []
|
225
|
+
// determineType: function(region){},
|
226
|
+
},
|
227
|
+
|
228
|
+
|
229
|
+
// ## Snippet Options / Preview
|
230
|
+
//
|
231
|
+
// When a user drags a snippet onto the page they'll be prompted to enter options for the given snippet. The server
|
232
|
+
// is expected to respond with a form. Once the user submits this form, an Ajax request is sent to the server with
|
233
|
+
// the options provided; this preview request is expected to respond with the rendered markup for the snippet.
|
234
|
+
//
|
235
|
+
// method: The HTTP method used when submitting both the options and the preview. We use POST by default because a
|
236
|
+
// snippet options form may contain large text inputs and we don't want that to be truncated when sent to the
|
237
|
+
// server.
|
238
|
+
//
|
239
|
+
// optionsUrl: The url that the options form will be loaded from.
|
240
|
+
//
|
241
|
+
// previewUrl: The url that the options will be submitted to, and will return the rendered snippet markup.
|
242
|
+
//
|
243
|
+
// **Note:** `:name` will be replaced with the snippet name in the urls (eg. /mercury/snippets/example/options.html)
|
244
|
+
snippets: {
|
245
|
+
method: 'POST',
|
246
|
+
optionsUrl: '/mercury/snippets/:name/options.html',
|
247
|
+
previewUrl: '/mercury/snippets/:name/preview.html'
|
248
|
+
},
|
249
|
+
|
250
|
+
|
251
|
+
// ## Image Uploading
|
252
|
+
//
|
253
|
+
// If you drag images from your desktop into regions that support it, it will be uploaded to the server and inserted
|
254
|
+
// into the region. You can disable or enable this feature, the accepted mime-types, file size restrictions, and
|
255
|
+
// other things related to uploading.
|
256
|
+
//
|
257
|
+
// **Note:** Image uploading is only supported in some region types, and some browsers.
|
258
|
+
//
|
259
|
+
// enabled: You can set this to true, or false if you want to disable the feature entirely.
|
260
|
+
//
|
261
|
+
// allowedMimeTypes: You can restrict the types of files that can be uploaded by providing a list of allowed mime
|
262
|
+
// types.
|
263
|
+
//
|
264
|
+
// maxFileSize: You can restrict large files by setting the maxFileSize (in bytes).
|
265
|
+
//
|
266
|
+
// inputName: When uploading, a form is generated and submitted to the server via Ajax. If your server would prefer
|
267
|
+
// a different name for how the image comes through, you can change the inputName.
|
268
|
+
//
|
269
|
+
// url: The url that the image upload will be submitted to.
|
270
|
+
//
|
271
|
+
// handler: You can use false to let Mercury handle it for you, or you can provide a handler function that can
|
272
|
+
// modify the response from the server. This can be useful if your server doesn't respond the way Mercury expects.
|
273
|
+
// The handler function should take the response from the server and return an object that matches:
|
274
|
+
// `{image: {url: '[your provided url]'}`
|
275
|
+
uploading: {
|
276
|
+
enabled: true,
|
277
|
+
allowedMimeTypes: ['image/jpeg', 'image/gif', 'image/png'],
|
278
|
+
maxFileSize: 1235242880,
|
279
|
+
inputName: 'image[file]',
|
280
|
+
url: mercury_prefix()+'/admin/editor/upload_image',
|
281
|
+
handler: false
|
282
|
+
},
|
283
|
+
|
284
|
+
|
285
|
+
// ## Localization / I18n
|
286
|
+
//
|
287
|
+
// Include the .locale files you want to support when loading Mercury. The files are always named by the language,
|
288
|
+
// and not the regional dialect (eg. en.locale.js) because the regional dialects are nested within the primary
|
289
|
+
// locale files.
|
290
|
+
//
|
291
|
+
// The client locale will be used first, and if no proper locale file is found for their language then the fallback
|
292
|
+
// preferredLocale configuration will be used. If one isn't provided, and the client locale isn't included, the
|
293
|
+
// strings will remain untranslated.
|
294
|
+
//
|
295
|
+
// enabled: Set to false to disable, true to enable.
|
296
|
+
//
|
297
|
+
// preferredLocale: If a client doesn't support the locales you've included, this is used as a fallback.
|
298
|
+
localization: {
|
299
|
+
enabled: true,
|
300
|
+
preferredLocale: 'zh-CN'
|
301
|
+
},
|
302
|
+
|
303
|
+
|
304
|
+
// ## Behaviors
|
305
|
+
//
|
306
|
+
// Behaviors are used to change the default behaviors of a given region type when a given button is clicked. For
|
307
|
+
// example, you may prefer to add HR tags using an HR wrapped within a div with a classname (for styling). You
|
308
|
+
// can add your own complex behaviors here and they'll be shared across all regions.
|
309
|
+
//
|
310
|
+
// If you want to add behaviors to specific region types, you can mix them into the actions property of any region
|
311
|
+
// type.
|
312
|
+
//
|
313
|
+
// Mercury.Regions.Full.actions.htmlEditor = function() {}
|
314
|
+
//
|
315
|
+
// You can see how the behavior matches up directly with the button names. It's also important to note that the
|
316
|
+
// callback functions are executed within the scope of the given region, so you have access to all it's methods.
|
317
|
+
behaviors: {
|
318
|
+
//foreColor: function(selection, options) { selection.wrap('<span style="color:' + options.value.toHex() + '">', true) },
|
319
|
+
htmlEditor: function() { Mercury.modal('/mercury/modals/htmleditor.html', { title: 'HTML Editor', fullHeight: true, handler: 'htmlEditor' }); }
|
320
|
+
},
|
321
|
+
|
322
|
+
|
323
|
+
// ## Global Behaviors
|
324
|
+
//
|
325
|
+
// Global behaviors are much like behaviors, but are more "global". Things like save, exit, etc. can be included
|
326
|
+
// here. They'll only be called once, and execute within the scope of whatever editor is instantiated (eg.
|
327
|
+
// PageEditor).
|
328
|
+
//
|
329
|
+
// An example of changing how saving works:
|
330
|
+
//
|
331
|
+
// save: function() {
|
332
|
+
// var data = top.JSON.stringify(this.serialize(), null, ' ');
|
333
|
+
// var content = '<textarea style="width:500px;height:200px" wrap="off">' + data + '</textarea>';
|
334
|
+
// Mercury.modal(null, {title: 'Saving', closeButton: true, content: content})
|
335
|
+
// }
|
336
|
+
//
|
337
|
+
// This is a nice way to add functionality, when the behaviors aren't region specific. These can be triggered by a
|
338
|
+
// button, or manually with `Mercury.trigger('action', {action: 'barrelRoll'})`
|
339
|
+
globalBehaviors: {
|
340
|
+
exit: function() { window.location.href = this.iframeSrc() },
|
341
|
+
barrelRoll: function() { $('body').css({webkitTransform: 'rotate(360deg)'}) }
|
342
|
+
},
|
343
|
+
|
344
|
+
|
345
|
+
// ## Ajax and CSRF Headers
|
346
|
+
//
|
347
|
+
// Some server frameworks require that you provide a specific header for Ajax requests. The values for these CSRF
|
348
|
+
// tokens are typically stored in the rendered DOM. By default, Mercury will look for the Rails specific meta tag,
|
349
|
+
// and provide the X-CSRF-Token header on Ajax requests, but you can modify this configuration if the system you're
|
350
|
+
// using doesn't follow the same standard.
|
351
|
+
csrfSelector: 'meta[name="csrf-token"]',
|
352
|
+
csrfHeader: 'X-CSRF-Token',
|
353
|
+
|
354
|
+
|
355
|
+
// ## Editor URLs
|
356
|
+
//
|
357
|
+
// When loading a given page, you may want to tweak this regex. It's to allow the url to differ from the page
|
358
|
+
// you're editing, and the url at which you access it.
|
359
|
+
editorUrlRegEx: /([http|https]:\/\/.[^\/]*)\/?(.*)#.*/i,
|
360
|
+
|
361
|
+
|
362
|
+
// ## Hijacking Links & Forms
|
363
|
+
//
|
364
|
+
// Mercury will hijack links and forms that don't have a target set, or the target is set to _self and will set it
|
365
|
+
// to _parent. This is because the target must be set properly for Mercury to not get in the way of some
|
366
|
+
// functionality, like proper page loads on form submissions etc. Mercury doesn't do this to links or forms that
|
367
|
+
// are within editable regions because it doesn't want to impact the html that's saved. With that being explained,
|
368
|
+
// you can add classes to links or forms that you don't want this behavior added to. Let's say you have links that
|
369
|
+
// open a lightbox style window, and you don't want the targets of these to be set to _parent. You can add classes
|
370
|
+
// to this array, and they will be ignored when the hijacking is applied.
|
371
|
+
nonHijackableClasses: [],
|
372
|
+
|
373
|
+
|
374
|
+
// ## Pasting & Sanitizing
|
375
|
+
//
|
376
|
+
// When pasting content into Mercury it may sometimes contain HTML tags and attributes. This markup is used to
|
377
|
+
// style the content and makes the pasted content look (and behave) the same as the original content. This can be a
|
378
|
+
// desired feature or an annoyance, so you can enable various sanitizing methods to clean the content when it's
|
379
|
+
// pasted.
|
380
|
+
//
|
381
|
+
// sanitize: Can be any of the following:
|
382
|
+
// - false: no sanitizing is done, the content is pasted the exact same as it was copied by the user
|
383
|
+
// - 'whitelist': content is cleaned using the settings specified in the tag white list (described below)
|
384
|
+
// - 'text': all html is stripped before pasting, leaving only the raw text
|
385
|
+
//
|
386
|
+
// whitelist: The white list allows you to specify tags and attributes that are allowed when pasting content. Each
|
387
|
+
// item in this object should contain the allowed tag, and an array of attributes that are allowed on that tag. If
|
388
|
+
// the allowed attributes array is empty, all attributes will be removed. If a tag is not present in this list, it
|
389
|
+
// will be removed, but without removing any of the text or tags inside it.
|
390
|
+
//
|
391
|
+
// **Note:** Content is *always* sanitized if looks like it's from MS Word or similar editors regardless of this
|
392
|
+
// configuration.
|
393
|
+
pasting: {
|
394
|
+
sanitize: 'whitelist',
|
395
|
+
whitelist: {
|
396
|
+
h1: [],
|
397
|
+
h2: [],
|
398
|
+
h3: [],
|
399
|
+
h4: [],
|
400
|
+
h5: [],
|
401
|
+
h6: [],
|
402
|
+
table: [],
|
403
|
+
thead: [],
|
404
|
+
tbody: [],
|
405
|
+
tfoot: [],
|
406
|
+
tr: [],
|
407
|
+
th: ['colspan', 'rowspan'],
|
408
|
+
td: ['colspan', 'rowspan'],
|
409
|
+
div: ['class'],
|
410
|
+
span: ['class'],
|
411
|
+
ul: [],
|
412
|
+
ol: [],
|
413
|
+
li: [],
|
414
|
+
b: [],
|
415
|
+
strong: [],
|
416
|
+
i: [],
|
417
|
+
em: [],
|
418
|
+
u: [],
|
419
|
+
strike: [],
|
420
|
+
br: [],
|
421
|
+
p: [],
|
422
|
+
hr: [],
|
423
|
+
a: ['href', 'target', 'title', 'name'],
|
424
|
+
img: ['src', 'title', 'alt']
|
425
|
+
}
|
426
|
+
},
|
427
|
+
|
428
|
+
|
429
|
+
// ## Injected Styles
|
430
|
+
//
|
431
|
+
// Mercury tries to stay as much out of your code as possible, but because regions appear within your document we
|
432
|
+
// need to include a few styles to indicate regions, as well as the different states of them (eg. focused). These
|
433
|
+
// styles are injected into your document, and as simple as they might be, you may want to change them.
|
434
|
+
injectedStyles: '' +
|
435
|
+
'[data-mercury] { min-height: 10px; outline: 1px dotted #09F } ' +
|
436
|
+
'[data-mercury]:focus { outline: none; -webkit-box-shadow: 0 0 10px #09F, 0 0 1px #045; box-shadow: 0 0 10px #09F, 0 0 1px #045 }' +
|
437
|
+
'[data-mercury].focus { outline: none; -webkit-box-shadow: 0 0 10px #09F, 0 0 1px #045; box-shadow: 0 0 10px #09F, 0 0 1px #045 }' +
|
438
|
+
'[data-mercury]:after { content: "."; display: block; visibility: hidden; clear: both; height: 0; overflow: hidden; }' +
|
439
|
+
'[data-mercury] table { border: 1px dotted red; min-width: 6px; }' +
|
440
|
+
'[data-mercury] th { border: 1px dotted red; min-width: 6px; }' +
|
441
|
+
'[data-mercury] td { border: 1px dotted red; min-width: 6px; }' +
|
442
|
+
'[data-mercury] .mercury-textarea { border: 0; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; resize: none; }' +
|
443
|
+
'[data-mercury] .mercury-textarea:focus { outline: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }'
|
444
|
+
},
|
445
|
+
|
446
|
+
// ## Silent Mode
|
447
|
+
//
|
448
|
+
// Turning silent mode on will disable asking about unsaved changes before leaving the page.
|
449
|
+
silent: false,
|
450
|
+
|
451
|
+
// ## Debug Mode
|
452
|
+
//
|
453
|
+
// Turning debug mode on will log events and other various things (using console.debug if available).
|
454
|
+
debug: false
|
455
|
+
|
456
|
+
};
|