sunrise-locales 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +36 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +15 -0
- data/Rakefile +27 -0
- data/app/controllers/manage/locales_controller.rb +43 -0
- data/app/views/manage/locales/_locale.html.erb +21 -0
- data/app/views/manage/locales/edit.html.erb +101 -0
- data/app/views/manage/locales/index.html.erb +24 -0
- data/config/locales/ru.yml +20 -0
- data/config/locales/uk.yml +20 -0
- data/config/routes.rb +5 -0
- data/lib/generators/sunrise/locales/USAGE +6 -0
- data/lib/generators/sunrise/locales/install_generator.rb +20 -0
- data/lib/generators/sunrise/locales/templates/codemirror.css +107 -0
- data/lib/generators/sunrise/locales/templates/codemirror.js +2157 -0
- data/lib/generators/sunrise/locales/templates/yaml.js +95 -0
- data/lib/sunrise-locales.rb +1 -0
- data/lib/sunrise/locales.rb +13 -0
- data/lib/sunrise/locales/engine.rb +19 -0
- data/lib/sunrise/locales/version.rb +5 -0
- data/lib/sunrise/locales/yml_locale.rb +43 -0
- data/spec/controllers/manage/locales_controller_spec.rb +59 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
- data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
- data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
- data/spec/dummy/app/models/defaults/ability.rb +39 -0
- data/spec/dummy/app/models/defaults/asset.rb +9 -0
- data/spec/dummy/app/models/defaults/attachment_file.rb +31 -0
- data/spec/dummy/app/models/defaults/avatar.rb +33 -0
- data/spec/dummy/app/models/defaults/header.rb +5 -0
- data/spec/dummy/app/models/defaults/page.rb +5 -0
- data/spec/dummy/app/models/defaults/picture.rb +31 -0
- data/spec/dummy/app/models/defaults/position_type.rb +7 -0
- data/spec/dummy/app/models/defaults/role.rb +20 -0
- data/spec/dummy/app/models/defaults/role_type.rb +8 -0
- data/spec/dummy/app/models/defaults/structure.rb +16 -0
- data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
- data/spec/dummy/app/models/defaults/user.rb +47 -0
- data/spec/dummy/app/uploaders/attachment_file_uploader.rb +5 -0
- data/spec/dummy/app/uploaders/avatar_uploader.rb +17 -0
- data/spec/dummy/app/uploaders/picture_uploader.rb +17 -0
- data/spec/dummy/app/views/layouts/application.html.erb +37 -0
- data/spec/dummy/app/views/pages/show.html.erb +2 -0
- data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +46 -0
- data/spec/dummy/config/application.yml.sample +4 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +22 -0
- data/spec/dummy/config/database.yml.sample +34 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +26 -0
- data/spec/dummy/config/environments/production.rb +49 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/devise.rb +204 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/simple_form.rb +93 -0
- data/spec/dummy/config/initializers/sunrise.rb +9 -0
- data/spec/dummy/config/locales/devise.en.yml +53 -0
- data/spec/dummy/config/locales/en.yml +3 -0
- data/spec/dummy/config/locales/ru.yml +3 -0
- data/spec/dummy/config/locales/simple_form.en.yml +24 -0
- data/spec/dummy/config/locales/uk.yml +2 -0
- data/spec/dummy/config/logrotate-config.sample +9 -0
- data/spec/dummy/config/nginx-config-passenger.sample +51 -0
- data/spec/dummy/config/routes.rb +64 -0
- data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
- data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
- data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
- data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
- data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
- data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
- data/spec/dummy/db/seeds.rb +25 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/spec/dummy/log/test.log +1678 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
- data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
- data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
- data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
- data/spec/dummy/public/images/manage/arrow.png +0 -0
- data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
- data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
- data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
- data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
- data/spec/dummy/public/images/manage/but_bg.png +0 -0
- data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
- data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
- data/spec/dummy/public/images/manage/but_search.gif +0 -0
- data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
- data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
- data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
- data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
- data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
- data/spec/dummy/public/images/manage/dot.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
- data/spec/dummy/public/images/manage/empty.gif +0 -0
- data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
- data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
- data/spec/dummy/public/images/manage/flag_en.gif +0 -0
- data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/foto.jpg +0 -0
- data/spec/dummy/public/images/manage/ico_add.gif +0 -0
- data/spec/dummy/public/images/manage/ico_del.gif +0 -0
- data/spec/dummy/public/images/manage/ico_down.gif +0 -0
- data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
- data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
- data/spec/dummy/public/images/manage/ico_up.gif +0 -0
- data/spec/dummy/public/images/manage/input_bg.gif +0 -0
- data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
- data/spec/dummy/public/images/manage/mp3.png +0 -0
- data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
- data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
- data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
- data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
- data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
- data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
- data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
- data/spec/dummy/public/images/manage/preloader.gif +0 -0
- data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/select_bg.gif +0 -0
- data/spec/dummy/public/images/manage/select_corn.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
- data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
- data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
- data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
- data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
- data/spec/dummy/public/images/manage/top_corn.gif +0 -0
- data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
- data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
- data/spec/dummy/public/images/manage/transp_cross.png +0 -0
- data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
- data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
- data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
- data/spec/dummy/public/images/manage/user_ico.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
- data/spec/dummy/public/javascripts/application.js +2 -0
- data/spec/dummy/public/javascripts/controls.js +965 -0
- data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
- data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
- data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
- data/spec/dummy/public/javascripts/dragdrop.js +974 -0
- data/spec/dummy/public/javascripts/effects.js +1123 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
- data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
- data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
- data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
- data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
- data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
- data/spec/dummy/public/javascripts/manage.js +294 -0
- data/spec/dummy/public/javascripts/preloader.js +47 -0
- data/spec/dummy/public/javascripts/prototype.js +6001 -0
- data/spec/dummy/public/javascripts/rails.js +331 -0
- data/spec/dummy/public/stylesheets/application.css +1 -0
- data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
- data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
- data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
- data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
- data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/factories/structure_factory.rb +22 -0
- data/spec/factories/user_factory.rb +48 -0
- data/spec/generators/install_generator_spec.rb +18 -0
- data/spec/integration/navigation_spec.rb +9 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +57 -0
- data/spec/sunrise_locales_spec.rb +7 -0
- data/spec/support/helpers/controller_macros.rb +40 -0
- data/spec/tmp/public/javascripts/codemirror.js +2157 -0
- data/spec/tmp/public/javascripts/yaml.js +95 -0
- data/spec/tmp/public/stylesheets/codemirror.css +107 -0
- metadata +575 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
# == Schema Information
|
2
|
+
#
|
3
|
+
# Table name: assets
|
4
|
+
#
|
5
|
+
# id :integer(4) not null, primary key
|
6
|
+
# data_file_name :string(255) not null
|
7
|
+
# data_content_type :string(255)
|
8
|
+
# data_file_size :integer(4)
|
9
|
+
# assetable_id :integer(4) not null
|
10
|
+
# assetable_type :string(25) not null
|
11
|
+
# type :string(25)
|
12
|
+
# guid :string(10)
|
13
|
+
# locale :integer(1) default(0)
|
14
|
+
# user_id :integer(4)
|
15
|
+
# created_at :datetime
|
16
|
+
# updated_at :datetime
|
17
|
+
# duration :float default(0.0)
|
18
|
+
# resolution_id :integer(1) default(0)
|
19
|
+
#
|
20
|
+
# Indexes
|
21
|
+
#
|
22
|
+
# index_assets_on_assetable_type_and_type_and_assetable_id (assetable_type,type,assetable_id)
|
23
|
+
# index_assets_on_assetable_type_and_assetable_id (assetable_type,assetable_id)
|
24
|
+
# index_assets_on_user_id (user_id)
|
25
|
+
#
|
26
|
+
|
27
|
+
class Avatar < Asset
|
28
|
+
sunrise_uploader AvatarUploader
|
29
|
+
|
30
|
+
validates :data_content_type, :inclusion => {:in => Sunrise::Utils::IMAGE_TYPES }
|
31
|
+
validates_integrity_of :data
|
32
|
+
validates_filesize_of :data, :maximum => 1.megabytes.to_i
|
33
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# == Schema Information
|
2
|
+
#
|
3
|
+
# Table name: assets
|
4
|
+
#
|
5
|
+
# id :integer(4) not null, primary key
|
6
|
+
# data_file_name :string(255) not null
|
7
|
+
# data_content_type :string(255)
|
8
|
+
# data_file_size :integer(4)
|
9
|
+
# assetable_id :integer(4) not null
|
10
|
+
# assetable_type :string(25) not null
|
11
|
+
# type :string(25)
|
12
|
+
# guid :string(10)
|
13
|
+
# locale :integer(1) default(0)
|
14
|
+
# user_id :integer(4)
|
15
|
+
# created_at :datetime
|
16
|
+
# updated_at :datetime
|
17
|
+
#
|
18
|
+
# Indexes
|
19
|
+
#
|
20
|
+
# index_assets_on_assetable_type_and_type_and_assetable_id (assetable_type,type,assetable_id)
|
21
|
+
# index_assets_on_assetable_type_and_assetable_id (assetable_type,assetable_id)
|
22
|
+
# index_assets_on_user_id (user_id)
|
23
|
+
#
|
24
|
+
|
25
|
+
class Picture < Asset
|
26
|
+
sunrise_uploader PictureUploader
|
27
|
+
|
28
|
+
validates :data_content_type, :inclusion => {:in => Sunrise::Utils::IMAGE_TYPES }
|
29
|
+
validates_integrity_of :data
|
30
|
+
validates_filesize_of :data, :maximum => 2.megabytes.to_i
|
31
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# == Schema Information
|
2
|
+
#
|
3
|
+
# Table name: roles
|
4
|
+
#
|
5
|
+
# id :integer(4) not null, primary key
|
6
|
+
# role_type :integer(1) default(0)
|
7
|
+
# user_id :integer(4) not null
|
8
|
+
# created_at :datetime
|
9
|
+
# updated_at :datetime
|
10
|
+
#
|
11
|
+
# Indexes
|
12
|
+
#
|
13
|
+
# fk_user (user_id)
|
14
|
+
#
|
15
|
+
|
16
|
+
class Role < ActiveRecord::Base
|
17
|
+
include Sunrise::Models::Role
|
18
|
+
|
19
|
+
attr_accessible :role_type
|
20
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
class RoleType < Sunrise::Models::RoleType
|
2
|
+
define_enum do |builder|
|
3
|
+
builder.member :default, :object => new("default")
|
4
|
+
builder.member :redactor, :object => new("redactor")
|
5
|
+
builder.member :moderator, :object => new("moderator")
|
6
|
+
builder.member :admin, :object => new("admin")
|
7
|
+
end
|
8
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
class Structure < ActiveRecord::Base
|
2
|
+
include Sunrise::Models::Structure
|
3
|
+
|
4
|
+
has_many :questions, :dependent => :delete_all
|
5
|
+
has_slug :prepend_id => false
|
6
|
+
|
7
|
+
attr_accessible :title, :kind, :position, :parent_id, :redirect_url,
|
8
|
+
:position_type, :slug, :parent, :structure_type,
|
9
|
+
:header_attributes, :is_visible
|
10
|
+
|
11
|
+
def self.find_by_permalink!(value)
|
12
|
+
record = find_by_permalink(value)
|
13
|
+
raise ActiveRecord::RecordNotFound, "Couldn't find structure by #{value}" if record.nil?
|
14
|
+
return record
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
class StructureType < Sunrise::Models::StructureType
|
2
|
+
define_enum do |builder|
|
3
|
+
builder.member :page, :object => new("page")
|
4
|
+
builder.member :posts, :object => new("posts")
|
5
|
+
builder.member :main, :object => new("main")
|
6
|
+
builder.member :redirect, :object => new("redirect")
|
7
|
+
builder.member :group, :object => new("group")
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# == Schema Information
|
2
|
+
#
|
3
|
+
# Table name: users
|
4
|
+
#
|
5
|
+
# id :integer(4) not null, primary key
|
6
|
+
# name :string(150)
|
7
|
+
# login :string(20) not null
|
8
|
+
# email :string(255) default(""), not null
|
9
|
+
# encrypted_password :string(128) default(""), not null
|
10
|
+
# password_salt :string(255) default(""), not null
|
11
|
+
# reset_password_token :string(255)
|
12
|
+
# remember_token :string(255)
|
13
|
+
# remember_created_at :datetime
|
14
|
+
# sign_in_count :integer(4) default(0)
|
15
|
+
# current_sign_in_at :datetime
|
16
|
+
# last_sign_in_at :datetime
|
17
|
+
# current_sign_in_ip :string(255)
|
18
|
+
# last_sign_in_ip :string(255)
|
19
|
+
# confirmation_token :string(255)
|
20
|
+
# confirmed_at :datetime
|
21
|
+
# confirmation_sent_at :datetime
|
22
|
+
# failed_attempts :integer(4) default(0)
|
23
|
+
# locked_at :datetime
|
24
|
+
# created_at :datetime
|
25
|
+
# updated_at :datetime
|
26
|
+
#
|
27
|
+
# Indexes
|
28
|
+
#
|
29
|
+
# index_users_on_login (login) UNIQUE
|
30
|
+
# index_users_on_email (email) UNIQUE
|
31
|
+
# index_users_on_reset_password_token (reset_password_token) UNIQUE
|
32
|
+
# index_users_on_confirmation_token (confirmation_token) UNIQUE
|
33
|
+
#
|
34
|
+
|
35
|
+
class User < ActiveRecord::Base
|
36
|
+
include Sunrise::Models::User
|
37
|
+
|
38
|
+
# Include default devise modules.
|
39
|
+
devise :database_authenticatable, :confirmable, :lockable, :timeoutable,
|
40
|
+
:recoverable, :rememberable, :trackable, :validatable,
|
41
|
+
:encryptable, :encryptor => :sha512
|
42
|
+
|
43
|
+
# Setup accessible (or protected) attributes for your model
|
44
|
+
attr_accessible :name, :email, :password, :password_confirmation, :remember_me
|
45
|
+
|
46
|
+
fileuploads :avatar
|
47
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class AvatarUploader < Sunrise::CarrierWave::BaseUploader
|
2
|
+
|
3
|
+
process :strip
|
4
|
+
process :quality => 90
|
5
|
+
|
6
|
+
version :thumb do
|
7
|
+
process :resize_to_fill => [100, 100]
|
8
|
+
end
|
9
|
+
|
10
|
+
version :small do
|
11
|
+
process :resize_to_fill => [32, 32]
|
12
|
+
end
|
13
|
+
|
14
|
+
def extension_white_list
|
15
|
+
%w(jpg jpeg gif png)
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class PictureUploader < Sunrise::CarrierWave::BaseUploader
|
2
|
+
|
3
|
+
process :strip
|
4
|
+
process :quality => 90
|
5
|
+
|
6
|
+
version :thumb do
|
7
|
+
process :resize_to_fill => [100, 100]
|
8
|
+
end
|
9
|
+
|
10
|
+
version :content do
|
11
|
+
process :resize_to_fit => [575, 500]
|
12
|
+
end
|
13
|
+
|
14
|
+
def extension_white_list
|
15
|
+
%w(jpg jpeg gif png)
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
+
<%= tag(:meta, :content => render_keywords, :name=>"keywords") %>
|
6
|
+
<%= tag(:meta, :content => render_description, :name=>"description") %>
|
7
|
+
<%= csrf_meta_tag %>
|
8
|
+
<title><%= render_title %></title>
|
9
|
+
<%= stylesheet_link_tag "application" %>
|
10
|
+
<%= stylesheet_link_tag 'manage/panel.css', :media=> 'screen' if content_manager? %>
|
11
|
+
<!--[if lte IE 6]><link href="/stylesheets/ie.css" rel="stylesheet" type="text/css" /><![endif]-->
|
12
|
+
<!--[if lte IE 7]><link href="/stylesheets/ie7.css" rel="stylesheet" type="text/css" /><![endif]-->
|
13
|
+
|
14
|
+
<script src="https://www.google.com/jsapi?key=" type="text/javascript"></script>
|
15
|
+
<script language="Javascript" type="text/javascript">
|
16
|
+
//<![CDATA[
|
17
|
+
google.load("jquery", "1.6.1");
|
18
|
+
google.load("swfobject", "2.2");
|
19
|
+
//]]>
|
20
|
+
</script>
|
21
|
+
|
22
|
+
<%= javascript_include_tag "preloader", "rails" %>
|
23
|
+
<%= yield(:head) %>
|
24
|
+
</head>
|
25
|
+
<body>
|
26
|
+
<%= render :partial => "manage/shared/panel" if content_manager? %>
|
27
|
+
<%= render :partial => 'shared/notice' if flash %>
|
28
|
+
|
29
|
+
<div class='content'>
|
30
|
+
<%= yield %>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<%= yield(:footer) %>
|
34
|
+
|
35
|
+
<div id="preloader" style="display:none;z-index:5000;" class="load-wait"><div><strong>Загрузка</strong></div></div>
|
36
|
+
</body>
|
37
|
+
</html>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<% unless flash.keys.empty? %>
|
2
|
+
<div class="message" style="display:none;z-index:5000;">
|
3
|
+
<div class="alert-container">
|
4
|
+
<div class="alert">
|
5
|
+
<% flash.each do |key, text| %>
|
6
|
+
<%= content_tag(:div, text, :class => "flash_#{key}") %>
|
7
|
+
<% end %>
|
8
|
+
<%= link_to_function(image_tag("cross_ico.png", :title=>t('label.close')), "$(this).parents('div.message').slideUp()", :class=>"close") %>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<script type='text/javascript' charset='UTF-8'>
|
12
|
+
$(document).ready(function(){
|
13
|
+
$('div.message').slideDown('slow');
|
14
|
+
})
|
15
|
+
</script>
|
16
|
+
</div>
|
17
|
+
<% end %>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require "active_model/railtie"
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_view/railtie"
|
7
|
+
require "action_mailer/railtie"
|
8
|
+
|
9
|
+
Bundler.require
|
10
|
+
require "sunrise-locales"
|
11
|
+
|
12
|
+
module Dummy
|
13
|
+
class Application < Rails::Application
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
15
|
+
# Application configuration should go into files in config/initializers
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
17
|
+
|
18
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
19
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
20
|
+
config.autoload_paths += %W(#{config.root}/app/models/defaults)
|
21
|
+
|
22
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
23
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
24
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
25
|
+
|
26
|
+
# Activate observers that should always be running.
|
27
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
28
|
+
|
29
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
30
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
31
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
32
|
+
|
33
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
34
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
35
|
+
config.i18n.default_locale = :ru
|
36
|
+
|
37
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
38
|
+
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
39
|
+
|
40
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
41
|
+
config.encoding = "utf-8"
|
42
|
+
|
43
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
44
|
+
config.filter_parameters += [:password]
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
development:
|
4
|
+
adapter: sqlite3
|
5
|
+
database: db/development.sqlite3
|
6
|
+
pool: 5
|
7
|
+
timeout: 5000
|
8
|
+
|
9
|
+
# Warning: The database defined as "test" will be erased and
|
10
|
+
# re-generated from your development database when you run "rake".
|
11
|
+
# Do not set this db to the same as development or production.
|
12
|
+
test:
|
13
|
+
adapter: sqlite3
|
14
|
+
database: db/test.sqlite3
|
15
|
+
pool: 5
|
16
|
+
timeout: 5000
|
17
|
+
|
18
|
+
production:
|
19
|
+
adapter: sqlite3
|
20
|
+
database: db/production.sqlite3
|
21
|
+
pool: 5
|
22
|
+
timeout: 5000
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# And be sure to use new-style password hashing:
|
2
|
+
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
|
3
|
+
development:
|
4
|
+
adapter: mysql2
|
5
|
+
encoding: utf8
|
6
|
+
reconnect: false
|
7
|
+
database: dummy
|
8
|
+
pool: 5
|
9
|
+
username: root
|
10
|
+
password:
|
11
|
+
socket: /var/run/mysqld/mysqld.sock
|
12
|
+
|
13
|
+
# Warning: The database defined as "test" will be erased and
|
14
|
+
# re-generated from your development database when you run "rake".
|
15
|
+
# Do not set this db to the same as development or production.
|
16
|
+
test:
|
17
|
+
adapter: mysql2
|
18
|
+
encoding: utf8
|
19
|
+
reconnect: false
|
20
|
+
database: dummy_test
|
21
|
+
pool: 5
|
22
|
+
username: root
|
23
|
+
password:
|
24
|
+
socket: /var/run/mysqld/mysqld.sock
|
25
|
+
|
26
|
+
production:
|
27
|
+
adapter: mysql2
|
28
|
+
encoding: utf8
|
29
|
+
reconnect: true
|
30
|
+
database: dummy
|
31
|
+
pool: 5
|
32
|
+
username: root
|
33
|
+
password:
|
34
|
+
socket: /var/run/mysqld/mysqld.sock
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_view.debug_rjs = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Don't care if the mailer can't send
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
19
|
+
|
20
|
+
# Print deprecation notices to the Rails logger
|
21
|
+
config.active_support.deprecation = :log
|
22
|
+
|
23
|
+
# Only use best-standards-support built into browsers
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
25
|
+
end
|
26
|
+
|