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,185 @@
|
|
1
|
+
// console.log('Loading StringField...')
|
2
|
+
Spontaneous.FieldTypes.StringField = (function($, S) {
|
3
|
+
var dom = S.Dom;
|
4
|
+
var StringFieldConflictView = new JS.Class({
|
5
|
+
initialize: function(dialogue, conflict) {
|
6
|
+
this.dialogue = dialogue;
|
7
|
+
this.conflict = conflict;
|
8
|
+
this.server_version = conflict.version;
|
9
|
+
this.values = conflict.values;
|
10
|
+
this.differ = new S.Diff();
|
11
|
+
},
|
12
|
+
panel: function() {
|
13
|
+
var labels = dom.div('.string-field-conflict.labels.differences'), outer = dom.div(), diff_outer = dom.div('.string-field-conflict.changes.differences'), local_diff = dom.div('.original.diff'), computed_diff = dom.div('.final.diff');
|
14
|
+
var local_diff_label = dom.div('.diff').text("Changes made by other person");
|
15
|
+
var final_diff_label = dom.div('.diff').text("Their changes merged with yours");
|
16
|
+
var server_change = this.diff(this.values.local_original, this.values.server_original);
|
17
|
+
var local_change = this.diff(this.values.local_original, this.values.local_edited);
|
18
|
+
var merge = this.differ.patch_apply(local_change.patches, this.values.server_original);
|
19
|
+
var merge_change = this.diff(this.values.local_original, merge[0]);
|
20
|
+
var local_mods = this.differ.diff_prettyHtml(server_change.diff);
|
21
|
+
var merge_mods = this.differ.diff_prettyHtml(merge_change.diff);
|
22
|
+
|
23
|
+
local_diff.append(local_mods).click(function() {
|
24
|
+
this.useValue(this.values.server_original);
|
25
|
+
local_diff.add(computed_diff).removeClass('selected');
|
26
|
+
local_diff.addClass('selected');
|
27
|
+
}.bind(this));
|
28
|
+
|
29
|
+
computed_diff.append(merge_mods).click(function() {
|
30
|
+
this.useValue(merge[0]);
|
31
|
+
local_diff.add(computed_diff).removeClass('selected');
|
32
|
+
computed_diff.addClass('selected');
|
33
|
+
}.bind(this));
|
34
|
+
|
35
|
+
labels.append(local_diff_label, final_diff_label);
|
36
|
+
diff_outer.append(local_diff, computed_diff);
|
37
|
+
outer.append(labels, diff_outer);
|
38
|
+
return outer;
|
39
|
+
},
|
40
|
+
|
41
|
+
diff: function(original, edited) {
|
42
|
+
var diff = this.differ.diff_main(original, edited, false);
|
43
|
+
this.differ.diff_cleanupSemantic(diff);
|
44
|
+
var patches = this.differ.patch_make(original, edited, diff);
|
45
|
+
return {
|
46
|
+
diff: diff,
|
47
|
+
patches: patches
|
48
|
+
};
|
49
|
+
},
|
50
|
+
useValue: function(value) {
|
51
|
+
this.use_value = value;
|
52
|
+
this.dialogue.resolve_value(this.conflict, value);
|
53
|
+
}
|
54
|
+
});
|
55
|
+
|
56
|
+
var StringField = new JS.Class({
|
57
|
+
include: Spontaneous.Properties,
|
58
|
+
|
59
|
+
initialize: function(owner, data) {
|
60
|
+
this.content = owner;
|
61
|
+
this.name = data.name;
|
62
|
+
var content_type = owner.type();
|
63
|
+
this.type = content_type.field_prototypes[this.name];
|
64
|
+
this.title = this.type.title;
|
65
|
+
this.update(data);
|
66
|
+
},
|
67
|
+
uid: function() {
|
68
|
+
return this.content.uid() + '['+this.name+']';
|
69
|
+
},
|
70
|
+
set_value: function(new_value) {
|
71
|
+
},
|
72
|
+
|
73
|
+
unload: function() {
|
74
|
+
},
|
75
|
+
update: function(values) {
|
76
|
+
this.data = values;
|
77
|
+
this.set('value', values.processed_value);
|
78
|
+
this.set('unprocessed_value', values.unprocessed_value);
|
79
|
+
},
|
80
|
+
preview: function() {
|
81
|
+
return this.get('value')
|
82
|
+
},
|
83
|
+
activate: function(el) {
|
84
|
+
el.find('a[href^="/"]').click(function() {
|
85
|
+
S.Location.load_path($(this).attr('href'));
|
86
|
+
return false;
|
87
|
+
});
|
88
|
+
},
|
89
|
+
value: function() {
|
90
|
+
return this.get('value');
|
91
|
+
},
|
92
|
+
unprocessed_value: function() {
|
93
|
+
return this.data.unprocessed_value;
|
94
|
+
},
|
95
|
+
is_image: function() {
|
96
|
+
return false;
|
97
|
+
},
|
98
|
+
is_file: function() {
|
99
|
+
return false;
|
100
|
+
},
|
101
|
+
|
102
|
+
id: function() {
|
103
|
+
return this.content.id();
|
104
|
+
},
|
105
|
+
css_id: function() {
|
106
|
+
return 'field-'+this.name+'-'+this.id();
|
107
|
+
},
|
108
|
+
form_name: function() {
|
109
|
+
return this.input_name('unprocessed_value');
|
110
|
+
},
|
111
|
+
version_name: function() {
|
112
|
+
return this.input_name('version');
|
113
|
+
},
|
114
|
+
input_name: function(name) {
|
115
|
+
return 'field['+this.schema_id()+']['+name+']';
|
116
|
+
},
|
117
|
+
schema_id: function() {
|
118
|
+
return this.type.schema_id;
|
119
|
+
},
|
120
|
+
version: function() {
|
121
|
+
return this.data.version;
|
122
|
+
},
|
123
|
+
set_version: function(version) {
|
124
|
+
this.data.version = version;
|
125
|
+
},
|
126
|
+
label: function() {
|
127
|
+
return this.title;
|
128
|
+
},
|
129
|
+
input: function() {
|
130
|
+
if (!this._input) {
|
131
|
+
this._input = dom.input(dom.id(this.css_id()), {'type':'text', 'name':this.form_name(), 'value':this.unprocessed_value()})
|
132
|
+
}
|
133
|
+
return this._input;
|
134
|
+
},
|
135
|
+
|
136
|
+
edited_value: function() {
|
137
|
+
return this.input().val();
|
138
|
+
},
|
139
|
+
is_modified: function() {
|
140
|
+
// always returns true because the ui value will always be sent and would override the server
|
141
|
+
// version in the case of a conflict
|
142
|
+
return true;
|
143
|
+
},
|
144
|
+
original_value: function() {
|
145
|
+
return this.unprocessed_value();
|
146
|
+
},
|
147
|
+
set_edited_value: function(value) {
|
148
|
+
this.input().val(value);
|
149
|
+
},
|
150
|
+
cancel_edit: function() {
|
151
|
+
},
|
152
|
+
close_edit: function() {
|
153
|
+
this._input = null;
|
154
|
+
this._version_input = null;
|
155
|
+
},
|
156
|
+
edit: function() {
|
157
|
+
return this.input();
|
158
|
+
},
|
159
|
+
toolbar: function() {
|
160
|
+
return false;
|
161
|
+
},
|
162
|
+
footer: function() {
|
163
|
+
return false;
|
164
|
+
},
|
165
|
+
focus: function() {
|
166
|
+
this.input().focus().select();
|
167
|
+
},
|
168
|
+
// true for fields with a text input
|
169
|
+
accepts_focus: true,
|
170
|
+
on_focus: function() {
|
171
|
+
this.input().parents('.field').first().addClass('focus');
|
172
|
+
},
|
173
|
+
on_blur: function() {
|
174
|
+
this.input().parents('.field').first().removeClass('focus');
|
175
|
+
},
|
176
|
+
conflict_view: function(dialogue, conflict) {
|
177
|
+
return new StringFieldConflictView(dialogue, conflict);
|
178
|
+
}
|
179
|
+
});
|
180
|
+
|
181
|
+
StringField.ConflictView = StringFieldConflictView;
|
182
|
+
|
183
|
+
return StringField;
|
184
|
+
})(jQuery, Spontaneous);
|
185
|
+
|
@@ -0,0 +1,72 @@
|
|
1
|
+
|
2
|
+
// Useful wrapper around image fields
|
3
|
+
Spontaneous.Image = (function($, S) {
|
4
|
+
var dom = Spontaneous.Dom;
|
5
|
+
var Image = new JS.Class({
|
6
|
+
initialize: function(field) {
|
7
|
+
this.field = field;
|
8
|
+
},
|
9
|
+
fit: function(width, height) {
|
10
|
+
if (this.is_empty()) {
|
11
|
+
return dom.span();
|
12
|
+
}
|
13
|
+
var dim = this.fit_dimensions(width, height);
|
14
|
+
return dom.img({'src':this.src()}).attr('width',dim.width).attr('height',dim.height);
|
15
|
+
},
|
16
|
+
fit_dimensions: function(width, height) {
|
17
|
+
var ratio = 1.0;
|
18
|
+
if (this.is_landscape()) {
|
19
|
+
if (this.width() > width) {
|
20
|
+
ratio = width/this.width();
|
21
|
+
}
|
22
|
+
} else {
|
23
|
+
if (this.height() > height) {
|
24
|
+
ratio = height/this.height();
|
25
|
+
}
|
26
|
+
}
|
27
|
+
return {'width':(this.width() * ratio), 'height':(this.height() * ratio)};
|
28
|
+
},
|
29
|
+
fit_dimensions_inverse: function(width, height) {
|
30
|
+
var ratio = 1.0;
|
31
|
+
if (this.is_portrait()) {
|
32
|
+
if (this.width() > width) {
|
33
|
+
ratio = width/this.width();
|
34
|
+
}
|
35
|
+
} else {
|
36
|
+
if (this.height() > height) {
|
37
|
+
ratio = height/this.height();
|
38
|
+
}
|
39
|
+
}
|
40
|
+
return {'width':(this.width() * ratio), 'height':(this.height() * ratio)};
|
41
|
+
},
|
42
|
+
icon: function(width, height) {
|
43
|
+
if (this.is_empty()) {
|
44
|
+
return dom.span();
|
45
|
+
}
|
46
|
+
var dim = this.fit_dimensions_inverse(width, height), wrap = dom.div('.icon-wrap', {'width':dom.px(width), 'height':dom.px(height)});
|
47
|
+
wrap.append(dom.img({'src':this.src()}).css({'left':dom.px((width - dim.width)/2), 'top':dom.px((height - dim.height)/2)}).attr('width',dim.width).attr('height',dim.height));
|
48
|
+
return wrap;
|
49
|
+
},
|
50
|
+
src: function() {
|
51
|
+
return this.field.attributes.original.src;
|
52
|
+
},
|
53
|
+
width: function() {
|
54
|
+
if (this.is_empty()) { return 0; }
|
55
|
+
return this.field.attributes.original.width;
|
56
|
+
},
|
57
|
+
height: function() {
|
58
|
+
if (this.is_empty()) { return 0; }
|
59
|
+
return this.field.attributes.original.height;
|
60
|
+
},
|
61
|
+
is_landscape: function() {
|
62
|
+
return this.width() >= this.height();
|
63
|
+
},
|
64
|
+
is_portrait: function() {
|
65
|
+
return this.height() > this.width();
|
66
|
+
},
|
67
|
+
is_empty: function() {
|
68
|
+
return !this.field.attributes.original;
|
69
|
+
}
|
70
|
+
});
|
71
|
+
return Image;
|
72
|
+
}());
|
@@ -0,0 +1,34 @@
|
|
1
|
+
// console.log("Loading Init...");
|
2
|
+
|
3
|
+
|
4
|
+
Spontaneous.Init = (function($, S) {
|
5
|
+
|
6
|
+
return function() {
|
7
|
+
|
8
|
+
var location = S.Location, top_bar = S.TopBar, content_area = S.ContentArea, b = S.Dom.body();
|
9
|
+
|
10
|
+
location.watch('location', top_bar.location_changed.bind(top_bar));
|
11
|
+
location.watch('location', content_area.location_changed.bind(content_area));
|
12
|
+
|
13
|
+
top_bar.watch('mode', content_area.display.bind(content_area));
|
14
|
+
top_bar.watch('mode', location.view_mode_changed.bind(location));
|
15
|
+
|
16
|
+
S.Editing.watch('page', location.page_loaded.bind(location));
|
17
|
+
|
18
|
+
b.append(top_bar.panel());
|
19
|
+
b.append(content_area.init());
|
20
|
+
b.append(S.StatusBar.init());
|
21
|
+
|
22
|
+
S.User.load();
|
23
|
+
|
24
|
+
S.Types.init(function() {
|
25
|
+
location.init(function() {
|
26
|
+
top_bar.init();
|
27
|
+
});
|
28
|
+
});
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
};
|
34
|
+
}(jQuery, Spontaneous));
|
@@ -0,0 +1,157 @@
|
|
1
|
+
// console.log("Loading Location...")
|
2
|
+
|
3
|
+
Spontaneous.Location = (function($, S) {
|
4
|
+
var ajax = S.Ajax;
|
5
|
+
|
6
|
+
var State = new JS.Class({
|
7
|
+
initialize: function(hash) {
|
8
|
+
this.page_id = false;
|
9
|
+
this.mode = null;
|
10
|
+
if (hash) {
|
11
|
+
this.hash = hash.substr(1);
|
12
|
+
this.parse_hash();
|
13
|
+
}
|
14
|
+
},
|
15
|
+
// make this more sophisticated to deal with more complex state
|
16
|
+
// currently:
|
17
|
+
// #/page_id@view_mode
|
18
|
+
parse_hash: function() {
|
19
|
+
var areas = this.hash.split('@'), path = areas[0], mode = areas[1];
|
20
|
+
var parts = path.split('/')
|
21
|
+
parts.shift();
|
22
|
+
if (parts.length > 0) {
|
23
|
+
this.page_id = parts[0];
|
24
|
+
}
|
25
|
+
this.mode = mode;
|
26
|
+
},
|
27
|
+
restore: function() {
|
28
|
+
if (this.mode) {
|
29
|
+
Spontaneous.Location.view_mode_changed(this.mode)
|
30
|
+
Spontaneous.TopBar.set_mode(this.mode)
|
31
|
+
}
|
32
|
+
if (this.page_id) {
|
33
|
+
Spontaneous.Location.load_id(this.page_id);
|
34
|
+
} else {
|
35
|
+
Spontaneous.Location.load_path('/');
|
36
|
+
}
|
37
|
+
},
|
38
|
+
to_hash: function() {
|
39
|
+
return '#/'+(this.page_id || '') + (this.mode ? ('@' + this.mode) : '');
|
40
|
+
}
|
41
|
+
});
|
42
|
+
|
43
|
+
State.extend({
|
44
|
+
restore: function() {
|
45
|
+
var state = new State(window.location.hash)
|
46
|
+
state.restore();
|
47
|
+
},
|
48
|
+
page: function(location, mode) {
|
49
|
+
var s = new State
|
50
|
+
s.page_id = location.id;
|
51
|
+
s.mode = mode;
|
52
|
+
window.location.hash = s.to_hash();
|
53
|
+
}
|
54
|
+
});
|
55
|
+
|
56
|
+
var Location = new JS.Singleton({
|
57
|
+
include: Spontaneous.Properties,
|
58
|
+
init: function(callback) {
|
59
|
+
var complete = function() {
|
60
|
+
callback();
|
61
|
+
this.location_loaded();
|
62
|
+
}.bind(this);
|
63
|
+
callback();
|
64
|
+
State.restore();
|
65
|
+
$(window).bind('hashchange', State.restore);
|
66
|
+
},
|
67
|
+
page_loaded: function(page) {
|
68
|
+
// page.watch('slot', this, 'slot_changed');
|
69
|
+
},
|
70
|
+
slot_changed: function(slot) {
|
71
|
+
// console.log('Location.slot_changed', slot, slot.uid(), slot.container.id());
|
72
|
+
},
|
73
|
+
view_mode_changed: function(mode) {
|
74
|
+
this.set('view_mode', mode);
|
75
|
+
if (this.get('location')) {
|
76
|
+
this.update_state(this.get('location'), mode);
|
77
|
+
}
|
78
|
+
},
|
79
|
+
load_map: function() {
|
80
|
+
},
|
81
|
+
location_loaded: function(location, status, xhr) {
|
82
|
+
if (status !== 'success') {
|
83
|
+
if (xhr.status === 406) { // Code returned if site is missing a root page
|
84
|
+
var d = new Spontaneous.AddHomeDialogue(Spontaneous.Types.get('types'));
|
85
|
+
d.open();
|
86
|
+
}
|
87
|
+
} else {
|
88
|
+
this.set('location', location);
|
89
|
+
// HACK: see preview.js (Preview.display)
|
90
|
+
this.set('path', location.path);
|
91
|
+
this.update_state(location, this.get('view_mode'));
|
92
|
+
}
|
93
|
+
},
|
94
|
+
update_state: function(location, mode) {
|
95
|
+
State.page(location, mode);
|
96
|
+
},
|
97
|
+
load_id: function(id) {
|
98
|
+
var l = this.location();
|
99
|
+
if (!l || id != l.id) {
|
100
|
+
this.find_id(id);
|
101
|
+
}
|
102
|
+
},
|
103
|
+
load_path: function(path) {
|
104
|
+
this.find_path(path);
|
105
|
+
},
|
106
|
+
url: function() {
|
107
|
+
var l = this.location();
|
108
|
+
return (l ? l.url : "/about");
|
109
|
+
},
|
110
|
+
location: function() {
|
111
|
+
return this.get('location');
|
112
|
+
},
|
113
|
+
update: function(location) {
|
114
|
+
this.set('location', location);
|
115
|
+
this.path_from_url(location.url)
|
116
|
+
},
|
117
|
+
current_path: function() {
|
118
|
+
return this.path_from_url(this.url());
|
119
|
+
},
|
120
|
+
find_path: function(path) {
|
121
|
+
console.log('find_path', this.location(), path)
|
122
|
+
if (this.location() && path === this.location().path) {
|
123
|
+
return this.location();
|
124
|
+
}
|
125
|
+
ajax.get('/location'+path, this.location_loaded.bind(this));
|
126
|
+
},
|
127
|
+
find_id: function(id) {
|
128
|
+
if (this.location() && id === this.location().id) {
|
129
|
+
return this.location();
|
130
|
+
}
|
131
|
+
ajax.get('/map/'+id, this.location_loaded.bind(this));
|
132
|
+
},
|
133
|
+
path_from_url: function(url) {
|
134
|
+
var map = this.get('map'),
|
135
|
+
children = map.children,
|
136
|
+
path = [], i, ii,
|
137
|
+
parts = url.split('/').slice(1), position = 0;
|
138
|
+
// add root to path
|
139
|
+
path.push({selected:0, pages:[ map ], root:true});;
|
140
|
+
while (position < parts.length) {
|
141
|
+
for (i = 0, ii = children.length; i < ii; i++) {
|
142
|
+
var child = children[i], slug = child.url.split('/').slice(-1)[0];
|
143
|
+
if (slug === parts[position]) {
|
144
|
+
path.push({selected:i, pages: children});
|
145
|
+
children = child.children;
|
146
|
+
break;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
position += 1;
|
150
|
+
}
|
151
|
+
return path;
|
152
|
+
}
|
153
|
+
});
|
154
|
+
return Location;
|
155
|
+
})(jQuery, Spontaneous);
|
156
|
+
|
157
|
+
|
@@ -0,0 +1,53 @@
|
|
1
|
+
(function($) {
|
2
|
+
$(function() {
|
3
|
+
$('#login form input').focus(function() {
|
4
|
+
var $this = $(this);
|
5
|
+
$('span', $this.parent()).addClass('faded');
|
6
|
+
}).blur(function() {
|
7
|
+
var $this = $(this);
|
8
|
+
if ($this.val() === '') {
|
9
|
+
$('span', $this.parent()).removeClass('faded').show();
|
10
|
+
}
|
11
|
+
}).keydown(function() {
|
12
|
+
var $this = $(this);
|
13
|
+
$('span', $this.parent()).hide();
|
14
|
+
}).keyup(function() {
|
15
|
+
var $this = $(this);
|
16
|
+
if ($this.val() === '') {
|
17
|
+
$('span', $this.parent()).show();
|
18
|
+
} else {
|
19
|
+
$('span', $this.parent()).hide();
|
20
|
+
}
|
21
|
+
}).each(function() {
|
22
|
+
var $this = $(this);
|
23
|
+
if ($this.val() !== '') {
|
24
|
+
$('span', $this.parent()).hide();
|
25
|
+
}
|
26
|
+
});
|
27
|
+
$('#login form').submit(function() {
|
28
|
+
var $this = $(this);
|
29
|
+
$.ajax({
|
30
|
+
url: $this.attr('action'),
|
31
|
+
type: "POST",
|
32
|
+
data:$this.serialize(),
|
33
|
+
success: function(data) {
|
34
|
+
if (data.key) {
|
35
|
+
Spontaneous.Auth.Key.save(Spontaneous.site_id, data.key);
|
36
|
+
window.location.href = data.redirect;
|
37
|
+
}
|
38
|
+
},
|
39
|
+
error: function() {
|
40
|
+
$('#failure-message').fadeOut(function() {
|
41
|
+
$('#failed-name').text($('#user-login').val());
|
42
|
+
$(this).fadeIn();
|
43
|
+
});
|
44
|
+
$("#error-message:hidden").slideDown(200);
|
45
|
+
},
|
46
|
+
dataType: 'json'
|
47
|
+
});
|
48
|
+
return false;
|
49
|
+
});
|
50
|
+
|
51
|
+
$('#login form input#user-login').focus();
|
52
|
+
});
|
53
|
+
}(jQuery));
|