spontaneous 0.2.0.beta1 → 0.2.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.locat +42 -0
- data/.travis/gemfiles/Gemfile.empty +7 -0
- data/.travis.yml +18 -0
- data/Gemfile +12 -8
- data/LICENSE +1 -1
- data/Rakefile +15 -157
- data/Readme.markdown +1 -1
- data/application/css/core.css.scss +22 -146
- data/application/css/definitions.css.scss +7 -3
- data/application/css/dialogue.css.scss +26 -1
- data/application/css/editing.css.scss +70 -28
- data/application/css/font.css.scss +1 -1
- data/application/css/popover.css.scss +2 -0
- data/application/css/top.css.scss +231 -0
- data/application/js/add_alias_dialogue.js +1 -1
- data/application/js/add_home_dialogue.js +1 -1
- data/application/js/ajax.js +61 -31
- data/application/js/box.js +4 -4
- data/application/js/conflicted_field_dialogue.js +1 -1
- data/application/js/content.js +5 -5
- data/application/js/dom.js +5 -0
- data/application/js/edit_panel.js +1 -0
- data/application/js/editing.js +1 -1
- data/application/js/extensions.js +8 -0
- data/application/js/field/boolean.js +31 -0
- data/application/js/field/file.js +32 -4
- data/application/js/field/image.js +24 -9
- data/application/js/field/markdown.js +87 -59
- data/application/js/field/select.js +1 -1
- data/application/js/field/webvideo.js +6 -1
- data/application/js/init.js +2 -2
- data/application/js/jquery-selection-position.js +130 -0
- data/application/js/location.js +4 -25
- data/application/js/meta_view/user_admin.js +2 -2
- data/application/js/metadata.js +2 -2
- data/application/js/page_browser.js +1 -1
- data/application/js/panel/root_menu.js +0 -1
- data/application/js/popover.js +27 -12
- data/application/js/popover_view.js +20 -4
- data/application/js/preview.js +31 -16
- data/application/js/progress.js +22 -21
- data/application/js/publish.js +18 -7
- data/application/js/sharded_upload.js +9 -6
- data/application/js/spontaneous.js +3 -1
- data/application/js/top_bar.js +264 -173
- data/application/js/upload.js +12 -5
- data/application/js/upload_manager.js +4 -3
- data/application/js/user.js +1 -2
- data/application/js/views/box_view.js +1 -1
- data/application/js/views/page_view.js +16 -5
- data/application/js/views/piece_view.js +5 -4
- data/application/static/font/fontawesome-webfont-1c66a4738b40ef0f6b1abca0ba9a796d.ttf +0 -0
- data/application/views/index.erb +6 -14
- data/application/views/login.erb +6 -25
- data/application/views/schema_modification_error.html.erb +3 -7
- data/db/migrations/20130114120000_create_revision_tables.rb +2 -2
- data/db/migrations/20130813111009_increase_path_length.rb +14 -0
- data/gem-public_cert.pem +20 -0
- data/lib/spontaneous/asset/app_compiler.rb +44 -0
- data/lib/spontaneous/asset/environment.rb +225 -0
- data/lib/spontaneous/asset.rb +2 -67
- data/lib/spontaneous/box.rb +0 -1
- data/lib/spontaneous/capistrano/deploy.rb +2 -2
- data/lib/spontaneous/capistrano/sync.rb +1 -1
- data/lib/spontaneous/cli/init.rb +36 -13
- data/lib/spontaneous/cli/server.rb +0 -1
- data/lib/spontaneous/cli/site.rb +2 -1
- data/lib/spontaneous/cli.rb +3 -1
- data/lib/spontaneous/collections/entry_set.rb +4 -12
- data/lib/spontaneous/collections/hash_with_fallback.rb +20 -0
- data/lib/spontaneous/collections/prototype_set.rb +6 -5
- data/lib/spontaneous/crypt.rb +2 -2
- data/lib/spontaneous/data_mapper/content_model/associations.rb +115 -63
- data/lib/spontaneous/data_mapper.rb +1 -1
- data/lib/spontaneous/errors.rb +6 -0
- data/lib/spontaneous/extensions/object_space.rb +6 -0
- data/lib/spontaneous/facet.rb +1 -0
- data/lib/spontaneous/field/base.rb +86 -13
- data/lib/spontaneous/field/boolean.rb +65 -0
- data/lib/spontaneous/field/file.rb +17 -6
- data/lib/spontaneous/field/html.rb +13 -0
- data/lib/spontaneous/field/image/size.rb +76 -0
- data/lib/spontaneous/field/image.rb +99 -414
- data/lib/spontaneous/field/tags.rb +36 -0
- data/lib/spontaneous/field/update.rb +1 -1
- data/lib/spontaneous/field/webvideo/fallback.rb +41 -0
- data/lib/spontaneous/field/webvideo/vimeo.rb +113 -0
- data/lib/spontaneous/field/webvideo/vine.rb +94 -0
- data/lib/spontaneous/field/webvideo/youtube.rb +133 -0
- data/lib/spontaneous/field/webvideo.rb +100 -250
- data/lib/spontaneous/field.rb +1 -1
- data/lib/spontaneous/generators/site/Gemfile.tt +5 -14
- data/lib/spontaneous/generators/site/assets/README.md +20 -0
- data/lib/spontaneous/generators/site/assets/css/site.scss +8 -0
- data/lib/spontaneous/generators/site/assets/js/site.js +6 -0
- data/lib/spontaneous/generators/site/config/deploy.rb.tt +9 -0
- data/lib/spontaneous/generators/site/config/user_levels.yml +14 -3
- data/lib/spontaneous/generators/site/public/README.md +12 -0
- data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +2 -2
- data/lib/spontaneous/generators/site.rb +77 -35
- data/lib/spontaneous/layout.rb +6 -7
- data/lib/spontaneous/loader.rb +21 -13
- data/lib/spontaneous/media/file.rb +22 -9
- data/lib/spontaneous/media/image/attributes.rb +33 -0
- data/lib/spontaneous/media/image/format/gif.rb +4 -0
- data/lib/spontaneous/media/image/format/jpg.rb +17 -0
- data/lib/spontaneous/media/image/format/png.rb +4 -0
- data/lib/spontaneous/media/image/format/webp.rb +26 -0
- data/lib/spontaneous/media/image/format.rb +79 -0
- data/lib/spontaneous/media/image/optimizer.rb +69 -0
- data/lib/spontaneous/media/image/processor.rb +17 -0
- data/lib/spontaneous/media/image/renderable.rb +52 -0
- data/lib/spontaneous/media/image/skeptick.rb +70 -0
- data/lib/spontaneous/media/image.rb +50 -0
- data/lib/spontaneous/media/temp_file.rb +4 -0
- data/lib/spontaneous/media.rb +1 -0
- data/lib/spontaneous/model/core/aliases.rb +14 -8
- data/lib/spontaneous/model/core/boxes.rb +5 -2
- data/lib/spontaneous/model/core/entries.rb +4 -0
- data/lib/spontaneous/model/core/entry.rb +1 -0
- data/lib/spontaneous/model/core/fields.rb +5 -2
- data/lib/spontaneous/model/core/locks.rb +16 -0
- data/lib/spontaneous/model/core/media.rb +1 -15
- data/lib/spontaneous/model/core.rb +31 -1
- data/lib/spontaneous/model/page/controllers.rb +2 -2
- data/lib/spontaneous/model/page/formats.rb +1 -4
- data/lib/spontaneous/model/page/layouts.rb +6 -2
- data/lib/spontaneous/model/page/locks.rb +8 -2
- data/lib/spontaneous/model/page/page_tree.rb +2 -2
- data/lib/spontaneous/model/page/paths.rb +74 -9
- data/lib/spontaneous/model/page.rb +11 -3
- data/lib/spontaneous/model.rb +6 -6
- data/lib/spontaneous/output/context/render_cache.rb +23 -0
- data/lib/spontaneous/output/context.rb +56 -30
- data/lib/spontaneous/output/helpers/script_helper.rb +9 -53
- data/lib/spontaneous/output/helpers/stylesheet_helper.rb +8 -40
- data/lib/spontaneous/output/template/renderer.rb +17 -5
- data/lib/spontaneous/output.rb +0 -1
- data/lib/spontaneous/paths.rb +6 -2
- data/lib/spontaneous/permissions/access_key.rb +18 -0
- data/lib/spontaneous/permissions/user.rb +1 -1
- data/lib/spontaneous/permissions.rb +4 -1
- data/lib/spontaneous/plugins/application/state.rb +19 -12
- data/lib/spontaneous/prototypes/field_prototype.rb +14 -8
- data/lib/spontaneous/published_revision.rb +7 -0
- data/lib/spontaneous/publishing/immediate.rb +43 -34
- data/lib/spontaneous/publishing/revision.rb +9 -6
- data/lib/spontaneous/rack/asset_server.rb +20 -0
- data/lib/spontaneous/rack/back/alias.rb +46 -0
- data/lib/spontaneous/rack/back/application_assets.rb +28 -0
- data/lib/spontaneous/rack/back/base.rb +34 -0
- data/lib/spontaneous/rack/back/changes.rb +19 -0
- data/lib/spontaneous/rack/back/content.rb +54 -0
- data/lib/spontaneous/rack/back/events.rb +38 -0
- data/lib/spontaneous/rack/back/field.rb +37 -0
- data/lib/spontaneous/rack/back/file.rb +118 -0
- data/lib/spontaneous/rack/back/helpers.rb +71 -0
- data/lib/spontaneous/rack/back/index.rb +16 -0
- data/lib/spontaneous/rack/back/login.rb +47 -0
- data/lib/spontaneous/rack/back/map.rb +24 -0
- data/lib/spontaneous/rack/back/page.rb +46 -0
- data/lib/spontaneous/rack/back/preview.rb +43 -0
- data/lib/spontaneous/rack/back/schema.rb +30 -0
- data/lib/spontaneous/rack/back/site.rb +25 -0
- data/lib/spontaneous/rack/back/site_assets.rb +13 -0
- data/lib/spontaneous/rack/back/unsupported_browser.rb +7 -0
- data/lib/spontaneous/rack/{user_admin.rb → back/user_admin.rb} +2 -5
- data/lib/spontaneous/rack/back.rb +85 -764
- data/lib/spontaneous/rack/cacheable_file.rb +3 -3
- data/lib/spontaneous/rack/front.rb +16 -9
- data/lib/spontaneous/rack/middleware/authenticate.rb +65 -0
- data/lib/spontaneous/rack/middleware/csrf.rb +66 -0
- data/lib/spontaneous/rack/middleware/reloader.rb +52 -0
- data/lib/spontaneous/rack/middleware/scope.rb +60 -0
- data/lib/spontaneous/rack/middleware.rb +6 -0
- data/lib/spontaneous/rack/page_controller.rb +18 -5
- data/lib/spontaneous/rack/public.rb +17 -11
- data/lib/spontaneous/rack.rb +34 -24
- data/lib/spontaneous/revision.rb +29 -2
- data/lib/spontaneous/schema/uid.rb +4 -3
- data/lib/spontaneous/schema/uid_map.rb +5 -24
- data/lib/spontaneous/schema.rb +1 -0
- data/lib/spontaneous/search/database.rb +8 -0
- data/lib/spontaneous/search/field.rb +1 -1
- data/lib/spontaneous/search/index.rb +3 -5
- data/lib/spontaneous/server.rb +1 -1
- data/lib/spontaneous/simultaneous.rb +1 -1
- data/lib/spontaneous/site/features.rb +4 -5
- data/lib/spontaneous/site/helpers.rb +22 -5
- data/lib/spontaneous/site/instance.rb +2 -2
- data/lib/spontaneous/site/selectors.rb +22 -3
- data/lib/spontaneous/storage/cloud.rb +13 -9
- data/lib/spontaneous/storage/local.rb +11 -6
- data/lib/spontaneous/style.rb +40 -23
- data/lib/spontaneous/utils/database/mysql_dumper.rb +1 -1
- data/lib/spontaneous/utils/smush_it.rb +1 -1
- data/lib/spontaneous/version.rb +1 -1
- data/lib/spontaneous.rb +35 -33
- data/spontaneous.gemspec +53 -787
- data/test/experimental/test_crypt.rb +56 -56
- data/test/experimental/test_features.rb +16 -27
- data/test/fixtures/assets/public1/css/data.css.scss +3 -0
- data/test/fixtures/assets/public1/css/image1.css.scss +4 -0
- data/test/fixtures/assets/public1/css/import.css.scss +1 -0
- data/test/fixtures/assets/public1/css/urlhash.css.scss +3 -0
- data/test/fixtures/assets/public1/js/a.js +1 -1
- data/test/fixtures/assets/public1/js/all.js +4 -0
- data/test/fixtures/assets/public1/js/{m.coffee → m.js.coffee} +1 -0
- data/test/fixtures/assets/public1/x.js +1 -0
- data/test/fixtures/assets/public2/css/all.css +4 -0
- data/test/fixtures/assets/public2/css/missing.css.scss +3 -0
- data/test/fixtures/assets/public2/i/y.png +0 -0
- data/test/fixtures/assets/public2/js/b.js +1 -1
- data/test/fixtures/assets/public2/js/c.js +1 -1
- data/test/fixtures/images/size.extended.webp +0 -0
- data/test/fixtures/images/size.lossless.webp +0 -0
- data/test/fixtures/images/size.lossy.webp +0 -0
- data/test/fixtures/schema/before.yml +4 -4
- data/test/fixtures/schema/schema.yml +1 -1
- data/test/fixtures/templates/aliases/aaa.html.cut +0 -0
- data/test/fixtures/templates/extended/partial_with_renderer.html.cut +1 -0
- data/test/fixtures/templates/extended/with_includes_and_renderer.html.cut +2 -0
- data/test/functional/test_application.rb +108 -106
- data/test/functional/test_back.rb +924 -930
- data/test/functional/test_front.rb +285 -238
- data/test/functional/test_user_manager.rb +75 -100
- data/test/integration/test_installation.rb +1 -1
- data/test/support/matchers.rb +12 -0
- data/test/support/minitest.rb +121 -0
- data/test/support/rack.rb +45 -0
- data/test/support/test_start_finish.rb +103 -0
- data/test/test_helper.rb +21 -68
- data/test/test_integration_helper.rb +1 -3
- data/test/unit/test_alias.rb +432 -408
- data/test/unit/test_asset_bundler.rb +58 -58
- data/test/unit/test_assets.rb +485 -155
- data/test/unit/test_async.rb +16 -37
- data/test/unit/test_authentication.rb +425 -457
- data/test/unit/test_boxes.rb +191 -191
- data/test/unit/test_changesets.rb +244 -254
- data/test/unit/test_config.rb +128 -142
- data/test/unit/test_content.rb +313 -359
- data/test/unit/test_content_inheritance.rb +29 -30
- data/test/unit/test_datamapper.rb +1205 -1080
- data/test/unit/test_datamapper_content.rb +49 -51
- data/test/unit/test_extensions.rb +23 -23
- data/test/unit/test_fields.rb +1488 -1180
- data/test/unit/test_formats.rb +158 -158
- data/test/unit/test_generators.rb +98 -40
- data/test/unit/test_helpers.rb +73 -76
- data/test/unit/test_image_size.rb +53 -22
- data/test/unit/test_images.rb +164 -165
- data/test/unit/test_layouts.rb +133 -122
- data/test/unit/test_logger.rb +14 -17
- data/test/unit/test_media.rb +69 -84
- data/test/unit/test_modifications.rb +513 -525
- data/test/unit/test_page.rb +462 -361
- data/test/unit/test_permissions.rb +379 -364
- data/test/unit/test_piece.rb +67 -75
- data/test/unit/test_plugins.rb +82 -89
- data/test/unit/test_prototype_set.rb +215 -216
- data/test/unit/test_prototypes.rb +114 -124
- data/test/unit/test_publishing.rb +252 -289
- data/test/unit/test_render.rb +167 -115
- data/test/unit/test_revisions.rb +436 -444
- data/test/unit/test_schema.rb +339 -309
- data/test/unit/test_search.rb +577 -574
- data/test/unit/test_serialisation.rb +136 -147
- data/test/unit/test_site.rb +252 -227
- data/test/unit/test_skeptick.rb +130 -0
- data/test/unit/test_storage.rb +46 -40
- data/test/unit/test_structure.rb +57 -66
- data/test/unit/test_styles.rb +104 -104
- data/test/unit/test_templates.rb +72 -57
- data/test/unit/test_type_hierarchy.rb +15 -16
- data/test/unit/test_visibility.rb +239 -257
- metadata +455 -326
- data/application/js/vendor/JS.Class-2.1.5/CHANGELOG +0 -283
- data/application/js/vendor/JS.Class-2.1.5/MIT-LICENSE +0 -30
- data/application/js/vendor/JS.Class-2.1.5/README +0 -30
- data/application/js/vendor/JS.Class-2.1.5/min/command.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/comparable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/constant_scope.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/decorator.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/enumerable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/forwardable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/hash.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/linked_list.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/loader.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/method_chain.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/observable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/package.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/proxy.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/ruby.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/set.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stack_trace.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/state.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stdlib.js +0 -16
- data/application/js/vendor/jquery-1.6.2.min.js +0 -18
- data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +0 -791
- data/application/js/vendor/jquery-ui-1.8.9.custom.min.js +0 -415
- data/application/static/font/fontawesome-webfont-5c5c21100a346972a82c34c5e96ffcfe.ttf +0 -0
- data/application/static/select-arrow-6e7dd3745b00e934b0d7a3250c46558b.png +0 -0
- data/bin/limit-upload +0 -5
- data/bin/unlimit-upload +0 -3
- data/lib/spontaneous/asset/file.rb +0 -25
- data/lib/spontaneous/asset/source.rb +0 -28
- data/lib/spontaneous/image_size.rb +0 -123
- data/lib/spontaneous/output/assets/compression.rb +0 -58
- data/lib/spontaneous/output/assets.rb +0 -32
- data/lib/spontaneous/rack/around_back.rb +0 -20
- data/lib/spontaneous/rack/around_front.rb +0 -27
- data/lib/spontaneous/rack/around_preview.rb +0 -22
- data/lib/spontaneous/rack/assets.rb +0 -126
- data/lib/spontaneous/rack/authentication.rb +0 -20
- data/lib/spontaneous/rack/cookie_authentication.rb +0 -38
- data/lib/spontaneous/rack/helpers.rb +0 -52
- data/lib/spontaneous/rack/http.rb +0 -18
- data/lib/spontaneous/rack/media.rb +0 -30
- data/lib/spontaneous/rack/query_authentication.rb +0 -35
- data/lib/spontaneous/rack/reloader.rb +0 -45
- data/lib/spontaneous/rack/user_helpers.rb +0 -28
- /data/{README → application/js/field/markdown/text_command.js} +0 -0
- /data/application/js/vendor/{JS.Class-2.1.5/min/core.js → js.class-2.1.5.min.js} +0 -0
- /data/test/fixtures/assets/public1/css/{a.scss → a.css.scss} +0 -0
- /data/{lib/spontaneous/generators/site/public/css/site.scss → test/fixtures/assets/public1/x.css} +0 -0
- /data/{lib/spontaneous/generators/site/public/js/.empty_directory → test/fixtures/assets/public1/x.png} +0 -0
- /data/test/fixtures/assets/public2/css/{b.scss → b.css.scss} +0 -0
- /data/test/fixtures/assets/public2/js/{n.coffee → n.js.coffee} +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_include.scss +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_template.scss +0 -0
- /data/test/fixtures/back/{public → assets}/js/coffeescript.coffee +0 -0
- /data/{lib/spontaneous/generators/site/public/js/site.js → test/fixtures/templates/aliases/aa_alias.html.cut} +0 -0
data/application/js/popover.js
CHANGED
@@ -13,7 +13,7 @@ Spontaneous.Popover = (function($, S) {
|
|
13
13
|
},
|
14
14
|
open: function(event) {
|
15
15
|
var view = this.view;
|
16
|
-
var location =
|
16
|
+
var location = view.attach_to();
|
17
17
|
var wrapper = dom.div('.pop-over');
|
18
18
|
var handle = dom.div('.menuHandle');
|
19
19
|
var header = dom.header();//.append(back_btn).append(title);
|
@@ -26,34 +26,49 @@ Spontaneous.Popover = (function($, S) {
|
|
26
26
|
var back_btn = dom.a('.button.back').append(dom.span('.pointer')).append(dom.span('.label').text("Back")).css('visibility', 'hidden');
|
27
27
|
header.append(back_btn);
|
28
28
|
}
|
29
|
+
var target = event.currentTarget;
|
30
|
+
this.set_position(target, wrapper, handle);
|
31
|
+
|
29
32
|
header.append(title);
|
33
|
+
|
30
34
|
if (view.close_text()) {
|
31
35
|
var close_btn = dom.a('.button.close').text(view.close_text()).click(this.close.bind(this));
|
32
36
|
header.append(close_btn);
|
33
37
|
}
|
34
38
|
wrapper.append(handle).append(header).append(view_wrapper);
|
35
|
-
var o = view.position_from_event(event), handle_width = 30, offset = 10, left = -30, top = 18;
|
36
|
-
|
37
|
-
if (view.align === 'right') {
|
38
|
-
handle.css('left', (view.width() - (offset + handle_width)) + 'px')
|
39
|
-
left = -(view.width() - (offset + handle_width/2) + 8);
|
40
|
-
}
|
41
|
-
// need to subtract the height of the top-bar because the
|
42
|
-
// popover is positioned absolutely inside the data-pane but
|
43
|
-
// given coordinates relative to the body
|
44
|
-
top -= 37 - Popover.div().scrollTop();
|
45
|
-
wrapper.offset({top:(o.top+top), left:(o.left + left)});
|
46
39
|
wrapper.hide();
|
47
40
|
location.append(wrapper);
|
41
|
+
|
42
|
+
var update_position = function(e) {
|
43
|
+
this.set_position(target, wrapper, handle);
|
44
|
+
}.bind(this);
|
45
|
+
|
46
|
+
if (view.scroll) {
|
47
|
+
view.scroll_element().bind("scroll.popover", update_position);
|
48
|
+
}
|
48
49
|
this.wrapper = wrapper;
|
49
50
|
this.is_open = true;
|
50
51
|
wrapper.fadeIn(200, this.after_open.bind(this));
|
51
52
|
},
|
52
53
|
|
54
|
+
set_position: function(target, wrapper, handle) {
|
55
|
+
var view = this.view, o = view.position_from_event(target), handle_width = 30, offset = 10, left = -30, top = 18;
|
56
|
+
|
57
|
+
if (view.align === 'right') {
|
58
|
+
handle.css('left', (view.width() - (offset + handle_width)) + 'px')
|
59
|
+
left = -(view.width() - (offset + handle_width/2) + 8);
|
60
|
+
}
|
61
|
+
wrapper.css({top:(o.top), left:(o.left + left)});
|
62
|
+
},
|
63
|
+
|
53
64
|
after_open: function() {
|
54
65
|
this.view.after_open();
|
55
66
|
},
|
56
67
|
close: function() {
|
68
|
+
var view = this.view;
|
69
|
+
if (view.scroll) {
|
70
|
+
view.scroll_element().unbind("scroll.popover");
|
71
|
+
}
|
57
72
|
Popover.close();
|
58
73
|
return false;
|
59
74
|
},
|
@@ -22,15 +22,23 @@ Spontaneous.PopoverView = (function($, S) {
|
|
22
22
|
width: function() {
|
23
23
|
return 400;
|
24
24
|
},
|
25
|
-
position_from_event: function(
|
26
|
-
|
25
|
+
position_from_event: function(target) {
|
26
|
+
var p = this.position_from_element(target);
|
27
|
+
// need to subtract the height of the top-bar because the
|
28
|
+
// popover is positioned absolutely inside the data-pane but
|
29
|
+
// given coordinates relative to the body
|
30
|
+
p.top = p.top + 18 - 37 - this.attach_to().scrollTop();
|
31
|
+
return p;
|
27
32
|
},
|
28
|
-
position_from_element: function(
|
29
|
-
var t = $(
|
33
|
+
position_from_element: function(t) {
|
34
|
+
var t = $(t), o = this.element_position(t);
|
30
35
|
o.top += t.outerHeight();
|
31
36
|
o.left += t.outerWidth() / 2;
|
32
37
|
return o
|
33
38
|
},
|
39
|
+
element_position: function(el) {
|
40
|
+
return $(el).offset();
|
41
|
+
},
|
34
42
|
position_from_mouse: function(event) {
|
35
43
|
return {top: event.clientX, left: event.clientY};
|
36
44
|
},
|
@@ -47,6 +55,14 @@ Spontaneous.PopoverView = (function($, S) {
|
|
47
55
|
do_close: function() {
|
48
56
|
},
|
49
57
|
after_close: function() {
|
58
|
+
},
|
59
|
+
attach_to: function() {
|
60
|
+
return Spontaneous.Popover.div();
|
61
|
+
},
|
62
|
+
// Should the popover scroll with the document?
|
63
|
+
scroll: false,
|
64
|
+
scroll_element: function() {
|
65
|
+
return S.ContentArea.inner;
|
50
66
|
}
|
51
67
|
});
|
52
68
|
return PopoverView;
|
data/application/js/preview.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// console.log('Loading Preview...');
|
2
2
|
|
3
|
-
Spontaneous.Preview = (function($, S) {
|
3
|
+
Spontaneous.Preview = (function($, S, $window) {
|
4
4
|
var dom = S.Dom, goto_id = 0;
|
5
5
|
var click_param = function() {
|
6
6
|
return "?__click="+(++goto_id);
|
@@ -22,21 +22,31 @@ Spontaneous.Preview = (function($, S) {
|
|
22
22
|
return this;
|
23
23
|
},
|
24
24
|
display: function(page) {
|
25
|
-
|
26
25
|
// HACK: must be a better way of making sure that updates to the path are
|
27
|
-
// propagated throughout
|
26
|
+
// propagated throughout entire interface
|
28
27
|
var path = S.Location.get('path');
|
29
|
-
this.iframe
|
30
|
-
|
31
|
-
var
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
28
|
+
var preview = this, $iframe = this.iframe, iframe = $iframe[0];
|
29
|
+
var location, monitorInterval = 200, monitor = function() {
|
30
|
+
var icw = iframe.contentWindow, currentLocation = icw.location.pathname;
|
31
|
+
if (currentLocation !== location) {
|
32
|
+
location = currentLocation;
|
33
|
+
S.Preview.set({
|
34
|
+
'title': iframe.contentWindow.document.title,
|
35
|
+
'path': iframe.contentWindow.location.pathname
|
36
|
+
});
|
37
|
+
$(icw).bind('unload', function(e) {
|
38
|
+
// trigger a progress indicator here
|
39
|
+
});
|
40
|
+
S.Location.load_path(iframe.contentWindow.location.pathname);
|
41
|
+
}
|
42
|
+
};
|
43
|
+
|
44
|
+
$iframe.hide();
|
45
|
+
$iframe.one("load", function() {
|
46
|
+
$iframe.show();
|
47
|
+
if (!preview.previewPathMonitor) {
|
48
|
+
preview.previewPathMonitor = $window.setInterval(monitor, monitorInterval);
|
49
|
+
}
|
40
50
|
});
|
41
51
|
this.goto_path(path);
|
42
52
|
},
|
@@ -53,11 +63,16 @@ Spontaneous.Preview = (function($, S) {
|
|
53
63
|
}
|
54
64
|
},
|
55
65
|
hide: function() {
|
56
|
-
this
|
66
|
+
var preview = this;
|
67
|
+
preview.iframe.unbind('load.preview').hide();
|
68
|
+
if (preview.previewPathMonitor) {
|
69
|
+
$window.clearInterval(preview.previewPathMonitor);
|
70
|
+
preview.previewPathMonitor = null;
|
71
|
+
}
|
57
72
|
},
|
58
73
|
show: function() {
|
59
74
|
this.iframe.show();
|
60
75
|
}
|
61
76
|
});
|
62
77
|
return Preview;
|
63
|
-
})(jQuery, Spontaneous);
|
78
|
+
})(jQuery, Spontaneous, window);
|
data/application/js/progress.js
CHANGED
@@ -15,15 +15,15 @@ Spontaneous.Progress = (function($, S) {
|
|
15
15
|
segment_width: 0.6, // spinner bar thickness. 1 means inner edges form unbroken circle
|
16
16
|
trail_length: 1.1, // trail length of 1 means shaded bars go all the way around
|
17
17
|
rounded: true,
|
18
|
-
shaded: false
|
19
|
-
}
|
18
|
+
shaded: false
|
19
|
+
};
|
20
20
|
if (typeof options == 'undefined') options = {};
|
21
21
|
var settings = {};
|
22
|
-
for (k in defaults) {
|
22
|
+
for (var k in defaults) {
|
23
23
|
settings[k] = defaults[k];
|
24
24
|
}
|
25
25
|
|
26
|
-
for (k in options) {
|
26
|
+
for (var k in options) {
|
27
27
|
settings[k] = options[k];
|
28
28
|
}
|
29
29
|
return {
|
@@ -125,6 +125,7 @@ Spontaneous.Progress = (function($, S) {
|
|
125
125
|
ctx.closePath();
|
126
126
|
ctx.fillStyle = colour; // color
|
127
127
|
ctx.fill();
|
128
|
+
return this;
|
128
129
|
},
|
129
130
|
|
130
131
|
_redraw: function() {
|
@@ -140,16 +141,16 @@ Spontaneous.Progress = (function($, S) {
|
|
140
141
|
var __spinner = this;
|
141
142
|
var __spinning = function() {
|
142
143
|
__spinner._update_indeterminate();
|
143
|
-
}
|
144
|
+
};
|
144
145
|
this._draw_indeterminate();
|
145
146
|
|
146
147
|
this._indeterminate_interval = setInterval(__spinning, parseFloat(this.options.period) / this.options.segments);
|
147
148
|
},
|
148
|
-
spin: function() {this.indeterminate()},
|
149
|
-
start: function() {this.indeterminate()},
|
149
|
+
spin: function() { this.indeterminate(); },
|
150
|
+
start: function() { this.indeterminate(); },
|
150
151
|
|
151
152
|
_spin_angle: 0,
|
152
|
-
_spin_increment: function() { return 2 / this.options.segments },
|
153
|
+
_spin_increment: function() { return 2 / this.options.segments; },
|
153
154
|
|
154
155
|
_update_indeterminate: function() {
|
155
156
|
if (!this._indeterminate) {
|
@@ -182,9 +183,9 @@ Spontaneous.Progress = (function($, S) {
|
|
182
183
|
ctx.beginPath();
|
183
184
|
|
184
185
|
if (this.options.rounded) {
|
185
|
-
this._draw_rounded(ctx, center, r1, r2, a, p)
|
186
|
+
this._draw_rounded(ctx, center, r1, r2, a, p);
|
186
187
|
} else {
|
187
|
-
this._draw_square(ctx, center, r1, r2, a, p)
|
188
|
+
this._draw_square(ctx, center, r1, r2, a, p);
|
188
189
|
}
|
189
190
|
ctx.closePath();
|
190
191
|
ctx.fillStyle = this._fill(ctx, i);
|
@@ -226,10 +227,10 @@ Spontaneous.Progress = (function($, S) {
|
|
226
227
|
var x0 = c + r1 * sin;
|
227
228
|
var y0 = c + r1 * cos;
|
228
229
|
|
229
|
-
var x1 = c + r1 * sin + dx
|
230
|
+
var x1 = c + r1 * sin + dx;
|
230
231
|
var y1 = c + r1 * cos - dy;
|
231
232
|
|
232
|
-
var x2 = c + r2 * sin + dx
|
233
|
+
var x2 = c + r2 * sin + dx;
|
233
234
|
var y2 = c + r2 * cos - dy;
|
234
235
|
|
235
236
|
var x3 = c + r2 * sin - dx;
|
@@ -287,18 +288,18 @@ Spontaneous.Progress = (function($, S) {
|
|
287
288
|
}
|
288
289
|
css_colour = css_colour.replace(/ /g,'');
|
289
290
|
css_colour = css_colour.toLowerCase();
|
290
|
-
var hex = [];
|
291
|
+
var i, hex = [];
|
291
292
|
if (css_colour.length == 3) {
|
292
|
-
for (
|
293
|
+
for (i = 0; i < 3; i++) {
|
293
294
|
hex[hex.length] = css_colour.charAt(i) + css_colour.charAt(i);
|
294
295
|
}
|
295
296
|
} else {
|
296
|
-
for (
|
297
|
+
for (i = 0; i < 3; i++) {
|
297
298
|
hex[hex.length] = css_colour.substr(i*2, 2);
|
298
299
|
}
|
299
300
|
}
|
300
301
|
var rgb = [];
|
301
|
-
for (
|
302
|
+
for (i = 0; i < hex.length; i++) {
|
302
303
|
rgb[i] = parseInt(hex[i], 16);
|
303
304
|
}
|
304
305
|
return rgb;
|
@@ -336,7 +337,7 @@ Spontaneous.Progress = (function($, S) {
|
|
336
337
|
var now = (new Date()).valueOf(), remaining = (finish_time - now)/duration;
|
337
338
|
disappearing.options.spinner_alpha = orig_alpha * remaining;
|
338
339
|
}
|
339
|
-
}
|
340
|
+
};
|
340
341
|
|
341
342
|
this._disappear_interval = setInterval(disappear, 50);
|
342
343
|
},
|
@@ -349,10 +350,10 @@ Spontaneous.Progress = (function($, S) {
|
|
349
350
|
this.stop();
|
350
351
|
this.indeterminate();
|
351
352
|
} else {
|
352
|
-
this._redraw()
|
353
|
+
this._redraw();
|
353
354
|
}
|
354
355
|
}
|
355
|
-
}
|
356
|
-
}
|
356
|
+
};
|
357
|
+
};
|
357
358
|
return Progress;
|
358
|
-
})(jQuery, Spontaneous);
|
359
|
+
})(jQuery, Spontaneous);
|
data/application/js/publish.js
CHANGED
@@ -37,8 +37,15 @@ Spontaneous.Publishing = (function($, S) {
|
|
37
37
|
},
|
38
38
|
body: function() {
|
39
39
|
var wrapper = dom.div('#publishing-dialogue');
|
40
|
+
var spinner = dom.div(".spinner");
|
41
|
+
wrapper.append(spinner);
|
42
|
+
|
43
|
+
this.spinnerWrap = spinner;
|
40
44
|
this.wrapper = wrapper;
|
41
|
-
|
45
|
+
this.spinner = S.Progress(spinner[0], 48, {period: 800, segment_length: 0.30});
|
46
|
+
this.spinner.start()
|
47
|
+
spinner.append(dom.div().append(dom.p().text("Loading changes...")))
|
48
|
+
Spontaneous.Ajax.get('/changes', this.change_list_loaded.bind(this));
|
42
49
|
return wrapper;
|
43
50
|
},
|
44
51
|
buttons: function() {
|
@@ -52,7 +59,7 @@ Spontaneous.Publishing = (function($, S) {
|
|
52
59
|
ids = ids.concat(changes[i].page_ids());
|
53
60
|
}
|
54
61
|
if (ids.length > 0) {
|
55
|
-
Spontaneous.Ajax.post(
|
62
|
+
Spontaneous.Ajax.post('/changes', {'page_ids': ids}, this.publish_requested.bind(this));
|
56
63
|
} else {
|
57
64
|
}
|
58
65
|
},
|
@@ -67,15 +74,14 @@ Spontaneous.Publishing = (function($, S) {
|
|
67
74
|
var change_list = outstanding.changes
|
68
75
|
, w = this.wrapper
|
69
76
|
, self = this
|
70
|
-
, changed_wrap = dom.div("#changes.change-list")
|
71
|
-
, publish_wrap = dom.div("#to-publish.change-list")
|
77
|
+
, changed_wrap = dom.div("#changes.change-list").css("opacity", 0)
|
78
|
+
, publish_wrap = dom.div("#to-publish.change-list").css("opacity", 0)
|
72
79
|
, first_publish = outstanding.first_publish
|
80
|
+
, spinner = this.spinner
|
73
81
|
, append_to;
|
74
82
|
if (first_publish) {
|
75
83
|
w.addClass("first-publish");
|
76
84
|
}
|
77
|
-
w.empty();
|
78
|
-
w.append(changed_wrap, publish_wrap)
|
79
85
|
if (change_list.length === 0) {
|
80
86
|
var summary = dom.p('.publish-up-to-date').text("The site is up to date");
|
81
87
|
w.append(summary);
|
@@ -108,9 +114,14 @@ Spontaneous.Publishing = (function($, S) {
|
|
108
114
|
if (!first_publish) {
|
109
115
|
publish_entries.append(dom.div('.instructions').text('Add pages to publish from the list on the left'));
|
110
116
|
}
|
111
|
-
|
117
|
+
spinner.stop();
|
118
|
+
this.spinnerWrap.remove();
|
119
|
+
w.empty();
|
120
|
+
w.append(changed_wrap, publish_wrap)
|
121
|
+
changed_wrap.add(publish_wrap).animate({opacity: 1});
|
112
122
|
self.changed_entries = changed_entries;
|
113
123
|
self.publish_entries = publish_entries;
|
124
|
+
this.spinner = this.spinnerWrap = null;
|
114
125
|
}
|
115
126
|
},
|
116
127
|
set_publish_all: function(state) {
|
@@ -32,7 +32,7 @@ Spontaneous.ShardedUpload = (function($, S) {
|
|
32
32
|
this.failure_count = 0;
|
33
33
|
},
|
34
34
|
remote_path: function() {
|
35
|
-
return S.Ajax.request_url(['shard', this.hash].join('/')
|
35
|
+
return S.Ajax.request_url(['shard', this.hash].join('/'));
|
36
36
|
},
|
37
37
|
begin_upload: function() {
|
38
38
|
// test for existance of shard on server
|
@@ -57,10 +57,12 @@ Spontaneous.ShardedUpload = (function($, S) {
|
|
57
57
|
// create the form and post it using the calculated hash
|
58
58
|
// assigning the callbacks to myself.
|
59
59
|
|
60
|
-
var form = new FormData()
|
61
|
-
|
60
|
+
var form = new FormData()
|
61
|
+
, path = S.Ajax.request_url(['/shard', this.hash].join('/'));
|
62
62
|
form.append('file', this.blob);
|
63
|
-
var xhr =
|
63
|
+
var xhr = S.Ajax.authenticatedRequest();
|
64
|
+
var upload = xhr.upload;
|
65
|
+
|
64
66
|
xhr.open("POST", path, true);
|
65
67
|
upload.onprogress = this.onprogress.bind(this);
|
66
68
|
upload.onload = this.onload.bind(this);
|
@@ -141,11 +143,12 @@ Spontaneous.ShardedUpload = (function($, S) {
|
|
141
143
|
form.append('shards', this.hashes().join(','));
|
142
144
|
form.append('mime_type', this.mime_type());
|
143
145
|
form.append('filename', File.filename(this.file));
|
144
|
-
this.
|
146
|
+
this.request(this.method, this.path(), form);
|
145
147
|
},
|
146
148
|
path: function() {
|
147
|
-
return ["/shard
|
149
|
+
return ["/shard", this.target_id].join('/');
|
148
150
|
},
|
151
|
+
method: "PUT",
|
149
152
|
hashes: function() {
|
150
153
|
var hashes = [];
|
151
154
|
for (var i = 0, ii = this.completed.length; i < ii; i++) {
|
@@ -1,11 +1,12 @@
|
|
1
1
|
//= require compatibility
|
2
2
|
//= require vendor/jquery-ui-1.8.18.custom.min
|
3
|
-
//= require vendor/
|
3
|
+
//= require vendor/js.class-2.1.5.min
|
4
4
|
//= require vendor/crypto-2.3.0-crypto
|
5
5
|
//= require vendor/crypto-2.3.0-sha1
|
6
6
|
//= require vendor/diff_match_patch
|
7
7
|
//= require vendor/date
|
8
8
|
//= require extensions
|
9
|
+
//= require jquery-selection-position.js
|
9
10
|
//= require properties
|
10
11
|
//= require dom
|
11
12
|
//= require ajax
|
@@ -38,6 +39,7 @@
|
|
38
39
|
//= require field/date
|
39
40
|
//= require field/webvideo
|
40
41
|
//= require field/select
|
42
|
+
//= require field/boolean
|
41
43
|
//= require content_area
|
42
44
|
//= require preview
|
43
45
|
//= require editing
|