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,95 @@
|
|
1
|
+
CodeMirror.defineMode("yaml", function() {
|
2
|
+
|
3
|
+
var cons = ['true', 'false', 'on', 'off', 'yes', 'no'];
|
4
|
+
var keywordRegex = new RegExp("\\b(("+cons.join(")|(")+"))$", 'i');
|
5
|
+
|
6
|
+
return {
|
7
|
+
token: function(stream, state) {
|
8
|
+
var ch = stream.peek();
|
9
|
+
var esc = state.escaped;
|
10
|
+
state.escaped = false;
|
11
|
+
/* comments */
|
12
|
+
if (ch == "#") { stream.skipToEnd(); return "comment"; }
|
13
|
+
if (state.literal && stream.indentation() > state.keyCol) {
|
14
|
+
stream.skipToEnd(); return "string";
|
15
|
+
} else if (state.literal) { state.literal = false; }
|
16
|
+
if (stream.sol()) {
|
17
|
+
state.keyCol = 0;
|
18
|
+
state.pair = false;
|
19
|
+
state.pairStart = false;
|
20
|
+
/* document start */
|
21
|
+
if(stream.match(/---/)) { return "def"; }
|
22
|
+
/* document end */
|
23
|
+
if (stream.match(/\.\.\./)) { return "def"; }
|
24
|
+
/* array list item */
|
25
|
+
if (stream.match(/\s*-\s+/)) { return 'meta'; }
|
26
|
+
}
|
27
|
+
/* pairs (associative arrays) -> key */
|
28
|
+
if (!state.pair && stream.match(/^\s*([a-z0-9\._-])+(?=\s*:)/i)) {
|
29
|
+
state.pair = true;
|
30
|
+
state.keyCol = stream.indentation();
|
31
|
+
return "atom";
|
32
|
+
}
|
33
|
+
if (state.pair && stream.match(/^:\s*/)) { state.pairStart = true; return 'meta'; }
|
34
|
+
|
35
|
+
/* inline pairs/lists */
|
36
|
+
if (stream.match(/^(\{|\}|\[|\])/)) {
|
37
|
+
if (ch == '{')
|
38
|
+
state.inlinePairs++;
|
39
|
+
else if (ch == '}')
|
40
|
+
state.inlinePairs--;
|
41
|
+
else if (ch == '[')
|
42
|
+
state.inlineList++;
|
43
|
+
else
|
44
|
+
state.inlineList--;
|
45
|
+
return 'meta';
|
46
|
+
}
|
47
|
+
|
48
|
+
/* list seperator */
|
49
|
+
if (state.inlineList > 0 && !esc && ch == ',') {
|
50
|
+
stream.next();
|
51
|
+
return 'meta';
|
52
|
+
}
|
53
|
+
/* pairs seperator */
|
54
|
+
if (state.inlinePairs > 0 && !esc && ch == ',') {
|
55
|
+
state.keyCol = 0;
|
56
|
+
state.pair = false;
|
57
|
+
state.pairStart = false;
|
58
|
+
stream.next();
|
59
|
+
return 'meta';
|
60
|
+
}
|
61
|
+
|
62
|
+
/* start of value of a pair */
|
63
|
+
if (state.pairStart) {
|
64
|
+
/* block literals */
|
65
|
+
if (stream.match(/^\s*(\||\>)\s*/)) { state.literal = true; return 'meta'; };
|
66
|
+
/* references */
|
67
|
+
if (stream.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i)) { return 'variable-2'; }
|
68
|
+
/* numbers */
|
69
|
+
if (state.inlinePairs == 0 && stream.match(/^\s*-?[0-9\.\,]+\s?$/)) { return 'number'; }
|
70
|
+
if (state.inlinePairs > 0 && stream.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/)) { return 'number'; }
|
71
|
+
/* keywords */
|
72
|
+
if (stream.match(keywordRegex)) { return 'keyword'; }
|
73
|
+
}
|
74
|
+
|
75
|
+
/* nothing found, continue */
|
76
|
+
state.pairStart = false;
|
77
|
+
state.escaped = (ch == '\\');
|
78
|
+
stream.next();
|
79
|
+
return null;
|
80
|
+
},
|
81
|
+
startState: function() {
|
82
|
+
return {
|
83
|
+
pair: false,
|
84
|
+
pairStart: false,
|
85
|
+
keyCol: 0,
|
86
|
+
inlinePairs: 0,
|
87
|
+
inlineList: 0,
|
88
|
+
literal: false,
|
89
|
+
escaped: false
|
90
|
+
};
|
91
|
+
}
|
92
|
+
};
|
93
|
+
});
|
94
|
+
|
95
|
+
CodeMirror.defineMIME("text/x-yaml", "yaml");
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'sunrise/locales'
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'rails'
|
2
|
+
require 'sunrise-locales'
|
3
|
+
|
4
|
+
module Sunrise
|
5
|
+
module Locales
|
6
|
+
class Engine < ::Rails::Engine
|
7
|
+
config.before_initialize do
|
8
|
+
Sunrise::Plugin.register :locales do |plugin|
|
9
|
+
plugin.model = 'sunrise/yml_locale'
|
10
|
+
plugin.menu = 'select'
|
11
|
+
plugin.version = Sunrise::Locales::VERSION.dup
|
12
|
+
plugin.klass = Sunrise::YmlLocale
|
13
|
+
end
|
14
|
+
|
15
|
+
Sunrise::Plugins.activate(:locales)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require "yaml"
|
3
|
+
|
4
|
+
module Sunrise
|
5
|
+
class YmlLocale
|
6
|
+
attr_accessor :locale
|
7
|
+
|
8
|
+
def initialize(locale)
|
9
|
+
@locale = locale
|
10
|
+
end
|
11
|
+
|
12
|
+
def file_path
|
13
|
+
Rails.root.join("config/locales/#{@locale}.yml")
|
14
|
+
end
|
15
|
+
|
16
|
+
def get_data
|
17
|
+
text = ''
|
18
|
+
|
19
|
+
f = File.open(file_path, 'r')
|
20
|
+
f.each_line { |line| text += line }
|
21
|
+
f.close
|
22
|
+
|
23
|
+
text
|
24
|
+
end
|
25
|
+
|
26
|
+
def set_data(text)
|
27
|
+
if valid?(text)
|
28
|
+
File.open(file_path, 'w') {|f| f.write(text) }
|
29
|
+
else
|
30
|
+
false
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def valid?(text)
|
35
|
+
begin
|
36
|
+
YAML.load(text)
|
37
|
+
true
|
38
|
+
rescue Exception => e
|
39
|
+
false
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Manage::LocalesController do
|
4
|
+
render_views
|
5
|
+
|
6
|
+
before(:all) do
|
7
|
+
@locale = Sunrise.available_locales[rand(Sunrise.available_locales.length)]
|
8
|
+
@text = "#{@locale}:\n title: 'Hello World'"
|
9
|
+
@text2 = @text + "\n new: 'temp'"
|
10
|
+
end
|
11
|
+
|
12
|
+
context "administrator" do
|
13
|
+
login_admin
|
14
|
+
|
15
|
+
context "exists locale" do
|
16
|
+
it "should render index action" do
|
17
|
+
get :index
|
18
|
+
assigns(:locales).should include(@locale)
|
19
|
+
response.should render_template('index')
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should render edit action" do
|
23
|
+
controller.should_receive :edit
|
24
|
+
get :edit, :id => @locale
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should update locale" do
|
28
|
+
put :update, :id => @locale, :text => @text
|
29
|
+
assigns(:locale).should == @locale
|
30
|
+
Sunrise::YmlLocale.new(@locale).get_data.should == @text
|
31
|
+
response.should redirect_to(manage_locales_path)
|
32
|
+
|
33
|
+
put :update, :id => @locale, :text => @text2
|
34
|
+
Sunrise::YmlLocale.new(@locale).get_data.should == @text2
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
context "anonymous user" do
|
40
|
+
user_logout
|
41
|
+
|
42
|
+
it "should not render index action" do
|
43
|
+
controller.should_not_receive :index
|
44
|
+
get :index
|
45
|
+
end
|
46
|
+
|
47
|
+
context "with exists structure" do
|
48
|
+
it "should not render edit action" do
|
49
|
+
controller.should_not_receive :edit
|
50
|
+
get :edit, :id => @locale
|
51
|
+
end
|
52
|
+
|
53
|
+
it "should not render update action" do
|
54
|
+
controller.should_not_receive :update
|
55
|
+
put :update, :id => @locale
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
data/spec/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
5
|
+
require 'rake'
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,81 @@
|
|
1
|
+
module Manage::BaseHelper
|
2
|
+
def content_manager?
|
3
|
+
user_signed_in? && current_user.admin?
|
4
|
+
end
|
5
|
+
|
6
|
+
def link_to_unless_current_span2(name, options = {}, html_options = {}, &block)
|
7
|
+
if current_page?(options)
|
8
|
+
if block_given?
|
9
|
+
block.arity <= 1 ? yield(name) : yield(name, options, html_options)
|
10
|
+
else
|
11
|
+
content_tag(:span, content_tag(:span, name), html_options)
|
12
|
+
end
|
13
|
+
else
|
14
|
+
link_to(name, options, html_options)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def options_for_ckeditor(options = {})
|
19
|
+
{:width=>700, :height=>400,
|
20
|
+
:swf_params=>{:assetable_type=>current_user.class.name, :assetable_id=>current_user.id}
|
21
|
+
|
22
|
+
}.update(options)
|
23
|
+
end
|
24
|
+
|
25
|
+
def white_block_form(options = {}, &block)
|
26
|
+
title = options[:title]
|
27
|
+
|
28
|
+
concat(content_tag(:div, {:class=>"edit-white-bl"}) do
|
29
|
+
concat(content_tag(:div, {:class=>"bot-bg"}) do
|
30
|
+
concat(content_tag(:div, title, :class=>"wh-title")) unless title.blank?
|
31
|
+
yield if block_given?
|
32
|
+
end)
|
33
|
+
end)
|
34
|
+
end
|
35
|
+
|
36
|
+
def link_to_sort(title, options = {})
|
37
|
+
options.symbolize_keys!
|
38
|
+
|
39
|
+
order_type = options[:order_type] || 'asc'
|
40
|
+
order_column = options[:name] || 'id'
|
41
|
+
class_name = options[:class] || nil
|
42
|
+
|
43
|
+
search_options = request.params[:search] || {}
|
44
|
+
search_options.update(:order_column => order_column, :order_type => order_type)
|
45
|
+
|
46
|
+
link_to(title, :search => search_options, :class => class_name)
|
47
|
+
end
|
48
|
+
|
49
|
+
def remove_child_link(name, f)
|
50
|
+
f.hidden_field(:_destroy) + link_to_function(name, "remove_fields(this)")
|
51
|
+
end
|
52
|
+
|
53
|
+
def add_child_link(name, f, method, options={})
|
54
|
+
options.symbolize_keys!
|
55
|
+
|
56
|
+
html_options = options.delete(:html) || {}
|
57
|
+
fields = new_child_fields(f, method, options)
|
58
|
+
|
59
|
+
html_options[:class] ||= "new"
|
60
|
+
|
61
|
+
content_tag(:div,
|
62
|
+
link_to_function(name, h("insert_fields(this, \"#{method}\", \"#{escape_javascript(fields)}\")"), html_options),
|
63
|
+
:class=>"add-bl")
|
64
|
+
end
|
65
|
+
|
66
|
+
def new_child_fields(form_builder, method, options = {})
|
67
|
+
options[:object] ||= form_builder.object.class.reflect_on_association(method).klass.new
|
68
|
+
options[:partial] ||= method.to_s.singularize
|
69
|
+
options[:form_builder_local] ||= :form
|
70
|
+
|
71
|
+
form_builder.fields_for(method, options[:object], :child_index => "new_#{method}") do |f|
|
72
|
+
render(:partial => options[:partial], :locals => { options[:form_builder_local] => f })
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
def cookie_content_tag(tag_name, options={}, &block)
|
77
|
+
key = options[:id]
|
78
|
+
options[:style] = "display:none;" if !cookies[key].blank? && cookies[key].to_i != 1
|
79
|
+
content_tag(tag_name, options, &block)
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
module Manage::StructuresHelper
|
2
|
+
|
3
|
+
def edit_structure_record_path(structure)
|
4
|
+
case structure.structure_type
|
5
|
+
when StructureType.page then edit_manage_structure_page_path(:structure_id=>structure.id)
|
6
|
+
when StructureType.posts then manage_structure_posts_path(:structure_id => structure.id)
|
7
|
+
when StructureType.main then '#'
|
8
|
+
when StructureType.redirect then structure.slug
|
9
|
+
when StructureType.group then '#'
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
class Ability
|
2
|
+
include CanCanNamespace::Ability
|
3
|
+
|
4
|
+
attr_accessor :context, :user
|
5
|
+
|
6
|
+
def initialize(user, context = nil)
|
7
|
+
alias_action :delete, :to => :destroy
|
8
|
+
|
9
|
+
@user = (user || User.new) # guest user (not logged in)
|
10
|
+
@context = context
|
11
|
+
|
12
|
+
case @user.role_type_id
|
13
|
+
when RoleType.default.id then default
|
14
|
+
when RoleType.redactor.id then redactor
|
15
|
+
when RoleType.moderator.id then moderator
|
16
|
+
when RoleType.admin.id then admin
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def default
|
21
|
+
# TODO
|
22
|
+
end
|
23
|
+
|
24
|
+
def redactor
|
25
|
+
# TODO
|
26
|
+
end
|
27
|
+
|
28
|
+
def moderator
|
29
|
+
# TODO
|
30
|
+
end
|
31
|
+
|
32
|
+
def admin
|
33
|
+
can :manage, :all
|
34
|
+
can :manage, :all, :context => :manage
|
35
|
+
|
36
|
+
# User cannot destroy self account
|
37
|
+
cannot :destroy, User, :id => @user.id, :context => :manage
|
38
|
+
end
|
39
|
+
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
|
+
# 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 AttachmentFile < Asset
|
28
|
+
sunrise_uploader AttachmentFileUploader
|
29
|
+
|
30
|
+
validates_filesize_of :data, :maximum => 100.megabytes.to_i
|
31
|
+
end
|