spontaneous 0.1.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +49 -0
- data/Gemfile.lock +146 -0
- data/LICENSE +0 -0
- data/README +0 -0
- data/Rakefile +284 -0
- data/Readme.markdown +7 -0
- data/application/css/add_alias_dialogue.scss +27 -0
- data/application/css/definitions.scss +249 -0
- data/application/css/developer.scss +9 -0
- data/application/css/editing.scss +649 -0
- data/application/css/login.scss +91 -0
- data/application/css/min/54ee0ed3c7fac7632bd5c020d69e9a2503e0c88c.css +1 -0
- data/application/css/min/c256adc144e2bdd0b0539356b04eb62db01e1dc3.css +1 -0
- data/application/css/popover.scss +335 -0
- data/application/css/schema_error.scss +90 -0
- data/application/css/spontaneous.scss +111 -0
- data/application/css/unsupported.scss +16 -0
- data/application/css/v2.scss +1606 -0
- data/application/css/variables.scss +80 -0
- data/application/js/add_alias_dialogue.js +59 -0
- data/application/js/add_home_dialogue.js +59 -0
- data/application/js/ajax.js +99 -0
- data/application/js/authentication.js +22 -0
- data/application/js/box.js +104 -0
- data/application/js/box_container.js +82 -0
- data/application/js/compatibility.js +132 -0
- data/application/js/conflicted_field_dialogue.js +92 -0
- data/application/js/content.js +224 -0
- data/application/js/content_area.js +44 -0
- data/application/js/dialogue.js +196 -0
- data/application/js/dom.js +71 -0
- data/application/js/edit_dialogue.js +137 -0
- data/application/js/edit_panel.js +232 -0
- data/application/js/editing.js +42 -0
- data/application/js/entry.js +13 -0
- data/application/js/extensions.js +104 -0
- data/application/js/field.js +4 -0
- data/application/js/field_preview.js +55 -0
- data/application/js/field_types/date_field.js +16 -0
- data/application/js/field_types/file_field.js +71 -0
- data/application/js/field_types/image_field.js +358 -0
- data/application/js/field_types/markdown_field.js +656 -0
- data/application/js/field_types/string_field.js +185 -0
- data/application/js/image.js +72 -0
- data/application/js/init.js +34 -0
- data/application/js/load.js +4 -0
- data/application/js/location.js +157 -0
- data/application/js/login.js +53 -0
- data/application/js/min/492a209de8ee955fa9c729a765377495001e11b1.js +17 -0
- data/application/js/min/80f684d77c940887a1d4a63e3a96102e993baa98.js +88 -0
- data/application/js/min/b8abf302a824c35385ff517b34111e1710ff3b37.js +2 -0
- data/application/js/min/c7140ec9475e5bf868b901e0621338d7d162358b.js +3 -0
- data/application/js/min/f07f2bd6630ee31e1c2288ec223383d8f0658ba6.js +2 -0
- data/application/js/page.js +43 -0
- data/application/js/page_browser.js +147 -0
- data/application/js/page_entry.js +47 -0
- data/application/js/popover.js +99 -0
- data/application/js/popover_view.js +56 -0
- data/application/js/preview.js +64 -0
- data/application/js/progress.js +358 -0
- data/application/js/properties.js +90 -0
- data/application/js/publish.js +187 -0
- data/application/js/require.js +129 -0
- data/application/js/sharded_upload.js +206 -0
- data/application/js/side_bar.js +30 -0
- data/application/js/spontaneous.js +6 -0
- data/application/js/state.js +64 -0
- data/application/js/status_bar.js +47 -0
- data/application/js/top_bar.js +368 -0
- data/application/js/types.js +98 -0
- data/application/js/upload.js +88 -0
- data/application/js/upload_manager.js +319 -0
- data/application/js/user.js +37 -0
- data/application/js/vendor/.DS_Store +0 -0
- data/application/js/vendor/JS.Class-2.1.5/CHANGELOG +283 -0
- data/application/js/vendor/JS.Class-2.1.5/MIT-LICENSE +30 -0
- data/application/js/vendor/JS.Class-2.1.5/README +30 -0
- data/application/js/vendor/JS.Class-2.1.5/min/command.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/comparable.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/constant_scope.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/core.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/decorator.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/enumerable.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/forwardable.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/hash.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/linked_list.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/loader.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/method_chain.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/observable.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/package.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/proxy.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/ruby.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/set.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/stack_trace.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/state.js +1 -0
- data/application/js/vendor/JS.Class-2.1.5/min/stdlib.js +16 -0
- data/application/js/vendor/JS.Class-2.1.5/src/command.js +93 -0
- data/application/js/vendor/JS.Class-2.1.5/src/comparable.js +37 -0
- data/application/js/vendor/JS.Class-2.1.5/src/constant_scope.js +48 -0
- data/application/js/vendor/JS.Class-2.1.5/src/core.js +1060 -0
- data/application/js/vendor/JS.Class-2.1.5/src/decorator.js +50 -0
- data/application/js/vendor/JS.Class-2.1.5/src/enumerable.js +505 -0
- data/application/js/vendor/JS.Class-2.1.5/src/forwardable.js +22 -0
- data/application/js/vendor/JS.Class-2.1.5/src/hash.js +334 -0
- data/application/js/vendor/JS.Class-2.1.5/src/linked_list.js +114 -0
- data/application/js/vendor/JS.Class-2.1.5/src/loader.js +553 -0
- data/application/js/vendor/JS.Class-2.1.5/src/method_chain.js +172 -0
- data/application/js/vendor/JS.Class-2.1.5/src/observable.js +55 -0
- data/application/js/vendor/JS.Class-2.1.5/src/package.js +472 -0
- data/application/js/vendor/JS.Class-2.1.5/src/proxy.js +58 -0
- data/application/js/vendor/JS.Class-2.1.5/src/ruby.js +44 -0
- data/application/js/vendor/JS.Class-2.1.5/src/set.js +332 -0
- data/application/js/vendor/JS.Class-2.1.5/src/stack_trace.js +151 -0
- data/application/js/vendor/JS.Class-2.1.5/src/state.js +95 -0
- data/application/js/vendor/JS.Class-2.1.5/src/stdlib.js +2612 -0
- data/application/js/vendor/crypto-2.3.0-crypto.js +160 -0
- data/application/js/vendor/crypto-2.3.0-sha1.js +91 -0
- data/application/js/vendor/diff_match_patch.js +2153 -0
- data/application/js/vendor/jquery-1.4.2.min.js +154 -0
- data/application/js/vendor/jquery-1.4.3.min.js +166 -0
- data/application/js/vendor/jquery-1.5.1.min.js +16 -0
- data/application/js/vendor/jquery-1.5.1rc1.min.js +24 -0
- data/application/js/vendor/jquery-1.6.2.min.js +18 -0
- data/application/js/vendor/jquery-ui-1.8.6.custom.min.js +265 -0
- data/application/js/vendor/jquery-ui-1.8.9.custom.min.js +415 -0
- data/application/js/vendor/jquery-ui-1.8.custom.min.js +106 -0
- data/application/js/vendor/jquery.hotkeys-0.7.9.js +248 -0
- data/application/js/vendor/jquery.hotkeys-0.7.9.min.js +19 -0
- data/application/js/vendor/jsdiff.js +169 -0
- data/application/js/views/box_view.js +229 -0
- data/application/js/views/page_piece_view.js +45 -0
- data/application/js/views/page_view.js +238 -0
- data/application/js/views/piece_view.js +178 -0
- data/application/js/views.js +110 -0
- data/application/static/editing-0-noise.png +0 -0
- data/application/static/editing-1-noise.png +0 -0
- data/application/static/editing-texture-1.png +0 -0
- data/application/static/editing-texture.png +0 -0
- data/application/static/editing-toolbar-shadow-bottom.png +0 -0
- data/application/static/editing-toolbar-shadow-top.png +0 -0
- data/application/static/favicon.ico +0 -0
- data/application/static/inner-glow.png +0 -0
- data/application/static/item-buttons.png +0 -0
- data/application/static/location-arrow.png +0 -0
- data/application/static/logo-400px-transparent.png +0 -0
- data/application/static/missing.png +0 -0
- data/application/static/orange-down-arrow.png +0 -0
- data/application/static/page-browser-next.png +0 -0
- data/application/static/paper-texture-dark.png +0 -0
- data/application/static/px.gif +0 -0
- data/application/static/select-arrow-root.png +0 -0
- data/application/static/select-arrow.png +0 -0
- data/application/static/slot-down-arrow.png +0 -0
- data/application/static/splash.png +0 -0
- data/application/static/spontaneous.png +0 -0
- data/application/static/spot.png +0 -0
- data/application/static/spot.svg +40 -0
- data/application/static/texture.png +0 -0
- data/application/views/index.erubis +46 -0
- data/application/views/login.erubis +69 -0
- data/application/views/schema_modification_error.html.erb +61 -0
- data/application/views/unsupported.erubis +23 -0
- data/bin/limit-upload +5 -0
- data/bin/spot +10 -0
- data/bin/unlimit-upload +3 -0
- data/config/nginx.conf +60 -0
- data/db/migrations/20100610142136_init.rb +66 -0
- data/db/migrations/20101130104334_timestamps.rb +44 -0
- data/db/migrations/20101202113205_site_publishing_flags.rb +12 -0
- data/db/migrations/20101206124543_aliases.rb +16 -0
- data/db/migrations/20110201133550_visibility.rb +27 -0
- data/db/migrations/20110209152710_users_and_groups.rb +58 -0
- data/db/migrations/20110215133910_boxes.rb +25 -0
- data/db/migrations/20110521114145_remove_slots_and_entries.rb +21 -0
- data/db/migrations/20110604192145_rename_schema_id_columns.rb +22 -0
- data/db/migrations/20110805141925_rename_site_to_state.rb +11 -0
- data/lib/cutaneous/context_helper.rb +82 -0
- data/lib/cutaneous/first_pass_parser.rb +23 -0
- data/lib/cutaneous/first_pass_renderer.rb +18 -0
- data/lib/cutaneous/parser_core.rb +18 -0
- data/lib/cutaneous/preview_context.rb +31 -0
- data/lib/cutaneous/preview_renderer.rb +15 -0
- data/lib/cutaneous/publish_context.rb +9 -0
- data/lib/cutaneous/renderer.rb +122 -0
- data/lib/cutaneous/request_context.rb +8 -0
- data/lib/cutaneous/second_pass_parser.rb +23 -0
- data/lib/cutaneous/second_pass_renderer.rb +18 -0
- data/lib/cutaneous.rb +47 -0
- data/lib/sequel/plugins/content_table_inheritance.rb +196 -0
- data/lib/sequel/plugins/yajl_serialization.rb +154 -0
- data/lib/spontaneous/application/feature.rb +9 -0
- data/lib/spontaneous/application/plugin.rb +13 -0
- data/lib/spontaneous/application.rb +8 -0
- data/lib/spontaneous/box.rb +232 -0
- data/lib/spontaneous/box_style.rb +64 -0
- data/lib/spontaneous/change.rb +107 -0
- data/lib/spontaneous/cli/adapter.rb +13 -0
- data/lib/spontaneous/cli/base.rb +184 -0
- data/lib/spontaneous/cli/console.rb +0 -0
- data/lib/spontaneous/cli/media.rb +13 -0
- data/lib/spontaneous/cli/server.rb +50 -0
- data/lib/spontaneous/cli/site.rb +46 -0
- data/lib/spontaneous/cli/sync.rb +42 -0
- data/lib/spontaneous/cli/tasks.rb +9 -0
- data/lib/spontaneous/cli.rb +83 -0
- data/lib/spontaneous/collections/box_set.rb +56 -0
- data/lib/spontaneous/collections/change_set.rb +43 -0
- data/lib/spontaneous/collections/entry_set.rb +83 -0
- data/lib/spontaneous/collections/field_set.rb +53 -0
- data/lib/spontaneous/collections/prototype_set.rb +131 -0
- data/lib/spontaneous/collections/style_set.rb +13 -0
- data/lib/spontaneous/config.rb +156 -0
- data/lib/spontaneous/constants.rb +24 -0
- data/lib/spontaneous/content.rb +113 -0
- data/lib/spontaneous/content_query.rb +17 -0
- data/lib/spontaneous/errors.rb +48 -0
- data/lib/spontaneous/extensions/array.rb +18 -0
- data/lib/spontaneous/extensions/class.rb +17 -0
- data/lib/spontaneous/extensions/hash.rb +18 -0
- data/lib/spontaneous/extensions/json.rb +26 -0
- data/lib/spontaneous/extensions/kernel.rb +7 -0
- data/lib/spontaneous/extensions/object.rb +30 -0
- data/lib/spontaneous/extensions/object_space.rb +12 -0
- data/lib/spontaneous/extensions/string.rb +44 -0
- data/lib/spontaneous/facet.rb +47 -0
- data/lib/spontaneous/field_types/date_field.rb +12 -0
- data/lib/spontaneous/field_types/field.rb +252 -0
- data/lib/spontaneous/field_types/image_field.rb +329 -0
- data/lib/spontaneous/field_types/markdown_field.rb +37 -0
- data/lib/spontaneous/field_types/string_field.rb +14 -0
- data/lib/spontaneous/field_types.rb +40 -0
- data/lib/spontaneous/generators/page/inline.html.cut +1 -0
- data/lib/spontaneous/generators/page/page.html.cut.tt +4 -0
- data/lib/spontaneous/generators/page/page.rb.tt +9 -0
- data/lib/spontaneous/generators/page.rb +38 -0
- data/lib/spontaneous/generators/site/.gitignore +4 -0
- data/lib/spontaneous/generators/site/Gemfile.tt +31 -0
- data/lib/spontaneous/generators/site/Rakefile.tt +6 -0
- data/lib/spontaneous/generators/site/config/back.ru +7 -0
- data/lib/spontaneous/generators/site/config/boot.rb +19 -0
- data/lib/spontaneous/generators/site/config/database.yml.tt +21 -0
- data/lib/spontaneous/generators/site/config/deploy.rb.tt +0 -0
- data/lib/spontaneous/generators/site/config/environment.rb.tt +8 -0
- data/lib/spontaneous/generators/site/config/environments/development.rb.tt +15 -0
- data/lib/spontaneous/generators/site/config/environments/production.rb.tt +5 -0
- data/lib/spontaneous/generators/site/config/front.ru +8 -0
- data/lib/spontaneous/generators/site/config/user_levels.yml +22 -0
- data/lib/spontaneous/generators/site/lib/site.rb.tt +4 -0
- data/lib/spontaneous/generators/site/lib/tasks/site.rake.tt +8 -0
- data/lib/spontaneous/generators/site/public/css/site.css +0 -0
- data/lib/spontaneous/generators/site/public/favicon.ico +0 -0
- data/lib/spontaneous/generators/site/public/js/.empty_directory +0 -0
- data/lib/spontaneous/generators/site/public/js/site.js +0 -0
- data/lib/spontaneous/generators/site/public/robots.txt +0 -0
- data/lib/spontaneous/generators/site/schema/.map +1 -0
- data/lib/spontaneous/generators/site/schema/page.rb.tt +8 -0
- data/lib/spontaneous/generators/site/schema/piece.rb.tt +4 -0
- data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +13 -0
- data/lib/spontaneous/generators/site.rb +77 -0
- data/lib/spontaneous/generators.rb +23 -0
- data/lib/spontaneous/image_size.rb +117 -0
- data/lib/spontaneous/json.rb +33 -0
- data/lib/spontaneous/layout.rb +15 -0
- data/lib/spontaneous/loader.rb +280 -0
- data/lib/spontaneous/logger.rb +369 -0
- data/lib/spontaneous/media.rb +84 -0
- data/lib/spontaneous/page.rb +92 -0
- data/lib/spontaneous/page_controller.rb +18 -0
- data/lib/spontaneous/page_piece.rb +77 -0
- data/lib/spontaneous/paths.rb +30 -0
- data/lib/spontaneous/permissions/access_group.rb +50 -0
- data/lib/spontaneous/permissions/access_key.rb +35 -0
- data/lib/spontaneous/permissions/user.rb +167 -0
- data/lib/spontaneous/permissions/user_level.rb +177 -0
- data/lib/spontaneous/permissions.rb +55 -0
- data/lib/spontaneous/piece.rb +30 -0
- data/lib/spontaneous/plugins/aliases.rb +128 -0
- data/lib/spontaneous/plugins/allowed_types.rb +173 -0
- data/lib/spontaneous/plugins/application/facets.rb +25 -0
- data/lib/spontaneous/plugins/application/paths.rb +137 -0
- data/lib/spontaneous/plugins/application/render.rb +29 -0
- data/lib/spontaneous/plugins/application/serialisation.rb +16 -0
- data/lib/spontaneous/plugins/application/state.rb +86 -0
- data/lib/spontaneous/plugins/boxes.rb +84 -0
- data/lib/spontaneous/plugins/controllers.rb +52 -0
- data/lib/spontaneous/plugins/entries.rb +193 -0
- data/lib/spontaneous/plugins/entry.rb +51 -0
- data/lib/spontaneous/plugins/fields.rb +103 -0
- data/lib/spontaneous/plugins/instance_code.rb +18 -0
- data/lib/spontaneous/plugins/layouts.rb +87 -0
- data/lib/spontaneous/plugins/media.rb +41 -0
- data/lib/spontaneous/plugins/page/formats.rb +67 -0
- data/lib/spontaneous/plugins/page/request.rb +89 -0
- data/lib/spontaneous/plugins/page_search.rb +64 -0
- data/lib/spontaneous/plugins/page_tree.rb +25 -0
- data/lib/spontaneous/plugins/paths.rb +125 -0
- data/lib/spontaneous/plugins/permissions.rb +63 -0
- data/lib/spontaneous/plugins/prototypes.rb +84 -0
- data/lib/spontaneous/plugins/publishing.rb +255 -0
- data/lib/spontaneous/plugins/render.rb +24 -0
- data/lib/spontaneous/plugins/schema_hierarchy.rb +76 -0
- data/lib/spontaneous/plugins/schema_id.rb +60 -0
- data/lib/spontaneous/plugins/schema_title.rb +33 -0
- data/lib/spontaneous/plugins/serialisation.rb +67 -0
- data/lib/spontaneous/plugins/site/instance.rb +22 -0
- data/lib/spontaneous/plugins/site/map.rb +19 -0
- data/lib/spontaneous/plugins/site/publishing.rb +74 -0
- data/lib/spontaneous/plugins/site/revisions.rb +28 -0
- data/lib/spontaneous/plugins/site/selectors.rb +41 -0
- data/lib/spontaneous/plugins/site_map.rb +34 -0
- data/lib/spontaneous/plugins/styles.rb +119 -0
- data/lib/spontaneous/plugins/supertype.rb +11 -0
- data/lib/spontaneous/plugins/visibility.rb +151 -0
- data/lib/spontaneous/plugins.rb +20 -0
- data/lib/spontaneous/prototypes/box_prototype.rb +168 -0
- data/lib/spontaneous/prototypes/field_prototype.rb +112 -0
- data/lib/spontaneous/prototypes/layout_prototype.rb +17 -0
- data/lib/spontaneous/prototypes/style_prototype.rb +42 -0
- data/lib/spontaneous/proxy_object.rb +12 -0
- data/lib/spontaneous/publishing/fire_and_forget.rb +57 -0
- data/lib/spontaneous/publishing/immediate.rb +197 -0
- data/lib/spontaneous/publishing/threaded.rb +25 -0
- data/lib/spontaneous/publishing.rb +10 -0
- data/lib/spontaneous/rack/around_back.rb +44 -0
- data/lib/spontaneous/rack/around_front.rb +29 -0
- data/lib/spontaneous/rack/around_preview.rb +26 -0
- data/lib/spontaneous/rack/assets.rb +98 -0
- data/lib/spontaneous/rack/back.rb +729 -0
- data/lib/spontaneous/rack/front.rb +41 -0
- data/lib/spontaneous/rack/http.rb +18 -0
- data/lib/spontaneous/rack/media.rb +29 -0
- data/lib/spontaneous/rack/public.rb +232 -0
- data/lib/spontaneous/rack/reloader.rb +42 -0
- data/lib/spontaneous/rack/static.rb +25 -0
- data/lib/spontaneous/rack.rb +55 -0
- data/lib/spontaneous/render/context.rb +100 -0
- data/lib/spontaneous/render/development_renderer.rb +14 -0
- data/lib/spontaneous/render/engine.rb +19 -0
- data/lib/spontaneous/render/format/html.rb +5 -0
- data/lib/spontaneous/render/format.rb +70 -0
- data/lib/spontaneous/render/preview_renderer.rb +18 -0
- data/lib/spontaneous/render/published_renderer.rb +54 -0
- data/lib/spontaneous/render/publishing_renderer.rb +13 -0
- data/lib/spontaneous/render/renderer.rb +46 -0
- data/lib/spontaneous/render.rb +173 -0
- data/lib/spontaneous/revision.rb +7 -0
- data/lib/spontaneous/schema/schema_modification.rb +260 -0
- data/lib/spontaneous/schema/uid.rb +221 -0
- data/lib/spontaneous/schema.rb +295 -0
- data/lib/spontaneous/server.rb +65 -0
- data/lib/spontaneous/site.rb +87 -0
- data/lib/spontaneous/state.rb +53 -0
- data/lib/spontaneous/style.rb +144 -0
- data/lib/spontaneous/tasks/database.rake +9 -0
- data/lib/spontaneous/tasks.rb +5 -0
- data/lib/spontaneous/version.rb +6 -0
- data/lib/spontaneous.rb +179 -0
- data/spontaneous.gemspec.tmpl +66 -0
- data/test/disabled/test_slots.rb +287 -0
- data/test/experimental/test_formats.rb +92 -0
- data/test/experimental/test_plugins.rb +64 -0
- data/test/fixtures/application/css/test.less +5 -0
- data/test/fixtures/application/js/test.js +1 -0
- data/test/fixtures/application/static/favicon.ico +1 -0
- data/test/fixtures/application/static/test.html +1 -0
- data/test/fixtures/application/views/index.erubis +1 -0
- data/test/fixtures/back/public/test.html +1 -0
- data/test/fixtures/back/templates/layouts/standard.html.cut +1 -0
- data/test/fixtures/config/config/environment.rb +4 -0
- data/test/fixtures/config/config/environments/development.rb +13 -0
- data/test/fixtures/config/config/environments/production.rb +22 -0
- data/test/fixtures/config/config/environments/staging.rb +2 -0
- data/test/fixtures/example_application/Gemfile +6 -0
- data/test/fixtures/example_application/Gemfile.lock +76 -0
- data/test/fixtures/example_application/Rakefile +6 -0
- data/test/fixtures/example_application/config/back.rb +15 -0
- data/test/fixtures/example_application/config/back.ru +8 -0
- data/test/fixtures/example_application/config/back.yml +8 -0
- data/test/fixtures/example_application/config/boot.rb +16 -0
- data/test/fixtures/example_application/config/database.yml +24 -0
- data/test/fixtures/example_application/config/environment.rb +4 -0
- data/test/fixtures/example_application/config/environments/development.rb +16 -0
- data/test/fixtures/example_application/config/environments/production.rb +21 -0
- data/test/fixtures/example_application/config/environments/staging.rb +1 -0
- data/test/fixtures/example_application/config/front.rb +8 -0
- data/test/fixtures/example_application/config/front.ru +8 -0
- data/test/fixtures/example_application/config/front.yml +8 -0
- data/test/fixtures/example_application/config/schema.yml +48 -0
- data/test/fixtures/example_application/config/unicorn.rb +1 -0
- data/test/fixtures/example_application/config/user_levels.yml +19 -0
- data/test/fixtures/example_application/public/css/test.css +0 -0
- data/test/fixtures/example_application/public/favicon.ico +1 -0
- data/test/fixtures/example_application/public/js/test.js +0 -0
- data/test/fixtures/example_application/public/test.html +1 -0
- data/test/fixtures/example_application/schema/client_project.rb +18 -0
- data/test/fixtures/example_application/schema/client_projects.rb +8 -0
- data/test/fixtures/example_application/schema/home_page.rb +22 -0
- data/test/fixtures/example_application/schema/info_page.rb +13 -0
- data/test/fixtures/example_application/schema/inline_image.rb +11 -0
- data/test/fixtures/example_application/schema/page.rb +4 -0
- data/test/fixtures/example_application/schema/piece.rb +3 -0
- data/test/fixtures/example_application/schema/project.rb +21 -0
- data/test/fixtures/example_application/schema/project_image.rb +18 -0
- data/test/fixtures/example_application/schema/projects_page.rb +12 -0
- data/test/fixtures/example_application/schema/text.rb +8 -0
- data/test/fixtures/example_application/templates/client_project/images.html.cut +1 -0
- data/test/fixtures/example_application/templates/client_project.html.cut +4 -0
- data/test/fixtures/example_application/templates/client_projects.html.cut +6 -0
- data/test/fixtures/example_application/templates/info_page/inline.html.cut +0 -0
- data/test/fixtures/example_application/templates/inline_image.html.cut +1 -0
- data/test/fixtures/example_application/templates/layouts/home.html.cut +15 -0
- data/test/fixtures/example_application/templates/layouts/info.html.cut +3 -0
- data/test/fixtures/example_application/templates/layouts/project.html.cut +13 -0
- data/test/fixtures/example_application/templates/layouts/projects.html.cut +11 -0
- data/test/fixtures/example_application/templates/layouts/standard.html.cut +0 -0
- data/test/fixtures/example_application/templates/project/inline.html.cut +5 -0
- data/test/fixtures/example_application/templates/project.html.cut +5 -0
- data/test/fixtures/example_application/templates/project_image.html.cut +1 -0
- data/test/fixtures/example_application/templates/text.html.cut +1 -0
- data/test/fixtures/images/rose.greyscale.jpg +0 -0
- data/test/fixtures/images/rose.jpg +0 -0
- data/test/fixtures/images/size.gif +0 -0
- data/test/fixtures/images/size.jpg +0 -0
- data/test/fixtures/images/size.png24 +0 -0
- data/test/fixtures/images/size.png8 +0 -0
- data/test/fixtures/layouts/layouts/custom1.html.cut +1 -0
- data/test/fixtures/layouts/layouts/custom1.pdf.cut +0 -0
- data/test/fixtures/layouts/layouts/custom1.xml.cut +0 -0
- data/test/fixtures/layouts/layouts/custom2.html.cut +1 -0
- data/test/fixtures/layouts/layouts/custom3.html.cut +0 -0
- data/test/fixtures/layouts/layouts/standard.html.cut +1 -0
- data/test/fixtures/media/101/003/rose.jpg +0 -0
- data/test/fixtures/permissions/config/user_levels.yml +9 -0
- data/test/fixtures/permissions/media/image.jpg +0 -0
- data/test/fixtures/plugins/schema_plugin/init.rb +1 -0
- data/test/fixtures/plugins/schema_plugin/schema/external.rb +5 -0
- data/test/fixtures/plugins/schema_plugin/templates/external.html.cut +1 -0
- data/test/fixtures/plugins/schema_plugin/templates/from_plugin.html.cut +0 -0
- data/test/fixtures/plugins/schema_plugin/templates/layouts/from_plugin.html.cut +0 -0
- data/test/fixtures/public/templates/layouts/default.html.cut +1 -0
- data/test/fixtures/public/templates/layouts/default.pdf.cut +1 -0
- data/test/fixtures/public/templates/layouts/default.rss.cut +1 -0
- data/test/fixtures/public/templates/layouts/dynamic.html.cut +1 -0
- data/test/fixtures/public/templates/layouts/standard.html.cut +0 -0
- data/test/fixtures/schema/before.yml +24 -0
- data/test/fixtures/schema/resolvable.yml +12 -0
- data/test/fixtures/schema/schema.yml +7 -0
- data/test/fixtures/serialisation/class_hash.yaml.erb +53 -0
- data/test/fixtures/serialisation/root_hash.yaml.erb +184 -0
- data/test/fixtures/sharding/rose.jpg +0 -0
- data/test/fixtures/sharding/xaa +0 -0
- data/test/fixtures/sharding/xab +0 -0
- data/test/fixtures/sharding/xac +0 -0
- data/test/fixtures/sharding/xad +0 -0
- data/test/fixtures/sharding/xae +0 -0
- data/test/fixtures/sharding/xaf +0 -0
- data/test/fixtures/sharding/xag +0 -0
- data/test/fixtures/styles/box_a/runny.html.cut +0 -0
- data/test/fixtures/styles/box_a.html.cut +1 -0
- data/test/fixtures/styles/named2.html.cut +1 -0
- data/test/fixtures/styles/orange/apple.html.cut +1 -0
- data/test/fixtures/styles/template_class/named1.html.cut +1 -0
- data/test/fixtures/styles/template_class/results.html.cut +1 -0
- data/test/fixtures/styles/template_class/walky.html.cut +0 -0
- data/test/fixtures/styles/template_class.epub.cut +0 -0
- data/test/fixtures/styles/template_class.html.cut +1 -0
- data/test/fixtures/styles/template_class.pdf.cut +0 -0
- data/test/fixtures/styles/template_sub_class1.html.cut +1 -0
- data/test/fixtures/templates/aliases/a/a_style.html.cut +0 -0
- data/test/fixtures/templates/aliases/a/page.html.cut +0 -0
- data/test/fixtures/templates/aliases/a_alias/a_alias_style.html.cut +0 -0
- data/test/fixtures/templates/aliases/layouts/b.html.cut +1 -0
- data/test/fixtures/templates/aliases/layouts/b_alias.html.cut +1 -0
- data/test/fixtures/templates/aliases/layouts/c_alias.html.cut +1 -0
- data/test/fixtures/templates/boxes/blank_content/things.html.cut +1 -0
- data/test/fixtures/templates/boxes/my_box_class/christy.html.cut +1 -0
- data/test/fixtures/templates/boxes/thangs.html.cut +1 -0
- data/test/fixtures/templates/boxes/with_template_box.html.cut +1 -0
- data/test/fixtures/templates/content/include.html.cut +1 -0
- data/test/fixtures/templates/content/include_dir.html.cut +1 -0
- data/test/fixtures/templates/content/included.epub.cut +1 -0
- data/test/fixtures/templates/content/included.html.cut +1 -0
- data/test/fixtures/templates/content/partial/included.html.cut +1 -0
- data/test/fixtures/templates/content/preprocess.html.cut +1 -0
- data/test/fixtures/templates/content/second.html.cut +1 -0
- data/test/fixtures/templates/content/template.epub.cut +1 -0
- data/test/fixtures/templates/content/template.html.cut +1 -0
- data/test/fixtures/templates/default_style_class.html.cut +1 -0
- data/test/fixtures/templates/direct.html.cut +1 -0
- data/test/fixtures/templates/extended/grandparent.html.cut +10 -0
- data/test/fixtures/templates/extended/main.html.cut +6 -0
- data/test/fixtures/templates/extended/parent.html.cut +10 -0
- data/test/fixtures/templates/layouts/entries.html.cut +7 -0
- data/test/fixtures/templates/layouts/page_style.html.cut +1 -0
- data/test/fixtures/templates/layouts/params.html.cut +1 -0
- data/test/fixtures/templates/layouts/preview_render.html.cut +2 -0
- data/test/fixtures/templates/layouts/standard_page.html.cut +1 -0
- data/test/fixtures/templates/layouts/subdir_style.html.cut +1 -0
- data/test/fixtures/templates/layouts/template_params.html.cut +1 -0
- data/test/fixtures/templates/page_class/inline_style.html.cut +1 -0
- data/test/fixtures/templates/preview_render/inline.html.cut +0 -0
- data/test/fixtures/templates/publishing/layouts/dynamic.html.cut +1 -0
- data/test/fixtures/templates/publishing/layouts/static.html.cut +1 -0
- data/test/fixtures/templates/template_class/anonymous_style.html.cut +4 -0
- data/test/fixtures/templates/template_class/another_template.html.cut +0 -0
- data/test/fixtures/templates/template_class/complex_template.html.cut +6 -0
- data/test/fixtures/templates/template_class/complex_template.pdf.cut +6 -0
- data/test/fixtures/templates/template_class/default_template_style.html.cut +4 -0
- data/test/fixtures/templates/template_class/images_with_template.html.cut +5 -0
- data/test/fixtures/templates/template_class/slots_template.html.cut +5 -0
- data/test/fixtures/templates/template_class/slots_template.pdf.cut +5 -0
- data/test/fixtures/templates/template_class/this_template.epub.cut +1 -0
- data/test/fixtures/templates/template_class/this_template.html.cut +1 -0
- data/test/fixtures/templates/template_class/this_template.pdf.cut +1 -0
- data/test/fixtures/templates/with_default_style_class.html.cut +1 -0
- data/test/functional/test_application.rb +176 -0
- data/test/functional/test_back.rb +902 -0
- data/test/functional/test_front.rb +571 -0
- data/test/javascript/test_dom.rb +94 -0
- data/test/javascript/test_markdown.rb +97 -0
- data/test/slow/test_publishing.rb +987 -0
- data/test/slow/test_visibility.rb +250 -0
- data/test/support/custom_matchers.rb +77 -0
- data/test/support/timing.rb +23 -0
- data/test/test_helper.rb +164 -0
- data/test/test_javascript.rb +34 -0
- data/test/ui/test_page_editing.rb +167 -0
- data/test/ui_helper.rb +114 -0
- data/test/unit/test_alias.rb +254 -0
- data/test/unit/test_authentication.rb +510 -0
- data/test/unit/test_boxes.rb +497 -0
- data/test/unit/test_config.rb +156 -0
- data/test/unit/test_content.rb +221 -0
- data/test/unit/test_content_inheritance.rb +103 -0
- data/test/unit/test_extensions.rb +14 -0
- data/test/unit/test_fields.rb +392 -0
- data/test/unit/test_generators.rb +97 -0
- data/test/unit/test_image_size.rb +25 -0
- data/test/unit/test_images.rb +265 -0
- data/test/unit/test_layouts.rb +111 -0
- data/test/unit/test_logger.rb +80 -0
- data/test/unit/test_media.rb +70 -0
- data/test/unit/test_page.rb +244 -0
- data/test/unit/test_permissions.rb +834 -0
- data/test/unit/test_piece.rb +80 -0
- data/test/unit/test_prototype_set.rb +192 -0
- data/test/unit/test_prototypes.rb +102 -0
- data/test/unit/test_render.rb +359 -0
- data/test/unit/test_schema.rb +1009 -0
- data/test/unit/test_serialisation.rb +215 -0
- data/test/unit/test_site.rb +145 -0
- data/test/unit/test_structure.rb +85 -0
- data/test/unit/test_styles.rb +417 -0
- data/test/unit/test_templates.rb +224 -0
- data/test/unit/test_type_hierarchy.rb +28 -0
- metadata +1017 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
|
2
|
+
Spontaneous.ConflictedFieldDialogue = (function($, S) {
|
3
|
+
var dom = S.Dom, Dialogue = Spontaneous.Dialogue;
|
4
|
+
|
5
|
+
var ConflictedFieldDialogue = new JS.Class(Dialogue, {
|
6
|
+
initialize: function(parent_view, conflicted_fields) {
|
7
|
+
this.parent_view = parent_view;
|
8
|
+
this.conflicted_fields = conflicted_fields;
|
9
|
+
this.active_conflict = 0;
|
10
|
+
this.wrap = dom.div('#conflicted-fields-dialogue');
|
11
|
+
},
|
12
|
+
title: function() {
|
13
|
+
return "Conflicted Fields";
|
14
|
+
},
|
15
|
+
width: function() {
|
16
|
+
return '90%';
|
17
|
+
},
|
18
|
+
buttons: function() {
|
19
|
+
var btns = {};
|
20
|
+
btns["Use"] = this.conflict_resolved.bind(this);
|
21
|
+
return btns;
|
22
|
+
},
|
23
|
+
|
24
|
+
resolve_value: function(conflict, value) {
|
25
|
+
conflict.value = value;
|
26
|
+
},
|
27
|
+
conflict_resolved: function() {
|
28
|
+
var conflict = this.current_conflict();
|
29
|
+
// conflict.value = this.conflict_view.use_value;
|
30
|
+
// this.parent_view.conflict_resolved(conflict, this.conflict_view.use_value)
|
31
|
+
if (conflict && conflict.value) {
|
32
|
+
this.show_next_conflict();
|
33
|
+
}
|
34
|
+
},
|
35
|
+
uid: function() {
|
36
|
+
return this.content.uid() + '!editing';
|
37
|
+
},
|
38
|
+
create_home: function() {
|
39
|
+
if (this.type) {
|
40
|
+
S.Ajax.post('/root', {'type':this.type.schema_id}, this.home_created.bind(this));
|
41
|
+
}
|
42
|
+
},
|
43
|
+
home_created: function(data) {
|
44
|
+
window.location.href = S.Ajax.namespace
|
45
|
+
},
|
46
|
+
select_type: function(type) {
|
47
|
+
this.type = type;
|
48
|
+
},
|
49
|
+
current_conflict: function() {
|
50
|
+
return this.conflicted_fields[this.active_conflict];
|
51
|
+
},
|
52
|
+
|
53
|
+
next_conflict: function() {
|
54
|
+
this.active_conflict += 1;
|
55
|
+
return this.current_conflict();
|
56
|
+
},
|
57
|
+
conflict_panel: function(outer) {
|
58
|
+
outer.empty();
|
59
|
+
var conflict = this.current_conflict(),
|
60
|
+
field = conflict.field,
|
61
|
+
instructions = dom.p('.instructions');
|
62
|
+
instructions.html("The field '"+field.label()+"' has been modified by another person. Please select which version you want to use.")
|
63
|
+
var view = field.conflict_view(this, conflict);
|
64
|
+
outer.append(instructions);
|
65
|
+
outer.append(view.panel());
|
66
|
+
this.conflict_view = view;
|
67
|
+
return outer;
|
68
|
+
},
|
69
|
+
|
70
|
+
body: function() {
|
71
|
+
panel = this.conflict_panel(this.wrap);
|
72
|
+
return this.wrap;
|
73
|
+
},
|
74
|
+
show_next_conflict: function() {
|
75
|
+
var conflict = this.next_conflict();
|
76
|
+
if (conflict) {
|
77
|
+
this.conflict_panel(this.wrap);
|
78
|
+
} else {
|
79
|
+
console.log('closing conflict view', this.conflicted_fields);
|
80
|
+
this.parent_view.conflicts_resolved(this.conflicted_fields);
|
81
|
+
this.close();
|
82
|
+
}
|
83
|
+
},
|
84
|
+
cancel_button: function() {
|
85
|
+
return false;
|
86
|
+
},
|
87
|
+
});
|
88
|
+
return ConflictedFieldDialogue;
|
89
|
+
})(jQuery, Spontaneous);
|
90
|
+
|
91
|
+
|
92
|
+
|
@@ -0,0 +1,224 @@
|
|
1
|
+
// console.log('Loading Content...')
|
2
|
+
|
3
|
+
Spontaneous.Content = (function($, S) {
|
4
|
+
var dom = S.Dom;
|
5
|
+
|
6
|
+
var Content = new JS.Class({
|
7
|
+
include: Spontaneous.Properties,
|
8
|
+
|
9
|
+
initialize: function(content) {
|
10
|
+
this.content = content;
|
11
|
+
},
|
12
|
+
|
13
|
+
uid: function() {
|
14
|
+
return (this.container ? this.container.uid() : '') + '/' + this.content.id;
|
15
|
+
},
|
16
|
+
id: function() {
|
17
|
+
return this.content.id;
|
18
|
+
},
|
19
|
+
is_page: function() {
|
20
|
+
return this.type().is_page();
|
21
|
+
},
|
22
|
+
|
23
|
+
target: function() {
|
24
|
+
return this.content.target;
|
25
|
+
},
|
26
|
+
developer_description: function() {
|
27
|
+
return this.type().type + "["+this.id()+']'
|
28
|
+
},
|
29
|
+
developer_edit_url: function() {
|
30
|
+
return this.type().edit_url();
|
31
|
+
},
|
32
|
+
type: function() {
|
33
|
+
return S.Types.type(this.content.type);
|
34
|
+
}.cache(),
|
35
|
+
|
36
|
+
constantize: function(type) {
|
37
|
+
var parts = type.split(/\./), obj = window;
|
38
|
+
for (var i = 0, ii = parts.length; i < ii; i++) {
|
39
|
+
obj = obj[parts[i]];
|
40
|
+
}
|
41
|
+
return obj;
|
42
|
+
},
|
43
|
+
|
44
|
+
unload: function() {
|
45
|
+
$.each(this.field_list(), function(i, f) { f.unload(); });
|
46
|
+
$.each(this.entries(), function(i, e) { e.unload(); });
|
47
|
+
},
|
48
|
+
|
49
|
+
field_list: function() {
|
50
|
+
var type = this.type(), prototypes = type.field_prototypes, names = type.field_names;
|
51
|
+
var fields = this.fields(), list = [];
|
52
|
+
for (var i = 0, ii = names.length; i < ii; i++) {
|
53
|
+
list.push(fields[names[i]]);
|
54
|
+
}
|
55
|
+
return list;
|
56
|
+
}.cache(),
|
57
|
+
|
58
|
+
text_fields: function() {
|
59
|
+
var fields = [], all_fields = this.field_list();
|
60
|
+
for (var i = 0, ii = all_fields.length; i < ii; i++) {
|
61
|
+
var f = all_fields[i];
|
62
|
+
if (!f.is_image()) {
|
63
|
+
fields.push(f);
|
64
|
+
}
|
65
|
+
}
|
66
|
+
return fields;
|
67
|
+
},
|
68
|
+
image_fields: function() {
|
69
|
+
var fields = [], all_fields = this.field_list();
|
70
|
+
for (var i = 0, ii = all_fields.length; i < ii; i++) {
|
71
|
+
var f = all_fields[i];
|
72
|
+
if (f.is_image()) {
|
73
|
+
fields.push(f);
|
74
|
+
}
|
75
|
+
}
|
76
|
+
return fields;
|
77
|
+
},
|
78
|
+
file_fields: function() {
|
79
|
+
var fields = [], all_fields = this.field_list();
|
80
|
+
for (var i = 0, ii = all_fields.length; i < ii; i++) {
|
81
|
+
var f = all_fields[i];
|
82
|
+
if (f.is_file()) {
|
83
|
+
fields.push(f);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
return fields;
|
87
|
+
},
|
88
|
+
fields: function() {
|
89
|
+
var fields = {}, type = this.type(), prototypes = type.field_prototypes;
|
90
|
+
|
91
|
+
for (var i = 0, ii = this.content.fields.length; i < ii; i++) {
|
92
|
+
var f = this.content.fields[i],
|
93
|
+
prototype = prototypes[f.name],
|
94
|
+
type_class = this.constantize(prototype.type)
|
95
|
+
if (!type_class) {
|
96
|
+
console.warn(
|
97
|
+
"Content#fields:",
|
98
|
+
"Field has invalid type", prototype.type,
|
99
|
+
"content_id:", this.content.id,
|
100
|
+
"type:", "'"+type.title+"'",
|
101
|
+
"field_name:", f.name
|
102
|
+
);
|
103
|
+
type_class = Spontaneous.FieldTypes.StringField;
|
104
|
+
}
|
105
|
+
var field = new type_class(this, f);
|
106
|
+
// field.watch('value', this.field_updated.bind(this, field));
|
107
|
+
fields[f.name] = field;
|
108
|
+
};
|
109
|
+
return fields;
|
110
|
+
}.cache(),
|
111
|
+
|
112
|
+
field: function(name) {
|
113
|
+
return this.fields()[name];
|
114
|
+
},
|
115
|
+
field_updated: function(field, value) {
|
116
|
+
this.save_field(field);
|
117
|
+
},
|
118
|
+
|
119
|
+
save_field: function(field) {
|
120
|
+
var params = { field: {} };
|
121
|
+
params.field[field.name] = {value: field.value()};
|
122
|
+
Spontaneous.Ajax.post(this.save_path(), params, this.save_complete.bind(this));
|
123
|
+
},
|
124
|
+
|
125
|
+
save_path: function() {
|
126
|
+
return ['/save', this.content.id].join('/');
|
127
|
+
},
|
128
|
+
|
129
|
+
save_complete: function(response) {
|
130
|
+
if (response) {
|
131
|
+
var fields = response.fields;
|
132
|
+
for (var i = 0, ii = fields.length; i < ii; i++) {
|
133
|
+
var values = fields[i], field = this.field(values.name);
|
134
|
+
field.update(values);
|
135
|
+
}
|
136
|
+
}
|
137
|
+
},
|
138
|
+
|
139
|
+
has_fields: function() {
|
140
|
+
return (this.content.fields.length > 0)
|
141
|
+
},
|
142
|
+
|
143
|
+
title: function() {
|
144
|
+
return this.title_field().value();
|
145
|
+
},
|
146
|
+
|
147
|
+
title_field: function() {
|
148
|
+
return this.fields()[this.type().title_field_name];
|
149
|
+
},
|
150
|
+
|
151
|
+
hidden: function() {
|
152
|
+
return this.content.hidden;
|
153
|
+
},
|
154
|
+
|
155
|
+
entries: function() {
|
156
|
+
if (!this.content.entries) {
|
157
|
+
return [];
|
158
|
+
}
|
159
|
+
var _entries = [];
|
160
|
+
for (var i = 0, ee = this.content.entries, ii = ee.length; i < ii; i++) {
|
161
|
+
var entry = this.wrap_entry(ee[i]);
|
162
|
+
_entries.push(entry);
|
163
|
+
}
|
164
|
+
return _entries;
|
165
|
+
}.cache(),
|
166
|
+
|
167
|
+
boxes: function() {
|
168
|
+
var _boxes = [];
|
169
|
+
if (this.content.boxes) {
|
170
|
+
for (var i = 0, ee = this.content.boxes, ii = ee.length; i < ii; i++) {
|
171
|
+
_boxes.push(new S.Box(ee[i], this));
|
172
|
+
}
|
173
|
+
}
|
174
|
+
return _boxes;
|
175
|
+
}.cache(),
|
176
|
+
|
177
|
+
has_boxes: function() {
|
178
|
+
return (this.boxes().length > 0)
|
179
|
+
},
|
180
|
+
|
181
|
+
wrap_entry: function(entry) {
|
182
|
+
var entry_class = Spontaneous.Entry;
|
183
|
+
if (entry.is_page) {
|
184
|
+
entry_class = Spontaneous.PageEntry;
|
185
|
+
}
|
186
|
+
return new entry_class(entry, this);
|
187
|
+
},
|
188
|
+
|
189
|
+
allowed_types: function() {
|
190
|
+
return this.type().allowed_types();
|
191
|
+
},
|
192
|
+
|
193
|
+
depth: function() {
|
194
|
+
return this.content.depth;
|
195
|
+
},
|
196
|
+
|
197
|
+
destroy: function() {
|
198
|
+
Spontaneous.Ajax.post(['/destroy', this.content.id].join('/'), {}, this.destroyed.bind(this));
|
199
|
+
},
|
200
|
+
toggle_visibility: function() {
|
201
|
+
Spontaneous.Ajax.post(['/toggle', this.content.id].join('/'), {}, this.visibility_toggled.bind(this));
|
202
|
+
},
|
203
|
+
visibility_toggled: function(result) {
|
204
|
+
console.log('visibility_toggled', result)
|
205
|
+
this.set('hidden', result.hidden);
|
206
|
+
// this.trigger('visibility_toggled', result);
|
207
|
+
},
|
208
|
+
destroyed: function() {
|
209
|
+
var page = S.Editing.get('page');
|
210
|
+
this.trigger('destroyed', this);
|
211
|
+
page.trigger('removed_entry', this);
|
212
|
+
},
|
213
|
+
reposition: function(position) {
|
214
|
+
Spontaneous.Ajax.post(['/content', this.content.id, 'position', position].join('/'), {}, function() {
|
215
|
+
this.repositioned();
|
216
|
+
}.bind(this));
|
217
|
+
},
|
218
|
+
repositioned: function() {
|
219
|
+
this.trigger('repositioned');
|
220
|
+
}
|
221
|
+
});
|
222
|
+
|
223
|
+
return Content;
|
224
|
+
}(jQuery, Spontaneous));
|
@@ -0,0 +1,44 @@
|
|
1
|
+
// console.log('Loading Content Area...')
|
2
|
+
|
3
|
+
Spontaneous.ContentArea = (function($, S) {
|
4
|
+
var dom = S.Dom;
|
5
|
+
var ContentArea = new JS.Singleton({
|
6
|
+
include: Spontaneous.Properties,
|
7
|
+
|
8
|
+
wrap: null,
|
9
|
+
preview: null,
|
10
|
+
editing: null,
|
11
|
+
mode: 'edit',
|
12
|
+
|
13
|
+
init: function() {
|
14
|
+
this.wrap = dom.div('#content');
|
15
|
+
this.preview = S.Preview.init(this.wrap);
|
16
|
+
this.editing = S.Editing.init(this.wrap);
|
17
|
+
return this.wrap;
|
18
|
+
},
|
19
|
+
|
20
|
+
location_changed: function(location) {
|
21
|
+
this.goto_page(location);
|
22
|
+
},
|
23
|
+
display: function(mode) {
|
24
|
+
this.mode = mode;
|
25
|
+
this.current().display(S.Location.location());
|
26
|
+
},
|
27
|
+
current: function() {
|
28
|
+
if (this.mode === 'preview') {
|
29
|
+
this.editing.hide();
|
30
|
+
this.preview.show();
|
31
|
+
return this.preview;
|
32
|
+
} else if (this.mode === 'edit') {
|
33
|
+
this.preview.hide();
|
34
|
+
this.editing.show();
|
35
|
+
return this.editing;
|
36
|
+
}
|
37
|
+
},
|
38
|
+
goto_page: function(page) {
|
39
|
+
this.current().goto_page(page);
|
40
|
+
}
|
41
|
+
});
|
42
|
+
return ContentArea;
|
43
|
+
})(jQuery, Spontaneous);
|
44
|
+
|
@@ -0,0 +1,196 @@
|
|
1
|
+
// console.log('Loading Dialogue...')
|
2
|
+
|
3
|
+
Spontaneous.Dialogue = (function($, S) {
|
4
|
+
var dom = S.Dom;
|
5
|
+
|
6
|
+
|
7
|
+
var Button = new JS.Class({
|
8
|
+
initialize: function(label, action, is_default) {
|
9
|
+
this.label = label;
|
10
|
+
this.action = action;
|
11
|
+
this.is_default = is_default;
|
12
|
+
this.disabled = false;
|
13
|
+
},
|
14
|
+
|
15
|
+
html: function() {
|
16
|
+
var el = dom.a(this.css_class()).html(this.label);
|
17
|
+
if (typeof this.action === 'function') {
|
18
|
+
var __button = this;
|
19
|
+
el.click(function() {
|
20
|
+
if (!__button.disabled) { __button.action(); }
|
21
|
+
return false;
|
22
|
+
});
|
23
|
+
}
|
24
|
+
this.button = el;
|
25
|
+
return el;
|
26
|
+
},
|
27
|
+
css_class: function() {
|
28
|
+
return ['button', (this.is_default ? 'default' : ''), this.label.toLowerCase().split(' ')[0]].join(' ');
|
29
|
+
},
|
30
|
+
disable: function() {
|
31
|
+
this.set_disabled(true)
|
32
|
+
},
|
33
|
+
enable: function() {
|
34
|
+
this.set_disabled(false)
|
35
|
+
},
|
36
|
+
set_disabled: function(state) {
|
37
|
+
this.disabled = state;
|
38
|
+
this.button.removeClass('disabled');
|
39
|
+
if (this.disabled) {
|
40
|
+
this.button.addClass('disabled')
|
41
|
+
}
|
42
|
+
}
|
43
|
+
});
|
44
|
+
var CancelButton = new JS.Class(Button, {
|
45
|
+
initialize: function(label, is_default) {
|
46
|
+
this.callSuper(label + ' <span class="key-combo">(Esc)</span>', function() {
|
47
|
+
Spontaneous.Dialogue.cancel();
|
48
|
+
}, is_default);
|
49
|
+
},
|
50
|
+
css_class: function() {
|
51
|
+
return this.callSuper().replace(' cancel', '') + ' cancel';
|
52
|
+
}
|
53
|
+
});
|
54
|
+
var Dialogue = new JS.Class({
|
55
|
+
open: function() {
|
56
|
+
Spontaneous.Dialogue.open(this);
|
57
|
+
},
|
58
|
+
close: function() {
|
59
|
+
Spontaneous.Dialogue.close(this);
|
60
|
+
},
|
61
|
+
width: function() {
|
62
|
+
return '50%';
|
63
|
+
},
|
64
|
+
title: function() {
|
65
|
+
return "Dialogue";
|
66
|
+
},
|
67
|
+
class_name: function() {
|
68
|
+
return '';
|
69
|
+
},
|
70
|
+
buttons: function() {
|
71
|
+
// return a
|
72
|
+
// { label : action }
|
73
|
+
// or
|
74
|
+
// { label : [action, is_default ]}
|
75
|
+
// set to define non-cancel action buttons
|
76
|
+
// for this dialogue
|
77
|
+
},
|
78
|
+
cleanup: function() {
|
79
|
+
// over-ride if you need to do anything before the dialogue is closed
|
80
|
+
// (either by cancel or through other actions)
|
81
|
+
},
|
82
|
+
cancel_button: function() {
|
83
|
+
return new CancelButton(this.cancel_label());
|
84
|
+
},
|
85
|
+
cancel_label: function() {
|
86
|
+
return 'Cancel';
|
87
|
+
},
|
88
|
+
disable_button: function(button_name) {
|
89
|
+
Spontaneous.Dialogue.disable_button(button_name);
|
90
|
+
}
|
91
|
+
});
|
92
|
+
|
93
|
+
Dialogue.extend({
|
94
|
+
_overlay: false,
|
95
|
+
_open: false,
|
96
|
+
_z_index: 1000,
|
97
|
+
_instance: false,
|
98
|
+
|
99
|
+
open: function(instance) {
|
100
|
+
if (this._open || !instance) { return; }
|
101
|
+
this._instance = instance;
|
102
|
+
$('body').css("overflow", "hidden");
|
103
|
+
this.overlay().fadeIn(200);
|
104
|
+
var c = this.container(), a = this._actions, b;
|
105
|
+
var buttons = instance.buttons(), button_map = {};
|
106
|
+
a.empty().append(dom.div('.spacer'));
|
107
|
+
b = instance.cancel_button();
|
108
|
+
if (b) {
|
109
|
+
button_map['cancel'] = b;
|
110
|
+
button_map[instance.cancel_label().toLowerCase()] = b;
|
111
|
+
a.append(b.html());
|
112
|
+
$(document).bind('keydown.dialogue', function(event) {
|
113
|
+
if (event.keyCode === 27) { // escape key
|
114
|
+
this.cancel();
|
115
|
+
}
|
116
|
+
}.bind(this));
|
117
|
+
}
|
118
|
+
if (buttons) {
|
119
|
+
$.each(buttons, function(label, params) {
|
120
|
+
var action, is_default = false;
|
121
|
+
if (typeof params === 'function') {
|
122
|
+
action = params;
|
123
|
+
} else if ($.isArray(params)) {
|
124
|
+
action = params[0];
|
125
|
+
is_default = params[1];
|
126
|
+
} else {
|
127
|
+
action = params.action;
|
128
|
+
is_default = params.is_default;
|
129
|
+
}
|
130
|
+
b = new Button(label, action, is_default);
|
131
|
+
a.append(b.html());
|
132
|
+
button_map[label.toLowerCase()] = b;
|
133
|
+
});
|
134
|
+
}
|
135
|
+
this.button_map = button_map;
|
136
|
+
this._body.empty().append(instance.body());
|
137
|
+
c.fadeIn(200);
|
138
|
+
this._open = true;
|
139
|
+
},
|
140
|
+
|
141
|
+
disable_button: function(button_name) {
|
142
|
+
var button = this.button_map[button_name.toLowerCase()]
|
143
|
+
button.disable();
|
144
|
+
},
|
145
|
+
close: function() {
|
146
|
+
if (!this._instance || !this._open) { return; }
|
147
|
+
this._instance.cleanup();
|
148
|
+
this.container().remove();
|
149
|
+
this.overlay().fadeOut(200, function() {
|
150
|
+
$('body').css("overflow", "auto");
|
151
|
+
});
|
152
|
+
this._instance = this._container = this._open = false;
|
153
|
+
$(document).unbind('keydown.dialogue');
|
154
|
+
},
|
155
|
+
cancel: function() {
|
156
|
+
return this.close();
|
157
|
+
},
|
158
|
+
container: function() {
|
159
|
+
if (!this._container) {
|
160
|
+
var instance = this._instance;
|
161
|
+
var wrap = dom.div('#dialogue-wrap').css('z-index', this.z_index()).hide();
|
162
|
+
var outline = dom.div('#dialogue-outer').css('width', instance.width()).addClass(instance.class_name());
|
163
|
+
var controls_wrap = dom.div('#dialogue-control-wrap');
|
164
|
+
var controls = dom.div('#dialogue-controls');
|
165
|
+
var actions = dom.div('.dialogue-actions');
|
166
|
+
var body = dom.div('#dialogue-body');
|
167
|
+
var title = dom.div('#dialogue-title').append(instance.title());
|
168
|
+
|
169
|
+
controls.append(actions);
|
170
|
+
controls_wrap.append(controls);
|
171
|
+
outline.append(title);
|
172
|
+
outline.append(body);
|
173
|
+
outline.append(controls_wrap);
|
174
|
+
wrap.append(outline)
|
175
|
+
$('#content').append(wrap);
|
176
|
+
this._actions = actions;
|
177
|
+
this._title = title;
|
178
|
+
this._container = wrap;
|
179
|
+
this._body = body;
|
180
|
+
}
|
181
|
+
return this._container;
|
182
|
+
},
|
183
|
+
overlay: function() {
|
184
|
+
if (!this._overlay) {
|
185
|
+
var o = dom.div('#dialogue-overlay').css('z-index', this.z_index()).hide();
|
186
|
+
$('#content').append(o)
|
187
|
+
this._overlay = o;
|
188
|
+
}
|
189
|
+
return this._overlay;
|
190
|
+
},
|
191
|
+
z_index: function() {
|
192
|
+
return ++this._z_index;
|
193
|
+
}
|
194
|
+
});
|
195
|
+
return Dialogue;
|
196
|
+
})(jQuery, Spontaneous);
|
@@ -0,0 +1,71 @@
|
|
1
|
+
// console.log('Loading DOM...');
|
2
|
+
|
3
|
+
Spontaneous.Dom = (function($, S) {
|
4
|
+
var tags = 'div p iframe a span img select option label ul li dl dt dd table tr td h1 h2 h3 h4 header input button form textarea'.split(' ');
|
5
|
+
var Dom = {
|
6
|
+
body: function() {
|
7
|
+
return $(document.body);
|
8
|
+
},
|
9
|
+
id: function(name) {
|
10
|
+
return '#'+name;
|
11
|
+
},
|
12
|
+
px: function(dim) {
|
13
|
+
return dim + 'px';
|
14
|
+
},
|
15
|
+
cmd_key_label: function(text, key) {
|
16
|
+
var cmd = ((window.navigator.platform.indexOf("Mac") === 0) ? "Cmd" : "Ctrl");
|
17
|
+
// var alt = '<span class="key-combo">(' + cmd + "+"+key+')</span>';
|
18
|
+
return this.key_label(text, cmd + "+" +key);
|
19
|
+
},
|
20
|
+
key_label: function(text, key) {
|
21
|
+
var alt = '<span class="key-combo">('+key+')</span>';
|
22
|
+
return text + " " + alt;
|
23
|
+
},
|
24
|
+
parse_selector: function(selector) {
|
25
|
+
var p, id = '', classes = [], result = {};
|
26
|
+
selector = selector || '';
|
27
|
+
if (typeof selector === 'string') {
|
28
|
+
p = selector.split('.')
|
29
|
+
} else if ($.isArray(selector)) {
|
30
|
+
p = selector;
|
31
|
+
}
|
32
|
+
for (var i = 0, ii = p.length; i < ii; i++) {
|
33
|
+
var part = p[i];
|
34
|
+
if (part === '') {
|
35
|
+
} else if (part.indexOf('#') === 0) {
|
36
|
+
id = part.substr(1);
|
37
|
+
} else if (part.indexOf('.') === 0) {
|
38
|
+
var r = this.parse_selector(part);
|
39
|
+
classes.push(r['class']);
|
40
|
+
} else {
|
41
|
+
classes.push(part);
|
42
|
+
}
|
43
|
+
}
|
44
|
+
if (id !== '') {
|
45
|
+
result['id'] = id;
|
46
|
+
}
|
47
|
+
if (classes.length > 0) {
|
48
|
+
result['class'] = classes.join(' ')
|
49
|
+
}
|
50
|
+
return result;
|
51
|
+
}
|
52
|
+
};
|
53
|
+
var generate = function(tag_name) {
|
54
|
+
var tag = '<'+tag_name+'/>';
|
55
|
+
return function(selector, params) {
|
56
|
+
if (typeof selector === 'object') {
|
57
|
+
if (!$.isArray(selector)) {
|
58
|
+
params = selector;
|
59
|
+
selector = '';
|
60
|
+
}
|
61
|
+
}
|
62
|
+
var attrs = $.extend((params || {}), Dom.parse_selector(selector));
|
63
|
+
return $(tag, attrs);
|
64
|
+
};
|
65
|
+
};
|
66
|
+
for (var i = 0, ii = tags.length; i < ii; i++) {
|
67
|
+
Dom[tags[i]] = generate(tags[i]);
|
68
|
+
}
|
69
|
+
return Dom;
|
70
|
+
})(jQuery, Spontaneous);
|
71
|
+
|