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,137 @@
|
|
1
|
+
// console.log('Loading EditDialogue...')
|
2
|
+
|
3
|
+
Spontaneous.EditDialogue = (function($, S) {
|
4
|
+
var dom = S.Dom, Dialogue = Spontaneous.Dialogue;
|
5
|
+
|
6
|
+
var EditDialogue = new JS.Class(Dialogue, {
|
7
|
+
initialize: function(content) {
|
8
|
+
this.content = content;
|
9
|
+
},
|
10
|
+
buttons: function() {
|
11
|
+
var save_label = "Save (" + ((window.navigator.platform.indexOf("Mac") === 0) ? "Cmd" : "Ctrl") + "+s)", btns = {};
|
12
|
+
btns[save_label] = this.save.bind(this);
|
13
|
+
return btns;
|
14
|
+
},
|
15
|
+
id: function() {
|
16
|
+
return this.content.id();
|
17
|
+
},
|
18
|
+
uid: function() {
|
19
|
+
return this.content.uid() + '!editing';
|
20
|
+
},
|
21
|
+
save: function() {
|
22
|
+
var values = this.form.serializeArray();
|
23
|
+
var field_data = new FormData();
|
24
|
+
var size = 0;
|
25
|
+
$.each(values, function(i, v) {
|
26
|
+
field_data.append(v.name, v.value);
|
27
|
+
size += (v.name.length + v.value.length);
|
28
|
+
});
|
29
|
+
$('> *', this.form).animate({'opacity': 0.3}, 400, function() {
|
30
|
+
Spontaneous.UploadManager.form(this, field_data, size);
|
31
|
+
$.each(this.content.file_fields(), function() {
|
32
|
+
this.save();
|
33
|
+
});
|
34
|
+
}.bind(this));
|
35
|
+
return false;
|
36
|
+
},
|
37
|
+
|
38
|
+
upload_progress: function(position, total) {
|
39
|
+
console.log('EditDialogue.upload_progress', position, total)
|
40
|
+
},
|
41
|
+
upload_complete: function(response) {
|
42
|
+
var fields = response.fields;
|
43
|
+
for (var i = 0, ii = fields.length; i < ii; i++) {
|
44
|
+
var values = fields[i], field = this.content.field(values.name);
|
45
|
+
field.update(values);
|
46
|
+
}
|
47
|
+
this.close();
|
48
|
+
},
|
49
|
+
cleanup: function() {
|
50
|
+
S.Popover.close();
|
51
|
+
|
52
|
+
var fields = this.content.field_list();
|
53
|
+
for (var i = 0, ii = fields.length; i < ii; i++) {
|
54
|
+
var field = fields[i];
|
55
|
+
field.close_edit();
|
56
|
+
}
|
57
|
+
$(':input', this.form).add(document).unbind('keydown.savedialog');
|
58
|
+
},
|
59
|
+
body: function() {
|
60
|
+
var editing = dom.form('#editing', {'enctype':'multipart/form-data', 'method':'post'});
|
61
|
+
var outer = dom.div();
|
62
|
+
outer.append(dom.div('.field-group-bg.text'));
|
63
|
+
outer.append(dom.div('.field-group-bg.image'));
|
64
|
+
var text_field_wrap = dom.div('.field-group.text');
|
65
|
+
var image_field_wrap = dom.div('.field-group.image');
|
66
|
+
var text_fields = this.content.text_fields();
|
67
|
+
var submit = dom.input({'type':'submit'});
|
68
|
+
|
69
|
+
for (var i = 0, ii = text_fields.length; i < ii; i++) {
|
70
|
+
var field = text_fields[i];
|
71
|
+
text_field_wrap.append(this.field_edit(field));
|
72
|
+
}
|
73
|
+
outer.append(text_field_wrap);
|
74
|
+
var image_fields = this.content.image_fields();
|
75
|
+
|
76
|
+
for (var i = 0, ii = image_fields.length; i < ii; i++) {
|
77
|
+
var field = image_fields[i];
|
78
|
+
image_field_wrap.append(this.field_edit(field));
|
79
|
+
}
|
80
|
+
outer.append(image_field_wrap);
|
81
|
+
outer.append(submit);
|
82
|
+
editing.append(outer);
|
83
|
+
__dialogue = this;
|
84
|
+
// activate the highlighting
|
85
|
+
$('input, textarea', editing).focus(function() {
|
86
|
+
__dialogue.field_focus(this);
|
87
|
+
}).blur(function() {
|
88
|
+
// $(this).parents('.field').first().removeClass('focus');
|
89
|
+
});
|
90
|
+
editing.submit(this.save.bind(this));
|
91
|
+
this.form = editing;
|
92
|
+
$(':input', this.form).add(document).bind('keydown.savedialog', function(event) {
|
93
|
+
var s_key = 83;
|
94
|
+
if ((event.ctrlKey || event.metaKey) && event.keyCode === s_key) {
|
95
|
+
this.save();
|
96
|
+
return false;
|
97
|
+
}
|
98
|
+
}.bind(this));
|
99
|
+
return this.form;
|
100
|
+
},
|
101
|
+
field_focus: function(input) {
|
102
|
+
var text_fields = this.content.text_fields(), active_field = false;
|
103
|
+
for (var i = 0, ii = text_fields.length; i < ii; i++) {
|
104
|
+
var field = text_fields[i];
|
105
|
+
if (field.input()[0] === input) {
|
106
|
+
active_field = field;
|
107
|
+
break;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
if (active_field === this.active_field) { return; }
|
111
|
+
if (this.active_field) {
|
112
|
+
this.active_field.on_blur();
|
113
|
+
}
|
114
|
+
if (active_field) {
|
115
|
+
this.active_field = active_field;
|
116
|
+
this.active_field.on_focus();
|
117
|
+
}
|
118
|
+
},
|
119
|
+
field_edit: function(field) {
|
120
|
+
var d = dom.div('.field');
|
121
|
+
d.append(dom.label('.name', {'for':field.css_id()}).html(field.label()));
|
122
|
+
var toolbar = field.toolbar();
|
123
|
+
if (toolbar) {
|
124
|
+
d.append(dom.div('.toolbar').html(toolbar));
|
125
|
+
}
|
126
|
+
var edit = field.edit();
|
127
|
+
d.append(dom.div('.value').html(edit));
|
128
|
+
var footer = field.footer();
|
129
|
+
if (footer) {
|
130
|
+
d.append(dom.div('.footer').html(footer));
|
131
|
+
}
|
132
|
+
return d;
|
133
|
+
}
|
134
|
+
});
|
135
|
+
return EditDialogue;
|
136
|
+
})(jQuery, Spontaneous);
|
137
|
+
|
@@ -0,0 +1,232 @@
|
|
1
|
+
// console.log('Loading EditPanel...')
|
2
|
+
|
3
|
+
Spontaneous.EditPanel = (function($, S) {
|
4
|
+
var dom = S.Dom, Dialogue = Spontaneous.Dialogue;
|
5
|
+
|
6
|
+
var EditPanel = new JS.Class(Dialogue, {
|
7
|
+
initialize: function(parent_view) {
|
8
|
+
this.parent_view = parent_view;
|
9
|
+
},
|
10
|
+
buttons: function() {
|
11
|
+
var save_label = "Save (" + ((window.navigator.platform.indexOf("Mac") === 0) ? "Cmd" : "Ctrl") + "+s)", btns = {};
|
12
|
+
btns[save_label] = this.save.bind(this);
|
13
|
+
return btns;
|
14
|
+
},
|
15
|
+
|
16
|
+
id: function() {
|
17
|
+
return this.parent_view.id();
|
18
|
+
},
|
19
|
+
|
20
|
+
schema_id: function() {
|
21
|
+
|
22
|
+
},
|
23
|
+
|
24
|
+
uid: function() {
|
25
|
+
return this.parent_view.uid() + '!editing';
|
26
|
+
},
|
27
|
+
|
28
|
+
save: function() {
|
29
|
+
var fields = this.parent_view.field_list();
|
30
|
+
console.log('save', fields)
|
31
|
+
S.Ajax.test_field_versions(this.parent_view, fields, this.upload_values.bind(this), this.upload_conflict.bind(this));
|
32
|
+
|
33
|
+
return false;
|
34
|
+
},
|
35
|
+
|
36
|
+
upload_values: function() {
|
37
|
+
var values = this.form.serializeArray();
|
38
|
+
var field_data = new FormData();
|
39
|
+
var size = 0;
|
40
|
+
$.each(values, function(i, v) {
|
41
|
+
field_data.append(v.name, v.value);
|
42
|
+
size += (v.name.length + v.value.length);
|
43
|
+
});
|
44
|
+
$('> *', this.form).animate({'opacity': 0.3}, 400);
|
45
|
+
if (values.length > 0) {
|
46
|
+
Spontaneous.UploadManager.form(this, field_data, size);
|
47
|
+
} else {
|
48
|
+
this.close();
|
49
|
+
}
|
50
|
+
$.each(this.parent_view.file_fields(), function() {
|
51
|
+
this.save();
|
52
|
+
});
|
53
|
+
},
|
54
|
+
|
55
|
+
save_path: function() {
|
56
|
+
return this.parent_view.save_path();
|
57
|
+
},
|
58
|
+
|
59
|
+
upload_progress: function(position, total) {
|
60
|
+
// console.log('EditPanel.upload_progress', position, total)
|
61
|
+
},
|
62
|
+
|
63
|
+
upload_complete: function(response) {
|
64
|
+
this.parent_view.save_complete(response);
|
65
|
+
this.close();
|
66
|
+
},
|
67
|
+
|
68
|
+
|
69
|
+
upload_failed: function(event) {
|
70
|
+
// console.log("FAILED", event)
|
71
|
+
},
|
72
|
+
|
73
|
+
upload_conflict: function(conflict_data) {
|
74
|
+
console.log('conflicted_fields', conflict_data)
|
75
|
+
var dialogue = new S.ConflictedFieldDialogue(this, conflict_data);
|
76
|
+
dialogue.open();
|
77
|
+
},
|
78
|
+
|
79
|
+
conflicts_resolved: function(conflict_list) {
|
80
|
+
console.log('conflicts resolved', conflict_list)
|
81
|
+
var ff = this.parent_view.field_list(), conflicts = {};
|
82
|
+
for (var i =0, ii = conflict_list.length; i < ii; i++) {
|
83
|
+
var conflict = conflict_list[i];
|
84
|
+
conflicts[conflict.field.schema_id()] = conflict;
|
85
|
+
}
|
86
|
+
for (var i = 0, ii = ff.length; i < ii; i++) {
|
87
|
+
var field = ff[i], conflict = conflicts[field.schema_id()];
|
88
|
+
if (conflict) {
|
89
|
+
console.log(">>> conflicts_resolved", field, conflict.version)
|
90
|
+
field.set_edited_value(conflict.value);
|
91
|
+
field.set_version(conflict.version);
|
92
|
+
}
|
93
|
+
}
|
94
|
+
// no need to animate as the dialog is over the top
|
95
|
+
// $('> *', this.form).css({'opacity': 1});
|
96
|
+
},
|
97
|
+
|
98
|
+
cancel: function() {
|
99
|
+
var fields = this.parent_view.field_list();
|
100
|
+
for (var i = 0, ii = fields.length; i < ii; i++) {
|
101
|
+
fields[i].cancel_edit();
|
102
|
+
}
|
103
|
+
this.close();
|
104
|
+
return false;
|
105
|
+
},
|
106
|
+
|
107
|
+
close: function() {
|
108
|
+
S.Popover.close();
|
109
|
+
|
110
|
+
var fields = this.parent_view.field_list();
|
111
|
+
for (var i = 0, ii = fields.length; i < ii; i++) {
|
112
|
+
fields[i].close_edit();
|
113
|
+
}
|
114
|
+
$(':input', this.form).add(document).unbind('keydown.savedialog');
|
115
|
+
if (typeof this.parent_view.edit_closed === 'function') {
|
116
|
+
this.parent_view.edit_closed();
|
117
|
+
}
|
118
|
+
},
|
119
|
+
|
120
|
+
view: function() {
|
121
|
+
var _save_ = this.save.bind(this);
|
122
|
+
var _cancel_ = this.cancel.bind(this);
|
123
|
+
var get_toolbar = function(class_name) {
|
124
|
+
var save = dom.a('.button.save').html(dom.cmd_key_label('Save', 's')).click(_save_);
|
125
|
+
var cancel = dom.a('.button.cancel').html(dom.key_label('Cancel', 'Esc')).click(_cancel_);
|
126
|
+
var shadow = dom.div('.indent');
|
127
|
+
var buttons = dom.div('.buttons').append(cancel).append(save);
|
128
|
+
var toolbar = dom.div('.editing-toolbar').append(shadow).append(buttons);
|
129
|
+
if (class_name) { toolbar.addClass(class_name); }
|
130
|
+
return toolbar;
|
131
|
+
};
|
132
|
+
var editing = dom.form(['.editing-panel', this.parent_view.depth_class()], {'enctype':'multipart/form-data', 'method':'post'})
|
133
|
+
var toolbar = get_toolbar();
|
134
|
+
var outer = dom.div('.editing-fields');
|
135
|
+
var text_field_wrap = dom.div('.field-group.text');
|
136
|
+
var image_field_wrap = dom.div('.field-group.image');
|
137
|
+
var text_fields = this.parent_view.text_fields();
|
138
|
+
var submit = dom.input({'type':'submit'});
|
139
|
+
editing.append(toolbar);
|
140
|
+
for (var i = 0, ii = text_fields.length; i < ii; i++) {
|
141
|
+
var field = text_fields[i];
|
142
|
+
text_field_wrap.append(this.field_edit(field));
|
143
|
+
}
|
144
|
+
if (text_fields.length > 0) {
|
145
|
+
outer.append(text_field_wrap);
|
146
|
+
}
|
147
|
+
var image_fields = this.parent_view.image_fields();
|
148
|
+
|
149
|
+
for (var i = 0, ii = image_fields.length; i < ii; i++) {
|
150
|
+
var field = image_fields[i];
|
151
|
+
image_field_wrap.append(this.field_edit(field));
|
152
|
+
}
|
153
|
+
if (image_fields.length > 0) {
|
154
|
+
outer.append(image_field_wrap);
|
155
|
+
}
|
156
|
+
outer.append(submit);
|
157
|
+
editing.append(outer);
|
158
|
+
editing.append(dom.div('.clear'));
|
159
|
+
editing.append(get_toolbar('bottom'));
|
160
|
+
__dialogue = this;
|
161
|
+
// activate the highlighting
|
162
|
+
$('input, textarea', editing).focus(function() {
|
163
|
+
__dialogue.field_focus(this);
|
164
|
+
}).blur(function() {
|
165
|
+
// $(this).parents('.field').first().removeClass('focus');
|
166
|
+
});
|
167
|
+
editing.submit(this.save.bind(this));
|
168
|
+
this.form = editing;
|
169
|
+
$(':input', this.form).add(document).bind('keydown.savedialog', function(event) {
|
170
|
+
var s_key = 83, esc_key = 27;
|
171
|
+
if ((event.ctrlKey || event.metaKey) && event.keyCode === s_key) {
|
172
|
+
this.save();
|
173
|
+
return false;
|
174
|
+
} else {
|
175
|
+
if (event.keyCode === esc_key) {
|
176
|
+
_cancel_();
|
177
|
+
}
|
178
|
+
}
|
179
|
+
}.bind(this));
|
180
|
+
return this.form;
|
181
|
+
},
|
182
|
+
on_show: function(focus_field) {
|
183
|
+
if (!focus_field || !(focus_field['focus']) || !focus_field.accepts_focus) { focus_field = null; }
|
184
|
+
var focus_field = focus_field || this.parent_view.text_fields()[0];
|
185
|
+
if (focus_field) {
|
186
|
+
focus_field.focus();
|
187
|
+
}
|
188
|
+
},
|
189
|
+
field_focus: function(input) {
|
190
|
+
var text_fields = this.parent_view.text_fields(), active_field = false;
|
191
|
+
for (var i = 0, ii = text_fields.length; i < ii; i++) {
|
192
|
+
var field = text_fields[i];
|
193
|
+
if (field.input()[0] === input) {
|
194
|
+
active_field = field;
|
195
|
+
break;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
if (active_field === this.active_field) { return; }
|
199
|
+
if (this.active_field) {
|
200
|
+
this.active_field.on_blur();
|
201
|
+
}
|
202
|
+
if (active_field) {
|
203
|
+
this.active_field = active_field;
|
204
|
+
this.active_field.on_focus();
|
205
|
+
}
|
206
|
+
},
|
207
|
+
field_edit: function(field) {
|
208
|
+
var d = dom.div('.field');
|
209
|
+
// d.append($(dom.label, {'class':'name', 'for':field.css_id()}).html(field.label()));
|
210
|
+
var label = dom.label('.name', {'for':field.css_id()}).html(field.label());
|
211
|
+
if (field.type.comment) {
|
212
|
+
var comment = dom.span('.comment').text('('+field.type.comment+')');
|
213
|
+
label.append(comment)
|
214
|
+
}
|
215
|
+
d.append(label);
|
216
|
+
var toolbar = field.toolbar();
|
217
|
+
if (toolbar) {
|
218
|
+
d.append(dom.div('.toolbar').html(toolbar));
|
219
|
+
}
|
220
|
+
var edit = field.edit();
|
221
|
+
d.append(dom.div('.value').append(edit));
|
222
|
+
var footer = field.footer();
|
223
|
+
if (footer) {
|
224
|
+
d.append(dom.div('.footer').html(footer));
|
225
|
+
}
|
226
|
+
return d;
|
227
|
+
}
|
228
|
+
});
|
229
|
+
return EditPanel;
|
230
|
+
})(jQuery, Spontaneous);
|
231
|
+
|
232
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
// console.log('Loading Editing Interface...')
|
2
|
+
|
3
|
+
Spontaneous.Editing = (function($, S) {
|
4
|
+
var dom = S.Dom, Page = S.Page;
|
5
|
+
|
6
|
+
var Editing = new JS.Singleton({
|
7
|
+
include: Spontaneous.Properties,
|
8
|
+
|
9
|
+
init: function(container) {
|
10
|
+
this.container = dom.div('#data_pane');
|
11
|
+
this.container.hide();
|
12
|
+
container.append(this.container);
|
13
|
+
return this;
|
14
|
+
},
|
15
|
+
display: function(page) {
|
16
|
+
this.goto_page(page);
|
17
|
+
},
|
18
|
+
goto_page: function(page) {
|
19
|
+
if (!page) { return; }
|
20
|
+
this.container.show().fadeOut(0)
|
21
|
+
S.Ajax.get('/page/{id}'.replace('{id}', page.id), this.page_loaded.bind(this));
|
22
|
+
this.set('location', page);
|
23
|
+
},
|
24
|
+
page_loaded: function(page_data) {
|
25
|
+
var page = this.get('page');
|
26
|
+
if (page) { page.unload(); }
|
27
|
+
page = new Page(page_data);
|
28
|
+
view = new S.Views.PageView(page);
|
29
|
+
this.container.empty();
|
30
|
+
this.container.append(view.panel());
|
31
|
+
this.set('page', page);
|
32
|
+
this.container.fadeIn(300);
|
33
|
+
},
|
34
|
+
hide: function() {
|
35
|
+
this.container.hide();
|
36
|
+
},
|
37
|
+
show: function() {
|
38
|
+
this.container.show();
|
39
|
+
}
|
40
|
+
});
|
41
|
+
return Editing;
|
42
|
+
})(jQuery, Spontaneous);
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// console.log('Loading Entry...')
|
2
|
+
|
3
|
+
Spontaneous.Entry = (function($, S) {
|
4
|
+
var dom = S.Dom, user = S.User;
|
5
|
+
|
6
|
+
var Entry = new JS.Class(Spontaneous.Content, {
|
7
|
+
initialize: function(content, container) {
|
8
|
+
this.container = container;
|
9
|
+
this.callSuper(content);
|
10
|
+
},
|
11
|
+
});
|
12
|
+
return Entry;
|
13
|
+
})(jQuery, Spontaneous);
|
@@ -0,0 +1,104 @@
|
|
1
|
+
if (!window.console) {
|
2
|
+
window.console = {
|
3
|
+
log: function() {},
|
4
|
+
warn: function() {},
|
5
|
+
error: function() {},
|
6
|
+
};
|
7
|
+
} else {
|
8
|
+
// var debug = Spontaneous.debug;
|
9
|
+
// window.__console = window.console;
|
10
|
+
// window.console = {
|
11
|
+
// log: function() {
|
12
|
+
// if (debug) { window.__console.log.apply(window.__console, arguments); }
|
13
|
+
// },
|
14
|
+
// warn: function() {
|
15
|
+
// if (debug) { window.__console.warn.apply(window.__console, arguments); }
|
16
|
+
// },
|
17
|
+
// error: function() {
|
18
|
+
// if (debug) { window.__console.error.apply(window.__console, arguments); }
|
19
|
+
// }
|
20
|
+
// };
|
21
|
+
}
|
22
|
+
|
23
|
+
// console.log('Loading Extensions...')
|
24
|
+
|
25
|
+
// Thank you Prototype
|
26
|
+
function $A(iterable) {
|
27
|
+
if (!iterable) return [];
|
28
|
+
if (iterable.toArray) return iterable.toArray();
|
29
|
+
var length = iterable.length || 0, results = new Array(length);
|
30
|
+
while (length--) results[length] = iterable[length];
|
31
|
+
return results;
|
32
|
+
};
|
33
|
+
|
34
|
+
(function($) {
|
35
|
+
|
36
|
+
var function_id = 0;
|
37
|
+
|
38
|
+
if (!(typeof Function.prototype.bind === 'function')) {
|
39
|
+
Function.prototype.bind = function() {
|
40
|
+
var __method = this, args = $A(arguments), object = args.shift();
|
41
|
+
return function() {
|
42
|
+
return __method.apply(object, args.concat($A(arguments)));
|
43
|
+
};
|
44
|
+
};
|
45
|
+
}
|
46
|
+
$.extend(Function.prototype, {
|
47
|
+
cache: function(name) {
|
48
|
+
var __method = this, id = name || ('__cached__'+(++function_id)), _undefined_;
|
49
|
+
return function() {
|
50
|
+
if (this[id] === _undefined_) {
|
51
|
+
this[id] = __method.apply(this, arguments) || null;
|
52
|
+
}
|
53
|
+
return this[id];
|
54
|
+
};
|
55
|
+
}
|
56
|
+
});
|
57
|
+
|
58
|
+
|
59
|
+
$.extend(Number.prototype, {
|
60
|
+
to_filesize: function() {
|
61
|
+
var thou = 1000, units = [" bytes", ' KB', ' MB', ' GB'],
|
62
|
+
power = Math.floor(Math.log(this) / Math.log(thou))
|
63
|
+
return this / (Math.pow(thou, power)) + units[power]
|
64
|
+
}
|
65
|
+
});
|
66
|
+
|
67
|
+
var opacity_change_duration = 200, height_change_duration = 200;
|
68
|
+
|
69
|
+
$.fn.appear = function(callback) {
|
70
|
+
var $this = this, siblings = $this.siblings(), fade_in = function() {
|
71
|
+
$this.animate({'opacity':1}, {
|
72
|
+
duration: opacity_change_duration,
|
73
|
+
complete: callback
|
74
|
+
});
|
75
|
+
};
|
76
|
+
|
77
|
+
if (siblings.length == 0) {
|
78
|
+
// skip height animation and just fade the element in
|
79
|
+
// otherwise there's this weird gap where nothing seems to be
|
80
|
+
// happening. this only happens when the item being 'appeared' is
|
81
|
+
// the first in the list
|
82
|
+
$this.css({'opacity': 0}).show();
|
83
|
+
fade_in();
|
84
|
+
} else {
|
85
|
+
$this.hide().css({'opacity': 0}).animate({'height':'show'}, {
|
86
|
+
duration: height_change_duration,
|
87
|
+
complete: fade_in
|
88
|
+
});
|
89
|
+
}
|
90
|
+
};
|
91
|
+
|
92
|
+
$.fn.disappear = function(callback) {
|
93
|
+
var $this = this;
|
94
|
+
this.animate({'opacity':0}, {
|
95
|
+
duration: opacity_change_duration,
|
96
|
+
complete: function() {
|
97
|
+
$this.animate({'height':'hide'}, {
|
98
|
+
duration: height_change_duration,
|
99
|
+
complete:callback
|
100
|
+
});
|
101
|
+
}
|
102
|
+
});
|
103
|
+
};
|
104
|
+
}(jQuery));
|
@@ -0,0 +1,55 @@
|
|
1
|
+
// console.log('Loading FieldPreview...')
|
2
|
+
|
3
|
+
Spontaneous.FieldPreview = (function($, S) {
|
4
|
+
var dom = S.Dom;
|
5
|
+
|
6
|
+
var FieldPreview = new JS.Class({
|
7
|
+
initialize: function(view, wrap_id) {
|
8
|
+
this.view = view;
|
9
|
+
this.wrap_id = wrap_id;
|
10
|
+
},
|
11
|
+
|
12
|
+
depth_class: function() {
|
13
|
+
return 'depth-'+this.view.depth();
|
14
|
+
},
|
15
|
+
has_fields: function() {
|
16
|
+
return this.view.has_fields();
|
17
|
+
},
|
18
|
+
panel: function() {
|
19
|
+
var wrapper = dom.div([dom.id(this.wrap_id), 'fields-preview', this.depth_class()])
|
20
|
+
// $(dom.div, {'id':this.wrap_id, 'class':'fields-preview ' + this.depth_class()});
|
21
|
+
wrapper.append(this.fields_panel(this.view.text_fields(), 'text'));
|
22
|
+
wrapper.append(this.fields_panel(this.view.image_fields(), 'image', true));
|
23
|
+
if (this.view.mouseover) {
|
24
|
+
wrapper.mouseover(this.view.mouseover.bind(this.view))
|
25
|
+
}
|
26
|
+
if (this.view.mouseout) {
|
27
|
+
wrapper.mouseout(this.view.mouseout.bind(this.view))
|
28
|
+
}
|
29
|
+
wrapper.click(function() {
|
30
|
+
this.view.edit(this.field_to_edit);
|
31
|
+
}.bind(this))
|
32
|
+
return wrapper;
|
33
|
+
},
|
34
|
+
fields_panel: function(fields, type, ignore_changes) {
|
35
|
+
var wrapper = dom.ul('.fields-preview-'+type), __this = this;
|
36
|
+
if (fields.length === 0) { wrapper.addClass('empty'); }
|
37
|
+
$.each(fields, function(i, field) {
|
38
|
+
var li = dom.li();
|
39
|
+
var name = dom.div('.name').text(field.title);
|
40
|
+
var value = dom.div('.value').html(field.preview());
|
41
|
+
li.click(function() {
|
42
|
+
__this.field_to_edit = field;
|
43
|
+
})
|
44
|
+
field.activate(value);
|
45
|
+
if (!ignore_changes) {
|
46
|
+
field.watch('value', function(field, v) { $(this).html(field.preview()) }.bind(value, field));
|
47
|
+
}
|
48
|
+
li.append(name).append(value);
|
49
|
+
wrapper.append(li);
|
50
|
+
});
|
51
|
+
return wrapper;
|
52
|
+
}
|
53
|
+
});
|
54
|
+
return FieldPreview;
|
55
|
+
})(jQuery, Spontaneous);
|
@@ -0,0 +1,16 @@
|
|
1
|
+
// console.log('Loading DateField...')
|
2
|
+
Spontaneous.FieldTypes.DateField = (function($, S) {
|
3
|
+
var dom = S.Dom;
|
4
|
+
var DateField = new JS.Class(Spontaneous.FieldTypes.StringField, {
|
5
|
+
// get_input: function() {
|
6
|
+
// this.input = $(dom.textarea, {'id':this.css_id(), 'name':this.form_name(), 'rows':10, 'cols':30}).text(this.unprocessed_value());
|
7
|
+
// return this.input;
|
8
|
+
// },
|
9
|
+
// edit: function() {
|
10
|
+
// return this.get_input();
|
11
|
+
// }
|
12
|
+
});
|
13
|
+
|
14
|
+
return DateField;
|
15
|
+
})(jQuery, Spontaneous);
|
16
|
+
|
@@ -0,0 +1,71 @@
|
|
1
|
+
// console.log('Loading FileField...')
|
2
|
+
Spontaneous.FieldTypes.FileField = (function($, S) {
|
3
|
+
var dom = S.Dom;
|
4
|
+
var FileField = new JS.Class(Spontaneous.FieldTypes.StringField, {
|
5
|
+
selected_files: false,
|
6
|
+
preview: function() {
|
7
|
+
Spontaneous.UploadManager.register(this);
|
8
|
+
return this.callSuper();
|
9
|
+
},
|
10
|
+
unload: function() {
|
11
|
+
this.callSuper();
|
12
|
+
this.input = null;
|
13
|
+
this._progress_bar = null;
|
14
|
+
Spontaneous.UploadManager.unregister(this);
|
15
|
+
},
|
16
|
+
upload_complete: function(values) {
|
17
|
+
console.log('upload complete', values)
|
18
|
+
this.set_version(values.version);
|
19
|
+
this.selected_files = null;
|
20
|
+
this.disable_progress();
|
21
|
+
},
|
22
|
+
disable_progress: function() {
|
23
|
+
this.progress_bar().parent().hide();
|
24
|
+
this.drop_target.removeClass('uploading')
|
25
|
+
},
|
26
|
+
upload_progress: function(position, total) {
|
27
|
+
if (!this.drop_target.hasClass('uploading')) { this.drop_target.addClass('uploading'); }
|
28
|
+
this.progress_bar().parent().show();
|
29
|
+
this.progress_bar().css('width', ((position/total)*100) + '%');
|
30
|
+
},
|
31
|
+
is_file: function() {
|
32
|
+
return true;
|
33
|
+
},
|
34
|
+
get_input: function() {
|
35
|
+
this.input = dom.input({'type':'file', 'name':this.form_name(), 'accept':'image/*'});
|
36
|
+
return this.input;
|
37
|
+
},
|
38
|
+
accepts_focus: false,
|
39
|
+
// called by edit dialogue in order to begin the async upload of files
|
40
|
+
save: function() {
|
41
|
+
if (!this.selected_files) { return; }
|
42
|
+
var files = this.selected_files; //this.input[0].files;
|
43
|
+
if (files && files.length > 0) {
|
44
|
+
this.drop_target.addClass('uploading');
|
45
|
+
this.progress_bar().parent().show();
|
46
|
+
var file_data = new FormData();
|
47
|
+
var file = files[0];
|
48
|
+
S.UploadManager.replace(this, file);
|
49
|
+
}
|
50
|
+
this.selected_files = false;
|
51
|
+
},
|
52
|
+
is_modified: function() {
|
53
|
+
var files = this.selected_files; //this.input[0].files;
|
54
|
+
return (files && files.length > 0);
|
55
|
+
},
|
56
|
+
original_value: function() {
|
57
|
+
this.processed_value();
|
58
|
+
},
|
59
|
+
set_edited_value: function(value) {
|
60
|
+
console.log('set_edited_value', value, this.edited_value(), this.original_value())
|
61
|
+
if (value === this.edited_value()) {
|
62
|
+
// do nothing
|
63
|
+
} else {
|
64
|
+
this.selected_files = null;
|
65
|
+
this.set('value', value);
|
66
|
+
}
|
67
|
+
}
|
68
|
+
});
|
69
|
+
return FileField;
|
70
|
+
})(jQuery, Spontaneous);
|
71
|
+
|