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
data/Gemfile
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
gemspec
|
3
|
+
|
4
|
+
gem "rails", "3.0.10"
|
5
|
+
gem "capybara", ">= 0.4.0"
|
6
|
+
gem "sqlite3"
|
7
|
+
|
8
|
+
gem "rspec-rails", "~> 2.6.1"
|
9
|
+
gem "database_cleaner"
|
10
|
+
gem "fuubar"
|
11
|
+
gem "generator_spec"
|
12
|
+
gem "factory_girl_rails", "~> 1.1.0"
|
13
|
+
|
14
|
+
# Sunrise core gems
|
15
|
+
gem 'inherited_resources'
|
16
|
+
gem 'has_scope'
|
17
|
+
gem 'carrierwave'
|
18
|
+
gem 'mini_magick'
|
19
|
+
gem 'mime-types'
|
20
|
+
gem 'kaminari'
|
21
|
+
gem 'cancan'
|
22
|
+
gem 'cancan_namespace'
|
23
|
+
gem 'devise'
|
24
|
+
gem 'simple_form'
|
25
|
+
gem 'awesome_nested_set'
|
26
|
+
gem 'fastercsv'
|
27
|
+
gem 'ckeditor'
|
28
|
+
|
29
|
+
gem 'galetahub-enum_field', '~> 0.1.4', :require => 'enum_field'
|
30
|
+
gem 'galetahub-salty_slugs', '~> 1.0.0', :require => 'salty_slugs'
|
31
|
+
|
32
|
+
gem "sunrise-cms"
|
33
|
+
|
34
|
+
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
|
35
|
+
# gem 'ruby-debug'
|
36
|
+
# gem 'ruby-debug19'
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2011 AIMBULANCE
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
require 'rubygems'
|
3
|
+
begin
|
4
|
+
require 'bundler/setup'
|
5
|
+
rescue LoadError
|
6
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
7
|
+
end
|
8
|
+
|
9
|
+
require 'rake'
|
10
|
+
require 'rake/rdoctask'
|
11
|
+
|
12
|
+
require 'rspec/core'
|
13
|
+
require 'rspec/core/rake_task'
|
14
|
+
|
15
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
16
|
+
t.rspec_opts = ['--options', "spec/spec.opts"]
|
17
|
+
end
|
18
|
+
|
19
|
+
task :default => :spec
|
20
|
+
|
21
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
22
|
+
rdoc.rdoc_dir = 'rdoc'
|
23
|
+
rdoc.title = 'Sunrise Locales'
|
24
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
25
|
+
rdoc.rdoc_files.include('README.rdoc')
|
26
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
27
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
class Manage::LocalesController < Manage::BaseController
|
2
|
+
inherit_resources
|
3
|
+
defaults :route_prefix => 'manage'
|
4
|
+
before_filter :find_locale
|
5
|
+
|
6
|
+
authorize_resource :class => Sunrise::YmlLocale
|
7
|
+
|
8
|
+
def edit
|
9
|
+
@text = Sunrise::YmlLocale.new(@locale).get_data
|
10
|
+
|
11
|
+
respond_with @text
|
12
|
+
end
|
13
|
+
|
14
|
+
def update
|
15
|
+
yml = Sunrise::YmlLocale.new(@locale)
|
16
|
+
|
17
|
+
respond_to do |format|
|
18
|
+
if !params[:text].blank? && yml.set_data(params[:text])
|
19
|
+
I18n.reload!
|
20
|
+
|
21
|
+
flash[:notice] = I18n.t('flash.locale.updated')
|
22
|
+
|
23
|
+
format.html { redirect_to manage_locales_path }
|
24
|
+
format.xml { head :ok }
|
25
|
+
else
|
26
|
+
flash.now[:error] = I18n.t('flash.locale.update_error')
|
27
|
+
|
28
|
+
format.html { render :action => "edit" }
|
29
|
+
format.xml { render :xml => 'error', :status => :unprocessable_entity }
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
protected
|
35
|
+
|
36
|
+
def collection
|
37
|
+
@locales = Sunrise.available_locales
|
38
|
+
end
|
39
|
+
|
40
|
+
def find_locale
|
41
|
+
@locale = params[:id]
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<%= content_tag(:div, :id=>"locale_#{locale}", :class=>"dinamic-bl") do %>
|
2
|
+
<div class="act-bl">
|
3
|
+
<%= link_to image_tag("manage/ico_edit.gif", :alt=>t('manage.edit'), :title=>t('manage.edit')), edit_manage_locale_path(:id=>locale), :class=>"icons" %>
|
4
|
+
</div>
|
5
|
+
|
6
|
+
<div class="bot-bg">
|
7
|
+
<div class="dinamic-container">
|
8
|
+
<div class="right-data">
|
9
|
+
<div class="right-data-cont">
|
10
|
+
<div class="dinamic-inner">
|
11
|
+
<div class="r-block">
|
12
|
+
<div class="r-block-cont">
|
13
|
+
<%= link_to t("manage.locales.#{locale}"), edit_manage_locale_path(:id=>locale), :class=>"title" %>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
<% end %>
|
@@ -0,0 +1,101 @@
|
|
1
|
+
<%= javascript "codemirror", "yaml"%>
|
2
|
+
<%= stylesheet "codemirror"%>
|
3
|
+
|
4
|
+
<div class="edit-bl">
|
5
|
+
<div class="bot-bg">
|
6
|
+
<div class="block-title"><%= t('manage.edit') %>:</div>
|
7
|
+
<%= form_tag manage_locale_path(@locale), :method=>:put, :id=>'locale_form' do %>
|
8
|
+
|
9
|
+
<div class="edit-cont">
|
10
|
+
<%= text_area_tag :text, @text, :cols=>100%>
|
11
|
+
|
12
|
+
|
13
|
+
<div class="buttons">
|
14
|
+
<input type='text' style="width: 5em" id='query' />
|
15
|
+
<button type='button' onclick="search()"><%= t('manage.locales.search')%></button>
|
16
|
+
|
17
|
+
<input type='text' style="width: 5em" id='replace' />
|
18
|
+
<button type='button' onclick="replace()"><%= t('manage.locales.replace')%></button>
|
19
|
+
|
20
|
+
<small><%= t('manage.locales.notes')%></small>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
<div style="padding: 20px 0px 10px 20px;" class="buts">
|
25
|
+
<%= link_to_function content_tag(:span, t('manage.update')), "$('#locale_form').submit()", :class=>"gr" %>
|
26
|
+
<%= link_to t('manage.cancel'), manage_locales_path, :class=>"erase" %>
|
27
|
+
<%= submit_tag t('manage.update'), :style=>"display:none;" %>
|
28
|
+
</div>
|
29
|
+
<% end %>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<script type='text/javascript'>
|
34
|
+
var editor = CodeMirror.fromTextArea(document.getElementById("text"), {
|
35
|
+
mode: 'text/x-yaml',
|
36
|
+
lineNumbers: true,
|
37
|
+
onCursorActivity: function() {
|
38
|
+
editor.setLineClass(hlLine, null);
|
39
|
+
hlLine = editor.setLineClass(editor.getCursor().line, "activeline");
|
40
|
+
},
|
41
|
+
onKeyEvent: function(i, e) {
|
42
|
+
// Hook into F11
|
43
|
+
if ((e.keyCode == 122 || e.keyCode == 27) && e.type == 'keydown') {
|
44
|
+
e.stop();
|
45
|
+
return toggleFullscreenEditing();
|
46
|
+
}
|
47
|
+
}
|
48
|
+
});
|
49
|
+
|
50
|
+
var hlLine = editor.setLineClass(0, "activeline");
|
51
|
+
var lastPos = null, lastQuery = null, marked = [];
|
52
|
+
|
53
|
+
function unmark() {
|
54
|
+
for (var i = 0; i < marked.length; ++i) marked[i]();
|
55
|
+
marked.length = 0;
|
56
|
+
}
|
57
|
+
|
58
|
+
function search() {
|
59
|
+
unmark();
|
60
|
+
var text = document.getElementById("query").value;
|
61
|
+
if (!text) return;
|
62
|
+
for (var cursor = editor.getSearchCursor(text); cursor.findNext();)
|
63
|
+
marked.push(editor.markText(cursor.from(), cursor.to(), "searched"));
|
64
|
+
|
65
|
+
if (lastQuery != text) lastPos = null;
|
66
|
+
var cursor = editor.getSearchCursor(text, lastPos || editor.getCursor());
|
67
|
+
if (!cursor.findNext()) {
|
68
|
+
cursor = editor.getSearchCursor(text);
|
69
|
+
if (!cursor.findNext()) return;
|
70
|
+
}
|
71
|
+
editor.setSelection(cursor.from(), cursor.to());
|
72
|
+
lastQuery = text; lastPos = cursor.to();
|
73
|
+
}
|
74
|
+
|
75
|
+
function replace() {
|
76
|
+
unmark();
|
77
|
+
var text = document.getElementById("query").value,
|
78
|
+
replace = document.getElementById("replace").value;
|
79
|
+
if (!text) return;
|
80
|
+
for (var cursor = editor.getSearchCursor(text); cursor.findNext();)
|
81
|
+
cursor.replace(replace);
|
82
|
+
}
|
83
|
+
|
84
|
+
function toggleFullscreenEditing()
|
85
|
+
{
|
86
|
+
var editorDiv = $('.CodeMirror-scroll');
|
87
|
+
if (!editorDiv.hasClass('fullscreen')) {
|
88
|
+
toggleFullscreenEditing.beforeFullscreen = { height: editorDiv.height(), width: editorDiv.width() }
|
89
|
+
editorDiv.addClass('fullscreen');
|
90
|
+
editorDiv.height('100%');
|
91
|
+
editorDiv.width('100%');
|
92
|
+
editor.refresh();
|
93
|
+
}
|
94
|
+
else {
|
95
|
+
editorDiv.removeClass('fullscreen');
|
96
|
+
editorDiv.height(toggleFullscreenEditing.beforeFullscreen.height);
|
97
|
+
editorDiv.width(toggleFullscreenEditing.beforeFullscreen.width);
|
98
|
+
editor.refresh();
|
99
|
+
}
|
100
|
+
}
|
101
|
+
</script>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<div class="duo-bl">
|
2
|
+
<div class="left-part">
|
3
|
+
<div class="content">
|
4
|
+
<div class="row-container">
|
5
|
+
<div class="white-row">
|
6
|
+
<div class="r-corn">
|
7
|
+
<%= link_to t('manage.plugins.locales'), manage_locales_path, :class=>"dark-text" %>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<div id="softwares" class="stage">
|
13
|
+
<%= render :partial => "manage/locales/locale", :collection => @locales %>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
<script type='text/javascript'>
|
17
|
+
$(document).ready(function(){
|
18
|
+
init_collection('locales', 'dinamic-bl');
|
19
|
+
});
|
20
|
+
</script>
|
21
|
+
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
</div>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
ru:
|
2
|
+
manage:
|
3
|
+
plugins:
|
4
|
+
locales: "Переводы"
|
5
|
+
|
6
|
+
menu:
|
7
|
+
locales: "Переводы"
|
8
|
+
|
9
|
+
locales:
|
10
|
+
ru: "Русский"
|
11
|
+
uk: "Український"
|
12
|
+
en: "English"
|
13
|
+
search: "Поиск"
|
14
|
+
replace: "Заменить"
|
15
|
+
notes: "Нажмите F11 (или ESC на Mac OS X), когда курсор находится в редакторе для переключения в fullscreen."
|
16
|
+
|
17
|
+
flash:
|
18
|
+
locale:
|
19
|
+
updated: "Перевод успешно обновлен"
|
20
|
+
update_error: "Возникли ошибки при обновлении данных"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
uk:
|
2
|
+
manage:
|
3
|
+
plugins:
|
4
|
+
locales: "Переклади"
|
5
|
+
|
6
|
+
menu:
|
7
|
+
locales: "Переклади"
|
8
|
+
|
9
|
+
locales:
|
10
|
+
ru: "Русский"
|
11
|
+
uk: "Український"
|
12
|
+
en: "English"
|
13
|
+
search: "Пошук"
|
14
|
+
replace: "Змінити"
|
15
|
+
notes: "Натисніть F11 (або ESC на Mac OS X), коли курсор знаходиться в редакторі для перемикання в fullscreen."
|
16
|
+
|
17
|
+
flash:
|
18
|
+
locale:
|
19
|
+
updated: "Переклад успішно оновлено"
|
20
|
+
update_error: "Виникли помилки при оновленні даних"
|
data/config/routes.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'rails/generators'
|
2
|
+
|
3
|
+
module Sunrise
|
4
|
+
module Locales
|
5
|
+
class InstallGenerator < Rails::Generators::Base
|
6
|
+
source_root File.expand_path(File.join(File.dirname(__FILE__), 'templates'))
|
7
|
+
|
8
|
+
desc "Generates CodeMirror js and css"
|
9
|
+
|
10
|
+
def copy_js
|
11
|
+
copy_file('codemirror.js', 'public/javascripts/codemirror.js')
|
12
|
+
copy_file('yaml.js', 'public/javascripts/yaml.js')
|
13
|
+
end
|
14
|
+
|
15
|
+
def copy_css
|
16
|
+
copy_file('codemirror.css', 'public/stylesheets/codemirror.css')
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,107 @@
|
|
1
|
+
.CodeMirror {
|
2
|
+
line-height: 1em;
|
3
|
+
font-family: monospace;
|
4
|
+
}
|
5
|
+
|
6
|
+
.CodeMirror-scroll {
|
7
|
+
overflow: auto;
|
8
|
+
height: 400px;
|
9
|
+
/* This is needed to prevent an IE[67] bug where the scrolled content
|
10
|
+
is visible outside of the scrolling box. */
|
11
|
+
position: relative;
|
12
|
+
}
|
13
|
+
|
14
|
+
.CodeMirror-gutter {
|
15
|
+
position: absolute; left: 0; top: 0;
|
16
|
+
background-color: #f7f7f7;
|
17
|
+
border-right: 1px solid #eee;
|
18
|
+
min-width: 2em;
|
19
|
+
height: 100%;
|
20
|
+
}
|
21
|
+
.CodeMirror-gutter-text {
|
22
|
+
color: #aaa;
|
23
|
+
text-align: right;
|
24
|
+
padding: .4em .2em .4em .4em;
|
25
|
+
}
|
26
|
+
.CodeMirror-lines {
|
27
|
+
padding: .4em;
|
28
|
+
}
|
29
|
+
|
30
|
+
.CodeMirror pre {
|
31
|
+
-moz-border-radius: 0;
|
32
|
+
-webkit-border-radius: 0;
|
33
|
+
-o-border-radius: 0;
|
34
|
+
border-radius: 0;
|
35
|
+
border-width: 0; margin: 0; padding: 0; background: transparent;
|
36
|
+
font-family: inherit;
|
37
|
+
font-size: inherit;
|
38
|
+
padding: 0; margin: 0;
|
39
|
+
white-space: pre;
|
40
|
+
word-wrap: normal;
|
41
|
+
}
|
42
|
+
|
43
|
+
.CodeMirror textarea {
|
44
|
+
font-family: inherit !important;
|
45
|
+
font-size: inherit !important;
|
46
|
+
}
|
47
|
+
|
48
|
+
.CodeMirror-cursor {
|
49
|
+
z-index: 10;
|
50
|
+
position: absolute;
|
51
|
+
visibility: hidden;
|
52
|
+
border-left: 1px solid black !important;
|
53
|
+
}
|
54
|
+
.CodeMirror-focused .CodeMirror-cursor {
|
55
|
+
visibility: visible;
|
56
|
+
}
|
57
|
+
|
58
|
+
span.CodeMirror-selected {
|
59
|
+
background: #ccc !important;
|
60
|
+
color: HighlightText !important;
|
61
|
+
}
|
62
|
+
.CodeMirror-focused span.CodeMirror-selected {
|
63
|
+
background: Highlight !important;
|
64
|
+
}
|
65
|
+
|
66
|
+
.CodeMirror-matchingbracket {color: #0f0 !important;}
|
67
|
+
.CodeMirror-nonmatchingbracket {color: #f22 !important;}
|
68
|
+
|
69
|
+
/* Theme*/
|
70
|
+
|
71
|
+
.cm-s-default { background: #fff }
|
72
|
+
.cm-s-default span.cm-keyword {color: #708;}
|
73
|
+
.cm-s-default span.cm-atom {color: #219;}
|
74
|
+
.cm-s-default span.cm-number {color: #164;}
|
75
|
+
.cm-s-default span.cm-def {color: #00f;}
|
76
|
+
.cm-s-default span.cm-variable {color: black;}
|
77
|
+
.cm-s-default span.cm-variable-2 {color: #05a;}
|
78
|
+
.cm-s-default span.cm-variable-3 {color: #0a5;}
|
79
|
+
.cm-s-default span.cm-property {color: black;}
|
80
|
+
.cm-s-default span.cm-operator {color: black;}
|
81
|
+
.cm-s-default span.cm-comment {color: #a50;}
|
82
|
+
.cm-s-default span.cm-string {color: #a11;}
|
83
|
+
.cm-s-default span.cm-string-2 {color: #f50;}
|
84
|
+
.cm-s-default span.cm-meta {color: #555;}
|
85
|
+
.cm-s-default span.cm-error {color: #f00;}
|
86
|
+
.cm-s-default span.cm-qualifier {color: #555;}
|
87
|
+
.cm-s-default span.cm-builtin {color: #30a;}
|
88
|
+
.cm-s-default span.cm-bracket {color: #cc7;}
|
89
|
+
.cm-s-default span.cm-tag {color: #170;}
|
90
|
+
.cm-s-default span.cm-attribute {color: #00c;}
|
91
|
+
|
92
|
+
.searched {background: yellow;}
|
93
|
+
.activeline {background: #f0fcff !important;}
|
94
|
+
|
95
|
+
.fullscreen {
|
96
|
+
display: block;
|
97
|
+
position: absolute;
|
98
|
+
top: 0;
|
99
|
+
left: 0;
|
100
|
+
width: 100%;
|
101
|
+
height: 100%;
|
102
|
+
z-index: 9999;
|
103
|
+
margin: 0;
|
104
|
+
padding: 0;
|
105
|
+
border: 0px solid #BBBBBB;
|
106
|
+
opacity: 1;
|
107
|
+
}
|