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
data/Gemfile
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
source :rubygems
|
2
|
+
|
3
|
+
|
4
|
+
gem 'rake', '~> 0.8.7'
|
5
|
+
gem 'activesupport', '~> 3.0.4'
|
6
|
+
gem 'home_run', '~> 1.0.0'
|
7
|
+
gem 'sequel', '~> 3.20'
|
8
|
+
gem 'yajl-ruby', '~> 0.7'
|
9
|
+
gem 'erubis', '~> 2.6'
|
10
|
+
gem 'tenjin', '~> 0.6.1'
|
11
|
+
gem 'sinatra', '~> 1.1.2'
|
12
|
+
gem 'rack', '~> 1.3.beta'
|
13
|
+
gem 'thin', '~> 1.2'
|
14
|
+
gem 'less', '~> 1.2'
|
15
|
+
gem 'sass', '~> 3.1.4'
|
16
|
+
gem 'stringex', '~> 1.1'
|
17
|
+
gem 'mini_magick', '~> 3.3'
|
18
|
+
gem 'fire_and_forget', '~> 0.3.2'
|
19
|
+
gem 'thor', '~> 0.14.6'
|
20
|
+
gem 'hwia', '~> 1.0.2'
|
21
|
+
gem 'base58', '~> 0.1.0'
|
22
|
+
# markdown
|
23
|
+
gem 'kramdown', '~> 0.13.3'
|
24
|
+
gem 'launchy', '~> 0.4.0'
|
25
|
+
gem 'shine', '~> 0.6'
|
26
|
+
#gem 'xapian-full', '~> 1.2.3'
|
27
|
+
|
28
|
+
group :development do
|
29
|
+
gem 'minitest', '~> 2.1.0'
|
30
|
+
gem 'mysql2', '~> 0.2'
|
31
|
+
# gem 'pg', '~> 0.9.0'
|
32
|
+
gem 'jeweler', '~> 1.5'
|
33
|
+
gem 'jnunemaker-matchy', '~> 0.4'
|
34
|
+
gem 'shoulda', :git => 'https://github.com/dasch/shoulda.git', :branch => 'minitest'
|
35
|
+
# gem 'mini_shoulda', '~> 0.3.0'
|
36
|
+
gem 'timecop', '~> 0.3'
|
37
|
+
gem 'mocha', '~> 0.9'
|
38
|
+
gem 'rack-test', '~> 0.5'
|
39
|
+
gem 'leftright', '~> 0.9'
|
40
|
+
gem 'stackdeck', '~> 0.2'
|
41
|
+
gem 'selenium-client', '~> 1.2.18', :platforms => [:mri_18]
|
42
|
+
# gem 'Selenium', '~> 1.1.14'
|
43
|
+
gem 'johnson', '2.0.0.pre3', :platforms => [:mri_18]
|
44
|
+
gem 'harmony', '~> 0.5', :platforms => [:mri_18]
|
45
|
+
gem 'ruby-debug', :platforms => [:mri_18]
|
46
|
+
gem 'reek'
|
47
|
+
gem 'locat', :path => '/Users/garry/Dropbox/Development/spontaneous3/locat'
|
48
|
+
end
|
49
|
+
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,146 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/dasch/shoulda.git
|
3
|
+
revision: 16984cacbbff26413f83f19ca2f5c7aa1326cd27
|
4
|
+
branch: minitest
|
5
|
+
specs:
|
6
|
+
shoulda (2.11.3)
|
7
|
+
|
8
|
+
PATH
|
9
|
+
remote: /Users/garry/Dropbox/Development/spontaneous3/locat
|
10
|
+
specs:
|
11
|
+
locat (0.1.1)
|
12
|
+
ansi
|
13
|
+
grit
|
14
|
+
|
15
|
+
GEM
|
16
|
+
remote: http://rubygems.org/
|
17
|
+
specs:
|
18
|
+
activesupport (3.0.7)
|
19
|
+
ansi (1.3.0)
|
20
|
+
base58 (0.1.0)
|
21
|
+
columnize (0.3.2)
|
22
|
+
configuration (1.2.0)
|
23
|
+
daemons (1.1.3)
|
24
|
+
diff-lcs (1.1.2)
|
25
|
+
envjs (0.3.7)
|
26
|
+
johnson (>= 2.0.0.pre3)
|
27
|
+
erubis (2.7.0)
|
28
|
+
eventmachine (0.12.10)
|
29
|
+
fire_and_forget (0.3.3)
|
30
|
+
git (1.2.5)
|
31
|
+
grit (2.4.1)
|
32
|
+
diff-lcs (~> 1.1)
|
33
|
+
mime-types (~> 1.15)
|
34
|
+
harmony (0.5.6)
|
35
|
+
envjs (= 0.3.7)
|
36
|
+
johnson (= 2.0.0.pre3)
|
37
|
+
home_run (1.0.2)
|
38
|
+
hwia (1.0.2)
|
39
|
+
jeweler (1.6.0)
|
40
|
+
bundler (~> 1.0.0)
|
41
|
+
git (>= 1.2.5)
|
42
|
+
rake
|
43
|
+
jnunemaker-matchy (0.4.0)
|
44
|
+
johnson (2.0.0.pre3)
|
45
|
+
stackdeck (~> 0.2)
|
46
|
+
kramdown (0.13.3)
|
47
|
+
launchy (0.4.0)
|
48
|
+
configuration (>= 0.0.5)
|
49
|
+
rake (>= 0.8.1)
|
50
|
+
leftright (0.9.1)
|
51
|
+
less (1.2.21)
|
52
|
+
mutter (>= 0.4.2)
|
53
|
+
treetop (>= 1.4.2)
|
54
|
+
linecache (0.43)
|
55
|
+
mime-types (1.16)
|
56
|
+
mini_magick (3.3)
|
57
|
+
subexec (~> 0.1.0)
|
58
|
+
minitest (2.1.0)
|
59
|
+
mocha (0.9.12)
|
60
|
+
multipart-post (1.1.3)
|
61
|
+
mutter (0.5.3)
|
62
|
+
mysql2 (0.3.2)
|
63
|
+
polyglot (0.3.1)
|
64
|
+
rack (1.3.0.beta2)
|
65
|
+
rack-test (0.6.0)
|
66
|
+
rack (>= 1.0)
|
67
|
+
rake (0.8.7)
|
68
|
+
reek (1.2.8)
|
69
|
+
ruby2ruby (~> 1.2)
|
70
|
+
ruby_parser (~> 2.0)
|
71
|
+
sexp_processor (~> 3.0)
|
72
|
+
ruby-debug (0.10.4)
|
73
|
+
columnize (>= 0.1)
|
74
|
+
ruby-debug-base (~> 0.10.4.0)
|
75
|
+
ruby-debug-base (0.10.4)
|
76
|
+
linecache (>= 0.3)
|
77
|
+
ruby2ruby (1.2.5)
|
78
|
+
ruby_parser (~> 2.0)
|
79
|
+
sexp_processor (~> 3.0)
|
80
|
+
ruby_parser (2.0.6)
|
81
|
+
sexp_processor (~> 3.0)
|
82
|
+
sass (3.1.4)
|
83
|
+
selenium-client (1.2.18)
|
84
|
+
sequel (3.24.1)
|
85
|
+
sexp_processor (3.0.5)
|
86
|
+
shine (0.6)
|
87
|
+
multipart-post (>= 1.0)
|
88
|
+
sinatra (1.1.4)
|
89
|
+
rack (~> 1.1)
|
90
|
+
tilt (< 2.0, >= 1.2.2)
|
91
|
+
stackdeck (0.2.0)
|
92
|
+
stringex (1.2.1)
|
93
|
+
subexec (0.1.0)
|
94
|
+
tenjin (0.6.1)
|
95
|
+
thin (1.2.11)
|
96
|
+
daemons (>= 1.0.9)
|
97
|
+
eventmachine (>= 0.12.6)
|
98
|
+
rack (>= 1.0.0)
|
99
|
+
thor (0.14.6)
|
100
|
+
tilt (1.3.1)
|
101
|
+
timecop (0.3.5)
|
102
|
+
treetop (1.4.9)
|
103
|
+
polyglot (>= 0.3.1)
|
104
|
+
yajl-ruby (0.8.2)
|
105
|
+
|
106
|
+
PLATFORMS
|
107
|
+
ruby
|
108
|
+
|
109
|
+
DEPENDENCIES
|
110
|
+
activesupport (~> 3.0.4)
|
111
|
+
base58 (~> 0.1.0)
|
112
|
+
erubis (~> 2.6)
|
113
|
+
fire_and_forget (~> 0.3.2)
|
114
|
+
harmony (~> 0.5)
|
115
|
+
home_run (~> 1.0.0)
|
116
|
+
hwia (~> 1.0.2)
|
117
|
+
jeweler (~> 1.5)
|
118
|
+
jnunemaker-matchy (~> 0.4)
|
119
|
+
johnson (= 2.0.0.pre3)
|
120
|
+
kramdown (~> 0.13.3)
|
121
|
+
launchy (~> 0.4.0)
|
122
|
+
leftright (~> 0.9)
|
123
|
+
less (~> 1.2)
|
124
|
+
locat!
|
125
|
+
mini_magick (~> 3.3)
|
126
|
+
minitest (~> 2.1.0)
|
127
|
+
mocha (~> 0.9)
|
128
|
+
mysql2 (~> 0.2)
|
129
|
+
rack (~> 1.3.beta)
|
130
|
+
rack-test (~> 0.5)
|
131
|
+
rake (~> 0.8.7)
|
132
|
+
reek
|
133
|
+
ruby-debug
|
134
|
+
sass (~> 3.1.4)
|
135
|
+
selenium-client (~> 1.2.18)
|
136
|
+
sequel (~> 3.20)
|
137
|
+
shine (~> 0.6)
|
138
|
+
shoulda!
|
139
|
+
sinatra (~> 1.1.2)
|
140
|
+
stackdeck (~> 0.2)
|
141
|
+
stringex (~> 1.1)
|
142
|
+
tenjin (~> 0.6.1)
|
143
|
+
thin (~> 1.2)
|
144
|
+
thor (~> 0.14.6)
|
145
|
+
timecop (~> 0.3)
|
146
|
+
yajl-ruby (~> 0.7)
|
data/LICENSE
ADDED
File without changes
|
data/README
ADDED
File without changes
|
data/Rakefile
ADDED
@@ -0,0 +1,284 @@
|
|
1
|
+
Encoding.default_internal = Encoding.default_external = Encoding::UTF_8 if defined?(Encoding)
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'rake'
|
5
|
+
require 'date'
|
6
|
+
|
7
|
+
#############################################################################
|
8
|
+
#
|
9
|
+
# Helper functions
|
10
|
+
#
|
11
|
+
#############################################################################
|
12
|
+
|
13
|
+
def name
|
14
|
+
"spontaneous"
|
15
|
+
end
|
16
|
+
|
17
|
+
def version
|
18
|
+
line = File.read("lib/#{name}/version.rb")[/^\s*VERSION\s*=\s*.*/]
|
19
|
+
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
|
20
|
+
end
|
21
|
+
|
22
|
+
def date
|
23
|
+
Date.today.to_s
|
24
|
+
end
|
25
|
+
|
26
|
+
def rubyforge_project
|
27
|
+
name
|
28
|
+
end
|
29
|
+
|
30
|
+
def gemspec_file
|
31
|
+
"#{name}.gemspec"
|
32
|
+
end
|
33
|
+
|
34
|
+
def gem_file
|
35
|
+
"#{name}-#{version}.gem"
|
36
|
+
end
|
37
|
+
|
38
|
+
def replace_header(head, header_name)
|
39
|
+
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
|
40
|
+
end
|
41
|
+
|
42
|
+
#############################################################################
|
43
|
+
#
|
44
|
+
# Standard tasks
|
45
|
+
#
|
46
|
+
#############################################################################
|
47
|
+
|
48
|
+
task :default => :test
|
49
|
+
|
50
|
+
require 'rake/testtask'
|
51
|
+
|
52
|
+
$test_glob = nil
|
53
|
+
if p = ARGV.index('-')
|
54
|
+
filenames = ARGV[(p+1)..-1]
|
55
|
+
ARGV.slice!((p)..-1)
|
56
|
+
$test_glob = filenames.map { |f| "test/**/test_#{f}.rb" }
|
57
|
+
end
|
58
|
+
|
59
|
+
Rake::TestTask.new(:test) do |test|
|
60
|
+
test.libs << 'test'
|
61
|
+
test.ruby_opts << '-rubygems'
|
62
|
+
test.pattern = $test_glob || 'test/{unit,slow,functional,experimental}/test_*.rb'
|
63
|
+
# test.pattern = $test_glob || 'test/**/test_*.rb'
|
64
|
+
test.verbose = false
|
65
|
+
end
|
66
|
+
|
67
|
+
namespace :test do
|
68
|
+
Rake::TestTask.new(:units) do |test|
|
69
|
+
test.libs << 'test'
|
70
|
+
test.ruby_opts << '-rubygems'
|
71
|
+
test.pattern = 'test/unit/**/test_*.rb'
|
72
|
+
test.verbose = true
|
73
|
+
end
|
74
|
+
|
75
|
+
Rake::TestTask.new(:slow) do |test|
|
76
|
+
test.libs << 'test'
|
77
|
+
test.ruby_opts << '-rubygems'
|
78
|
+
test.pattern = 'test/slow/**/test_*.rb'
|
79
|
+
test.verbose = true
|
80
|
+
end
|
81
|
+
|
82
|
+
Rake::TestTask.new(:functionals) do |test|
|
83
|
+
test.libs << 'test'
|
84
|
+
test.ruby_opts << '-rubygems'
|
85
|
+
test.pattern = 'test/functional/**/test_*.rb'
|
86
|
+
test.verbose = true
|
87
|
+
end
|
88
|
+
Rake::TestTask.new(:experimental) do |test|
|
89
|
+
test.libs << 'test'
|
90
|
+
test.ruby_opts << '-rubygems'
|
91
|
+
test.pattern = 'test/experimental/**/test_*.rb'
|
92
|
+
test.verbose = true
|
93
|
+
end
|
94
|
+
Rake::TestTask.new(:javascript) do |test|
|
95
|
+
test.libs << 'test'
|
96
|
+
test.ruby_opts << '-rubygems'
|
97
|
+
test.pattern = 'test/javascript/**/test_*.rb'
|
98
|
+
test.verbose = true
|
99
|
+
end
|
100
|
+
Rake::TestTask.new(:ui) do |test|
|
101
|
+
test.libs << 'test'
|
102
|
+
test.ruby_opts << '-rubygems'
|
103
|
+
test.pattern = 'test/ui/**/test_*.rb'
|
104
|
+
test.verbose = true
|
105
|
+
end
|
106
|
+
Rake::TestTask.new(:js) do |test|
|
107
|
+
test.libs << 'test'
|
108
|
+
test.ruby_opts << '-rubygems'
|
109
|
+
test.pattern = 'test/javascript/**/test_*.rb'
|
110
|
+
test.verbose = true
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
|
115
|
+
desc "Generate RCov test coverage and open in your browser"
|
116
|
+
task :coverage do
|
117
|
+
require 'rcov'
|
118
|
+
sh "rm -fr coverage"
|
119
|
+
sh "rcov test/test_*.rb"
|
120
|
+
sh "open coverage/index.html"
|
121
|
+
end
|
122
|
+
|
123
|
+
require 'rdoc/task'
|
124
|
+
Rake::RDocTask.new do |rdoc|
|
125
|
+
rdoc.rdoc_dir = 'rdoc'
|
126
|
+
rdoc.title = "#{name} #{version}"
|
127
|
+
rdoc.rdoc_files.include('README*')
|
128
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
129
|
+
end
|
130
|
+
|
131
|
+
desc "Open an irb session preloaded with this library"
|
132
|
+
task :console do
|
133
|
+
sh "irb -rubygems -r ./lib/#{name}.rb"
|
134
|
+
end
|
135
|
+
|
136
|
+
#############################################################################
|
137
|
+
#
|
138
|
+
# Custom tasks (add your own tasks here)
|
139
|
+
#
|
140
|
+
#############################################################################
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
#############################################################################
|
145
|
+
#
|
146
|
+
# Packaging tasks
|
147
|
+
#
|
148
|
+
#############################################################################
|
149
|
+
|
150
|
+
require 'tmpdir'
|
151
|
+
@project_dir = Dir.pwd
|
152
|
+
|
153
|
+
namespace :gem do
|
154
|
+
desc "Create tag v#{version} and build and push #{gem_file} to Rubygems"
|
155
|
+
task :release => :build do
|
156
|
+
Dir.chdir(@project_dir)
|
157
|
+
unless `git branch` =~ /^\* master$/
|
158
|
+
puts "You must be on the master branch to release!"
|
159
|
+
exit!
|
160
|
+
end
|
161
|
+
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
162
|
+
sh "git tag v#{version}"
|
163
|
+
sh "git push origin master"
|
164
|
+
sh "git push origin v#{version}"
|
165
|
+
sh "gem push #{@build_dir}/pkg/#{name}-#{version}.gem"
|
166
|
+
end
|
167
|
+
|
168
|
+
desc "Build #{gem_file} into the pkg directory"
|
169
|
+
task :build => :gemspec do
|
170
|
+
sh "mkdir -p pkg"
|
171
|
+
sh "gem build #{gemspec_file}"
|
172
|
+
sh "mv #{gem_file} pkg"
|
173
|
+
end
|
174
|
+
|
175
|
+
|
176
|
+
desc "Generate #{gemspec_file}"
|
177
|
+
task :gemspec => :validate do
|
178
|
+
# read spec file and split out manifest section
|
179
|
+
spec = File.read(gemspec_file)
|
180
|
+
head, manifest, tail = spec.split(" # = MANIFEST =\n")
|
181
|
+
|
182
|
+
# replace name version and date
|
183
|
+
replace_header(head, :name)
|
184
|
+
replace_header(head, :version)
|
185
|
+
replace_header(head, :date)
|
186
|
+
#comment this out if your rubyforge_project has a different name
|
187
|
+
replace_header(head, :rubyforge_project)
|
188
|
+
|
189
|
+
# determine file list from git ls-files
|
190
|
+
files = `git ls-files`.
|
191
|
+
split("\n").
|
192
|
+
reject { |file| file =~ /^\./ }.
|
193
|
+
reject { |file| file =~ /^(rdoc|pkg)/ }
|
194
|
+
compressed_assets = Dir["application/{css,js}/min/*.*"]
|
195
|
+
files = files.concat(compressed_assets).
|
196
|
+
sort.
|
197
|
+
map { |file| " #{file}" }.
|
198
|
+
join("\n")
|
199
|
+
|
200
|
+
# piece file back together and write
|
201
|
+
manifest = " s.files = %w[\n#{files}\n ]\n"
|
202
|
+
spec = [head, manifest, tail].join(" # = MANIFEST =\n")
|
203
|
+
File.open(gemspec_file, 'w') { |io| io.write(spec) }
|
204
|
+
puts "Updated #{gemspec_file}"
|
205
|
+
end
|
206
|
+
|
207
|
+
desc "Validate #{gemspec_file}"
|
208
|
+
task :validate => :generate do
|
209
|
+
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"]
|
210
|
+
unless libfiles.empty?
|
211
|
+
puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir."
|
212
|
+
# exit!
|
213
|
+
end
|
214
|
+
unless Dir['VERSION*'].empty?
|
215
|
+
puts "A `VERSION` file at root level violates Gem best practices."
|
216
|
+
# exit!
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
desc "Generate the gemspec file from a template"
|
221
|
+
task :generate => :assets do
|
222
|
+
template = File.read('spontaneous.gemspec.tmpl')
|
223
|
+
require 'bundler'
|
224
|
+
|
225
|
+
File.open('spontaneous.gemspec', 'w') do |gemspec|
|
226
|
+
bundler = Bundler.load
|
227
|
+
dependencies = bundler.dependencies_for(:default, :runtime).map do |dependency|
|
228
|
+
%{s.add_dependency('#{dependency.name}', [#{dependency.requirement.as_list.map { |d| d.inspect }.join(', ')}])}
|
229
|
+
end
|
230
|
+
development_dependencies = bundler.dependencies_for(:development).map do |dependency|
|
231
|
+
%{s.add_development_dependency('#{dependency.name}', [#{dependency.requirement.as_list.map { |d| d.inspect }.join(', ')}])}
|
232
|
+
end
|
233
|
+
gemspec.write(template % [dependencies.join("\n "), development_dependencies.join("\n ")])
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
desc "Bundle & compress assets"
|
238
|
+
task :assets => :setup do
|
239
|
+
app_dir = Spontaneous.application_dir
|
240
|
+
bundles = {}
|
241
|
+
[Spontaneous::Rack::Assets::JavaScript, Spontaneous::Rack::Assets::CSS].each do |mod|
|
242
|
+
mod.constants.map { |const| [const, mod.const_get(const)] }.each do |constant, files|
|
243
|
+
source, hash = mod.compress(files)
|
244
|
+
if source
|
245
|
+
source.force_encoding("UTF-8")
|
246
|
+
bundle_url = "min" / "#{hash}"
|
247
|
+
bundle_path = File.join(app_dir, mod.filetype, "#{bundle_url}.#{mod.filetype}")
|
248
|
+
FileUtils.mkdir_p(File.dirname(bundle_path))
|
249
|
+
File.open(bundle_path, 'w', :internal_encoding => Encoding::UTF_8, :external_encoding => Encoding::UTF_8) { |bundle| bundle.write(source) }
|
250
|
+
bundles[constant] = bundle_url
|
251
|
+
end
|
252
|
+
end
|
253
|
+
end
|
254
|
+
module_path = 'lib/spontaneous/rack/assets.rb'
|
255
|
+
module_src = File.read(module_path)
|
256
|
+
converted = []
|
257
|
+
module_src.lines.each do |line|
|
258
|
+
bundles.each do |constant, url|
|
259
|
+
line = "#{$1}%w(#{url})\n" if line =~ %r[^( *#{constant}\s*=\s*)(.+)$]
|
260
|
+
end
|
261
|
+
converted << line
|
262
|
+
end
|
263
|
+
File.open(module_path, 'w') { |file| file.write(converted.join) }
|
264
|
+
|
265
|
+
module_path = 'lib/spontaneous/version.rb'
|
266
|
+
module_src = File.read(module_path)
|
267
|
+
converted = []
|
268
|
+
module_src.lines.each do |line|
|
269
|
+
line = "#{$1}true\n" if line =~ /^(\s*GEM\s*=\s*)(.+)$/
|
270
|
+
converted << line
|
271
|
+
end
|
272
|
+
File.open(module_path, 'w') { |file| file.write(converted.join) }
|
273
|
+
end
|
274
|
+
|
275
|
+
task :setup do
|
276
|
+
@build_dir = Dir.tmpdir + "/spontaneous"
|
277
|
+
FileUtils.rm_r(@build_dir) if File.directory?(@build_dir)
|
278
|
+
FileUtils.mkdir_p(@build_dir)
|
279
|
+
FileUtils.cp_r(@project_dir+"/.", @build_dir)
|
280
|
+
Dir.chdir(@build_dir)
|
281
|
+
$:.unshift(@build_dir + "/lib")
|
282
|
+
require File.expand_path(@build_dir + '/lib/spontaneous')
|
283
|
+
end
|
284
|
+
end
|
data/Readme.markdown
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
![Spontaneous CMS](https://github.com/SpontaneousCMS/spontaneous/raw/master/application/static/logo-400px-transparent.png)
|
2
|
+
|
3
|
+
Spontaneous is a revolutionary new content management system that brings the best of Ruby and the best of HTML5 together in one elegant package.
|
4
|
+
|
5
|
+
This is version 2 of an existing (closed source) CMS that has been in active production use for over 6 years. For more information about that, and to see the sites that it powers, please go to [magnetised's homepage](http://magnetised.info/spontaneous).
|
6
|
+
|
7
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#add-alias-dialogue {
|
2
|
+
.instructions {
|
3
|
+
@extend .interface;
|
4
|
+
margin: 0;
|
5
|
+
background-color: #f2f2f2;
|
6
|
+
color: #666;
|
7
|
+
padding: $unit/2 $unit;
|
8
|
+
}
|
9
|
+
.type {
|
10
|
+
@include rounded;
|
11
|
+
@include display-box;
|
12
|
+
cursor: pointer;
|
13
|
+
padding: $unit/2 $unit;
|
14
|
+
background-color: #fbfbfb;
|
15
|
+
border: solid 1px #f2f2f2;
|
16
|
+
margin: $unit;
|
17
|
+
margin-bottom: 0;
|
18
|
+
&:hover {
|
19
|
+
background-color: #666;
|
20
|
+
color: #fff;
|
21
|
+
}
|
22
|
+
&.selected {
|
23
|
+
background-color: $action;
|
24
|
+
color: #fff;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|