sibu 0.8.1 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/MIT-LICENSE +20 -20
- data/README.md +38 -38
- data/Rakefile +36 -36
- data/app/assets/config/sibu_manifest.js +2 -2
- data/app/assets/fonts/sibu/Sibu.eot +0 -0
- data/app/assets/fonts/sibu/Sibu.svg +13 -13
- data/app/assets/fonts/sibu/Sibu.ttf +0 -0
- data/app/assets/fonts/sibu/Sibu.woff +0 -0
- data/app/assets/javascripts/cropper/cropper.js +3694 -3694
- data/app/assets/javascripts/quill/quill.js +11401 -11401
- data/app/assets/javascripts/sibu/common.js +6 -6
- data/app/assets/javascripts/sibu/sibu.js.erb +156 -155
- data/app/assets/javascripts/tabs/van11y-accessible-tab-panel-aria.js +465 -465
- data/app/assets/stylesheets/cropper/cropper.css +304 -304
- data/app/assets/stylesheets/quill/quill.snow.css +945 -945
- data/app/assets/stylesheets/sibu/defaults.scss +317 -336
- data/app/assets/stylesheets/sibu/icons.scss +40 -40
- data/app/assets/stylesheets/sibu/sibu.css +131 -131
- data/app/controllers/sibu/application_controller.rb +14 -14
- data/app/controllers/sibu/documents_controller.rb +35 -35
- data/app/controllers/sibu/images_controller.rb +78 -78
- data/app/controllers/sibu/pages_controller.rb +197 -197
- data/app/controllers/sibu/sites_controller.rb +81 -81
- data/app/helpers/sibu/application_helper.rb +11 -11
- data/app/helpers/sibu/documents_helper.rb +4 -4
- data/app/helpers/sibu/images_helper.rb +4 -4
- data/app/helpers/sibu/pages_helper.rb +217 -194
- data/app/helpers/sibu/sites_helper.rb +23 -23
- data/app/jobs/sibu/application_job.rb +4 -4
- data/app/mailers/sibu/application_mailer.rb +6 -6
- data/app/models/concerns/sibu/document_uploader.rb +8 -8
- data/app/models/concerns/sibu/image_uploader.rb +31 -31
- data/app/models/concerns/sibu/sections_concern.rb +134 -134
- data/app/models/concerns/sibu/style_uploader.rb +1 -1
- data/app/models/concerns/sibu/user_concern.rb +9 -8
- data/app/models/sibu/application_record.rb +5 -5
- data/app/models/sibu/document.rb +16 -16
- data/app/models/sibu/dynamic_style.rb +76 -76
- data/app/models/sibu/image.rb +10 -19
- data/app/models/sibu/page.rb +66 -66
- data/app/models/sibu/site.rb +97 -97
- data/app/models/sibu/site_template.rb +22 -22
- data/app/views/layouts/sibu/application.html.erb +23 -23
- data/app/views/layouts/sibu/edit_content.html.erb +262 -262
- data/app/views/layouts/sibu/site.html.erb +45 -45
- data/app/views/sibu/documents/_form.html.erb +14 -14
- data/app/views/sibu/documents/index.html.erb +37 -37
- data/app/views/sibu/documents/new.html.erb +12 -12
- data/app/views/sibu/images/_edit_form.html.erb +23 -23
- data/app/views/sibu/images/_form.html.erb +34 -34
- data/app/views/sibu/images/edit.js.erb +2 -2
- data/app/views/sibu/images/index.html.erb +31 -13
- data/app/views/sibu/images/new.html.erb +12 -12
- data/app/views/sibu/images/show.html.erb +2 -2
- data/app/views/sibu/pages/_code_edit_panel.html.erb +17 -17
- data/app/views/sibu/pages/_element_actions.html.erb +4 -4
- data/app/views/sibu/pages/_error_panel.html.erb +4 -4
- data/app/views/sibu/pages/_form.html.erb +62 -62
- data/app/views/sibu/pages/_group_edit_panel.html.erb +3 -3
- data/app/views/sibu/pages/_link_edit_panel.html.erb +50 -50
- data/app/views/sibu/pages/_map_edit_panel.html.erb +27 -27
- data/app/views/sibu/pages/_media_edit_panel.html.erb +63 -46
- data/app/views/sibu/pages/_new_section_panel.html.erb +43 -43
- data/app/views/sibu/pages/_paragraph_edit_panel.html.erb +18 -18
- data/app/views/sibu/pages/_text_edit_panel.html.erb +19 -19
- data/app/views/sibu/pages/child_element.js.erb +6 -6
- data/app/views/sibu/pages/clone_element.js.erb +6 -6
- data/app/views/sibu/pages/create_section.js.erb +6 -6
- data/app/views/sibu/pages/delete_element.js.erb +6 -6
- data/app/views/sibu/pages/delete_section.js.erb +6 -6
- data/app/views/sibu/pages/destroy.html.erb +2 -2
- data/app/views/sibu/pages/edit.html.erb +8 -8
- data/app/views/sibu/pages/edit_content.html.erb +3 -3
- data/app/views/sibu/pages/edit_element.js.erb +105 -100
- data/app/views/sibu/pages/edit_section.js.erb +7 -7
- data/app/views/sibu/pages/index.html.erb +40 -40
- data/app/views/sibu/pages/new.html.erb +8 -8
- data/app/views/sibu/pages/new_section.js.erb +19 -19
- data/app/views/sibu/pages/show.html.erb +3 -3
- data/app/views/sibu/pages/update.html.erb +2 -2
- data/app/views/sibu/pages/update_element.js.erb +5 -5
- data/app/views/sibu/pages/update_section.js.erb +5 -5
- data/app/views/sibu/sites/_form.html.erb +125 -125
- data/app/views/sibu/sites/destroy.html.erb +2 -2
- data/app/views/sibu/sites/edit.html.erb +9 -9
- data/app/views/sibu/sites/edit_styles.html.erb +8 -8
- data/app/views/sibu/sites/index.html.erb +41 -41
- data/app/views/sibu/sites/new.html.erb +18 -18
- data/app/views/sibu/sites/update.html.erb +2 -2
- data/config/initializers/constants.rb +2 -2
- data/config/initializers/shrine.rb +18 -18
- data/config/routes.rb +30 -30
- data/config/tinymce.yml +5 -5
- data/db/migrate/20180124095041_create_sibu_sites.rb +12 -12
- data/db/migrate/20180124095213_create_sibu_pages.rb +15 -15
- data/db/migrate/20180124145030_create_sibu_site_templates.rb +10 -10
- data/db/migrate/20180125231638_add_user_id_to_sites.rb +5 -5
- data/db/migrate/20180126114522_rename_url_to_path_in_pages.rb +5 -5
- data/db/migrate/20180126114628_add_domain_to_sites.rb +5 -5
- data/db/migrate/20180127211533_create_sibu_images.rb +11 -11
- data/db/migrate/20180208082317_rename_images_user_id_to_site_id.rb +5 -5
- data/db/migrate/20180208125024_rename_image_data_column.rb +5 -5
- data/db/migrate/20180210181644_add_defaults_to_site_templates.rb +6 -6
- data/db/migrate/20180214134653_add_fields_to_sites.rb +5 -5
- data/db/migrate/20180227151519_add_default_templates_to_site_templates.rb +5 -5
- data/db/migrate/20180301121902_add_style_data_to_sites.rb +5 -5
- data/db/migrate/20180301152101_add_default_styles_to_templates.rb +5 -5
- data/db/migrate/20180321144021_move_images_to_user_level.rb +7 -7
- data/db/migrate/20180321170310_add_version_to_sibu_sites.rb +7 -7
- data/db/migrate/20180405095448_create_sibu_documents.rb +10 -10
- data/db/migrate/20190110204854_add_custom_data_to_sibu_pages.rb +5 -5
- data/lib/sibu.rb +4 -4
- data/lib/sibu/engine.rb +19 -19
- data/lib/sibu/utils.rb +14 -14
- data/lib/sibu/version.rb +3 -3
- data/lib/tasks/sibu_tasks.rake +4 -4
- metadata +7 -7
@@ -1,19 +1,19 @@
|
|
1
|
-
<div class="sibu_view">
|
2
|
-
<div class="actions">
|
3
|
-
<%= link_to 'Retour', :back %>
|
4
|
-
</div>
|
5
|
-
<h2>Créer un site</h2>
|
6
|
-
<div class="sibu_form">
|
7
|
-
<%= render 'form' %>
|
8
|
-
</div>
|
9
|
-
<h2>Aperçu des modèles</h2>
|
10
|
-
<div>
|
11
|
-
<% Sibu::SiteTemplate.all.each do |st| %>
|
12
|
-
<div class="sibu_template">
|
13
|
-
<h3><%= st.name %></h3>
|
14
|
-
<%= image_tag "#{st.path}1.jpg" %>
|
15
|
-
<%= image_tag "#{st.path}2.jpg" %>
|
16
|
-
</div>
|
17
|
-
<% end %>
|
18
|
-
</div>
|
1
|
+
<div class="sibu_view">
|
2
|
+
<div class="actions">
|
3
|
+
<%= link_to 'Retour', :back %>
|
4
|
+
</div>
|
5
|
+
<h2>Créer un site</h2>
|
6
|
+
<div class="sibu_form">
|
7
|
+
<%= render 'form' %>
|
8
|
+
</div>
|
9
|
+
<h2>Aperçu des modèles</h2>
|
10
|
+
<div>
|
11
|
+
<% Sibu::SiteTemplate.all.each do |st| %>
|
12
|
+
<div class="sibu_template">
|
13
|
+
<h3><%= st.name %></h3>
|
14
|
+
<%= image_tag "#{st.path}1.jpg" %>
|
15
|
+
<%= image_tag "#{st.path}2.jpg" %>
|
16
|
+
</div>
|
17
|
+
<% end %>
|
18
|
+
</div>
|
19
19
|
</div>
|
@@ -1,2 +1,2 @@
|
|
1
|
-
<h1>Sites#update</h1>
|
2
|
-
<p>Find me in app/views/sibu/sites/update.html.erb</p>
|
1
|
+
<h1>Sites#update</h1>
|
2
|
+
<p>Find me in app/views/sibu/sites/update.html.erb</p>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
DEFAULT_TEXT = "Lorem ipsum"
|
2
|
-
DEFAULT_PARAGRAPH = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut."
|
1
|
+
DEFAULT_TEXT = "Lorem ipsum"
|
2
|
+
DEFAULT_PARAGRAPH = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut."
|
3
3
|
DEFAULT_IMG = "/default.jpg"
|
@@ -1,19 +1,19 @@
|
|
1
|
-
require "shrine"
|
2
|
-
require "shrine/storage/file_system"
|
3
|
-
require "mini_magick"
|
4
|
-
|
5
|
-
Shrine.storages = {
|
6
|
-
cache: Shrine::Storage::FileSystem.new("public", prefix: "uploads/cache"),
|
7
|
-
store: Shrine::Storage::FileSystem.new("public", prefix: "uploads/store"),
|
8
|
-
styles_cache: Shrine::Storage::FileSystem.new("public", prefix: "stylesheets/cache"),
|
9
|
-
styles_store: Shrine::Storage::FileSystem.new("public", prefix: "stylesheets/store"),
|
10
|
-
documents_cache: Shrine::Storage::FileSystem.new("public", prefix: "documents/cache"),
|
11
|
-
documents_store: Shrine::Storage::FileSystem.new("public", prefix: "documents/store")
|
12
|
-
}
|
13
|
-
|
14
|
-
Shrine.plugin :activerecord
|
15
|
-
Shrine.plugin :cached_attachment_data
|
16
|
-
|
17
|
-
MiniMagick.configure do |config|
|
18
|
-
config.whiny = false
|
1
|
+
require "shrine"
|
2
|
+
require "shrine/storage/file_system"
|
3
|
+
require "mini_magick"
|
4
|
+
|
5
|
+
Shrine.storages = {
|
6
|
+
cache: Shrine::Storage::FileSystem.new("public", prefix: "uploads/cache"),
|
7
|
+
store: Shrine::Storage::FileSystem.new("public", prefix: "uploads/store"),
|
8
|
+
styles_cache: Shrine::Storage::FileSystem.new("public", prefix: "stylesheets/cache"),
|
9
|
+
styles_store: Shrine::Storage::FileSystem.new("public", prefix: "stylesheets/store"),
|
10
|
+
documents_cache: Shrine::Storage::FileSystem.new("public", prefix: "documents/cache"),
|
11
|
+
documents_store: Shrine::Storage::FileSystem.new("public", prefix: "documents/store")
|
12
|
+
}
|
13
|
+
|
14
|
+
Shrine.plugin :activerecord
|
15
|
+
Shrine.plugin :cached_attachment_data
|
16
|
+
|
17
|
+
MiniMagick.configure do |config|
|
18
|
+
config.whiny = false
|
19
19
|
end
|
data/config/routes.rb
CHANGED
@@ -1,30 +1,30 @@
|
|
1
|
-
Sibu::Engine.routes.draw do
|
2
|
-
|
3
|
-
get '/', to: 'pages#show', constraints: lambda {|req| req.host != Rails.application.config.sibu[:host]}
|
4
|
-
get '*path', to: 'pages#show', constraints: lambda {|req| req.host != Rails.application.config.sibu[:host]}
|
5
|
-
|
6
|
-
scope path_names: {new: 'creer', edit: 'parametrer'} do
|
7
|
-
resources :sites do
|
8
|
-
post 'duplicate', on: :member
|
9
|
-
resources :pages do
|
10
|
-
post 'duplicate', on: :member
|
11
|
-
get :edit_content, to: 'pages#edit_content', path: 'editer'
|
12
|
-
get :edit_element, on: :member
|
13
|
-
get :edit_section, on: :member
|
14
|
-
patch 'update_element', on: :member
|
15
|
-
patch 'update_section', on: :member
|
16
|
-
post 'clone_element', on: :member
|
17
|
-
delete 'delete_element', on: :member
|
18
|
-
post 'child_element', on: :member
|
19
|
-
get 'new_section', on: :member
|
20
|
-
post 'create_section', on: :member
|
21
|
-
delete 'delete_section', on: :member
|
22
|
-
end
|
23
|
-
resources :pages, only:[] do
|
24
|
-
get '*path', to: 'pages#show', on: :member
|
25
|
-
end
|
26
|
-
|
27
|
-
end
|
28
|
-
resources :images, :documents
|
29
|
-
end
|
30
|
-
end
|
1
|
+
Sibu::Engine.routes.draw do
|
2
|
+
|
3
|
+
get '/', to: 'pages#show', constraints: lambda {|req| req.host != Rails.application.config.sibu[:host]}
|
4
|
+
get '*path', to: 'pages#show', constraints: lambda {|req| req.host != Rails.application.config.sibu[:host]}
|
5
|
+
|
6
|
+
scope path_names: {new: 'creer', edit: 'parametrer'} do
|
7
|
+
resources :sites do
|
8
|
+
post 'duplicate', on: :member
|
9
|
+
resources :pages do
|
10
|
+
post 'duplicate', on: :member
|
11
|
+
get :edit_content, to: 'pages#edit_content', path: 'editer'
|
12
|
+
get :edit_element, on: :member
|
13
|
+
get :edit_section, on: :member
|
14
|
+
patch 'update_element', on: :member
|
15
|
+
patch 'update_section', on: :member
|
16
|
+
post 'clone_element', on: :member
|
17
|
+
delete 'delete_element', on: :member
|
18
|
+
post 'child_element', on: :member
|
19
|
+
get 'new_section', on: :member
|
20
|
+
post 'create_section', on: :member
|
21
|
+
delete 'delete_section', on: :member
|
22
|
+
end
|
23
|
+
resources :pages, only:[] do
|
24
|
+
get '*path', to: 'pages#show', on: :member
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
resources :images, :documents
|
29
|
+
end
|
30
|
+
end
|
data/config/tinymce.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
default:
|
2
|
-
toolbar:
|
3
|
-
- styleselect | bold italic
|
4
|
-
- link
|
5
|
-
plugins:
|
1
|
+
default:
|
2
|
+
toolbar:
|
3
|
+
- styleselect | bold italic
|
4
|
+
- link
|
5
|
+
plugins:
|
6
6
|
- link
|
@@ -1,12 +1,12 @@
|
|
1
|
-
class CreateSibuSites < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
create_table :sibu_sites do |t|
|
4
|
-
t.string :name
|
5
|
-
t.integer :site_template_id
|
6
|
-
t.text :metadata
|
7
|
-
t.jsonb :sections
|
8
|
-
|
9
|
-
t.timestamps
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
1
|
+
class CreateSibuSites < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
create_table :sibu_sites do |t|
|
4
|
+
t.string :name
|
5
|
+
t.integer :site_template_id
|
6
|
+
t.text :metadata
|
7
|
+
t.jsonb :sections
|
8
|
+
|
9
|
+
t.timestamps
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -1,15 +1,15 @@
|
|
1
|
-
class CreateSibuPages < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
create_table :sibu_pages do |t|
|
4
|
-
t.string :name
|
5
|
-
t.integer :site_id
|
6
|
-
t.text :metadata
|
7
|
-
t.string :language
|
8
|
-
t.string :url
|
9
|
-
t.string :template
|
10
|
-
t.jsonb :sections
|
11
|
-
|
12
|
-
t.timestamps
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
1
|
+
class CreateSibuPages < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
create_table :sibu_pages do |t|
|
4
|
+
t.string :name
|
5
|
+
t.integer :site_id
|
6
|
+
t.text :metadata
|
7
|
+
t.string :language
|
8
|
+
t.string :url
|
9
|
+
t.string :template
|
10
|
+
t.jsonb :sections
|
11
|
+
|
12
|
+
t.timestamps
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -1,10 +1,10 @@
|
|
1
|
-
class CreateSibuSiteTemplates < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
create_table :sibu_site_templates do |t|
|
4
|
-
t.string :name
|
5
|
-
t.string :path
|
6
|
-
|
7
|
-
t.timestamps
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
1
|
+
class CreateSibuSiteTemplates < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
create_table :sibu_site_templates do |t|
|
4
|
+
t.string :name
|
5
|
+
t.string :path
|
6
|
+
|
7
|
+
t.timestamps
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddUserIdToSites < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_sites, :user_id, :integer
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddUserIdToSites < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_sites, :user_id, :integer
|
4
|
+
end
|
5
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class RenameUrlToPathInPages < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
rename_column :sibu_pages, :url, :path
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class RenameUrlToPathInPages < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
rename_column :sibu_pages, :url, :path
|
4
|
+
end
|
5
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddDomainToSites < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_sites, :domain, :string
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddDomainToSites < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_sites, :domain, :string
|
4
|
+
end
|
5
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
class CreateSibuImages < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
create_table :sibu_images do |t|
|
4
|
-
t.integer :user_id
|
5
|
-
t.text :metadata
|
6
|
-
t.text :data
|
7
|
-
|
8
|
-
t.timestamps
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
1
|
+
class CreateSibuImages < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
create_table :sibu_images do |t|
|
4
|
+
t.integer :user_id
|
5
|
+
t.text :metadata
|
6
|
+
t.text :data
|
7
|
+
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class RenameImagesUserIdToSiteId < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
rename_column :sibu_images, :user_id, :site_id
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class RenameImagesUserIdToSiteId < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
rename_column :sibu_images, :user_id, :site_id
|
4
|
+
end
|
5
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class RenameImageDataColumn < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
rename_column :sibu_images, :data, :file_data
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class RenameImageDataColumn < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
rename_column :sibu_images, :data, :file_data
|
4
|
+
end
|
5
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
class AddDefaultsToSiteTemplates < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_site_templates, :default_sections, :text
|
4
|
-
add_column :sibu_site_templates, :default_pages, :text
|
5
|
-
end
|
6
|
-
end
|
1
|
+
class AddDefaultsToSiteTemplates < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_site_templates, :default_sections, :text
|
4
|
+
add_column :sibu_site_templates, :default_pages, :text
|
5
|
+
end
|
6
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddFieldsToSites < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_sites, :custom_data, :text
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddFieldsToSites < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_sites, :custom_data, :text
|
4
|
+
end
|
5
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddDefaultTemplatesToSiteTemplates < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_site_templates, :default_templates, :text
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddDefaultTemplatesToSiteTemplates < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_site_templates, :default_templates, :text
|
4
|
+
end
|
5
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddStyleDataToSites < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_sites, :style_data, :text
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddStyleDataToSites < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_sites, :style_data, :text
|
4
|
+
end
|
5
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddDefaultStylesToTemplates < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_site_templates, :default_styles, :text
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddDefaultStylesToTemplates < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_site_templates, :default_styles, :text
|
4
|
+
end
|
5
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
class MoveImagesToUserLevel < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_images, :user_id, :integer
|
4
|
-
Sibu::Image.where("site_id IS NOT NULL").each {|img| img.update(user_id: Sibu::Site.find(img.site_id).user_id)}
|
5
|
-
remove_column :sibu_images, :site_id
|
6
|
-
end
|
7
|
-
end
|
1
|
+
class MoveImagesToUserLevel < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_images, :user_id, :integer
|
4
|
+
Sibu::Image.where("site_id IS NOT NULL").each {|img| img.update(user_id: Sibu::Site.find(img.site_id).user_id)}
|
5
|
+
remove_column :sibu_images, :site_id
|
6
|
+
end
|
7
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
class AddVersionToSibuSites < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_sites, :version, :string
|
4
|
-
Sibu::Site.update_all(version: 'fr')
|
5
|
-
remove_column :sibu_pages, :language
|
6
|
-
end
|
7
|
-
end
|
1
|
+
class AddVersionToSibuSites < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_sites, :version, :string
|
4
|
+
Sibu::Site.update_all(version: 'fr')
|
5
|
+
remove_column :sibu_pages, :language
|
6
|
+
end
|
7
|
+
end
|
@@ -1,10 +1,10 @@
|
|
1
|
-
class CreateSibuDocuments < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
create_table :sibu_documents do |t|
|
4
|
-
t.integer :user_id
|
5
|
-
t.text :file_data
|
6
|
-
|
7
|
-
t.timestamps
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
1
|
+
class CreateSibuDocuments < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
create_table :sibu_documents do |t|
|
4
|
+
t.integer :user_id
|
5
|
+
t.text :file_data
|
6
|
+
|
7
|
+
t.timestamps
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddCustomDataToSibuPages < ActiveRecord::Migration[5.1]
|
2
|
-
def change
|
3
|
-
add_column :sibu_pages, :custom_data, :text
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddCustomDataToSibuPages < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
add_column :sibu_pages, :custom_data, :text
|
4
|
+
end
|
5
|
+
end
|