spontaneous 0.2.0.alpha7 → 0.2.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +10 -4
- data/Readme.markdown +1 -1
- data/application/css/definitions.css.scss +5 -0
- data/application/css/dialogue.css.scss +62 -0
- data/application/js/content.js +1 -1
- data/application/js/dom.js +1 -1
- data/application/js/event_source.js +3 -0
- data/application/js/{field_types/date_field.js → field/date.js} +2 -2
- data/application/js/{field_types/file_field.js → field/file.js} +2 -2
- data/application/js/{field_types/image_field.js → field/image.js} +54 -20
- data/application/js/{field_types/long_string_field.js → field/long_string.js} +2 -2
- data/application/js/{field_types/markdown_field.js → field/markdown.js} +2 -2
- data/application/js/{field_types/select_field.js → field/select.js} +2 -2
- data/application/js/{field_types/string_field.js → field/string.js} +21 -7
- data/application/js/{field_types/webvideo_field.js → field/webvideo.js} +2 -2
- data/application/js/field.js +2 -2
- data/application/js/publish.js +99 -19
- data/application/js/spontaneous.js +8 -8
- data/application/js/top_bar.js +6 -4
- data/db/migrations/20130109125023_add_page_publish_lock.rb +17 -0
- data/db/migrations/20130111161934_convert_bcrypt_passwords.rb +22 -0
- data/db/migrations/20130114120000_create_revision_tables.rb +106 -0
- data/db/migrations/20130116220423_add_index_to_archive.rb +9 -0
- data/lib/spontaneous/box.rb +53 -18
- data/lib/spontaneous/box_style.rb +2 -3
- data/lib/spontaneous/change.rb +39 -13
- data/lib/spontaneous/cli/fields.rb +29 -0
- data/lib/spontaneous/cli/init.rb +2 -2
- data/lib/spontaneous/cli/migrate.rb +0 -1
- data/lib/spontaneous/cli/server.rb +14 -10
- data/lib/spontaneous/cli/site.rb +20 -9
- data/lib/spontaneous/cli.rb +8 -6
- data/lib/spontaneous/collections/box_set.rb +11 -0
- data/lib/spontaneous/collections/field_set.rb +24 -1
- data/lib/spontaneous/concern.rb +37 -0
- data/lib/spontaneous/config.rb +3 -4
- data/lib/spontaneous/crypt/version.rb +130 -0
- data/lib/spontaneous/crypt.rb +84 -0
- data/lib/spontaneous/data_mapper/content_model/associations.rb +199 -0
- data/lib/spontaneous/data_mapper/content_model/column_accessors.rb +52 -0
- data/lib/spontaneous/data_mapper/content_model/instance_hooks.rb +34 -0
- data/lib/spontaneous/data_mapper/content_model/serialization.rb +54 -0
- data/lib/spontaneous/data_mapper/content_model/timestamps.rb +39 -0
- data/lib/spontaneous/data_mapper/content_model.rb +343 -0
- data/lib/spontaneous/data_mapper/content_table.rb +103 -0
- data/lib/spontaneous/data_mapper/dataset.rb +194 -0
- data/lib/spontaneous/data_mapper/scope.rb +195 -0
- data/lib/spontaneous/data_mapper.rb +161 -0
- data/lib/spontaneous/facet.rb +2 -2
- data/lib/spontaneous/field/base.rb +418 -0
- data/lib/spontaneous/field/date.rb +54 -0
- data/lib/spontaneous/{field_version.rb → field/field_version.rb} +1 -1
- data/lib/spontaneous/field/file.rb +100 -0
- data/lib/spontaneous/{field_types/image_field.rb → field/image.rb} +33 -33
- data/lib/spontaneous/{field_types/location_field.rb → field/location.rb} +2 -2
- data/lib/spontaneous/{field_types/long_string_field.rb → field/long_string.rb} +3 -3
- data/lib/spontaneous/field/markdown.rb +36 -0
- data/lib/spontaneous/{field_types/select_field.rb → field/select.rb} +4 -5
- data/lib/spontaneous/field/string.rb +17 -0
- data/lib/spontaneous/field/update.rb +156 -0
- data/lib/spontaneous/field/webvideo.rb +310 -0
- data/lib/spontaneous/field.rb +80 -0
- data/lib/spontaneous/generators/site/Gemfile.tt +2 -2
- data/lib/spontaneous/generators/site/config/environments/development.rb.tt +1 -1
- data/lib/spontaneous/generators/site/config/environments/production.rb.tt +1 -1
- data/lib/spontaneous/generators/site/lib/content.rb.tt +6 -0
- data/lib/spontaneous/generators/site/schema/box.rb.tt +3 -2
- data/lib/spontaneous/generators/site/schema/page.rb.tt +3 -1
- data/lib/spontaneous/generators/site/schema/piece.rb.tt +3 -1
- data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +3 -1
- data/lib/spontaneous/generators/site.rb +4 -3
- data/lib/spontaneous/image_size.rb +8 -1
- data/lib/spontaneous/layout.rb +5 -1
- data/lib/spontaneous/loader.rb +2 -5
- data/lib/spontaneous/media/file.rb +11 -2
- data/lib/spontaneous/media/temp_file.rb +23 -0
- data/lib/spontaneous/media.rb +20 -39
- data/lib/spontaneous/{plugins → model/box}/allowed_types.rb +38 -17
- data/lib/spontaneous/model/box.rb +18 -0
- data/lib/spontaneous/{plugins → model/core}/aliases.rb +10 -14
- data/lib/spontaneous/{plugins → model/core}/boxes.rb +2 -2
- data/lib/spontaneous/{plugins → model/core}/content_groups.rb +2 -2
- data/lib/spontaneous/model/core/editor_class.rb +4 -0
- data/lib/spontaneous/{plugins → model/core}/entries.rb +19 -7
- data/lib/spontaneous/{plugins → model/core}/entry.rb +3 -3
- data/lib/spontaneous/{plugins → model/core}/fields.rb +38 -5
- data/lib/spontaneous/{plugins → model/core}/instance_code.rb +2 -2
- data/lib/spontaneous/{plugins → model/core}/media.rb +2 -12
- data/lib/spontaneous/{plugins → model/core}/modifications.rb +7 -6
- data/lib/spontaneous/model/core/page_search.rb +36 -0
- data/lib/spontaneous/{plugins → model/core}/permissions.rb +4 -4
- data/lib/spontaneous/{plugins → model/core}/prototypes.rb +4 -4
- data/lib/spontaneous/{plugins → model/core}/publishing.rb +93 -115
- data/lib/spontaneous/{plugins → model/core}/render.rb +2 -2
- data/lib/spontaneous/{plugins → model/core}/schema_hierarchy.rb +7 -11
- data/lib/spontaneous/model/core/schema_id.rb +65 -0
- data/lib/spontaneous/{plugins → model/core}/schema_title.rb +2 -2
- data/lib/spontaneous/{plugins → model/core}/serialisation.rb +2 -2
- data/lib/spontaneous/{plugins → model/core}/styles.rb +2 -2
- data/lib/spontaneous/{plugins → model/core}/supertype.rb +2 -2
- data/lib/spontaneous/{plugins → model/core}/visibility.rb +7 -48
- data/lib/spontaneous/model/core.rb +143 -0
- data/lib/spontaneous/{plugins → model/page}/controllers.rb +3 -3
- data/lib/spontaneous/{plugins → model}/page/formats.rb +2 -2
- data/lib/spontaneous/{plugins → model/page}/layouts.rb +2 -2
- data/lib/spontaneous/model/page/locks.rb +14 -0
- data/lib/spontaneous/{plugins → model/page}/page_tree.rb +3 -3
- data/lib/spontaneous/{plugins → model/page}/paths.rb +30 -12
- data/lib/spontaneous/{plugins → model}/page/request.rb +2 -2
- data/lib/spontaneous/{plugins → model/page}/site_map.rb +2 -2
- data/lib/spontaneous/model/page/site_timestamps.rb +44 -0
- data/lib/spontaneous/{page.rb → model/page.rb} +49 -28
- data/lib/spontaneous/{piece.rb → model/piece.rb} +7 -6
- data/lib/spontaneous/model.rb +97 -0
- data/lib/spontaneous/output/context.rb +1 -1
- data/lib/spontaneous/output/format.rb +4 -0
- data/lib/spontaneous/output/template/renderer.rb +2 -2
- data/lib/spontaneous/output.rb +2 -2
- data/lib/spontaneous/page_lock.rb +62 -0
- data/lib/spontaneous/page_piece.rb +1 -1
- data/lib/spontaneous/permissions/access_key.rb +9 -4
- data/lib/spontaneous/permissions/user.rb +19 -9
- data/lib/spontaneous/permissions.rb +2 -5
- data/lib/spontaneous/plugins/application/facets.rb +1 -2
- data/lib/spontaneous/plugins/application/features.rb +1 -1
- data/lib/spontaneous/plugins/application/paths.rb +1 -1
- data/lib/spontaneous/plugins/application/render.rb +1 -1
- data/lib/spontaneous/plugins/application/serialisation.rb +1 -1
- data/lib/spontaneous/plugins/application/state.rb +30 -1
- data/lib/spontaneous/plugins/application/system.rb +12 -12
- data/lib/spontaneous/prototypes/box_prototype.rb +1 -1
- data/lib/spontaneous/prototypes/field_prototype.rb +3 -6
- data/lib/spontaneous/prototypes/style_prototype.rb +1 -1
- data/lib/spontaneous/publishing/immediate.rb +77 -49
- data/lib/spontaneous/publishing/revision.rb +355 -0
- data/lib/spontaneous/publishing/simultaneous.rb +10 -49
- data/lib/spontaneous/publishing.rb +1 -0
- data/lib/spontaneous/rack/around_back.rb +1 -1
- data/lib/spontaneous/rack/around_front.rb +2 -4
- data/lib/spontaneous/rack/around_preview.rb +1 -1
- data/lib/spontaneous/rack/back.rb +80 -63
- data/lib/spontaneous/rack/cacheable_file.rb +2 -2
- data/lib/spontaneous/rack/cookie_authentication.rb +1 -1
- data/lib/spontaneous/rack/front.rb +1 -1
- data/lib/spontaneous/rack/helpers.rb +8 -9
- data/lib/spontaneous/{page_controller.rb → rack/page_controller.rb} +1 -1
- data/lib/spontaneous/rack/public.rb +3 -3
- data/lib/spontaneous/rack.rb +15 -15
- data/lib/spontaneous/schema/uid.rb +4 -1
- data/lib/spontaneous/schema.rb +57 -24
- data/lib/spontaneous/search/database.rb +12 -1
- data/lib/spontaneous/search/index.rb +34 -6
- data/lib/spontaneous/search/results.rb +1 -1
- data/lib/spontaneous/server.rb +3 -3
- data/lib/spontaneous/simultaneous.rb +53 -0
- data/lib/spontaneous/{plugins/site → site}/features.rb +2 -2
- data/lib/spontaneous/{plugins/site → site}/helpers.rb +2 -3
- data/lib/spontaneous/{plugins/site → site}/hooks.rb +2 -2
- data/lib/spontaneous/{plugins/site → site}/instance.rb +4 -6
- data/lib/spontaneous/{plugins/site → site}/level.rb +2 -2
- data/lib/spontaneous/{plugins/site → site}/map.rb +4 -4
- data/lib/spontaneous/{plugins/site → site}/paths.rb +2 -2
- data/lib/spontaneous/site/publishing.rb +89 -0
- data/lib/spontaneous/{plugins/site → site}/schema.rb +4 -4
- data/lib/spontaneous/{plugins/site → site}/search.rb +2 -2
- data/lib/spontaneous/{plugins/site → site}/selectors.rb +15 -7
- data/lib/spontaneous/{plugins/site → site}/state.rb +2 -2
- data/lib/spontaneous/{plugins/site → site}/storage.rb +2 -2
- data/lib/spontaneous/{plugins/site → site}/url.rb +2 -2
- data/lib/spontaneous/site.rb +31 -14
- data/lib/spontaneous/state.rb +5 -6
- data/lib/spontaneous/style.rb +3 -2
- data/lib/spontaneous/utils/database/mysql_dumper.rb +13 -0
- data/lib/spontaneous/utils/database/postgres_dumper.rb +5 -0
- data/lib/spontaneous/version.rb +1 -1
- data/lib/spontaneous.rb +34 -89
- data/spontaneous.gemspec +112 -114
- data/test/experimental/test_crypt.rb +158 -0
- data/test/experimental/test_features.rb +3 -3
- data/test/fixtures/example_application/config/environments/development.rb +1 -1
- data/test/fixtures/example_application/lib/content.rb +5 -0
- data/test/fixtures/example_application/schema/page.rb +2 -1
- data/test/fixtures/example_application/schema/piece.rb +3 -2
- data/test/fixtures/serialisation/class_hash.yaml.erb +5 -5
- data/test/fixtures/serialisation/root_hash.yaml.erb +8 -0
- data/test/functional/test_application.rb +12 -1
- data/test/functional/test_back.rb +80 -48
- data/test/functional/test_front.rb +39 -46
- data/test/functional/test_user_manager.rb +3 -9
- data/test/javascript/test_markdown.rb +2 -2
- data/test/test_helper.rb +78 -23
- data/test/unit/test_alias.rb +21 -15
- data/test/unit/test_asset_bundler.rb +3 -3
- data/test/unit/test_assets.rb +2 -2
- data/test/unit/test_async.rb +7 -6
- data/test/unit/test_authentication.rb +43 -37
- data/test/unit/test_boxes.rb +46 -21
- data/test/unit/test_changesets.rb +65 -20
- data/test/unit/test_config.rb +9 -9
- data/test/unit/test_content.rb +50 -51
- data/test/unit/test_content_inheritance.rb +6 -20
- data/test/unit/test_datamapper.rb +1330 -0
- data/test/unit/test_datamapper_content.rb +214 -0
- data/test/unit/test_fields.rb +543 -54
- data/test/unit/test_formats.rb +2 -3
- data/test/unit/test_generators.rb +6 -6
- data/test/unit/test_helpers.rb +1 -1
- data/test/unit/test_image_size.rb +10 -5
- data/test/unit/test_images.rb +17 -18
- data/test/unit/test_layouts.rb +18 -3
- data/test/unit/test_media.rb +74 -49
- data/test/unit/test_modifications.rb +43 -43
- data/test/unit/test_page.rb +7 -10
- data/test/unit/test_permissions.rb +3 -10
- data/test/unit/test_piece.rb +5 -6
- data/test/unit/test_plugins.rb +7 -14
- data/test/unit/test_prototypes.rb +3 -3
- data/test/unit/test_publishing.rb +49 -27
- data/test/unit/test_render.rb +46 -15
- data/test/unit/test_revisions.rb +124 -127
- data/test/unit/test_schema.rb +53 -58
- data/test/unit/test_search.rb +64 -16
- data/test/unit/test_serialisation.rb +4 -11
- data/test/unit/test_site.rb +11 -12
- data/test/unit/test_structure.rb +2 -5
- data/test/unit/test_styles.rb +22 -24
- data/test/unit/test_type_hierarchy.rb +7 -5
- data/test/unit/test_visibility.rb +79 -55
- metadata +128 -102
- data/lib/sequel/plugins/content_table_inheritance.rb +0 -203
- data/lib/sequel/plugins/scoped_table_name.rb +0 -54
- data/lib/spontaneous/content.rb +0 -129
- data/lib/spontaneous/field_types/date_field.rb +0 -56
- data/lib/spontaneous/field_types/field.rb +0 -302
- data/lib/spontaneous/field_types/file_field.rb +0 -68
- data/lib/spontaneous/field_types/markdown_field.rb +0 -38
- data/lib/spontaneous/field_types/string_field.rb +0 -19
- data/lib/spontaneous/field_types/webvideo_field.rb +0 -313
- data/lib/spontaneous/field_types.rb +0 -38
- data/lib/spontaneous/generators/site/lib/site.rb.tt +0 -4
- data/lib/spontaneous/plugins/field/editor_class.rb +0 -13
- data/lib/spontaneous/plugins/page/site_timestamps.rb +0 -28
- data/lib/spontaneous/plugins/page_search.rb +0 -63
- data/lib/spontaneous/plugins/schema_id.rb +0 -68
- data/lib/spontaneous/plugins/site/publishing.rb +0 -75
- data/lib/spontaneous/rack/fiber_pool.rb +0 -26
- data/test/unit/test_table_scoping.rb +0 -80
@@ -0,0 +1,158 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
require File.expand_path('../../test_helper', __FILE__)
|
4
|
+
require 'benchmark'
|
5
|
+
|
6
|
+
class CryptTest < MiniTest::Spec
|
7
|
+
Crypt = Spontaneous::Crypt
|
8
|
+
|
9
|
+
def setup
|
10
|
+
Crypt.default_version
|
11
|
+
end
|
12
|
+
|
13
|
+
context "versions" do
|
14
|
+
should "be listable" do
|
15
|
+
Crypt.versions.should == [Crypt::Version::Fake, Crypt::Version::SHALegacy, Crypt::Version::BCrypt201301]
|
16
|
+
end
|
17
|
+
|
18
|
+
should "choose the most up-to-date as the current" do
|
19
|
+
Crypt.current.should == Crypt::Version::BCrypt201301
|
20
|
+
end
|
21
|
+
|
22
|
+
should "be directly loadable" do
|
23
|
+
Crypt.version(201102).should == Crypt::Version::SHALegacy
|
24
|
+
end
|
25
|
+
|
26
|
+
should "be configurable" do
|
27
|
+
Crypt.force_version(0)
|
28
|
+
Crypt.current.should == Crypt::Version::Fake
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
context "fake version" do
|
33
|
+
setup do
|
34
|
+
@pass = "abcdef"
|
35
|
+
end
|
36
|
+
should "have a version of 0" do
|
37
|
+
Crypt::Version::SHALegacy.version.should == 201102
|
38
|
+
end
|
39
|
+
should "be creatable from a pasword" do
|
40
|
+
hash = Crypt::Version::Fake.create(@pass)
|
41
|
+
Crypt.new(@pass, hash).valid?.should be_true
|
42
|
+
end
|
43
|
+
should "not report that it should be upgraded" do
|
44
|
+
hash = Crypt::Version::Fake.create(@pass)
|
45
|
+
auth = Crypt.new(@pass, hash)
|
46
|
+
auth.valid?.should be_true
|
47
|
+
auth.outdated?.should be_false
|
48
|
+
auth.needs_upgrade?.should be_false
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context "legacy version" do
|
53
|
+
setup do
|
54
|
+
@pass = "abcdef"
|
55
|
+
@salt = "aaaaaa"
|
56
|
+
@sha = Crypt::Version::SHALegacy.sha(@salt, @pass)
|
57
|
+
end
|
58
|
+
|
59
|
+
should "have a version of 201102" do
|
60
|
+
Crypt::Version::SHALegacy.version.should == 201102
|
61
|
+
end
|
62
|
+
|
63
|
+
should "be creatable from a pasword & salt" do
|
64
|
+
hash = Crypt::Version::SHALegacy.create(@sha, @salt)
|
65
|
+
hash.should =~ /^201102%aaaaaa:\$2a\$13\$/
|
66
|
+
Crypt.new(@pass, hash).valid?.should be_true
|
67
|
+
end
|
68
|
+
|
69
|
+
should "report that it should be upgraded" do
|
70
|
+
hash = Crypt::Version::SHALegacy.create(@sha, @salt)
|
71
|
+
auth = Crypt.new(@pass, hash)
|
72
|
+
auth.valid?.should be_true
|
73
|
+
auth.outdated?.should be_true
|
74
|
+
auth.needs_upgrade?.should be_true
|
75
|
+
end
|
76
|
+
|
77
|
+
should "upgrade to the current implementation" do
|
78
|
+
hash = Crypt::Version::SHALegacy.create(@sha, @salt)
|
79
|
+
auth = Crypt.new(@pass, hash)
|
80
|
+
new_hash = auth.upgrade
|
81
|
+
new_auth = Crypt.new(@pass, new_hash)
|
82
|
+
new_auth.outdated?.should be_false
|
83
|
+
new_auth.valid?.should be_true
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
context "password creation" do
|
88
|
+
setup do
|
89
|
+
@password = "abcdefg"
|
90
|
+
end
|
91
|
+
|
92
|
+
should "be verifiable" do
|
93
|
+
hash = Crypt::hash(@password)
|
94
|
+
Crypt.new(@password, hash).valid?.should be_true
|
95
|
+
end
|
96
|
+
|
97
|
+
should "use the latest version" do
|
98
|
+
hash = Crypt::hash(@password)
|
99
|
+
version, _ = Crypt.version_split(hash)
|
100
|
+
version.should == Crypt.current.version
|
101
|
+
end
|
102
|
+
|
103
|
+
should "take at least half a second to compute" do
|
104
|
+
hash = nil
|
105
|
+
bm = Benchmark.measure { hash = Crypt::hash(@password) }
|
106
|
+
bm.real.should >= 0.5
|
107
|
+
bm = Benchmark.measure { Crypt::valid?(@password, hash) }
|
108
|
+
bm.real.should >= 0.5
|
109
|
+
end
|
110
|
+
end
|
111
|
+
context "users" do
|
112
|
+
setup do
|
113
|
+
S::Permissions::User.delete
|
114
|
+
@pass = "abcdefghijklm"
|
115
|
+
@attrs = {:login => "test", :email => "test@example.com", :name => "Test User", :password => @pass}
|
116
|
+
@user = S::Permissions::User.new(@attrs)
|
117
|
+
@user.save
|
118
|
+
end
|
119
|
+
|
120
|
+
teardown do
|
121
|
+
S::Permissions::User.delete
|
122
|
+
end
|
123
|
+
|
124
|
+
should "use the current crypt implementation to hash their passwords" do
|
125
|
+
hash = @user.crypted_password
|
126
|
+
|
127
|
+
auth = Crypt.new(@pass, hash)
|
128
|
+
auth.valid?.should be_true
|
129
|
+
end
|
130
|
+
|
131
|
+
should "authenticate successfully" do
|
132
|
+
result = Spontaneous::Permissions::User.authenticate(@attrs[:login], @pass)
|
133
|
+
result.must_be_instance_of S::Permissions::AccessKey
|
134
|
+
end
|
135
|
+
|
136
|
+
should "fail to authenticate with incorrect password" do
|
137
|
+
result = Spontaneous::Permissions::User.authenticate(@attrs[:login], @pass + "x")
|
138
|
+
result.should be_nil
|
139
|
+
end
|
140
|
+
|
141
|
+
should "transparently upgrade the auth version if outdated" do
|
142
|
+
salt = "aaaaaaaa"
|
143
|
+
sha = Crypt::Version::SHALegacy.sha(salt, @pass)
|
144
|
+
hash = Crypt::Version::SHALegacy.create(sha, salt)
|
145
|
+
@user.model.filter(:id => @user.id).update(:crypted_password => hash)
|
146
|
+
@user.reload
|
147
|
+
auth = Crypt.new(@pass, @user.crypted_password)
|
148
|
+
assert auth.outdated?, "Auth should be outdated"
|
149
|
+
result = Spontaneous::Permissions::User.authenticate(@attrs[:login], @pass)
|
150
|
+
result.must_be_instance_of S::Permissions::AccessKey
|
151
|
+
@user.reload
|
152
|
+
auth = Crypt.new(@pass, @user.crypted_password)
|
153
|
+
assert !auth.outdated?, "Auth should have upgraded"
|
154
|
+
result = Spontaneous::Permissions::User.authenticate(@attrs[:login], @pass)
|
155
|
+
result.must_be_instance_of S::Permissions::AccessKey
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
@@ -9,9 +9,9 @@ class FeaturesTest < MiniTest::Spec
|
|
9
9
|
|
10
10
|
def self.startup
|
11
11
|
# make sure that S::Piece & S::Page are removed from the schema
|
12
|
-
@site = setup_site
|
13
|
-
*ids =
|
14
|
-
Object.const_set(:Site, Class.new(S::Site))
|
12
|
+
# @site = setup_site
|
13
|
+
# *ids = ::Page.schema_id, ::Piece.schema_id
|
14
|
+
# Object.const_set(:Site, Class.new(S::Site))
|
15
15
|
end
|
16
16
|
|
17
17
|
def setup
|
@@ -14,26 +14,26 @@
|
|
14
14
|
:fields:
|
15
15
|
- :name: title
|
16
16
|
:schema_id: <%= @fp[:title].schema_id.to_s %>
|
17
|
-
:type: Spontaneous.
|
17
|
+
:type: Spontaneous.Field.String
|
18
18
|
:title: Title
|
19
19
|
:comment: ""
|
20
20
|
:writable: true
|
21
21
|
- :name: location
|
22
22
|
:schema_id: <%= @fp[:location].schema_id.to_s %>
|
23
|
-
:type: Spontaneous.
|
23
|
+
:type: Spontaneous.Field.String
|
24
24
|
:title: Where
|
25
25
|
:comment: Fill in the address
|
26
26
|
:writable: true
|
27
27
|
- :name: date
|
28
28
|
:schema_id: <%= @fp[:date].schema_id.to_s %>
|
29
|
-
:type: Spontaneous.
|
29
|
+
:type: Spontaneous.Field.Date
|
30
30
|
:title: Date
|
31
31
|
:comment: ""
|
32
32
|
:writable: true
|
33
33
|
:date_format: "%A, %-d %B, %Y"
|
34
34
|
- :name: image
|
35
35
|
:schema_id: <%= @fp[:image].schema_id.to_s %>
|
36
|
-
:type: Spontaneous.
|
36
|
+
:type: Spontaneous.Field.Image
|
37
37
|
:title: Image
|
38
38
|
:comment: ""
|
39
39
|
:writable: true
|
@@ -47,7 +47,7 @@
|
|
47
47
|
:fields:
|
48
48
|
- :name: title
|
49
49
|
:schema_id: <%= SerialisedPiece.boxes[:things].field_prototypes[:title].schema_id.to_s %>
|
50
|
-
:type: Spontaneous.
|
50
|
+
:type: Spontaneous.Field.String
|
51
51
|
:title: Title
|
52
52
|
:comment: ""
|
53
53
|
:writable: true
|
@@ -29,6 +29,8 @@
|
|
29
29
|
:processed_value:
|
30
30
|
:original:
|
31
31
|
:src: /images/home.jpg
|
32
|
+
:__ui__:
|
33
|
+
:src: /images/home.jpg
|
32
34
|
|
33
35
|
:boxes:
|
34
36
|
- :id: <%= @root.insides.schema_id.to_s %>
|
@@ -72,6 +74,8 @@
|
|
72
74
|
:src: ""
|
73
75
|
:thumbnail:
|
74
76
|
:src: ""
|
77
|
+
:__ui__:
|
78
|
+
:src: ""
|
75
79
|
|
76
80
|
:style: <%= @freezing_style.to_s %>
|
77
81
|
:hidden: true
|
@@ -121,6 +125,8 @@
|
|
121
125
|
:processed_value:
|
122
126
|
:original:
|
123
127
|
:src: /images/thumb.jpg
|
128
|
+
:__ui__:
|
129
|
+
:src: /images/thumb.jpg
|
124
130
|
|
125
131
|
:is_page: false
|
126
132
|
:id: <%= @piece1.id %>
|
@@ -160,6 +166,8 @@
|
|
160
166
|
:src: ""
|
161
167
|
:thumbnail:
|
162
168
|
:src: ""
|
169
|
+
:__ui__:
|
170
|
+
:src: ""
|
163
171
|
|
164
172
|
:style: <%= @boiling_style.to_s %>
|
165
173
|
:hidden: false
|
@@ -17,10 +17,20 @@ class ApplicationTest < MiniTest::Spec
|
|
17
17
|
app_root = File.expand_path('../../fixtures/example_application', __FILE__)
|
18
18
|
FileUtils.cp_r(app_root, @site_root)
|
19
19
|
@site_root += "/example_application"
|
20
|
+
# Force loading of model in dev mode (where we have a db to introspect)
|
21
|
+
Spontaneous.init(:root => @site_root, :mode => :back, :environment => :development)
|
20
22
|
end
|
21
23
|
|
22
24
|
def self.shutdown
|
23
|
-
teardown_site
|
25
|
+
teardown_site(true)
|
26
|
+
end
|
27
|
+
|
28
|
+
def setup
|
29
|
+
# @site = setup_site(self.class.site_root, true)
|
30
|
+
end
|
31
|
+
|
32
|
+
def teardown
|
33
|
+
# teardown_site(false)
|
24
34
|
end
|
25
35
|
|
26
36
|
context "schema" do
|
@@ -103,6 +113,7 @@ class ApplicationTest < MiniTest::Spec
|
|
103
113
|
|
104
114
|
setup do
|
105
115
|
Spontaneous.init(:root => self.class.site_root, :mode => :front, :environment => :development)
|
116
|
+
Sequel::Migrator.apply(Spontaneous.database, 'db/migrations')
|
106
117
|
end
|
107
118
|
|
108
119
|
should "have the right mode setting" do
|