spontaneous 0.1.0.alpha1 → 0.2.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +40 -35
- data/LICENSE +20 -0
- data/Rakefile +39 -42
- data/Readme.markdown +155 -0
- data/application/css/definitions.scss +3 -0
- data/application/css/editing.scss +9 -4
- data/application/css/min/565d4c25e82148acb01c45c8d675b37a08676d77.css +1 -0
- data/application/css/min/84dbe894ea96eafd321c30823d630817bfc4b03b.css +1 -0
- data/application/css/min/d1b54ff4847c613618267ca1c15658e2aee0a4e5.css +1 -0
- data/application/css/v2.scss +144 -50
- data/application/js/add_alias_dialogue.js +18 -8
- data/application/js/ajax.js +1 -1
- data/application/js/authentication.js +8 -1
- data/application/js/box.js +37 -7
- data/application/js/box_container.js +1 -1
- data/application/js/compatibility.js +7 -0
- data/application/js/content.js +7 -0
- data/application/js/content_area.js +4 -0
- data/application/js/edit_panel.js +44 -18
- data/application/js/editing.js +12 -0
- data/application/js/event_source.js +17 -0
- data/application/js/extensions.js +2 -0
- data/application/js/field_types/file_field.js +2 -1
- data/application/js/field_types/image_field.js +35 -48
- data/application/js/field_types/long_string_field.js +12 -0
- data/application/js/field_types/markdown_field.js +2 -5
- data/application/js/field_types/string_field.js +5 -1
- data/application/js/field_types/webvideo_field.js +15 -0
- data/application/js/init.js +1 -0
- data/application/js/location.js +30 -19
- data/application/js/login.js +1 -2
- data/application/js/min/2a0c2962537a3181fedfff5c92596ba6d3122dc9.js +3 -0
- data/application/js/min/4cf1c493d3379ecba5287758c61238034c0893f9.js +2 -0
- data/application/js/min/78ac6b99d96750bb6b9f9aad4cb9cd91cd03f391.js +3 -0
- data/application/js/min/c8efb9b9f7c3f6613fcebc6be60f605b6570a382.js +90 -0
- data/application/js/page.js +1 -0
- data/application/js/page_entry.js +6 -40
- data/application/js/preview.js +2 -3
- data/application/js/top_bar.js +76 -31
- data/application/js/upload.js +5 -2
- data/application/js/upload_manager.js +2 -81
- data/application/js/vendor/jquery-1.7.1.min.js +4 -0
- data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +791 -0
- data/application/js/views.js +3 -3
- data/application/js/views/box_view.js +164 -83
- data/application/js/views/page_piece_view.js +2 -2
- data/application/js/views/page_view.js +46 -15
- data/application/js/views/piece_view.js +29 -8
- data/application/static/diagonal-texture.png +0 -0
- data/application/static/item-buttons-highlight.png +0 -0
- data/application/static/plus-box.png +0 -0
- data/application/static/plus_alt.svg +8 -0
- data/application/static/slot-up-arrow.png +0 -0
- data/application/views/{index.erubis → index.erb} +9 -5
- data/application/views/{login.erubis → login.erb} +14 -10
- data/application/views/schema_modification_error.html.erb +18 -6
- data/application/views/{unsupported.erubis → unsupported.erb} +0 -0
- data/bin/spot +15 -2
- data/db/migrations/20100610142136_init.rb +2 -2
- data/db/migrations/20101130104334_timestamps.rb +2 -2
- data/db/migrations/20110209152710_users_and_groups.rb +11 -11
- data/db/migrations/20120106171423_visibility_path.rb +19 -0
- data/db/migrations/20120107124541_owner_id.rb +19 -0
- data/docs/recipe-interface-screenshot.png +0 -0
- data/lib/cutaneous.rb +11 -10
- data/lib/cutaneous/context_helper.rb +119 -14
- data/lib/cutaneous/preview_context.rb +4 -3
- data/lib/cutaneous/preview_renderer.rb +1 -6
- data/lib/cutaneous/publish_context.rb +1 -0
- data/lib/cutaneous/{first_pass_renderer.rb → publish_renderer.rb} +2 -6
- data/lib/cutaneous/publish_template.rb +62 -0
- data/lib/cutaneous/publish_token_parser.rb +8 -0
- data/lib/cutaneous/renderer.rb +4 -2
- data/lib/cutaneous/request_context.rb +1 -0
- data/lib/cutaneous/{second_pass_renderer.rb → request_renderer.rb} +2 -5
- data/lib/cutaneous/request_template.rb +11 -0
- data/lib/cutaneous/request_token_parser.rb +9 -0
- data/lib/cutaneous/token_parser.rb +125 -0
- data/lib/sequel/plugins/content_table_inheritance.rb +19 -12
- data/lib/sequel/plugins/scoped_table_name.rb +45 -0
- data/lib/spontaneous.rb +123 -126
- data/lib/spontaneous/box.rb +127 -47
- data/lib/spontaneous/box_style.rb +39 -22
- data/lib/spontaneous/change.rb +2 -2
- data/lib/spontaneous/cli.rb +1 -0
- data/lib/spontaneous/cli/base.rb +12 -4
- data/lib/spontaneous/cli/console.rb +72 -0
- data/lib/spontaneous/cli/server.rb +36 -12
- data/lib/spontaneous/cli/site.rb +175 -1
- data/lib/spontaneous/collections/box_set.rb +19 -1
- data/lib/spontaneous/collections/entry_set.rb +70 -22
- data/lib/spontaneous/collections/field_set.rb +3 -3
- data/lib/spontaneous/collections/prototype_set.rb +28 -0
- data/lib/spontaneous/config.rb +14 -5
- data/lib/spontaneous/content.rb +23 -24
- data/lib/spontaneous/errors.rb +20 -4
- data/lib/spontaneous/extensions/array.rb +2 -2
- data/lib/spontaneous/extensions/json.rb +1 -1
- data/lib/spontaneous/extensions/nil.rb +13 -0
- data/lib/spontaneous/facet.rb +61 -7
- data/lib/spontaneous/field_types.rb +1 -3
- data/lib/spontaneous/field_types/date_field.rb +1 -0
- data/lib/spontaneous/field_types/field.rb +32 -15
- data/lib/spontaneous/field_types/image_field.rb +138 -69
- data/lib/spontaneous/field_types/location_field.rb +59 -0
- data/lib/spontaneous/field_types/long_string_field.rb +13 -0
- data/lib/spontaneous/field_types/markdown_field.rb +2 -1
- data/lib/spontaneous/field_types/string_field.rb +2 -2
- data/lib/spontaneous/field_types/webvideo_field.rb +255 -0
- data/lib/spontaneous/generators/page/inline.html.cut +1 -1
- data/lib/spontaneous/generators/page/page.html.cut.tt +5 -4
- data/lib/spontaneous/generators/page/page.rb.tt +1 -5
- data/lib/spontaneous/generators/site.rb +1 -0
- data/lib/spontaneous/generators/site/.gitignore +2 -0
- data/lib/spontaneous/generators/site/Gemfile.tt +3 -5
- data/lib/spontaneous/generators/site/config/environment.rb.tt +1 -0
- data/lib/spontaneous/generators/site/config/environments/development.rb.tt +3 -1
- data/lib/spontaneous/generators/site/config/environments/production.rb.tt +3 -1
- data/lib/spontaneous/generators/site/config/indexes.rb.tt +23 -0
- data/lib/spontaneous/generators/site/public/css/{site.css → site.scss} +0 -0
- data/lib/spontaneous/generators/site/schema/box.rb.tt +5 -0
- data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +11 -5
- data/lib/spontaneous/image_size.rb +0 -1
- data/lib/spontaneous/loader.rb +335 -218
- data/lib/spontaneous/logger.rb +7 -2
- data/lib/spontaneous/media.rb +64 -59
- data/lib/spontaneous/media/file.rb +74 -0
- data/lib/spontaneous/page.rb +47 -18
- data/lib/spontaneous/page_piece.rb +29 -27
- data/lib/spontaneous/paths.rb +0 -1
- data/lib/spontaneous/permissions.rb +3 -21
- data/lib/spontaneous/permissions/user.rb +5 -1
- data/lib/spontaneous/permissions/user_level.rb +6 -7
- data/lib/spontaneous/piece.rb +12 -7
- data/lib/spontaneous/plugins/aliases.rb +76 -31
- data/lib/spontaneous/plugins/allowed_types.rb +36 -37
- data/lib/spontaneous/plugins/application/facets.rb +7 -10
- data/lib/spontaneous/plugins/application/features.rb +17 -0
- data/lib/spontaneous/plugins/application/paths.rb +25 -31
- data/lib/spontaneous/plugins/application/render.rb +1 -5
- data/lib/spontaneous/plugins/application/serialisation.rb +2 -0
- data/lib/spontaneous/plugins/application/state.rb +6 -9
- data/lib/spontaneous/plugins/boxes.rb +65 -40
- data/lib/spontaneous/plugins/controllers.rb +22 -22
- data/lib/spontaneous/plugins/entries.rb +149 -150
- data/lib/spontaneous/plugins/entry.rb +50 -35
- data/lib/spontaneous/plugins/field/editor_class.rb +13 -0
- data/lib/spontaneous/plugins/fields.rb +41 -33
- data/lib/spontaneous/plugins/instance_code.rb +9 -9
- data/lib/spontaneous/plugins/layouts.rb +31 -35
- data/lib/spontaneous/plugins/media.rb +31 -32
- data/lib/spontaneous/plugins/page/formats.rb +56 -31
- data/lib/spontaneous/plugins/page/request.rb +15 -9
- data/lib/spontaneous/plugins/page_search.rb +30 -31
- data/lib/spontaneous/plugins/page_tree.rb +59 -12
- data/lib/spontaneous/plugins/paths.rb +84 -79
- data/lib/spontaneous/plugins/permissions.rb +26 -28
- data/lib/spontaneous/plugins/prototypes.rb +42 -37
- data/lib/spontaneous/plugins/publishing.rb +50 -94
- data/lib/spontaneous/plugins/render.rb +8 -16
- data/lib/spontaneous/plugins/schema_hierarchy.rb +20 -21
- data/lib/spontaneous/plugins/schema_id.rb +33 -25
- data/lib/spontaneous/plugins/schema_title.rb +3 -4
- data/lib/spontaneous/plugins/serialisation.rb +32 -35
- data/lib/spontaneous/plugins/site/features.rb +32 -0
- data/lib/spontaneous/plugins/site/instance.rb +3 -2
- data/lib/spontaneous/plugins/site/level.rb +18 -0
- data/lib/spontaneous/plugins/site/map.rb +2 -1
- data/lib/spontaneous/plugins/site/publishing.rb +56 -59
- data/lib/spontaneous/plugins/site/revisions.rb +24 -19
- data/lib/spontaneous/plugins/site/schema.rb +33 -0
- data/lib/spontaneous/plugins/site/search.rb +43 -0
- data/lib/spontaneous/plugins/site/selectors.rb +35 -30
- data/lib/spontaneous/plugins/site/storage.rb +63 -0
- data/lib/spontaneous/plugins/site_map.rb +23 -25
- data/lib/spontaneous/plugins/styles.rb +35 -43
- data/lib/spontaneous/plugins/supertype.rb +3 -1
- data/lib/spontaneous/plugins/visibility.rb +90 -83
- data/lib/spontaneous/prototypes/box_prototype.rb +55 -25
- data/lib/spontaneous/prototypes/field_prototype.rb +66 -19
- data/lib/spontaneous/prototypes/style_prototype.rb +2 -2
- data/lib/spontaneous/publishing.rb +1 -1
- data/lib/spontaneous/publishing/immediate.rb +128 -49
- data/lib/spontaneous/publishing/simultaneous.rb +70 -0
- data/lib/spontaneous/rack.rb +38 -26
- data/lib/spontaneous/rack/around_back.rb +3 -23
- data/lib/spontaneous/rack/around_preview.rb +3 -8
- data/lib/spontaneous/rack/assets.rb +7 -6
- data/lib/spontaneous/rack/authentication.rb +21 -0
- data/lib/spontaneous/rack/back.rb +310 -331
- data/lib/spontaneous/rack/cacheable_file.rb +27 -0
- data/lib/spontaneous/rack/cookie_authentication.rb +38 -0
- data/lib/spontaneous/rack/css.rb +43 -0
- data/lib/spontaneous/rack/event_source.rb +31 -0
- data/lib/spontaneous/rack/front.rb +30 -8
- data/lib/spontaneous/rack/helpers.rb +31 -0
- data/lib/spontaneous/rack/media.rb +22 -21
- data/lib/spontaneous/rack/public.rb +2 -1
- data/lib/spontaneous/rack/query_authentication.rb +35 -0
- data/lib/spontaneous/rack/reloader.rb +6 -3
- data/lib/spontaneous/rack/user_helpers.rb +28 -0
- data/lib/spontaneous/render.rb +64 -23
- data/lib/spontaneous/render/context_base.rb +143 -0
- data/lib/spontaneous/render/format.rb +24 -19
- data/lib/spontaneous/render/helpers.rb +14 -0
- data/lib/spontaneous/render/helpers/html_helper.rb +69 -0
- data/lib/spontaneous/render/helpers/script_helper.rb +17 -0
- data/lib/spontaneous/render/helpers/stylesheet_helper.rb +16 -0
- data/lib/spontaneous/render/preview_context.rb +8 -0
- data/lib/spontaneous/render/preview_renderer.rb +6 -0
- data/lib/spontaneous/render/publish_context.rb +22 -0
- data/lib/spontaneous/render/published_renderer.rb +12 -13
- data/lib/spontaneous/render/publishing_renderer.rb +3 -0
- data/lib/spontaneous/render/render_cache.rb +26 -0
- data/lib/spontaneous/render/renderer.rb +5 -1
- data/lib/spontaneous/render/request_context.rb +8 -0
- data/lib/spontaneous/schema.rb +56 -24
- data/lib/spontaneous/schema/schema_modification.rb +2 -2
- data/lib/spontaneous/schema/uid.rb +22 -106
- data/lib/spontaneous/schema/uid_map.rb +120 -0
- data/lib/spontaneous/search.rb +11 -0
- data/lib/spontaneous/search/compound_indexer.rb +26 -0
- data/lib/spontaneous/search/database.rb +72 -0
- data/lib/spontaneous/search/field.rb +95 -0
- data/lib/spontaneous/search/index.rb +184 -0
- data/lib/spontaneous/search/results.rb +34 -0
- data/lib/spontaneous/server.rb +5 -1
- data/lib/spontaneous/site.rb +56 -16
- data/lib/spontaneous/storage.rb +22 -0
- data/lib/spontaneous/storage/backend.rb +10 -0
- data/lib/spontaneous/storage/cloud.rb +104 -0
- data/lib/spontaneous/storage/local.rb +52 -0
- data/lib/spontaneous/style.rb +27 -9
- data/lib/spontaneous/version.rb +1 -1
- data/spontaneous.gemspec +719 -0
- data/test/disabled/test_slots.rb +1 -1
- data/test/experimental/test_cutaneous.rb +309 -0
- data/test/experimental/test_features.rb +129 -0
- data/test/fixtures/application/views/{index.erubis → index.erb} +0 -0
- data/test/fixtures/back/public/css/sass_include.scss +5 -0
- data/test/fixtures/back/public/css/sass_template.scss +4 -0
- data/test/fixtures/example_application/templates/client_project.html.cut +4 -4
- data/test/fixtures/example_application/templates/client_project/images.html.cut +1 -1
- data/test/fixtures/example_application/templates/client_projects.html.cut +2 -2
- data/test/fixtures/example_application/templates/inline_image.html.cut +1 -1
- data/test/fixtures/example_application/templates/layouts/home.html.cut +7 -7
- data/test/fixtures/example_application/templates/layouts/info.html.cut +1 -1
- data/test/fixtures/example_application/templates/layouts/project.html.cut +4 -4
- data/test/fixtures/example_application/templates/layouts/projects.html.cut +2 -2
- data/test/fixtures/example_application/templates/project.html.cut +2 -2
- data/test/fixtures/example_application/templates/project/inline.html.cut +3 -3
- data/test/fixtures/example_application/templates/project_image.html.cut +1 -1
- data/test/fixtures/example_application/templates/text.html.cut +1 -1
- data/test/fixtures/fields/youtube_api_response.xml +102 -0
- data/test/fixtures/layouts/layouts/custom4.html.cut +0 -0
- data/test/fixtures/plugins/schema_plugin/public/css/plugin.css +1 -0
- data/test/fixtures/plugins/schema_plugin/public/js/plugin.js +1 -0
- data/test/fixtures/plugins/schema_plugin/public/static.html +1 -0
- data/test/fixtures/plugins/schema_plugin/public/subdir/image.gif +1 -0
- data/test/fixtures/plugins/schema_plugin/public/subdir/include1.scss +3 -0
- data/test/fixtures/plugins/schema_plugin/public/subdir/sass.scss +4 -0
- data/test/fixtures/plugins/schema_plugin/public/subdir/sass/include2.scss +4 -0
- data/test/fixtures/public/templates/layouts/default.html.cut +1 -1
- data/test/fixtures/public/templates/layouts/default.pdf.cut +1 -1
- data/test/fixtures/public/templates/layouts/default.rss.cut +1 -1
- data/test/fixtures/public/templates/layouts/dynamic.html.cut +1 -1
- data/test/fixtures/schema_modification/config/database.yml +0 -0
- data/test/fixtures/schema_modification/config/environment.rb +2 -0
- data/test/fixtures/schema_modification/schema/box.rb +1 -0
- data/test/fixtures/schema_modification/schema/custom_box.rb +1 -0
- data/test/fixtures/schema_modification/schema/page.rb +6 -0
- data/test/fixtures/schema_modification/schema/piece.rb +1 -0
- data/test/fixtures/search/config/database.yml +1 -0
- data/test/fixtures/search/config/indexes.rb +4 -0
- data/test/fixtures/serialisation/root_hash.yaml.erb +16 -20
- data/test/fixtures/storage/cloud/environment.rb +12 -0
- data/test/fixtures/storage/default/environment.rb +1 -0
- data/test/fixtures/templates/aliases/layouts/c_alias.html.cut +1 -1
- data/test/fixtures/templates/content/include.html.cut +1 -1
- data/test/fixtures/templates/content/include_dir.html.cut +1 -1
- data/test/fixtures/templates/content/included.epub.cut +1 -1
- data/test/fixtures/templates/content/included.html.cut +1 -1
- data/test/fixtures/templates/content/partial/included.html.cut +1 -1
- data/test/fixtures/templates/content/preprocess.html.cut +1 -1
- data/test/fixtures/templates/content/second.html.cut +1 -1
- data/test/fixtures/templates/content/template.epub.cut +1 -1
- data/test/fixtures/templates/content/template.html.cut +1 -1
- data/test/fixtures/templates/default_style_class.html.cut +1 -1
- data/test/fixtures/templates/engine/braces.html.cut +6 -0
- data/test/fixtures/templates/engine/multiline.html.cut +5 -0
- data/test/fixtures/templates/extended/grandparent.html.cut +7 -7
- data/test/fixtures/templates/extended/main.html.cut +5 -5
- data/test/fixtures/templates/extended/parent.html.cut +10 -8
- data/test/fixtures/templates/extended/partial.html.cut +1 -0
- data/test/fixtures/templates/extended/partial_with_locals.html.cut +1 -0
- data/test/fixtures/templates/extended/with_includes.html.cut +9 -0
- data/test/fixtures/templates/extended/with_includes_and_locals.html.cut +9 -0
- data/test/fixtures/templates/layouts/entries.html.cut +7 -7
- data/test/fixtures/templates/layouts/page_style.html.cut +1 -1
- data/test/fixtures/templates/layouts/params.html.cut +1 -1
- data/test/fixtures/templates/layouts/preview_render.html.cut +2 -2
- data/test/fixtures/templates/layouts/standard_page.html.cut +1 -1
- data/test/fixtures/templates/layouts/subdir_style.html.cut +1 -1
- data/test/fixtures/templates/layouts/template_params.html.cut +1 -1
- data/test/fixtures/templates/layouts/variables.html.cut +7 -0
- data/test/fixtures/templates/page_class/inline_style.html.cut +1 -1
- data/test/fixtures/templates/preview_render/variables.html.cut +1 -0
- data/test/fixtures/templates/publishing/templates/layouts/dynamic.html.cut +1 -0
- data/test/fixtures/templates/publishing/templates/layouts/dynamic.rtf.cut +1 -0
- data/test/fixtures/templates/publishing/templates/layouts/static.html.cut +1 -0
- data/test/fixtures/templates/template_class/anonymous_style.html.cut +2 -2
- data/test/fixtures/templates/template_class/complex_template.html.cut +4 -4
- data/test/fixtures/templates/template_class/complex_template.pdf.cut +4 -4
- data/test/fixtures/templates/template_class/default_template_style.html.cut +2 -2
- data/test/fixtures/templates/template_class/images_with_template.html.cut +3 -3
- data/test/fixtures/templates/template_class/slots_template.html.cut +3 -3
- data/test/fixtures/templates/template_class/slots_template.pdf.cut +3 -3
- data/test/fixtures/templates/template_class/this_template.epub.cut +1 -1
- data/test/fixtures/templates/template_class/this_template.html.cut +1 -1
- data/test/fixtures/templates/template_class/this_template.pdf.cut +1 -1
- data/test/fixtures/templates/with_default_style_class.html.cut +1 -1
- data/test/functional/test_application.rb +19 -15
- data/test/functional/test_back.rb +130 -98
- data/test/functional/test_front.rb +72 -28
- data/test/javascript/test_dom.rb +1 -1
- data/test/javascript/test_markdown.rb +1 -1
- data/test/slow/test_publishing.rb +94 -75
- data/test/slow/test_visibility.rb +47 -14
- data/test/test_helper.rb +30 -3
- data/test/ui/test_page_editing.rb +1 -1
- data/test/unit/test_alias.rb +200 -16
- data/test/unit/test_authentication.rb +26 -28
- data/test/unit/test_boxes.rb +146 -75
- data/test/unit/test_config.rb +42 -20
- data/test/unit/test_content.rb +156 -37
- data/test/unit/test_content_inheritance.rb +4 -2
- data/test/unit/test_extensions.rb +7 -1
- data/test/unit/test_fields.rb +558 -290
- data/test/{experimental → unit}/test_formats.rb +42 -3
- data/test/unit/test_generators.rb +3 -2
- data/test/unit/test_helpers.rb +54 -0
- data/test/unit/test_image_size.rb +1 -1
- data/test/unit/test_images.rb +51 -40
- data/test/unit/test_layouts.rb +21 -4
- data/test/unit/test_logger.rb +1 -1
- data/test/unit/test_media.rb +165 -7
- data/test/unit/test_page.rb +158 -27
- data/test/unit/test_permissions.rb +170 -187
- data/test/unit/test_piece.rb +27 -9
- data/test/unit/test_plugins.rb +153 -0
- data/test/unit/test_prototype_set.rb +60 -2
- data/test/unit/test_prototypes.rb +81 -20
- data/test/unit/test_render.rb +97 -9
- data/test/unit/test_schema.rb +167 -120
- data/test/unit/test_search.rb +588 -0
- data/test/unit/test_serialisation.rb +26 -10
- data/test/unit/test_site.rb +42 -25
- data/test/unit/test_storage.rb +88 -0
- data/test/unit/test_structure.rb +11 -5
- data/test/unit/test_styles.rb +64 -3
- data/test/unit/test_table_scoping.rb +76 -0
- data/test/unit/test_templates.rb +69 -31
- data/test/unit/test_type_hierarchy.rb +9 -1
- metadata +274 -208
- data/Gemfile.lock +0 -146
- data/application/css/min/54ee0ed3c7fac7632bd5c020d69e9a2503e0c88c.css +0 -1
- data/application/css/min/c256adc144e2bdd0b0539356b04eb62db01e1dc3.css +0 -1
- data/application/js/edit_dialogue.js +0 -137
- data/application/js/min/492a209de8ee955fa9c729a765377495001e11b1.js +0 -17
- data/application/js/min/80f684d77c940887a1d4a63e3a96102e993baa98.js +0 -88
- data/application/js/min/c7140ec9475e5bf868b901e0621338d7d162358b.js +0 -3
- data/application/js/min/f07f2bd6630ee31e1c2288ec223383d8f0658ba6.js +0 -2
- data/application/js/vendor/.DS_Store +0 -0
- data/application/js/vendor/JS.Class-2.1.5/src/command.js +0 -93
- data/application/js/vendor/JS.Class-2.1.5/src/comparable.js +0 -37
- data/application/js/vendor/JS.Class-2.1.5/src/constant_scope.js +0 -48
- data/application/js/vendor/JS.Class-2.1.5/src/core.js +0 -1060
- data/application/js/vendor/JS.Class-2.1.5/src/decorator.js +0 -50
- data/application/js/vendor/JS.Class-2.1.5/src/enumerable.js +0 -505
- data/application/js/vendor/JS.Class-2.1.5/src/forwardable.js +0 -22
- data/application/js/vendor/JS.Class-2.1.5/src/hash.js +0 -334
- data/application/js/vendor/JS.Class-2.1.5/src/linked_list.js +0 -114
- data/application/js/vendor/JS.Class-2.1.5/src/loader.js +0 -553
- data/application/js/vendor/JS.Class-2.1.5/src/method_chain.js +0 -172
- data/application/js/vendor/JS.Class-2.1.5/src/observable.js +0 -55
- data/application/js/vendor/JS.Class-2.1.5/src/package.js +0 -472
- data/application/js/vendor/JS.Class-2.1.5/src/proxy.js +0 -58
- data/application/js/vendor/JS.Class-2.1.5/src/ruby.js +0 -44
- data/application/js/vendor/JS.Class-2.1.5/src/set.js +0 -332
- data/application/js/vendor/JS.Class-2.1.5/src/stack_trace.js +0 -151
- data/application/js/vendor/JS.Class-2.1.5/src/state.js +0 -95
- data/application/js/vendor/JS.Class-2.1.5/src/stdlib.js +0 -2612
- data/application/js/vendor/jquery-1.4.2.min.js +0 -154
- data/application/js/vendor/jquery-1.4.3.min.js +0 -166
- data/application/js/vendor/jquery-1.5.1.min.js +0 -16
- data/application/js/vendor/jquery-1.5.1rc1.min.js +0 -24
- data/application/js/vendor/jquery-ui-1.8.6.custom.min.js +0 -265
- data/application/js/vendor/jquery-ui-1.8.custom.min.js +0 -106
- data/application/js/vendor/jquery.hotkeys-0.7.9.js +0 -248
- data/application/js/vendor/jquery.hotkeys-0.7.9.min.js +0 -19
- data/application/js/vendor/jsdiff.js +0 -169
- data/lib/cutaneous/first_pass_parser.rb +0 -23
- data/lib/cutaneous/parser_core.rb +0 -18
- data/lib/cutaneous/second_pass_parser.rb +0 -23
- data/lib/sequel/plugins/yajl_serialization.rb +0 -154
- data/lib/spontaneous/plugins.rb +0 -20
- data/lib/spontaneous/proxy_object.rb +0 -12
- data/lib/spontaneous/publishing/fire_and_forget.rb +0 -57
- data/lib/spontaneous/render/context.rb +0 -100
- data/spontaneous.gemspec.tmpl +0 -66
- data/test/experimental/test_plugins.rb +0 -64
- data/test/fixtures/templates/publishing/layouts/dynamic.html.cut +0 -1
- data/test/fixtures/templates/publishing/layouts/static.html.cut +0 -1
@@ -3,10 +3,11 @@ Spontaneous.AddAliasDialogue = (function($, S) {
|
|
3
3
|
var dom = S.Dom, Dialogue = Spontaneous.Dialogue;
|
4
4
|
|
5
5
|
var AddAliasDialogue = new JS.Class(Dialogue, {
|
6
|
-
initialize: function(box_view, type) {
|
6
|
+
initialize: function(box_view, type, position) {
|
7
7
|
this.box_view = box_view;
|
8
8
|
this.box_view.bind('entry_added', this.alias_added.bind(this))
|
9
9
|
this.type = type;
|
10
|
+
this.insert_position = position;
|
10
11
|
},
|
11
12
|
title: function() {
|
12
13
|
return 'Add alias to “' + this.box_view.name() + '”';
|
@@ -22,7 +23,7 @@ Spontaneous.AddAliasDialogue = (function($, S) {
|
|
22
23
|
},
|
23
24
|
add_alias: function() {
|
24
25
|
if (this.target) {
|
25
|
-
this.box_view.add_alias(this.target.id, this.type)
|
26
|
+
this.box_view.add_alias(this.target.id, this.type, this.insert_position);
|
26
27
|
}
|
27
28
|
},
|
28
29
|
alias_added: function() {
|
@@ -31,20 +32,29 @@ Spontaneous.AddAliasDialogue = (function($, S) {
|
|
31
32
|
select_target: function(target) {
|
32
33
|
this.target = target;
|
33
34
|
},
|
35
|
+
box_owner: function() {
|
36
|
+
return this.box_view.box.container;
|
37
|
+
},
|
38
|
+
box: function() {
|
39
|
+
return this.box_view.box;
|
40
|
+
},
|
34
41
|
body: function() {
|
35
|
-
var editing = dom.div('#add-alias-dialogue')
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
42
|
+
var editing = dom.div('#add-alias-dialogue')
|
43
|
+
, outer = dom.div()
|
44
|
+
, instructions = dom.p('.instructions')
|
45
|
+
, __dialogue = this;
|
46
|
+
instructions.html("Choose a target:");
|
47
|
+
editing.append(instructions, outer);
|
48
|
+
Spontaneous.Ajax.get(['/targets', this.type.schema_id, this.box().id()].join('/'), this.targets_loaded.bind(this));
|
40
49
|
this._outer = outer;
|
41
50
|
return editing;
|
42
51
|
},
|
52
|
+
|
43
53
|
targets_loaded: function(targets) {
|
44
54
|
var outer = this._outer, __dialogue = this;
|
45
55
|
this.targets = targets;
|
46
56
|
$.each(targets, function(i, target) {
|
47
|
-
var d = dom.div('.type').
|
57
|
+
var d = dom.div('.type').html(target.title).click(function() {
|
48
58
|
$('.type', outer).removeClass('selected');
|
49
59
|
__dialogue.select_target(target);
|
50
60
|
$(this).addClass('selected');;
|
data/application/js/ajax.js
CHANGED
@@ -10,7 +10,14 @@ Spontaneous.Auth = (function($, S) {
|
|
10
10
|
localStorage.setItem(this.key(site), key);
|
11
11
|
},
|
12
12
|
load: function(site) {
|
13
|
-
return localStorage.getItem(this.key(site));
|
13
|
+
return localStorage.getItem(this.key(site)) || this.loadAutoLogin();
|
14
|
+
},
|
15
|
+
loadAutoLogin: function() {
|
16
|
+
if (!this._autoLoginKey) {
|
17
|
+
console.warn("Using auto login key for user", "'"+S.auto_login+"'");
|
18
|
+
this._autoLoginKey = S.user_key;
|
19
|
+
}
|
20
|
+
return this._autoLoginKey;
|
14
21
|
},
|
15
22
|
remove: function(site) {
|
16
23
|
localStorage.removeItem(this.key(site));
|
data/application/js/box.js
CHANGED
@@ -8,6 +8,12 @@ Spontaneous.Box = (function($, S) {
|
|
8
8
|
initialize: function(content, container) {
|
9
9
|
this.callSuper(content);
|
10
10
|
this.container = container;
|
11
|
+
var box = this;
|
12
|
+
$.each(this.entries(), function(index, entry) {
|
13
|
+
entry.bind('destroyed', function(entry) {
|
14
|
+
box.entry_removed(entry);
|
15
|
+
});
|
16
|
+
});
|
11
17
|
},
|
12
18
|
|
13
19
|
name: function() {
|
@@ -36,7 +42,7 @@ Spontaneous.Box = (function($, S) {
|
|
36
42
|
mouseover: function() {
|
37
43
|
if (this.fields_preview) {
|
38
44
|
this.fields_preview.addClass('hover');
|
39
|
-
}
|
45
|
+
};
|
40
46
|
},
|
41
47
|
mouseout: function() {
|
42
48
|
if (this.fields_preview) {
|
@@ -75,22 +81,46 @@ Spontaneous.Box = (function($, S) {
|
|
75
81
|
},
|
76
82
|
|
77
83
|
add_entry: function(type, position) {
|
78
|
-
Spontaneous.Ajax.post(['/add', this.id(), type.schema_id].join('/'), {}, this.entry_added.bind(this));
|
84
|
+
Spontaneous.Ajax.post(['/add', this.id(), type.schema_id].join('/'), {position: position}, this.entry_added.bind(this));
|
79
85
|
},
|
80
86
|
|
81
|
-
add_alias: function(alias_target_id, type) {
|
82
|
-
S.Ajax.post(["/alias", this.id()].join("/"), {'alias_id':type.schema_id, 'target_id':alias_target_id}, this.entry_added.bind(this));
|
87
|
+
add_alias: function(alias_target_id, type, position) {
|
88
|
+
S.Ajax.post(["/alias", this.id()].join("/"), {'alias_id':type.schema_id, 'target_id':alias_target_id, 'position':position}, this.entry_added.bind(this));
|
83
89
|
},
|
84
90
|
|
85
91
|
entry_added: function(result) {
|
86
|
-
var
|
87
|
-
|
88
|
-
|
92
|
+
var box = this
|
93
|
+
,position = result.position
|
94
|
+
, e = result.entry
|
95
|
+
, entry = this.wrap_entry(e);
|
96
|
+
|
97
|
+
entry.bind('destroyed', function(entry) {
|
98
|
+
box.entry_removed(entry);
|
99
|
+
});
|
100
|
+
if (position === -1) {
|
101
|
+
this.content.entries.push(e);
|
102
|
+
this.entries().push(entry);
|
103
|
+
} else {
|
104
|
+
this.content.entries.splice(position, 0, e);
|
105
|
+
this.entries().splice(position, 0, entry);
|
106
|
+
}
|
89
107
|
var page = S.Editing.get('page');
|
90
108
|
page.trigger('entry_added', entry, position);
|
91
109
|
this.trigger('entry_added', entry, position);
|
92
110
|
},
|
93
111
|
|
112
|
+
entry_removed: function(entry) {
|
113
|
+
var entries = this.entries(), position = 0;
|
114
|
+
for (var i = 0, ii = entries.length; i < ii; i++) {
|
115
|
+
if (entries[i].id() == entry.id()) {
|
116
|
+
position = i;
|
117
|
+
break;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
entries.splice(position, 1);
|
121
|
+
this.trigger('entry_removed', entry);
|
122
|
+
},
|
123
|
+
|
94
124
|
save_path: function() {
|
95
125
|
return ['/savebox', this.id()].join('/');
|
96
126
|
},
|
@@ -8,7 +8,7 @@ Spontaneous.BoxContainer = (function($, S) {
|
|
8
8
|
initialize: function(content, wrap_id) {
|
9
9
|
this.callSuper(content);
|
10
10
|
this.wrap_id = wrap_id;
|
11
|
-
this.box_content_container = dom.div();
|
11
|
+
this.box_content_container = dom.div('.slot-content-wrapper');
|
12
12
|
},
|
13
13
|
|
14
14
|
panel: function() {
|
@@ -7,6 +7,10 @@
|
|
7
7
|
|
8
8
|
// many thanks to modernizer for working a lot of this out
|
9
9
|
// should probably just use it instead...
|
10
|
+
// this does two things:
|
11
|
+
// 1. Check that the current browser supports the core HTML5 feature set,
|
12
|
+
// 2. Regularise access to the various APIs, removing vendor prefixes and providing the spec defined methods
|
13
|
+
// 3. Add some useful CSS-visible attributes to the HTML element
|
10
14
|
(function() {
|
11
15
|
var _window = window, _document = document;
|
12
16
|
var prefixes = ' -webkit- -moz- -o- -ms- -khtml- '.split(' ');
|
@@ -126,6 +130,9 @@
|
|
126
130
|
throw "Local Storage not supported"
|
127
131
|
}
|
128
132
|
|
133
|
+
var b = _document.documentElement;
|
134
|
+
b.setAttribute('data-useragent', navigator.userAgent);
|
135
|
+
b.setAttribute('data-platform', navigator.platform );
|
129
136
|
} catch (e) {
|
130
137
|
_window.location.href = "/@spontaneous/unsupported?msg=" + _window.encodeURI(e);
|
131
138
|
}
|
data/application/js/content.js
CHANGED
@@ -33,6 +33,10 @@ Spontaneous.Content = (function($, S) {
|
|
33
33
|
return S.Types.type(this.content.type);
|
34
34
|
}.cache(),
|
35
35
|
|
36
|
+
slug: function() {
|
37
|
+
return this.content.slug;
|
38
|
+
},
|
39
|
+
|
36
40
|
constantize: function(type) {
|
37
41
|
var parts = type.split(/\./), obj = window;
|
38
42
|
for (var i = 0, ii = parts.length; i < ii; i++) {
|
@@ -46,6 +50,9 @@ Spontaneous.Content = (function($, S) {
|
|
46
50
|
$.each(this.entries(), function(i, e) { e.unload(); });
|
47
51
|
},
|
48
52
|
|
53
|
+
has_fields: function() {
|
54
|
+
return this.field_list().length > 0;
|
55
|
+
},
|
49
56
|
field_list: function() {
|
50
57
|
var type = this.type(), prototypes = type.field_prototypes, names = type.field_names;
|
51
58
|
var fields = this.fields(), list = [];
|
@@ -37,6 +37,10 @@ Spontaneous.ContentArea = (function($, S) {
|
|
37
37
|
},
|
38
38
|
goto_page: function(page) {
|
39
39
|
this.current().goto_page(page);
|
40
|
+
},
|
41
|
+
scroll_to_bottom: function(duration, delay) {
|
42
|
+
|
43
|
+
this.wrap.delay(delay || 0).animate({ scrollTop:this.wrap[0].scrollHeight }, (duration || 1000));
|
40
44
|
}
|
41
45
|
});
|
42
46
|
return ContentArea;
|
@@ -27,9 +27,7 @@ Spontaneous.EditPanel = (function($, S) {
|
|
27
27
|
|
28
28
|
save: function() {
|
29
29
|
var fields = this.parent_view.field_list();
|
30
|
-
console.log('save', fields)
|
31
30
|
S.Ajax.test_field_versions(this.parent_view, fields, this.upload_values.bind(this), this.upload_conflict.bind(this));
|
32
|
-
|
33
31
|
return false;
|
34
32
|
},
|
35
33
|
|
@@ -129,13 +127,14 @@ Spontaneous.EditPanel = (function($, S) {
|
|
129
127
|
if (class_name) { toolbar.addClass(class_name); }
|
130
128
|
return toolbar;
|
131
129
|
};
|
132
|
-
var editing = dom.form(['.editing-panel', this.parent_view.depth_class()], {'enctype':'multipart/form-data', 'method':'post'})
|
130
|
+
var editing = dom.form(['.editing-panel', this.parent_view.depth_class()], {'enctype':'multipart/form-data', 'accept-charset':'UTF-8', 'method':'post'})
|
133
131
|
var toolbar = get_toolbar();
|
134
132
|
var outer = dom.div('.editing-fields');
|
135
133
|
var text_field_wrap = dom.div('.field-group.text');
|
136
134
|
var image_field_wrap = dom.div('.field-group.image');
|
137
135
|
var text_fields = this.parent_view.text_fields();
|
138
136
|
var submit = dom.input({'type':'submit'});
|
137
|
+
var __dialogue = this;
|
139
138
|
editing.append(toolbar);
|
140
139
|
for (var i = 0, ii = text_fields.length; i < ii; i++) {
|
141
140
|
var field = text_fields[i];
|
@@ -148,7 +147,7 @@ Spontaneous.EditPanel = (function($, S) {
|
|
148
147
|
|
149
148
|
for (var i = 0, ii = image_fields.length; i < ii; i++) {
|
150
149
|
var field = image_fields[i];
|
151
|
-
image_field_wrap.append(this.field_edit(field));
|
150
|
+
image_field_wrap.append(this.field_edit(field).click(function() { __dialogue.field_focus(this); }));
|
152
151
|
}
|
153
152
|
if (image_fields.length > 0) {
|
154
153
|
outer.append(image_field_wrap);
|
@@ -157,16 +156,20 @@ Spontaneous.EditPanel = (function($, S) {
|
|
157
156
|
editing.append(outer);
|
158
157
|
editing.append(dom.div('.clear'));
|
159
158
|
editing.append(get_toolbar('bottom'));
|
160
|
-
__dialogue = this;
|
161
159
|
// activate the highlighting
|
162
160
|
$('input, textarea', editing).focus(function() {
|
163
161
|
__dialogue.field_focus(this);
|
164
162
|
}).blur(function() {
|
165
|
-
|
163
|
+
__dialogue.field_blur(this);
|
166
164
|
});
|
167
165
|
editing.submit(this.save.bind(this));
|
168
166
|
this.form = editing;
|
169
|
-
$(':input', this.form).
|
167
|
+
$(':input', this.form).keydown(function(event) {
|
168
|
+
if (event.keyCode === 9) { // TAB
|
169
|
+
__dialogue.tab_to_next(this, event.shiftKey);
|
170
|
+
return false;
|
171
|
+
}
|
172
|
+
}).add(document).bind('keydown.savedialog', function(event) {
|
170
173
|
var s_key = 83, esc_key = 27;
|
171
174
|
if ((event.ctrlKey || event.metaKey) && event.keyCode === s_key) {
|
172
175
|
this.save();
|
@@ -179,6 +182,21 @@ Spontaneous.EditPanel = (function($, S) {
|
|
179
182
|
}.bind(this));
|
180
183
|
return this.form;
|
181
184
|
},
|
185
|
+
tab_to_next: function(input, upwards) {
|
186
|
+
var active_field = $(input).data('field')
|
187
|
+
, text_fields = this.parent_view.text_fields(), position = 0, next_position, next_field
|
188
|
+
, direction = upwards ? -1 : 1;
|
189
|
+
for (var i = 0, ii = text_fields.length; i < ii; i++) {
|
190
|
+
if (text_fields[i] === active_field) {
|
191
|
+
position = i;
|
192
|
+
break;
|
193
|
+
}
|
194
|
+
}
|
195
|
+
next_position = (position + direction) % text_fields.length;
|
196
|
+
if (next_position === -1) { next_position = text_fields.length - 1; }
|
197
|
+
next_field = text_fields[next_position];
|
198
|
+
next_field.input().focus();
|
199
|
+
},
|
182
200
|
on_show: function(focus_field) {
|
183
201
|
if (!focus_field || !(focus_field['focus']) || !focus_field.accepts_focus) { focus_field = null; }
|
184
202
|
var focus_field = focus_field || this.parent_view.text_fields()[0];
|
@@ -187,23 +205,31 @@ Spontaneous.EditPanel = (function($, S) {
|
|
187
205
|
}
|
188
206
|
},
|
189
207
|
field_focus: function(input) {
|
190
|
-
var
|
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
|
-
}
|
208
|
+
var active_field = $(input).data('field')
|
198
209
|
if (active_field === this.active_field) { return; }
|
199
|
-
if (this.active_field) {
|
200
|
-
this.active_field.on_blur();
|
201
|
-
}
|
202
210
|
if (active_field) {
|
203
211
|
this.active_field = active_field;
|
204
212
|
this.active_field.on_focus();
|
205
213
|
}
|
206
214
|
},
|
215
|
+
field_blur: function(input) {
|
216
|
+
var active_field = $(input).data('field')
|
217
|
+
if (active_field) {
|
218
|
+
active_field.on_blur();
|
219
|
+
}
|
220
|
+
if (active_field === this.active_field) {
|
221
|
+
this.active_field = null;
|
222
|
+
}
|
223
|
+
},
|
224
|
+
field_from_input: function(input_element) {
|
225
|
+
var text_fields = this.parent_view.text_fields(), active_field = false;
|
226
|
+
for (var i = 0, ii = text_fields.length; i < ii; i++) {
|
227
|
+
var field = text_fields[i];
|
228
|
+
if (field.input()[0] === input_element) {
|
229
|
+
return field;
|
230
|
+
}
|
231
|
+
}
|
232
|
+
},
|
207
233
|
field_edit: function(field) {
|
208
234
|
var d = dom.div('.field');
|
209
235
|
// d.append($(dom.label, {'class':'name', 'for':field.css_id()}).html(field.label()));
|
data/application/js/editing.js
CHANGED
@@ -25,12 +25,24 @@ Spontaneous.Editing = (function($, S) {
|
|
25
25
|
var page = this.get('page');
|
26
26
|
if (page) { page.unload(); }
|
27
27
|
page = new Page(page_data);
|
28
|
+
page.watch('path', this.path_updated.bind(this));
|
28
29
|
view = new S.Views.PageView(page);
|
29
30
|
this.container.empty();
|
30
31
|
this.container.append(view.panel());
|
31
32
|
this.set('page', page);
|
32
33
|
this.container.fadeIn(300);
|
33
34
|
},
|
35
|
+
path_updated: function(path) {
|
36
|
+
this.set('path', path);
|
37
|
+
},
|
38
|
+
path: function() {
|
39
|
+
var path = this.get('path');
|
40
|
+
if (path) {
|
41
|
+
return path;
|
42
|
+
} else {
|
43
|
+
return this.get('page').get('path');
|
44
|
+
}
|
45
|
+
},
|
34
46
|
hide: function() {
|
35
47
|
this.container.hide();
|
36
48
|
},
|
@@ -0,0 +1,17 @@
|
|
1
|
+
// console.log("Loading TopBar...")
|
2
|
+
|
3
|
+
Spontaneous.EventSource = (function($, S) {
|
4
|
+
var EventSource = new JS.Singleton({
|
5
|
+
eventSource: function() {
|
6
|
+
if (!this._eventSource) {
|
7
|
+
this._eventSource = new window.EventSource(S.Ajax.request_url('/events', true));
|
8
|
+
}
|
9
|
+
return this._eventSource;
|
10
|
+
},
|
11
|
+
|
12
|
+
addEventListener: function(event, callback) {
|
13
|
+
this.eventSource().addEventListener(event, callback);
|
14
|
+
}
|
15
|
+
});
|
16
|
+
return EventSource;
|
17
|
+
})(jQuery, Spontaneous);
|
@@ -14,7 +14,8 @@ Spontaneous.FieldTypes.FileField = (function($, S) {
|
|
14
14
|
Spontaneous.UploadManager.unregister(this);
|
15
15
|
},
|
16
16
|
upload_complete: function(values) {
|
17
|
-
console.log('
|
17
|
+
console.log('FileField#upload_complete', values)
|
18
|
+
this.set('value', values.processed_value);
|
18
19
|
this.set_version(values.version);
|
19
20
|
this.selected_files = null;
|
20
21
|
this.disable_progress();
|
@@ -50,9 +50,6 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
50
50
|
return this._progress_bar;
|
51
51
|
},
|
52
52
|
|
53
|
-
upload_complete: function(values) {
|
54
|
-
this.callSuper(values);
|
55
|
-
},
|
56
53
|
|
57
54
|
upload_progress: function(position, total) {
|
58
55
|
this.spinner().stop();
|
@@ -62,26 +59,26 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
62
59
|
|
63
60
|
preview: function() {
|
64
61
|
Spontaneous.UploadManager.register(this);
|
62
|
+
var value = this.get('value').original, src = value.src, img = null, dim = 45;
|
65
63
|
|
66
|
-
|
67
|
-
|
68
|
-
if (value === "") {
|
64
|
+
if (src === "") {
|
69
65
|
img = dom.img('.missing-image', {'src':'/@spontaneous/static/px.gif'});
|
70
66
|
} else {
|
71
|
-
img = dom.img(
|
67
|
+
img = dom.img();
|
68
|
+
img.load(function() {
|
69
|
+
var r = this.width/this.height, $this = $(this), h = $this.height(), dh = 0;
|
70
|
+
if (r >= 1 && h <= dim) { // landscape -- fit image vertically
|
71
|
+
var dh = (dim - h)/2;
|
72
|
+
}
|
73
|
+
$this.css('top', dom.px(dh));
|
74
|
+
});
|
75
|
+
img.attr({'src':src});
|
72
76
|
}
|
73
77
|
|
74
78
|
img.error(function() {
|
75
79
|
$(this).addClass('missing');
|
76
80
|
});
|
77
81
|
|
78
|
-
img.load(function() {
|
79
|
-
var r = this.width/this.height, $this = $(this), h = $this.height(), dh = 0;
|
80
|
-
if (r >= 1 && h <= dim) { // landscape -- fit image vertically
|
81
|
-
var dh = (dim - h)/2;
|
82
|
-
}
|
83
|
-
$this.css('top', dom.px(dh));
|
84
|
-
});
|
85
82
|
this.image = img;
|
86
83
|
|
87
84
|
var outer = dom.div('.image-outer');
|
@@ -152,7 +149,6 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
152
149
|
S.UploadManager.replace(this, file);
|
153
150
|
},
|
154
151
|
upload_conflict: function(conflict_data) {
|
155
|
-
console.log('conflicted_fields', conflict_data)
|
156
152
|
var dialogue = new S.ConflictedFieldDialogue(this, conflict_data);
|
157
153
|
dialogue.open();
|
158
154
|
},
|
@@ -182,26 +178,20 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
182
178
|
return this._spinner;
|
183
179
|
},
|
184
180
|
upload_complete: function(values) {
|
181
|
+
|
185
182
|
this.callSuper(values)
|
186
183
|
if (values) {
|
187
|
-
|
188
|
-
this.set('value', values.src);
|
184
|
+
var value = this.value().original;
|
189
185
|
if (this.image) {
|
190
186
|
var img = new Image()
|
191
187
|
img.onload = function() {
|
192
|
-
this.image.attr('src',
|
188
|
+
this.image.attr('src', value.src);
|
193
189
|
}.bind(this);
|
194
|
-
img.src =
|
190
|
+
img.src = value.src;
|
195
191
|
}
|
196
192
|
}
|
197
193
|
},
|
198
|
-
|
199
|
-
// this.progress_bar.css('width', ((position/total)*100) + '%');
|
200
|
-
// if (position === total) {
|
201
|
-
// this.drop_target.removeClass('uploading')
|
202
|
-
// this.progress_bar.parent().remove();
|
203
|
-
// }
|
204
|
-
// },
|
194
|
+
|
205
195
|
width: function() {
|
206
196
|
if (this.data.values && this.data.values.original) {
|
207
197
|
return this.data.values.original.width;
|
@@ -215,21 +205,18 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
215
205
|
return 0;
|
216
206
|
},
|
217
207
|
edit: function() {
|
218
|
-
var wrap = dom.div({'style':'position:relative;'})
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
}
|
230
|
-
});
|
208
|
+
var wrap = dom.div({'style':'position:relative;'}),
|
209
|
+
value = this.value().original,
|
210
|
+
src = value.src,
|
211
|
+
img = dom.img({'src':src}),
|
212
|
+
info, sizes, filename_info, filesize_info, dimensions_info;
|
213
|
+
|
214
|
+
if (value.width >= value.height) {
|
215
|
+
wrap.addClass('landscape');
|
216
|
+
} else {
|
217
|
+
wrap.removeClass('landscape');
|
218
|
+
}
|
231
219
|
|
232
|
-
var info, sizes, filesize_info, dimensions_info;
|
233
220
|
info = dom.div('.info');
|
234
221
|
sizes = dom.div('.sizes');
|
235
222
|
filename_info = dom.div('.filename');
|
@@ -249,7 +236,9 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
249
236
|
|
250
237
|
var set_info = function(filename, filesize, width, height) {
|
251
238
|
filename_info.text(filename);
|
252
|
-
|
239
|
+
if (filesize) {
|
240
|
+
filesize_info.text(parseFloat(filesize, 10).to_filesize());
|
241
|
+
}
|
253
242
|
set_dimensions(width, height);
|
254
243
|
};
|
255
244
|
|
@@ -282,8 +271,6 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
282
271
|
var dropper = dom.div('.image-drop').click(onclick);
|
283
272
|
|
284
273
|
var actions = dom.div('.actions');
|
285
|
-
var attr = this.data.values.original;
|
286
|
-
// var change = $(dom.a, {'class':'button change'}).text('Change').click(onclick);
|
287
274
|
// var clear = dom.a('.button.clear').text('Clear');
|
288
275
|
actions.append(input)//.append(clear);
|
289
276
|
wrap.append(dropper);
|
@@ -323,9 +310,9 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
323
310
|
|
324
311
|
wrap.append(img, actions, info);
|
325
312
|
|
326
|
-
if (
|
327
|
-
var s =
|
328
|
-
set_info(filename,
|
313
|
+
if (value) {
|
314
|
+
var s = value.src.split('/'), filename = s[s.length - 1];
|
315
|
+
set_info(filename, value.filesize, value.width, value.height);
|
329
316
|
}
|
330
317
|
this.preview_img = img;
|
331
318
|
return wrap;
|
@@ -335,13 +322,13 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
|
|
335
322
|
return this.input().val();
|
336
323
|
},
|
337
324
|
cancel_edit: function() {
|
338
|
-
this.image.attr('src', this.
|
325
|
+
this.image.attr('src', this.original_value().src);
|
339
326
|
},
|
340
327
|
conflict_view: function(dialogue, conflict) {
|
341
328
|
return new ImageFieldConflictView(dialogue, conflict);
|
342
329
|
},
|
343
330
|
original_value: function() {
|
344
|
-
return this.value();
|
331
|
+
return this.value().original;
|
345
332
|
},
|
346
333
|
edited_value: function() {
|
347
334
|
return this._edited_value;
|